Frame 1
_accProps = new Object();
_accProps.silent = false;
_accProps.name = "";
Stage.showMenu = false;
function APIQW() {
this.loading = true;
this.sending = false;
this.finished = false;
this.preloaders = new Array();
}
APIQW.prototype.isLoading = function () {
return(this.loading);
};
APIQW.prototype.isSending = function () {
return(this.sending);
};
APIQW.prototype.isFinished = function () {
return(this.finished);
};
APIQW.prototype.registerPreloader = function (preloader) {
this.preloaders.push(preloader);
};
APIQW.prototype.isPreloadCompleted = function () {
var i = 0;
while (i < this.preloaders.length) {
if (this.preloaders[i].isLoaded() == false) {
return(false);
}
i++;
}
return(true);
};
this.theAPI = new APIQW();
this.getAPIQWObject = function () {
return(this.theAPI);
};
function Debug() {
}
Debug.prototype.alert = function (alertString) {
};
_global.debugger = new Debug();
imageRatio = li._width / li._height;
maxRectangleWidth = Stage.width;
maxRectangleHeight = Stage.height;
rectangleRatio = maxRectangleWidth / maxRectangleHeight;
widthRatio = li._width / maxRectangleWidth;
heightRatio = li._height / maxRectangleHeight;
if (heightRatio > widthRatio) {
li._height = maxRectangleHeight;
li._width = li._width / heightRatio;
} else {
li._width = maxRectangleWidth;
li._height = li._height / widthRatio;
}
li._x = Stage.width / 2;
li._y = Stage.height / 2;
var aStartTime = new Date().getTime();
Frame 3
if ((new Date().getTime() > (aStartTime + 1000)) && (this._framesloaded > this._currentframe)) {
this.gotoAndPlay(this._currentframe + 1);
} else {
this.gotoAndPlay(this._currentframe - 1);
}
Frame 4
this.clip3002._accProps = new Object();
this.clip3002._accProps.forceSimple = true;
this.clip3002._accProps.name = "";
this.clip3002.tabIndex = 3002;
this.clip3002.tabEnabled = false;
this.clip3002.tabChildren = true;
this.text3006.tabIndex = 3006;
Frame 5
this.waitForFrame = 0;
Frame 6
this.waitForFrame = 0;
if (this.waitForFrame == 0) {
this.waitForFrame = this._totalframes;
} else {
this.waitForFrame = this.waitForFrame + this._currentFrame;
}
if (((this.waitMillis == undefined) || (this.waitMillis == 0)) || (this.waitMillis == null)) {
this.waitMillis = getTimer();
}
if ((this._framesloaded >= this.waitForFrame) && (getTimer() > (this.waitMillis + 1000))) {
this.gotoAndPlay((this._currentframe+1));
} else {
this.gotoAndPlay((this._currentframe-1));
}
Frame 7
function ResponseObject(theTimeLine, resMech) {
if ((System.capabilities.os.toLowerCase().substring(0, 7) == "symbian") || (System.capabilities.os.toLowerCase().substring(0, 7) == "netfront")) {
FSCommand2("fullscreen", true);
FSCommand2("SetQuality", "low");
_quality = "LOW";
}
this.timeLine = theTimeLine;
this.pXMLTree = new XML();
this.pCurrentNode = this.pXMLTree;
this.navForwardDirection = true;
this.nameValuePairs = new Array();
this.responseMechanism = resMech;
if (this.responseMechanism.toLowerCase() == "questionmark") {
this.theSCORMCOMM = new SCORMcomms();
var scormObjects = new Array();
scormObjects.push("QMPDisableSubmit");
this.theSCORMCOMM.queueFS(scormObjects);
scormObjects = new Array();
scormObjects.push("CMIInitialize");
this.theSCORMCOMM.queueFS(scormObjects);
} else if (this.responseMechanism.toLowerCase() == "scorm") {
this.theSCORMCOMM = new SCORMcomms();
this.theSCORMCOMM.init();
}
this.makeAccessible = Accessibility.isActive();
this.isFeedback = false;
setInterval(this, "checkTimeAllowedTask", 100);
}
function Timer() {
this.totaltime = 0;
this.timerOn = false;
}
function SCORMcomms() {
this.fsqueue = new Array();
setInterval(this, "sendComm", 500);
}
function Branch(xmlNode) {
this.newTarget = xmlNode.attributes.target;
}
this.theAPI.loading = false;
ResponseObject.prototype.doAccessibilityUpdate = function () {
if (this.makeAccessible) {
Accessibility.updateProperties();
}
};
ResponseObject.prototype.findNode = function (theName, ident) {
var i = 0;
while (i < this.pCurrentNode.childNodes.length) {
if ((this.pCurrentNode.childNodes[i].attributes.ident_ref == ident) && (this.pCurrentNode.childNodes[i].nodeName == theName)) {
this.pCurrentNode = this.pCurrentNode.childNodes[i];
return(true);
}
i++;
}
return(false);
};
ResponseObject.prototype.makeNode = function (theName, ident) {
var newNode = this.pXMLTree.createElement(theName);
newNode.attributes.ident_ref = ident;
this.pCurrentNode.appendChild(newNode);
this.pCurrentNode = newNode;
};
ResponseObject.prototype.enterMajorElement = function (theName, ident) {
debugger.alert((("Enter " + theName) + " ") + ident);
if (!this.findNode(theName, ident)) {
this.makeNode(theName, ident);
this.pCurrentNode.timer = new Timer();
if (theName == "item_result") {
this.pCurrentNode.allowForward = true;
this.pCurrentNode.allowUnansweredForward = true;
this.pCurrentNode.autoForward = false;
}
}
};
ResponseObject.prototype.enterResponse = function (ident) {
if (!this.findNode("response", ident)) {
this.makeNode("response", ident);
}
};
ResponseObject.prototype.exit = function () {
if (this.pCurrentNode.nodeName != "response") {
debugger.alert((("Exit from " + this.pCurrentNode.nodeName) + ",") + this.timeLine._currentFrame);
}
this.pCurrentNode = this.pCurrentNode.parentNode;
};
ResponseObject.prototype.startTimer = function (timePermitted) {
this.pCurrentNode.timer.startTimer(timePermitted);
};
ResponseObject.prototype.stopTimer = function () {
if (this.pCurrentNode.timer != null) {
this.pCurrentNode.timer.stopTimer();
var i = 0;
while (i < this.pCurrentNode.childNodes.length) {
if (this.pCurrentNode.childNodes[i].nodeName == "duration") {
this.pCurrentNode.childNodes[i].removeNode();
}
i++;
}
var newNode = this.pXMLTree.createElement("duration");
var textNode = this.pXMLTree.createTextNode(this.pCurrentNode.timer.getTimeElapsedString());
newNode.appendChild(textNode);
this.pCurrentNode.appendChild(newNode);
}
};
ResponseObject.prototype.toString = function () {
return(this.pCurrentNode.toString());
};
ResponseObject.prototype.moveHead = function (numberFrames) {
this.timeLine.gotoAndPlay(this.timeLine._currentFrame + numberFrames);
};
ResponseObject.prototype.startStopTimer = function (timePermitted) {
if (this.navForwardDirection) {
this.startTimer(timePermitted);
} else {
this.stopTimer();
}
this.jumpToNextDestination();
};
ResponseObject.prototype.stopStartTimer = function (timePermitted) {
if (this.navForwardDirection) {
this.stopTimer();
} else {
this.startTimer(timePermitted);
}
this.jumpToNextDestination();
};
ResponseObject.prototype.checkTimeAllowed = function (skipThisNode) {
this.isFeedback = skipThisNode;
this.checkTimeAllowedTask();
};
ResponseObject.prototype.checkTimeAllowedTask = function () {
var targetNode = this.pCurrentNode;
if (this.isFeedback) {
targetNode = targetNode.parentNode;
}
while (targetNode != null) {
if (targetNode.timer.isTimeExpired()) {
this.moveHead(2);
return(undefined);
}
this.setForwardDirection(true);
targetNode = targetNode.parentNode;
}
};
ResponseObject.prototype.getTimeElapsed = function () {
return(this.pCurrentNode.timer.getTimeElapsed());
};
ResponseObject.prototype.getTimeRemaining = function () {
return(this.pCurrentNode.timer.getTimeRemaining());
};
ResponseObject.prototype.getTimeLine = function () {
return(this.timeLine);
};
ResponseObject.prototype.getCurrentIdent = function () {
return(this.pCurrentNode.attributes.ident_ref);
};
ResponseObject.prototype.getRootNode = function () {
return(this.pXMLTree);
};
ResponseObject.prototype.getResponseMechanism = function () {
return(this.responseMechanism);
};
Timer.prototype.startTimer = function (timePermitted) {
this.timeAllowed = timePermitted;
if (this.timerOn) {
} else {
this.startTime = getTimer();
this.timerOn = true;
}
};
Timer.prototype.stopTimer = function () {
if (this.timerOn) {
this.totaltime = (this.totaltime + getTimer()) - this.startTime;
this.startTime = 0;
this.timerOn = false;
}
};
Timer.prototype.getTimeElapsedString = function () {
if (this.timerOn) {
return(("P" + (((this.totaltime + getTimer()) - this.startTime) / 1000)) + "S");
}
return(("P" + (this.totaltime / 1000)) + "S");
};
Timer.prototype.getTimeElapsed = function () {
if (this.timerOn) {
return(((this.totaltime + getTimer()) - this.startTime) / 1000);
}
return(this.totaltime / 1000);
};
Timer.prototype.isTimeExpired = function () {
if ((this.timeAllowed >= 0) && ((((this.totaltime + getTimer()) - this.startTime) / 1000) >= this.timeAllowed)) {
return(true);
}
return(false);
};
Timer.prototype.getTimeRemaining = function () {
return(this.timeAllowed - (((this.totaltime + getTimer()) - this.startTime) / 1000));
};
SCORMcomms.prototype.init = function () {
var setStatus = new Array();
setStatus.push("LMSSetValue");
setStatus.push("cmi.core.lesson_status");
setStatus.push("incomplete");
this.queueFS(setStatus);
};
SCORMcomms.prototype.queueFS = function (newComm) {
this.fsqueue.push(newComm);
};
SCORMcomms.prototype.sendComm = function () {
if (this.fsqueue.length > 0) {
var comm = this.fsqueue.shift();
var command = comm.shift();
var varsString = "";
var theLength = comm.length;
var i = 0;
while (i < theLength) {
if (command == "MM_cmiSendInteractionInfo") {
varsString = varsString + comm.shift().split(";").join(":");
if (i < (theLength-1)) {
varsString = varsString + ";";
}
} else {
varsString = varsString + escape(comm.shift());
if (i < (theLength-1)) {
varsString = varsString + "&";
}
}
i++;
}
if (command == "QMPDisableSubmit") {
getURL ("javascript:void(document.forms[0].qm_SUBMIT.disabled=true)");
} else if (command == "QMPEnableSubmit") {
getURL ("javascript:void(document.forms[0].qm_SUBMIT.disabled=false)");
} else {
fscommand (command, varsString);
}
}
};
ResponseObject.prototype.queueFSCommand = function (stringArray) {
this.theSCORMCOMM.queueFS(stringArray);
};
ResponseObject.prototype.createRandomization = function (sectionID, numberOfChildren, numberToSelect) {
if (this.getPairValue(sectionID + "-randomizer") == null) {
var randomSelections = new Array();
if (Number(numberToSelect) >= Number(numberOfChildren)) {
return(undefined);
}
var i = 0;
while (i < Number(numberOfChildren)) {
randomSelections[i] = "0";
i++;
}
var i = 0;
while (i < Number(numberToSelect)) {
var theIndex;
do {
theIndex = Math.floor(Math.random() * Number(numberOfChildren));
} while (randomSelections[theIndex] == "1");
randomSelections[theIndex] = "1";
i++;
}
this.setPair(sectionID + "-randomizer", randomSelections);
}
};
ResponseObject.prototype.isRandomlyChosen = function (parentID, theIndex) {
var randomSelections = this.getPairValue(parentID + "-randomizer");
if (randomSelections == null) {
return(true);
}
if (randomSelections[Number(theIndex)] == "1") {
return(true);
}
return(false);
};
Branch.prototype.activate = function () {
_global.resp.branch(this.newTarget);
};
ResponseObject.prototype.branch = function (newID) {
if (this.navForwardDirection) {
this.setPair(this.getCurrentIdent() + "-forwardbranch", newID);
}
};
ResponseObject.prototype.checkExitBranching = function (itemID, frames, parentID, theIndex, theType) {
if (!this.isRandomlyChosen(parentID, theIndex)) {
if (!this.navForwardDirection) {
this.moveHead(frames * -1);
return(undefined);
}
}
if ((theType == "section") || (theType == "assessment")) {
this.moveHead(3);
return(undefined);
}
if (this.navForwardDirection && (this.getPairValue(itemID + "-forwardbranch") != null)) {
this.setPair("originBranch", itemID);
this.setPair("seekBranch", this.removePair(itemID + "-forwardbranch"));
this.moveHead(3);
} else if ((!this.navForwardDirection) && (this.getPairValue("seekBranch") != null)) {
if (itemID == this.getPairValue("seekBranch")) {
this.removePair("seekBranch");
this.moveHead(3);
} else {
this.moveHead(frames * -1);
}
} else {
this.moveHead(3);
}
};
ResponseObject.prototype.checkEntryBranching = function (itemID, frames, parentID, theIndex, theType) {
if (!this.isRandomlyChosen(parentID, theIndex)) {
if (this.navForwardDirection) {
this.moveHead(frames);
return(undefined);
}
}
if ((theType == "section") || (theType == "assessment")) {
this.moveHead(3);
return(undefined);
}
if (this.navForwardDirection && (this.getPairValue("seekBranch") != null)) {
if (itemID == this.getPairValue("seekBranch")) {
this.removePair("seekBranch");
this.setPair(itemID + "-backbranch", this.removePair("originBranch"));
this.moveHead(3);
} else {
this.moveHead(frames);
}
} else if ((!this.navForwardDirection) && (this.getPairValue(itemID + "-backbranch") != null)) {
this.setPair("seekbranch", this.removePair(itemID + "-backbranch"));
this.moveHead(3);
} else {
this.moveHead(3);
}
};
ResponseObject.prototype.setPair = function (theName, theValue) {
this.nameValuePairs[theName] = theValue;
};
ResponseObject.prototype.getPairValue = function (theName) {
return(this.nameValuePairs[theName]);
};
ResponseObject.prototype.removePair = function (theName) {
var tempVal = this.nameValuePairs[theName];
this.nameValuePairs[theName] = null;
return(tempVal);
};
ResponseObject.prototype.getParameter = function (theVariableName) {
if (((theVariableName.substring(0, 1) == "$") && (this.getScore != null)) && (this.getScore != undefined)) {
return(this.getScore(theVariableName.substring(1, (theVariableName.length-1))));
}
return(theVariableName);
};
ResponseObject.prototype.setRandomLocations = function (theMovieClip, theSpaceInterval, isHorizontal) {
var movieClips = new Array();
for (name in theMovieClip) {
movieClips.push(name);
}
var i = 0;
while (i < movieClips.length) {
var name = movieClips[i];
if (isHorizontal) {
theMovieClip[name]._x = theMovieClip[name]._x - (theSpaceInterval * ((movieClips.length-1) - i));
} else {
theMovieClip[name]._y = theMovieClip[name]._y - (theSpaceInterval * ((movieClips.length-1) - i));
}
i++;
}
if (this.getPairValue(movieClips[0]) == null) {
var theCount = 0;
while (movieClips.length > 0) {
var chooseRandom = Math.floor(Math.random() * movieClips.length);
this.setPair(movieClips[chooseRandom], theSpaceInterval * theCount);
movieClips.splice(chooseRandom, 1);
theCount++;
}
}
for (name in theMovieClip) {
if (isHorizontal) {
theMovieClip[name]._x = theMovieClip[name]._x + this.getPairValue(name);
} else {
theMovieClip[name]._y = theMovieClip[name]._y + this.getPairValue(name);
}
}
return(false);
};
ResponseObject.prototype.randomizeClipOrderHorizontally = function (theMovieClip, theWidth) {
this.setRandomLocations(theMovieClip, theWidth, true);
return(false);
};
ResponseObject.prototype.randomizeClipOrderVertically = function (theMovieClip, theHeight) {
this.setRandomLocations(theMovieClip, theHeight, false);
return(false);
};
ResponseObject.prototype.completeAnswersXML = function (xmlNode) {
var i = 0;
while (i < xmlNode.childNodes.length) {
if (xmlNode.childNodes[i].nodeName == "response") {
var answerArray = xmlNode.childNodes[i].responseDetails.getResponses();
var j = 1;
while (j < answerArray.length) {
var newNode = this.pXMLTree.createElement("response_value");
var textNode = this.pXMLTree.createTextNode(answerArray[j]);
newNode.appendChild(textNode);
xmlNode.childNodes[i].appendChild(newNode);
j++;
}
} else {
this.completeAnswersXML(xmlNode.childNodes[i]);
}
i++;
}
};
ResponseObject.prototype.createContext = function () {
var str1 = "<generic_identifier><type_label>";
var str2 = "</type_label><identifier_string>";
var str3 = "</identifier_string></generic_identifier>";
var gi1 = "";
if (ipadd != null) {
gi1 = (((str1 + "IP") + str2) + ipadd) + str3;
}
var gi2 = "";
if (browserstring != null) {
gi2 = (((str1 + "Browser") + str2) + browserstring) + str3;
}
var gi3 = "";
if (serverdate != null) {
gi3 = (((str1 + "Server Date") + str2) + serverdate) + str3;
}
var gi4 = "";
if (servertime != null) {
gi4 = (((str1 + "Server Time") + str2) + servertime) + str3;
}
var gi5 = "";
if (countryguess != null) {
gi5 = (((str1 + "Country Guess") + str2) + countryguess) + str3;
}
var gi6 = "";
if (sourceid != null) {
gi6 = (((str1 + "Source ID") + str2) + sourceid) + str3;
}
var gi7 = ((((str1 + "System Language") + str2) + System.capabilities.language) + str3);
var gi8 = ((((str1 + "OS") + str2) + System.capabilities.os) + str3);
var gi9 = ((((((str1 + "Scale") + str2) + theMainTimeline._xscale) + "x") + theMainTimeline._yscale) + str3);
var gi10 = ((((((str1 + "Screen Res") + str2) + System.capabilities.screenResolutionX) + "x") + System.capabilities.screenResolutionY) + str3);
var gi11 = ((((str1 + "Version") + str2) + System.capabilities.version) + str3);
var gi12 = ((((str1 + "Client Time") + str2) + new Date().toString()) + str3);
var gi13 = ((((str1 + "Source URL ") + str2) + _root._url) + str3);
return(((((((((((((("<context>" + gi1) + gi2) + gi3) + gi4) + gi5) + gi6) + gi7) + gi8) + gi9) + gi10) + gi11) + gi12) + gi13) + "</context>");
};
ResponseObject.prototype.setupResponseSending = function () {
this.serverResponse = new XML();
this.attempts = 0;
this.newLineString = "<br/>";
if (this.timeLine.tfNewfield == null) {
this.timeLine.createTextField("tfNewfield", 1, 0, 0, this.timeLine._width / 2, this.timeLine._height);
this.timeLine.tfNewfield.html = true;
this.timeLine.tfNewfield.multiline = true;
this.timeLine.tfNewfield.selectable = true;
this.timeLine.tfNewfield.wordWrap = true;
this.timeLine.tfNewfield.background = true;
this.timeLine.tfNewfield.backgroundColor = 16777215 /* 0xFFFFFF */;
this.timeLine.tfNewfield.border = true;
this.timeLine.tfNewfiled.borderColor = 0;
this.timeLine.tfNewfield.htmlText = "Sending Results To Server Status: " + this.newLineString;
this.timeLine.tfNewfield._visible = false;
}
this.completeAnswersXML(this.getRootNode());
this.xmlsend = new XML((("<result>" + this.pXMLTree.toString()) + this.createContext()) + "</result>");
this.timeLine.tfNewfield.htmlText = (("Attempt " + this.attempts) + this.newLineString) + this.timeLine.tfNewfield.htmlText;
this.timeLine.stop();
if ((this.timeLine.sendURL == null) || (this.timeLine.sendURL == "")) {
this.timeLine.tfNewfield._visible = true;
this.timeLine.tfNewfield.htmlText = ("The sendURL variable was empty - there was nowhere to send your responses. Your responses have not been saved. " + this.newLineString) + this.timeLine.tfNewfield.htmlText;
return(false);
}
this.theAPI.sending = true;
this.resendInterval = setInterval(this, "resend", 1 * 1000);
return(true);
};
ResponseObject.prototype.resend = function () {
clearInterval(_global.resp.resendInterval);
if (this.timeLine.tfNewfield.htmlText.length > 3000) {
this.timeLine.tfNewfield.htmlText = "";
}
this.timeLine.tfNewfield.htmlText = ("Problem sending results. Will continue trying indefinitely. Please check the internet connection and the availabilty of the server. " + this.newLineString) + this.timeLine.tfNewfield.htmlText;
this.attempts++;
if (this.attempts == 3) {
this.timeLine.tfNewfield._visible = true;
}
this.timeLine.tfNewfield.htmlText = (("Attempt " + this.attempts) + this.newLineString) + this.timeLine.tfNewfield.htmlText;
var randTimeString = ("&r=" + getTimer());
if (((this.attempts % 2) == 0) && (this.timeLine.altSendURL != null)) {
this.timeLine.tfNewfield.htmlText = (((("Sending results to " + this.timeLine.altSendURL) + randTimeString) + " ") + this.newLineString) + this.timeLine.tfNewfield.htmlText;
this.xmlsend.sendAndLoad(this.timeLine.altSendURL + randTimeString, this.serverResponse, "POST");
} else {
this.timeLine.tfNewfield.htmlText = (((("Sending results to " + this.timeLine.sendURL) + randTimeString) + " ") + this.newLineString) + this.timeLine.tfNewfield.htmlText;
this.xmlsend.sendAndLoad(this.timeLine.sendURL + randTimeString, this.serverResponse, "POST");
}
this.serverResponse.onLoad = function (isSuccess) {
clearInterval(_global.resp.timeOutID);
if (isSuccess) {
_global.resp.timeLine.tfNewfield.htmlText = ("OnLoad Success " + this.newLineString) + this.timeLine.tfNewfield.htmlText;
_global.resp.timeLine.tfNewfield._visible = false;
_global.resp.theAPI.sending = false;
_global.resp.timeLine.play();
_global.resp.serverResponse.onLoad = null;
} else {
_global.resp.timeLine.tfNewfield.htmlText = ("OnLoad Failure " + this.newLineString) + this.timeLine.tfNewfield.htmlText;
_global.resp.resendInterval = setInterval(_global.resp, "resend", 5 * 1000);
}
};
this.setSendLoadTimeout();
};
ResponseObject.prototype.setSendLoadTimeout = function () {
this.timeOutID = setInterval(this, "timeOut", 30 * 1000);
};
ResponseObject.prototype.timeOut = function () {
clearInterval(this.timeOutID);
this.serverResponse.onLoad = null;
this.timeLine.tfNewfield.htmlText = ("Timeout (30 Seconds) " + this.newLineString) + this.timeLine.tfNewfield.htmlText;
this.resendInterval = setInterval(this, "resend", 5 * 1000);
};
function ButtonController(theNode, groupName, maxNumber, minNumber) {
this.responseNode = theNode;
this.pGroupName = groupName;
this.pMaxNumber = maxNumber;
this.pMinNumber = minNumber;
this.pButtonIDList = new Array();
this.currentAnswers = new Array();
}
function FibController(theNode, groupName) {
this.responseNode = theNode;
this.pGroupName = groupName;
this.textObjs = new Array();
this.minChars = new Array();
this.currentAnswers = new Array();
}
function FlashController(theNode, groupName, theFlashObj) {
this.responseNode = theNode;
this.pGroupName = groupName;
this.flashObj = theFlashObj;
this.currentAnswers = new Array();
}
ResponseObject.prototype.handleItemNav = function (i) {
if (this.pCurrentNode.buttonArray[i][2] == "nextQuestion") {
this.jumpToNextQuestion();
return(true);
}
if (this.pCurrentNode.buttonArray[i][2] == "prevQuestion") {
this.jumpToPrevQuestion();
return(true);
}
return(false);
};
ResponseObject.prototype.jumpToNextQuestion = function () {
this.setForwardDirection(true);
this.exitQuestion();
};
ResponseObject.prototype.jumpToPrevQuestion = function () {
this.setForwardDirection(false);
this.exitQuestion();
};
ResponseObject.prototype.exitQuestion = function () {
this.moveHead(2);
};
ResponseObject.prototype.bypassQuestion = function () {
this.moveHead(3);
};
ResponseObject.prototype.jumpToNextDestination = function () {
if (this.navForwardDirection) {
this.moveHead(1);
} else {
this.moveHead(-7);
}
};
ResponseObject.prototype.majorElementEnter = function (theName, theID) {
if (this.navForwardDirection) {
this.enterMajorElement(theName, theID);
} else {
this.exit();
}
};
ResponseObject.prototype.majorElementExit = function (theName, theID) {
if (this.navForwardDirection) {
this.exit();
} else {
this.enterMajorElement(theName, theID);
}
};
ResponseObject.prototype.setAllowForward = function (booleanVal) {
this.pCurrentNode.allowForward = booleanVal;
};
ResponseObject.prototype.setAllowUnansweredForward = function (booleanVal) {
this.pCurrentNode.allowUnansweredForward = booleanVal;
};
ResponseObject.prototype.setAutoForward = function (booleanVal) {
this.pCurrentNode.autoForward = booleanVal;
};
ResponseObject.prototype.processFullyAnswered = function () {
if (this.pCurrentNode.autoForward) {
if (this.isFullyAnswered()) {
this.jumpToNextQuestion();
return(true);
}
}
this.showHideNextButton();
return(true);
};
ResponseObject.prototype.showHideNextButton = function () {
if (this.pCurrentNode.allowForward) {
if (!this.pCurrentNode.allowUnansweredForward) {
if (this.isFullyAnswered()) {
this.setNextButtonVisible(true);
return(true);
}
this.setNextButtonVisible(false);
return(true);
}
}
};
ResponseObject.prototype.setNextButtonVisible = function (theVisibility) {
var i = 0;
while (i < this.pCurrentNode.buttonArray.length) {
if (this.pCurrentNode.buttonArray[i][1] == "itemnav") {
if (this.pCurrentNode.buttonArray[i][2] == "nextQuestion") {
this.pCurrentNode.buttonArray[i][0].setVisible(theVisibility);
this.timeline[this.pCurrentNode.buttonArray[i][0]._name + "text"]._visible = theVisibility;
return(true);
}
}
i++;
}
};
ResponseObject.prototype.enterVisible = function (thePageName) {
if (myBackground != null) {
myBackground.refreshColors();
}
if ((flashtrack != null) && (flashtrack != "")) {
new XML().load((((flashtrack + "?cPg=") + thePageName) + "&sa=true&rnd=") + random(10000));
}
this.moveHead(1);
this.doAccessibilityUpdate();
};
ResponseObject.prototype.isFullyAnswered = function () {
var i = 0;
while (i < this.pCurrentNode.childNodes.length) {
if (this.pCurrentNode.childNodes[i].nodeName == "response") {
if (this.pCurrentNode.childNodes[i].responseDetails != null) {
if (!this.pCurrentNode.childNodes[i].responseDetails.isFullyAnswered()) {
return(false);
}
}
}
i++;
}
return(true);
};
ResponseObject.prototype.setForwardDirection = function (booleanVal) {
this.navForwardDirection = booleanVal;
};
ResponseObject.prototype.isForwardDirection = function () {
return(this.navForwardDirection);
};
ResponseObject.prototype.registerButton = function (theButton, theGroup, theID, theTabOrder) {
theButton.tabIndex = theTabOrder;
if (theGroup == "itemnav") {
} else {
this.addButtonToResponse(theButton, theGroup, theID);
}
this.addButtonToItem(theButton, theGroup, theID);
};
ResponseObject.prototype.addButtonToItem = function (theButton, theGroup, theID) {
if (this.pCurrentNode.buttonArray == null) {
this.testArray = new Array();
this.pCurrentNode.buttonArray = new Array();
}
var makenewarray = false;
var i = 0;
while (i < this.pCurrentNode.buttonArray.length) {
if (this.pCurrentNode.buttonArray[i][0] == theButton) {
return(true);
}
if (this.pCurrentNode.buttonArray[i] == null) {
makenewarray = true;
}
i++;
}
this.pCurrentNode.buttonArray.push([theButton, theGroup, theID]);
};
ResponseObject.prototype.beenHit = function (theButton) {
var i = 0;
while (i < this.pCurrentNode.buttonArray.length) {
if (this.pCurrentNode.buttonArray[i][0] == theButton) {
if (this.pCurrentNode.buttonArray[i][1] == "itemnav") {
if (this.handleItemNav(i)) {
return(true);
}
} else {
this.recordResponse(this.pCurrentNode.buttonArray[i]);
this.processFullyAnswered();
return(true);
}
}
i++;
}
};
ResponseObject.prototype.registerResponseLabelRenderChoice = function (theGroup, maxChoice, minChoice) {
this.enterResponse(theGroup);
if (this.pCurrentNode.responseDetails == null) {
this.pCurrentNode.responseDetails = new ButtonController(this.pCurrentNode, theGroup, maxChoice, minChoice);
} else {
this.pCurrentNode.responseDetails.pButtonIDList = new Array();
}
this.exit();
};
ResponseObject.prototype.addButtonToResponse = function (theButton, theGroup, theID) {
this.enterResponse(theGroup);
this.pCurrentNode.responseDetails.registerButton(theButton, theID);
this.exit();
};
ResponseObject.prototype.recordResponse = function (buttonInfoArray) {
this.enterResponse(buttonInfoArray[1]);
this.pCurrentNode.responseDetails.beenHit(buttonInfoArray[0], buttonInfoArray[2]);
this.exit();
};
ButtonController.prototype.registerButton = function (theButton, theID) {
if (!this.containsButton(theID)) {
this.pButtonIDList.push([theButton, theID]);
}
if (this.isOn(theID)) {
this.switchOn(theID);
}
};
ButtonController.prototype.containsButton = function (theID) {
var k = 0;
while (k < this.pButtonIDList.length) {
if (this.pButtonIDList[k][1] == theID) {
return(true);
}
k++;
}
return(false);
};
ButtonController.prototype.beenHit = function (theButton, theID) {
if (this.isOn(theID)) {
this.switchOff(theID);
} else if ((this.currentAnswers.length < this.pMaxNumber) | (this.pMaxNumber < 2)) {
var k = 0;
while (k < this.pButtonIDList.length) {
if (this.pButtonIDList[k][1] == theID) {
this.switchOn(this.pButtonIDList[k][1]);
} else if (this.pMaxNumber < 2) {
this.switchOff(this.pButtonIDList[k][1]);
}
k++;
}
}
_global.resp.doAccessibilityUpdate();
};
ButtonController.prototype.isFullyAnswered = function () {
if (this.currentAnswers.length >= this.pMinNumber) {
return(true);
}
return(false);
};
ButtonController.prototype.getResponses = function () {
var returnList = new Array();
returnList.push(this.pGroupName);
var i = 0;
while (i < this.currentAnswers.length) {
returnList.push(this.currentAnswers[i]);
i++;
}
return(returnList);
};
ButtonController.prototype.isOn = function (theID) {
var i = 0;
while (i < this.currentAnswers.length) {
if (this.currentAnswers[i] == theID) {
return(true);
}
i++;
}
return(false);
};
ButtonController.prototype.switchOn = function (theID) {
this.getButton(theID).switchOn();
var i = 0;
while (i < this.currentAnswers.length) {
if (this.currentAnswers[i] == theID) {
return(true);
}
i++;
}
this.currentAnswers.push(theID);
return(true);
};
ButtonController.prototype.switchOff = function (theID) {
this.getButton(theID).switchOff();
var i = 0;
while (i < this.currentAnswers.length) {
if (this.currentAnswers[i] == theID) {
this.currentAnswers.splice(i, 1);
}
i++;
}
};
ButtonController.prototype.getButton = function (theID) {
var k = 0;
while (k < this.pButtonIDList.length) {
if (this.pButtonIDList[k][1] == theID) {
return(this.pButtonIDList[k][0]);
}
k++;
}
return(false);
};
ResponseObject.prototype.registerResponseStrRenderFib = function (theGroup, theTextObj, theMinChars, numbersOnly) {
this.enterResponse(theGroup);
if (this.pCurrentNode.responseDetails == null) {
this.pCurrentNode.responseDetails = new FibController(this.pCurrentNode, theGroup);
} else {
this.pCurrentNode.responseDetails.textObjs = new Array();
}
var responseIndex = this.pCurrentNode.responseDetails.addTextObject(theTextObj, theMinChars);
theTextObj.localGroup = theGroup;
theTextObj.onChanged = function () {
_global.resp.updateFIB(this.localGroup);
};
if (numbersOnly) {
theTextObj.restrict = "0-9\\-.";
}
this.pCurrentNode.responseDetails.updateFIB(responseIndex);
this.exit();
};
ResponseObject.prototype.updateFIB = function (theGroup) {
this.enterResponse(theGroup);
this.pCurrentNode.responseDetails.updateXML();
this.exit();
this.processFullyAnswered();
};
FibController.prototype.addTextObject = function (theTextObj, theMinChars) {
var i = 0;
while (i < this.textObjs.length) {
if (this.textObjs[i] == theTextObj) {
return(i);
}
i++;
}
this.textObjs.push(theTextObj);
if (this.textObjs.length > this.currentAnswers.length) {
this.currentAnswers.push("");
this.minChars.push(theMinChars);
}
return((this.textObjs.length-1));
};
FibController.prototype.updateXML = function () {
var i = 0;
while (i < this.textObjs.length) {
this.currentAnswers[i] = this.textObjs[i].text;
i++;
}
};
FibController.prototype.updateFIB = function () {
var i = 0;
while (i < this.textObjs.length) {
var theValue = this.currentAnswers[i];
if (theValue == null) {
this.textObjs[i].text = "";
} else {
this.textObjs[i].text = theValue;
}
i++;
}
};
FibController.prototype.isFullyAnswered = function () {
var i = 0;
while (i < this.currentAnswers.length) {
if (this.currentAnswers[i].length < this.minChars[i]) {
return(false);
}
i++;
}
return(true);
};
FibController.prototype.getResponses = ButtonController.prototype.getResponses;
ResponseObject.prototype.registerResponseStrRenderFlash = function (theGroup, theFlashObj) {
this.enterResponse(theGroup);
if (this.pCurrentNode.responseDetails == null) {
this.pCurrentNode.responseDetails = new FlashController(this.pCurrentNode, theGroup, theFlashObj);
}
this.pCurrentNode.responseDetails.updateFlash();
this.exit();
};
ResponseObject.prototype.updateFlash = ResponseObject.prototype.updateFIB;
FlashController.prototype.updateXML = function () {
var returnAnswers = this.flashObj.getAnswers();
this.currentAnswers = new Array();
var i = 0;
while (i < returnAnswers.length) {
this.currentAnswers.push(String(returnAnswers[i]));
i++;
}
};
FlashController.prototype.updateFlash = function () {
var returnAnswers = new Array();
var i = 0;
while (i < this.currentAnswers.length) {
returnAnswers.push(this.currentAnswers[i]);
i++;
}
this.flashObj.setAnswers(returnAnswers);
};
FlashController.prototype.isFullyAnswered = function () {
return(this.flashObj.isFullyAnswered());
};
FlashController.prototype.getResponses = ButtonController.prototype.getResponses;
function RPS() {
this.outcomes = new Outcomes();
this.feedbackDisplay = new Array();
}
function qmCleanString(inputString) {
var newString = "";
var i = 0;
while (i < inputString.length) {
var charCode = inputString.charCodeAt(i);
if (((((charCode > 47) && (charCode < 58)) || ((charCode > 64) && (charCode < 91))) || ((charCode > 93) && (charCode < 123))) || (charCode == 45)) {
newString = newString + inputString.charAt(i);
}
i++;
}
if (newString.length > 48) {
newString = newString.substr(-48);
}
return(newString);
}
function getTimeString() {
var mydate_ist = new Date();
var hrs_ist = mydate_ist.getHours();
var mins_ist = mydate_ist.getMinutes();
var seconds = mydate_ist.getSeconds();
if (hrs_ist < 10) {
hrs_ist = "0" + hrs_ist;
}
if (mins_ist < 10) {
mins_ist = "0" + mins_ist;
}
if (seconds < 10) {
seconds = "0" + seconds;
}
return((((hrs_ist + ":") + mins_ist) + ":") + seconds);
}
function ResponseProcessing(xmlNode, responseLists, theDuration, theGlobalResp, theOutcomes) {
this.respconditionArray = new Array();
this.feedbackDisplay = new Array();
var i = 0;
while (i < xmlNode.childNodes.length) {
if (xmlNode.childNodes[i].nodeName == "outcomes") {
theOutcomes.addOutcomes(new Outcomes(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "respcondition") {
this.respconditionArray.push(new Respcondition(xmlNode.childNodes[i]));
}
i++;
}
var i = 0;
while (i < this.respconditionArray.length) {
var possibleArray = this.respconditionArray[i].evaluate(responseLists, theDuration, theOutcomes, theGlobalResp);
this.feedbackDisplay = this.feedbackDisplay.concat(possibleArray);
if (!this.respconditionArray[i].getShouldContinue()) {
break;
}
i++;
}
theOutcomes.truncate();
}
function Respcondition(xmlNode) {
this.setvars = new Array();
this.displays = new Array();
this.branches = new Array();
this.theContinue = false;
this.shouldContinue = false;
if ((xmlNode.attributes.continue.toLowerCase() == "yes") || (xmlNode.attributes.continue.toLowerCase() == "true")) {
this.theContinue = true;
}
var i = 0;
while (i < xmlNode.childNodes.length) {
if (xmlNode.childNodes[i].nodeName == "conditionvar") {
this.condition = new LAand(xmlNode.childNodes[i]);
}
if (xmlNode.childNodes[i].nodeName == "setvar") {
this.setvars.push(new Setvar(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "displayfeedback") {
if (xmlNode.childNodes[i].attributes.feedbacktype == null) {
this.displays.push(xmlNode.childNodes[i].attributes.linkrefid + "Response");
} else {
this.displays.push(xmlNode.childNodes[i].attributes.linkrefid + xmlNode.childNodes[i].attributes.feedbacktype);
}
}
if (xmlNode.childNodes[i].nodeName == "branch") {
this.branches.push(new Branch(xmlNode.childNodes[i]));
}
i++;
}
}
function SuperConstruct(theInstance, xmlNode) {
theInstance.respident = xmlNode.attributes.respident;
if ((xmlNode.attributes.index != null) && (xmlNode.attributes.index != "")) {
theInstance.index = Number(xmlNode.attributes.index);
}
theInstance.textVal = xmlNode.childNodes[0].nodeValue;
if (theInstance.textVal == null) {
theInstance.textVal = "";
}
theInstance.varname = xmlNode.attributes.varname;
}
function TokenAncestor(xmlNode) {
SuperConstruct(this, xmlNode);
}
function TAvarequal(xmlNode) {
SuperConstruct(this, xmlNode);
if ((((xmlNode.attributes.case == "Nocase") || (xmlNode.attributes.case == "nocase")) || (xmlNode.attributes.case == "no")) || (xmlNode.attributes.case == "No")) {
this.caseInsensitive = true;
} else {
this.caseInsensitive = false;
}
}
function TAvarlt(xmlNode) {
SuperConstruct(this, xmlNode);
}
function TAvarlte(xmlNode) {
SuperConstruct(this, xmlNode);
}
function TAvargt(xmlNode) {
SuperConstruct(this, xmlNode);
}
function TAvargte(xmlNode) {
SuperConstruct(this, xmlNode);
}
function TAdurequal(xmlNode) {
SuperConstruct(this, xmlNode);
}
function TAdurlt(xmlNode) {
SuperConstruct(this, xmlNode);
}
function TAdurlte(xmlNode) {
SuperConstruct(this, xmlNode);
}
function TAdurgt(xmlNode) {
SuperConstruct(this, xmlNode);
}
function TAdurgte(xmlNode) {
SuperConstruct(this, xmlNode);
}
function TAvarsubstring(xmlNode) {
SuperConstruct(this, xmlNode);
if ((xmlNode.attributes.case == "Yes") || (xmlNode.attributes.case == "yes")) {
this.caseInsensitive = false;
} else {
this.caseInsensitive = true;
}
}
function TAvarsubset(xmlNode) {
SuperConstruct(this, xmlNode);
if ((xmlNode.attributes.setmatch == "Partial") || (xmlNode.attributes.setmatch == "Partial")) {
this.caseInsensitive = true;
} else {
this.caseInsensitive = false;
}
}
function TAunanswered(xmlNode) {
SuperConstruct(this, xmlNode);
}
function TAother(xmlNode) {
}
function Decvar(xmlNode, theName, theVarType, theMembers) {
if (xmlNode == null) {
this.name = theName;
this.vartype = theVarType;
this.members = theMembers;
} else {
this.name = xmlNode.attributes.varname.toLowerCase();
this.value = xmlNode.attributes.defaultval;
this.members = xmlNode.attributes.members.split(",");
this.cutvalue = xmlNode.attributes.cutvalue;
this.minvalue = xmlNode.attributes.minvalue;
this.maxvalue = xmlNode.attributes.maxvalue;
this.vartype = xmlNode.attributes.vartype;
}
this.ensureValueExists();
}
function Setvar(xmlNode) {
this.varname = xmlNode.attributes.varname.toLowerCase();
this.action = xmlNode.attributes.action;
this.textVal = xmlNode.childNodes[0].nodeValue;
this.respident = xmlNode.attributes.respident;
this.index = xmlNode.attributes.index;
this.sourcevarname = xmlNode.attributes.sourcevarname;
this.correctanswer = xmlNode.attributes.correctanswer;
if ((this.index == null) || (this.index == "")) {
this.index = 0;
}
if (this.varname == null) {
this.varname = "score";
}
if (this.action == null) {
this.action = "Set";
}
}
function Outcomes(xmlNode) {
this.decvars = new Array();
var i = 0;
while (i < xmlNode.childNodes.length) {
if (xmlNode.childNodes[i].nodeName == "decvar") {
this.overwriteDecvar(new Decvar(xmlNode.childNodes[i]));
}
i++;
}
}
function SASuperConstruct(theInstance, xmlNode) {
theInstance.listOfBools = new Array();
var i = 0;
while (i < xmlNode.childNodes.length) {
if ((xmlNode.childNodes[i].nodeName == "not") || (xmlNode.childNodes[i].nodeName == "not_test")) {
theInstance.listOfBools.push(new LAnot(xmlNode.childNodes[i]));
}
if ((xmlNode.childNodes[i].nodeName == "and") || (xmlNode.childNodes[i].nodeName == "and_test")) {
theInstance.listOfBools.push(new LAand(xmlNode.childNodes[i]));
}
if ((xmlNode.childNodes[i].nodeName == "or") || (xmlNode.childNodes[i].nodeName == "or_test")) {
theInstance.listOfBools.push(new LAor(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "varequal") {
theInstance.listOfBools.push(new TAvarequal(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "varlt") {
theInstance.listOfBools.push(new TAvarlt(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "varlte") {
theInstance.listOfBools.push(new TAvarlte(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "vargt") {
theInstance.listOfBools.push(new TAvargt(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "vargte") {
theInstance.listOfBools.push(new TAvargte(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "durequal") {
theInstance.listOfBools.push(new TAdurequal(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "durlt") {
theInstance.listOfBools.push(new TAdurlt(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "durlte") {
theInstance.listOfBools.push(new TAdurlte(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "durgt") {
theInstance.listOfBools.push(new TAdurgt(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "durgte") {
theInstance.listOfBools.push(new TAdurgte(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "varsubstring") {
theInstance.listOfBools.push(new TAvarsubstring(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "varsubset") {
theInstance.listOfBools.push(new TAvarsubset(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "other") {
theInstance.listOfBools.push(new TAother(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "unanswered") {
theInstance.listOfBools.push(new TAunanswered(xmlNode.childNodes[i]));
}
i++;
}
}
function LogicAncestor(xmlNode) {
SASuperConstruct(this, xmlNode);
}
function removeHash(hashString) {
var arrayString = hashString.split(" #");
if (arrayString.length == 1) {
return(hashString);
}
if (arrayString.length > 1) {
var arrayString2 = arrayString[(arrayString.length-1)].split("-");
if (arrayString2.length == 2) {
return(arrayString[0]);
}
return(hashString);
}
}
RPS.prototype.evaluateRPS = function (xmlNode, responseLists, theDuration, theGlobalResp) {
this.outcomes = new Outcomes();
this.feedbackDisplay = new Array();
this.pageid = xmlNode.attributes.pageid;
var i = 0;
while (i < xmlNode.childNodes.length) {
if (xmlNode.childNodes[i].nodeName == "resprocessing") {
this.rp = new ResponseProcessing(xmlNode.childNodes[i], responseLists, theDuration, theGlobalResp, this.outcomes);
this.feedbackDisplay = this.feedbackDisplay.concat(this.rp.getFeedbackDisplay());
}
i++;
}
_global.resp.makeResponsesXML(this.outcomes);
var i = 0;
while (i < this.outcomes.size()) {
if (theGlobalResp.getResponseMechanism().toLowerCase() == "questionmark") {
var scormObjects = new Array();
scormObjects.push("MM_cmiSendInteractionInfo");
scormObjects.push("null");
scormObjects.push("" + getTimeString());
var theID = qmCleanString("" + this.outcomes.getAt(i).getName());
scormObjects.push(theID);
scormObjects.push(theID);
scormObjects.push("performance");
scormObjects.push("null");
scormObjects.push("null");
scormObjects.push("" + this.outcomes.getAt(i).getValue());
scormObjects.push("null");
scormObjects.push("null");
_global.resp.queueFSCommand(scormObjects);
} else if (theGlobalResp.getResponseMechanism().toLowerCase() == "scorm") {
var scormObjects = new Array();
scormObjects.push("LMSSetObjective");
scormObjects.push("" + (Number(this.pageid) + i));
scormObjects.push((("" + _global.resp.getCurrentIdent()) + "-") + this.outcomes.getAt(i).getName());
scormObjects.push("" + this.outcomes.getAt(i).getValue());
_global.resp.queueFSCommand(scormObjects);
scormObjects = new Array();
scormObjects.push("LMSSetInteraction");
scormObjects.push("" + (Number(this.pageid) + i));
scormObjects.push((("" + _global.resp.getCurrentIdent()) + "-") + this.outcomes.getAt(i).getName());
scormObjects.push("" + this.outcomes.getAt(i).getValue());
scormObjects.push("performance");
scormObjects.push("" + getTimeString());
_global.resp.queueFSCommand(scormObjects);
}
i++;
}
};
RPS.prototype.showFeedback = function () {
var skipFeedback = true;
var i = 0;
while (i < this.feedbackDisplay.length) {
_global.debugger.alert("id:" + this.feedbackDisplay[i]);
if (_global.resp.getClipName(this.feedbackDisplay[i]) != null) {
_global.debugger.alert("clip name2:" + _global.resp.getClipName(this.feedbackDisplay[i])._visible);
_global.resp.getClipName(this.feedbackDisplay[i])._visible = true;
_global.resp.getClipName(this.feedbackDisplay[i]).gotoAndPlay(2);
skipFeedback = false;
}
i++;
}
if (skipFeedback) {
_global.resp.moveHead(3);
} else {
_global.resp.enterVisible(_global.resp.getCurrentIdent() + "-feedback");
}
};
RPS.prototype.getOutcomes = function () {
return(this.outcomes);
};
ResponseProcessing.prototype.getFeedbackDisplay = function () {
return(this.feedbackDisplay);
};
Respcondition.prototype.evaluate = function (responseLists, theDuration, theOutcomes, theGlobalResp) {
var evalVal = false;
if (this.condition != null) {
evalVal = this.condition.evaluate(responseLists, theDuration, theGlobalResp);
} else {
evalVal = true;
}
if (evalVal) {
_global.debugger.alert("Evaluates As True:");
theOutcomes.processSetvars(this.setvars, responseLists);
var i = 0;
while (i < this.branches.length) {
this.branches[i].activate();
i++;
}
this.shouldContinue = this.theContinue;
return(this.displays);
}
_global.debugger.alert("Evaluates As False:");
this.shouldContinue = true;
return(new Array());
};
Respcondition.prototype.getShouldContinue = function () {
return(this.shouldContinue);
};
TokenAncestor.prototype.evaluate = function (listOfResps, theDuration, theGlobalResp) {
if ((this.varname != null) && (this.varname != "")) {
return(this.testCondition(this.textVal, theGlobalResp.getScore(this.varname), theDuration));
}
var targetResp = theGlobalResp.getRespList(this.respident);
if (this.index != null) {
if (targetResp.length >= (this.index+1)) {
if (this.testCondition(this.textVal, targetResp[this.index], theDuration)) {
return(true);
}
return(false);
}
} else {
var j = 1;
while (j < targetResp.length) {
if (this.testCondition(this.textVal, targetResp[j], theDuration)) {
return(true);
}
j++;
}
return(false);
}
};
TAvarequal.prototype = new TokenAncestor();
TAvarequal.prototype.testCondition = function (theAnswer, theUserResponse, theDuration) {
return((theUserResponse == theAnswer) || (this.caseInsensitive && (theUserResponse.toLowerCase() == theAnswer.toLowerCase())));
};
TAvarlt.prototype = new TokenAncestor();
TAvarlt.prototype.testCondition = function (theAnswer, theUserResponse, theDuration) {
return(Number(theUserResponse) < Number(theAnswer));
};
TAvarlte.prototype = new TokenAncestor();
TAvarlte.prototype.testCondition = function (theAnswer, theUserResponse, theDuration) {
if ((theUserResponse == null) || (theUserResponse == "")) {
return(false);
}
_global.debugger.alert((("answer=" + Number(theAnswer)) + " userResp=") + Number(theUserResponse));
return(Number(theAnswer) >= Number(theUserResponse));
};
TAvargt.prototype = new TokenAncestor();
TAvargt.prototype.testCondition = function (theAnswer, theUserResponse, theDuration) {
return(Number(theAnswer) < Number(theUserResponse));
};
TAvargte.prototype = new TokenAncestor();
TAvargte.prototype.testCondition = function (theAnswer, theUserResponse, theDuration) {
if ((theUserResponse == null) || (theUserResponse == "")) {
return(false);
}
return(Number(theUserResponse) >= Number(theAnswer));
};
TAdurequal.prototype = new TokenAncestor();
TAdurequal.prototype.testCondition = function (theAnswer, theUserResponse, theDuration) {
return(Number(theDuration) == Number(theAnswer));
};
TAdurlt.prototype = new TokenAncestor();
TAdurlt.prototype.testCondition = function (theAnswer, theUserResponse, theDuration) {
return(Number(theDuration) < Number(theAnswer));
};
TAdurlte.prototype = new TokenAncestor();
TAdurlte.prototype.testCondition = function (theAnswer, theUserResponse, theDuration) {
return(Number(theAnswer) >= Number(theDuration));
};
TAdurgt.prototype = new TokenAncestor();
TAdurgt.prototype.testCondition = function (theAnswer, theUserResponse, theDuration) {
return(Number(theAnswer) < Number(theDuration));
};
TAdurgte.prototype = new TokenAncestor();
TAdurgte.prototype.testCondition = function (theAnswer, theUserResponse, theDuration) {
return(Number(theDuration) >= Number(theAnswer));
};
TAvarsubstring.prototype = new TokenAncestor();
TAvarsubstring.prototype.testCondition = function (theAnswer, theUserResponse, theDuration) {
if ((theUserResponse.indexOf(theAnswer) != -1) || (this.caseInsensitive && (theUserResponse.toLowerCase().indexOf(theAnswer.toLowerCase()) != -1))) {
return(true);
}
return(false);
};
TAvarsubset.prototype = new TokenAncestor();
TAvarsubset.prototype.testCondition = function (theAnswer, theUserResponse, theDuration) {
var arrayOfChoices = theAnswer.split(",");
var i = 0;
while (i < arrayOfChoices.length) {
if ((theUserResponse == arrayOfChoices[i]) || (this.caseInsensitive && (theUserResponse.toLowerCase() == arrayOfChoices[i].toLowerCase()))) {
return(true);
}
i++;
}
return(false);
};
TAunanswered.prototype = new TokenAncestor();
TAunanswered.prototype.evaluate = function (listOfResps, theDuration, theGlobalResp) {
var i = 0;
while (i < listOfResps.length) {
if (listOfResps[i][0] == this.respident) {
if ((listOfResps[i].length < 2) || (listOfResps[i][1] == "")) {
return(true);
}
return(false);
}
i++;
}
};
TAother.prototype.evaluate = function (listOfResps, theDuration, theGlobalResp) {
return(true);
};
Decvar.prototype.ensureValueExists = function () {
if (this.name == null) {
this.name = "score";
}
if (this.vartype == null) {
this.vartype = "Integer";
}
if (this.value == null) {
if (this.vartype == "String") {
this.value = "";
} else if (((this.vartype == "Decimal") || (this.vartype == "Scientific")) || (this.vartype == "Number")) {
this.value = 0;
} else if (this.vartype == "Boolean") {
this.value = false;
} else if (this.vartype == "Enumerated") {
if (this.members.length >= 1) {
this.value = this.members[i];
} else {
this.value = "";
}
} else {
this.value = 0;
this.vartype = "Integer";
}
}
};
Decvar.prototype.cloneLite = function () {
var retDV = new Decvar(null, this.name, this.vartype, this.members);
retDV.setValue(this.value);
return(retDV);
};
Decvar.prototype.getName = function () {
return(this.name);
};
Decvar.prototype.setVarOp = function (numberToAdd, theOperation) {
if ((((this.vartype == "Integer") || (this.vartype == "Scientific")) || (this.vartype == "Decimal")) || (this.vartype == "Number")) {
if (theOperation == "Add") {
this.setValue(Number(this.value) + Number(numberToAdd));
} else if (theOperation == "Subtract") {
this.setValue(Number(this.value) - Number(numberToAdd));
} else if (theOperation == "Multiply") {
this.setValue(Number(this.value) * Number(numberToAdd));
} else if (theOperation == "Divide") {
this.setValue(Number(this.value) / Number(numberToAdd));
}
} else if (this.vartype == "Boolean") {
if ((((numberToAdd == "true") || (numberToAdd == "True")) || (numberToAdd == "TRUE")) || (numberToAdd == true)) {
this.tempBool = true;
} else {
this.tempBool = false;
}
if (theOperation == "Add") {
this.setValue((this.value + tempBool) % 2);
} else if (theOperation == "Subtract") {
this.setValue((this.value - tempBool) % 2);
} else if (theOperation == "Multiply") {
this.setValue((this.value * tempBool) % 2);
} else if (theOperation == "Divide") {
this.setValue((this.value / tempBool) % 2);
}
} else if (this.vartype == "String") {
if (theOperation == "Add") {
this.setValue(("" + this.value) + numberToAdd);
}
}
};
Decvar.prototype.setValue = function (theValue) {
if ((((this.vartype == "Integer") || (this.vartype == "Scientific")) || (this.vartype == "Decimal")) || (this.vartype == "Number")) {
this.value = Number(theValue);
} else if (this.vartype == "Boolean") {
if ((((theValue == "true") || (theValue == "True")) || (theValue == "TRUE")) || (theValue == true)) {
this.value = true;
} else if ((((theValue == "false") || (theValue == "False")) || (theValue == "FALSE")) || (theValue == false)) {
this.value = false;
}
} else if (this.vartype == "Enumerated") {
var i = 0;
while (i < this.members.length) {
if (this.members[i] == theValue) {
this.value = theValue;
}
i++;
}
} else {
this.value = theValue;
}
};
Decvar.prototype.truncate = function () {
if (((this.vartype == "Integer") || (this.vartype == "Scientific")) || (this.vartype == "Decimal")) {
if (this.vartype == "Integer") {
this.value = Math.floor(this.value);
}
if ((this.minvalue != null) && (this.value < this.minvalue)) {
this.value = this.minvalue;
}
if ((this.maxvalue != null) && (this.value > this.maxvalue)) {
this.value = this.maxvalue;
}
}
};
Decvar.prototype.getValue = function () {
return(this.value);
};
Decvar.prototype.getAsNode = function (treeToUse) {
var newNode = treeToUse.createElement("score");
newNode.attributes.varname = this.name;
newNode.attributes.vartype = this.vartype;
var textNode = treeToUse.createTextNode(this.value);
newNode.appendChild(textNode);
return(newNode);
};
Setvar.prototype.getVarname = function () {
return(this.varname);
};
Setvar.prototype.getVarValue = function () {
if ((this.respident != null) && (this.respident != "")) {
if (((this.index == null) || (this.index == "")) || (this.index == 0)) {
this.index = 1;
}
return(removeHash(_global.resp.getRespList(this.respident)[this.index]));
}
if ((this.sourcevarname != null) && (this.sourcevarname != "")) {
return(_global.resp.getScore(this.sourcevarname));
}
return(this.textVal);
};
Setvar.prototype.process = function (aDecvar, responseLists) {
if (this.action == "ScoreSequence") {
aDecvar.setValue(this.scoreSequenceQuestion(false));
}
if (this.action == "ScoreSequencePartialCredit") {
aDecvar.setValue(this.scoreSequenceQuestion(true));
}
if (this.action == "ScoreMatching") {
aDecvar.setValue(this.scoreMatchingQuestion(false));
}
if (this.action == "ScoreMatchingPartialCredit") {
aDecvar.setValue(this.scoreMatchingQuestion(true));
} else if (this.action == "Set") {
aDecvar.setValue(this.getVarValue());
} else {
aDecvar.setVarOp(this.getVarValue(), this.action);
}
};
Setvar.prototype.scoreSequenceQuestion = function (allowPartialCredit) {
var maxPoints = Number(this.textVal);
var answersArrayAndResp = _global.resp.getRespList(this.respident);
var answersArray = new Array();
var i = 1;
while (i < answersArrayAndResp.length) {
answersArray.push(answersArrayAndResp[i]);
i++;
}
var correctAnswersArray = this.correctanswer.split(",");
if (!allowPartialCredit) {
var i = 0;
while (i < correctAnswersArray.length) {
if (answersArray[i] != correctAnswersArray[i]) {
return(0);
}
i++;
}
return(maxPoints);
}
var goodScore = 0;
var badScore = 0;
var totalPoss = 0;
var i = 0;
while (i < (correctAnswersArray.length-1)) {
var j = (i+1);
while (j < correctAnswersArray.length) {
totalPoss++;
if (answersArray.Contains(correctAnswersArray[i]) && (answersArray.Contains(correctAnswersArray[j]))) {
var k = 0;
while (k < answersArray.length) {
if (answersArray[k] == correctAnswersArray[i]) {
goodScore++;
break;
}
if (answersArray[k] == correctAnswersArray[j]) {
badScore++;
break;
}
k++;
}
}
j++;
}
i++;
}
var score = (((goodScore - badScore) / totalPoss) * maxPoints);
if (score < 0) {
score = 0;
} else {
score = Math.round(score);
}
return(score);
};
Setvar.prototype.scoreMatchingQuestion = function (allowPartialCredit) {
var maxPoints = Number(this.textVal);
var answersArrayAndResp = _global.resp.getRespList(this.respident);
var answersArray = new Array();
var i = 1;
while (i < answersArrayAndResp.length) {
answersArray.push(answersArrayAndResp[i]);
i++;
}
var correctAnswersArray = this.correctanswer.split(",");
if (!allowPartialCredit) {
var i = 0;
while (i < correctAnswersArray.length) {
if (answersArray[i] != correctAnswersArray[i]) {
return(0);
}
i++;
}
return(maxPoints);
}
var goodScore = 0;
var badScore = 0;
var i = 0;
while (i < correctAnswersArray.length) {
if (answersArray[i] == correctAnswersArray[i]) {
goodScore++;
} else {
badScore++;
}
i++;
}
var totalPoss = (goodScore + badScore);
var score = ((goodScore / totalPoss) * maxPoints);
if (score < 0) {
score = 0;
} else {
score = Math.round(score);
}
return(score);
};
Array.prototype.Contains = function (value) {
var i = 0;
while (i < this.length) {
if (this[i] == value) {
return(true);
}
i++;
}
return(false);
};
Outcomes.prototype.getValue = function (theName) {
var forceLowerCase = theName.toLowerCase();
var i = 0;
while (i < this.decvars.length) {
if (this.decvars[i].getName() == forceLowerCase) {
return(this.decvars[i].getValue());
}
i++;
}
};
Outcomes.prototype.processSetvars = function (someSetvars, responseLists) {
var i = 0;
while (i < this.decvars.length) {
var j = 0;
while (j < someSetvars.length) {
if (this.decvars[i].getName() == someSetvars[j].getVarname()) {
someSetvars[j].process(this.decvars[i], responseLists);
}
j++;
}
i++;
}
};
Outcomes.prototype.truncate = function () {
var i = 0;
while (i < this.decvars.length) {
this.decvars[i].truncate();
i++;
}
};
Outcomes.prototype.overwriteDecvar = function (newDecvar) {
var i = 0;
while (i < this.decvars.length) {
if (this.decvars[i].getName() == newDecvar.getName()) {
this.decvars[i] = newDecvar;
return(true);
}
i++;
}
this.decvars.push(newDecvar);
return(true);
};
Outcomes.prototype.addOutcomes = function (anotherOutcomes) {
var j = 0;
while (j < anotherOutcomes.decvars.length) {
this.incorporateDecvar(anotherOutcomes.decvars[j]);
j++;
}
};
Outcomes.prototype.incorporateDecvar = function (theDecvar) {
var i = 0;
while (i < this.decvars.length) {
if (this.decvars[i].getName() == theDecvar.getName()) {
this.decvars[i].setVarOp(theDecvar.getValue(), "Add");
return(true);
}
i++;
}
this.decvars.push(theDecvar.cloneLite());
return(false);
};
Outcomes.prototype.size = function () {
return(this.decvars.length);
};
Outcomes.prototype.getAt = function (theIndex) {
return(this.decvars[theIndex]);
};
ResponseObject.prototype.makeResponsesXML = function (someOutcomes) {
var i = 0;
while (i < this.pCurrentNode.childNodes.length) {
if (this.pCurrentNode.childNodes[i].nodeName == "outcomes") {
this.pCurrentNode.childNodes[i].removeNode();
}
i++;
}
var newNode = this.pXMLTree.createElement("outcomes");
var i = 0;
while (i < someOutcomes.decvars.length) {
newNode.appendChild(someOutcomes.decvars[i].getAsNode(this.pXMLTree));
i++;
}
this.pCurrentNode.appendChild(newNode);
};
LogicAncestor.prototype.evaluate = function (responseLists, theDuration, theGlobalResp) {
return(true);
};
LAnot = function (xmlNode) {
SASuperConstruct(this, xmlNode);
};
LAnot.prototype = new LogicAncestor();
LAnot.prototype.evaluate = function (responseLists, theDuration, theGlobalResp) {
var i = 0;
while (i < this.listOfBools.length) {
if (this.listOfBools[i].evaluate(responseLists, theDuration, theGlobalResp)) {
return(false);
}
i++;
}
return(true);
};
LAor = function (xmlNode) {
SASuperConstruct(this, xmlNode);
};
LAor.prototype = new LogicAncestor();
LAor.prototype.evaluate = function (responseLists, theDuration, theGlobalResp) {
var i = 0;
while (i < this.listOfBools.length) {
if (this.listOfBools[i].evaluate(responseLists, theDuration, theGlobalResp)) {
return(true);
}
i++;
}
return(false);
};
LAand = function (xmlNode) {
SASuperConstruct(this, xmlNode);
};
LAand.prototype = new LogicAncestor();
LAand.prototype.evaluate = function (responseLists, theDuration, theGlobalResp) {
var i = 0;
while (i < this.listOfBools.length) {
if (this.listOfBools[i].evaluate(responseLists, theDuration, theGlobalResp)) {
} else {
return(false);
}
i++;
}
return(true);
};
ResponseObject.prototype.getSectionItemOutcomes = function (theNode) {
if (theNode.nodeName == "item_result") {
return(theNode.resProcessing.getOutcomes());
}
theNode.outcomes = new Outcomes();
var myChildNodes = theNode.childNodes;
var i = 0;
while (i < myChildNodes.length) {
if (((myChildNodes[i].nodeName == "item_result") || (myChildNodes[i].nodeName == "section_result")) || (myChildNodes[i].nodeName == "assessment_result")) {
theNode.outcomes.addOutcomes(this.getSectionItemOutcomes(myChildNodes[i]));
}
i++;
}
return(theNode.outcomes);
};
ResponseObject.prototype.getScore = function (theVarname) {
var pTempNode = this.getRootNode();
var respCompareArray = theVarname.split(".");
var j = 0;
while (j < (respCompareArray.length-1)) {
var i = 0;
while (i < pTempNode.childNodes.length) {
if (pTempNode.childNodes[i].attributes.ident_ref == respCompareArray[j]) {
pTempNode = pTempNode.childNodes[i];
break;
}
if (i == (pTempNode.childNodes.length-1)) {
j = (respCompareArray.length-1);
}
i++;
}
j++;
}
return(this.getSectionItemOutcomes(pTempNode).getValue(respCompareArray[(respCompareArray.length-1)]));
};
ResponseObject.prototype.getRespList = function (therespident) {
var respCompareArray = therespident.split(".");
if (respCompareArray.length == 1) {
var pTempNode = this.pCurrentNode;
} else {
var pTempNode = this.getRootNode();
}
var j = 0;
while (j < (respCompareArray.length-1)) {
var i = 0;
while (i < pTempNode.childNodes.length) {
if (pTempNode.childNodes[i].attributes.ident_ref == respCompareArray[j]) {
pTempNode = pTempNode.childNodes[i];
break;
}
i++;
}
j++;
}
var listOfResps = this.getItemResponses(pTempNode);
var respCompare = respCompareArray[(respCompareArray.length-1)];
var i = 0;
while (i < listOfResps.length) {
if (listOfResps[i][0] == respCompare) {
return(listOfResps[i]);
}
i++;
}
_global.debugger.alert((("respident not found - " + therespident) + " ") + this.getRootNode().toString());
return(null);
};
ResponseObject.prototype.getItemResponses = function (whichNode) {
var itemResponses = new Array();
var i = 0;
while (i < whichNode.childNodes.length) {
if (whichNode.childNodes[i].nodeName == "response") {
if (whichNode.childNodes[i].responseDetails != null) {
itemResponses.push(whichNode.childNodes[i].responseDetails.getResponses());
}
}
i++;
}
return(itemResponses);
};
ResponseObject.prototype.setResponseProcessingString = function (xmlString) {
if ((xmlString == "") || (xmlString == null)) {
return(undefined);
}
if (this.pCurrentNode.resProcessing == null) {
if (this.assembledXmlString == null) {
this.assembledXmlString = "";
}
this.assembledXmlString = this.assembledXmlString + xmlString;
}
};
ResponseObject.prototype.concludeResponseProcessingString = function (nothing) {
if (this.pCurrentNode.resProcessing == null) {
this.pCurrentNode.resProcessing = new RPS();
this.pCurrentNode.resProcessing.theXML = new XML(this.assembledXmlString);
this.assembledXmlString = null;
}
this.pCurrentNode.resProcessing.evaluateRPS(this.pCurrentNode.resProcessing.theXML.firstChild, this.getItemResponses(this.pCurrentNode), this.getTimeElapsed(), this);
};
ResponseObject.prototype.showFeedback = function () {
if (this.pCurrentNode.resProcessing == null) {
_global.resp.moveHead(3);
} else {
this.pCurrentNode.resProcessing.showFeedback();
}
};
ResponseObject.prototype.clearFeedback = function () {
this.feedbackrefs = new Array();
this.feedbackmovies = new Array();
};
ResponseObject.prototype.registerFeedback = function (feedbackID, movieclip) {
this.feedbackrefs.push(feedbackID);
this.feedbackmovies.push(movieclip);
movieclip.stop();
movieclip._visible = false;
};
ResponseObject.prototype.getClipName = function (feedbackID) {
var i = 0;
while (i < this.feedbackrefs.length) {
if (this.feedbackrefs[i] == feedbackID) {
return(this.feedbackmovies[i]);
}
i++;
}
};
ResponseObject.prototype.populateMatvar = function (theTextBox, varString, theIndex, isrespident) {
if (isrespident) {
if ((theIndex == null) || (theIndex == 0)) {
theIndex = 1;
}
theTextBox.text = removeHash(this.getRespList(varString)[theIndex]);
} else {
theTextBox.text = this.getScore(varString);
}
};
function Magnifier(aClip) {
this.theClip = aClip;
if (aClip._parent == null) {
this.theClip._magCenterX = Stage.width / 2;
this.theClip._magCenterY = Stage.height / 2;
this.theClip._frameWidth = Stage.width;
this.theClip._frameHeight = Stage.height;
} else {
this.theClip._magCenterX = this.theClip._width / 2;
this.theClip._magCenterY = this.theClip._height / 2;
this.theClip._frameWidth = this.theClip._width;
this.theClip._frameHeight = this.theClip._height;
}
this.theClip._frameX = this.theClip._x;
this.theClip._frameY = this.theClip._y;
this.placeCenter();
Key.addListener(this);
}
Magnifier.prototype.onKeyDown = function () {
if (Selection.getCaretIndex() == -1) {
if (Key.isDown(90)) {
this.theClip._magCenterX = this.theClip._magCenterX - (this.theClip._xscale / 5);
this.placeCenter();
this.runCorrector();
} else if (Key.isDown(81)) {
this.theClip._magCenterY = this.theClip._magCenterY - (this.theClip._yscale / 5);
this.placeCenter();
this.runCorrector();
} else if (Key.isDown(88)) {
this.theClip._magCenterX = this.theClip._magCenterX + (this.theClip._xscale / 5);
this.placeCenter();
this.runCorrector();
} else if (Key.isDown(65)) {
this.theClip._magCenterY = this.theClip._magCenterY + (this.theClip._yscale / 5);
this.placeCenter();
this.runCorrector();
}
if (Key.isDown(16)) {
if (Key.isDown(187) | Key.isDown(107)) {
if (this.theClip._xscale < 1000) {
this.scale(1.05);
this.placeCenter();
this.runCorrector();
}
} else if (Key.isDown(189) | Key.isDown(109)) {
if (this.theClip._xscale > 100) {
this.scale(0.95238);
this.placeCenter();
this.runCorrector();
}
}
}
}
};
Magnifier.prototype.runCorrector = function () {
var update = false;
if ((this.theClip._frameWidth / 2) > (this.theClip._width - this.theClip._magCenterX)) {
this.theClip._magCenterX = this.theClip._width - (this.theClip._frameWidth / 2);
update = true;
}
if ((this.theClip._frameWidth / 2) > this.theClip._magCenterX) {
this.theClip._magCenterX = this.theClip._frameWidth / 2;
update = true;
}
if ((this.theClip._frameHeight / 2) > this.theClip._magCenterY) {
this.theClip._magCenterY = this.theClip._frameHeight / 2;
update = true;
}
if ((this.theClip._frameHeight / 2) > (this.theClip._height - this.theClip._magCenterY)) {
this.theClip._magCenterY = this.theClip._height - (this.theClip._frameHeight / 2);
update = true;
}
if (update) {
this.placeCenter();
}
};
Magnifier.prototype.scale = function (theScale) {
this.theClip._xscale = this.theClip._xscale * theScale;
this.theClip._magCenterX = this.theClip._magCenterX * theScale;
this.theClip._yscale = this.theClip._yscale * theScale;
this.theClip._magCenterY = this.theClip._magCenterY * theScale;
};
Magnifier.prototype.placeCenter = function () {
this.theClip._x = (this.theClip._frameX + (this.theClip._frameWidth / 2)) - this.theClip._magCenterX;
this.theClip._y = (this.theClip._frameY + (this.theClip._frameHeight / 2)) - this.theClip._magCenterY;
};
var myMag = new Magnifier(this);
this.resp = new ResponseObject(this, "html");
_global.resp = this.resp;
gotoAndPlay(this._currentFrame + 4);
Frame 11
resp.checkEntryBranching("The NG Quiz 1 #2127777008-1", 840, "NA", 0);
Frame 14
resp.majorElementEnter("assessment_result", "The NG Quiz 1 #2127777008-1");
resp.jumpToNextDestination();
Frame 15
this.clip3008._accProps = new Object();
this.clip3008._accProps.forceSimple = true;
this.clip3008._accProps.name = "";
this.clip3008.tabIndex = 3008;
this.clip3008.tabEnabled = false;
this.clip3008.tabChildren = true;
gotoAndPlay(this._currentFrame + 3);
Frame 18
resp.startStopTimer(-1);
Frame 19
_global.resp.bypassQuestion();
Frame 20
resp.checkTimeAllowed(false);
stop();
Frame 22
resp.jumpToNextDestination();
Frame 23
resp.checkEntryBranching("Instructions", 56, "The NG Quiz 1 #2127777008-1", 0);
Frame 26
resp.majorElementEnter("section_result", "Instructions");
resp.jumpToNextDestination();
Frame 27
gotoAndPlay(this._currentFrame + 3);
Frame 30
resp.startStopTimer(-1);
Frame 31
_global.resp.bypassQuestion();
Frame 32
resp.checkTimeAllowed(false);
stop();
Frame 34
resp.jumpToNextDestination();
Frame 35
resp.checkEntryBranching("InstructionsPage", 28, "Instructions", 0);
Frame 38
resp.majorElementEnter("item_result", "InstructionsPage");
resp.jumpToNextDestination();
Frame 39
gotoAndPlay(this._currentFrame + 3);
Frame 42
resp.startStopTimer(-1);
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3020" in Frame 43
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 43
_global.resp.registerButton(this.button3020, "itemnav", "nextQuestion", 3020);
resp.setAllowUnansweredForward(false);
resp.showHideNextButton();
_global.resp.enterVisible("InstructionsPage-item-presentation");
Frame 44
resp.checkTimeAllowed(false);
stop();
Frame 46
resp.setResponseProcessingString("<ops pageid='0'></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 47
gotoAndPlay(this._currentFrame + 3);
Frame 50
resp.stopStartTimer(-1);
Frame 51
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3054" in Frame 51
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3025";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3054";
}
Frame 52
resp.checkTimeAllowed(true);
stop();
Frame 54
resp.jumpToNextDestination();
Frame 55
gotoAndPlay(this._currentFrame + 3);
Frame 58
resp.jumpToNextDestination();
Frame 59
resp.checkExitBranching("InstructionsPage", 28, "Instructions", 0);
Frame 62
resp.majorElementExit("item_result", "InstructionsPage");
resp.jumpToNextDestination();
Frame 63
gotoAndPlay(this._currentFrame + 3);
Frame 66
resp.stopStartTimer(-1);
Frame 67
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3056" in Frame 67
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3055";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3056";
}
Frame 68
resp.checkTimeAllowed(true);
stop();
Frame 70
resp.jumpToNextDestination();
Frame 71
gotoAndPlay(this._currentFrame + 3);
Frame 74
resp.jumpToNextDestination();
Frame 75
resp.checkExitBranching("Instructions", 56, "The NG Quiz 1 #2127777008-1", 0);
Frame 78
resp.majorElementExit("section_result", "Instructions");
resp.jumpToNextDestination();
Frame 79
resp.checkEntryBranching("2127777008-1The NG Quiz 1", 364, "The NG Quiz 1 #2127777008-1", 1);
Frame 82
resp.majorElementEnter("section_result", "2127777008-1The NG Quiz 1");
resp.jumpToNextDestination();
Frame 83
gotoAndPlay(this._currentFrame + 3);
Frame 86
resp.startStopTimer(-1);
Frame 87
_global.resp.bypassQuestion();
Frame 88
resp.checkTimeAllowed(false);
stop();
Frame 90
resp.jumpToNextDestination();
Frame 91
resp.checkEntryBranching("IntroductionPage", 28, "2127777008-1The NG Quiz 1", 0);
Frame 94
resp.majorElementEnter("item_result", "IntroductionPage");
resp.jumpToNextDestination();
Frame 95
gotoAndPlay(this._currentFrame + 3);
Frame 98
resp.startStopTimer(-1);
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3057" in Frame 99
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 99
_global.resp.registerButton(this.button3057, "itemnav", "nextQuestion", 3057);
resp.setAutoForward(true);
resp.showHideNextButton();
_global.resp.enterVisible("IntroductionPage-item-presentation");
Frame 100
resp.checkTimeAllowed(false);
stop();
Frame 102
resp.setResponseProcessingString("<ops pageid='0'></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 103
gotoAndPlay(this._currentFrame + 3);
Frame 106
resp.stopStartTimer(-1);
Frame 107
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3066" in Frame 107
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3065";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3066";
}
Frame 108
resp.checkTimeAllowed(true);
stop();
Frame 110
resp.jumpToNextDestination();
Frame 111
gotoAndPlay(this._currentFrame + 3);
Frame 114
resp.jumpToNextDestination();
Frame 115
resp.checkExitBranching("IntroductionPage", 28, "2127777008-1The NG Quiz 1", 0);
Frame 118
resp.majorElementExit("item_result", "IntroductionPage");
resp.jumpToNextDestination();
Frame 119
resp.checkEntryBranching("Question Q1", 28, "2127777008-1The NG Quiz 1", 1);
Frame 122
resp.majorElementEnter("item_result", "Question Q1");
resp.jumpToNextDestination();
Frame 123
gotoAndPlay(this._currentFrame + 3);
Frame 126
resp.startStopTimer(-1);
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3076" in Frame 127
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3067";
_theUpRoll = "clip3071";
_theDownNormal = "clip3071";
_theDownRoll = "clip3071";
_listener = "_global.resp";
_accessText = "back";
}
Frame 127
_global.resp.registerButton(this.button3076, "itemnav", "prevQuestion", 3076);
_global.resp.registerButton(this.button3077, "itemnav", "nextQuestion", 3077);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 2127777008-2", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q1-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3077" in Frame 127
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 128
resp.checkTimeAllowed(false);
stop();
Frame 130
resp.setResponseProcessingString("<ops pageid='0'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><not><varequal respident='questiontitle # 2127777008-2'>a</varequal></not><not><varequal respident='questiontitle # 2127777008-2'>b</varequal></not><not><varequal respident='questiontitle # 2127777008-2'>c</varequal></not><not><varequal respident='questiontitle # 2127777008-2'>d</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 131
gotoAndPlay(this._currentFrame + 3);
Frame 134
resp.stopStartTimer(-1);
Frame 135
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3103" in Frame 135
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3102";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3103";
}
Frame 136
resp.checkTimeAllowed(true);
stop();
Frame 138
resp.jumpToNextDestination();
Frame 139
gotoAndPlay(this._currentFrame + 3);
Frame 142
resp.jumpToNextDestination();
Frame 143
resp.checkExitBranching("Question Q1", 28, "2127777008-1The NG Quiz 1", 1);
Frame 146
resp.majorElementExit("item_result", "Question Q1");
resp.jumpToNextDestination();
Frame 147
resp.checkEntryBranching("Question Q2", 28, "2127777008-1The NG Quiz 1", 2);
Frame 150
resp.majorElementEnter("item_result", "Question Q2");
resp.jumpToNextDestination();
Frame 151
gotoAndPlay(this._currentFrame + 3);
Frame 154
resp.startStopTimer(-1);
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3104" in Frame 155
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3067";
_theUpRoll = "clip3071";
_theDownNormal = "clip3071";
_theDownRoll = "clip3071";
_listener = "_global.resp";
_accessText = "back";
}
Frame 155
_global.resp.registerButton(this.button3104, "itemnav", "prevQuestion", 3104);
_global.resp.registerButton(this.button3105, "itemnav", "nextQuestion", 3105);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 2127777008-3", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q2-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3105" in Frame 155
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 156
resp.checkTimeAllowed(false);
stop();
Frame 158
resp.setResponseProcessingString("<ops pageid='1'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><not><varequal respident='questiontitle # 2127777008-3'>a</varequal></not><varequal respident='questiontitle # 2127777008-3'>b</varequal><not><varequal respident='questiontitle # 2127777008-3'>c</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 159
gotoAndPlay(this._currentFrame + 3);
Frame 162
resp.stopStartTimer(-1);
Frame 163
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3116" in Frame 163
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3115";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3116";
}
Frame 164
resp.checkTimeAllowed(true);
stop();
Frame 166
resp.jumpToNextDestination();
Frame 167
gotoAndPlay(this._currentFrame + 3);
Frame 170
resp.jumpToNextDestination();
Frame 171
resp.checkExitBranching("Question Q2", 28, "2127777008-1The NG Quiz 1", 2);
Frame 174
resp.majorElementExit("item_result", "Question Q2");
resp.jumpToNextDestination();
Frame 175
resp.checkEntryBranching("Question Q3", 28, "2127777008-1The NG Quiz 1", 3);
Frame 178
resp.majorElementEnter("item_result", "Question Q3");
resp.jumpToNextDestination();
Frame 179
gotoAndPlay(this._currentFrame + 3);
Frame 182
resp.startStopTimer(-1);
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3117" in Frame 183
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3067";
_theUpRoll = "clip3071";
_theDownNormal = "clip3071";
_theDownRoll = "clip3071";
_listener = "_global.resp";
_accessText = "back";
}
Frame 183
_global.resp.registerButton(this.button3117, "itemnav", "prevQuestion", 3117);
_global.resp.registerButton(this.button3118, "itemnav", "nextQuestion", 3118);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 2127777008-4", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q3-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3118" in Frame 183
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 184
resp.checkTimeAllowed(false);
stop();
Frame 186
resp.setResponseProcessingString("<ops pageid='2'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><not><varequal respident='questiontitle # 2127777008-4'>a</varequal></not><not><varequal respident='questiontitle # 2127777008-4'>b</varequal></not><varequal respident='questiontitle # 2127777008-4'>c</varequal><not><varequal respident='questiontitle # 2127777008-4'>d</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 187
gotoAndPlay(this._currentFrame + 3);
Frame 190
resp.stopStartTimer(-1);
Frame 191
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3131" in Frame 191
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3130";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3131";
}
Frame 192
resp.checkTimeAllowed(true);
stop();
Frame 194
resp.jumpToNextDestination();
Frame 195
gotoAndPlay(this._currentFrame + 3);
Frame 198
resp.jumpToNextDestination();
Frame 199
resp.checkExitBranching("Question Q3", 28, "2127777008-1The NG Quiz 1", 3);
Frame 202
resp.majorElementExit("item_result", "Question Q3");
resp.jumpToNextDestination();
Frame 203
resp.checkEntryBranching("Question Q4", 28, "2127777008-1The NG Quiz 1", 4);
Frame 206
resp.majorElementEnter("item_result", "Question Q4");
resp.jumpToNextDestination();
Frame 207
gotoAndPlay(this._currentFrame + 3);
Frame 210
resp.startStopTimer(-1);
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3132" in Frame 211
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3067";
_theUpRoll = "clip3071";
_theDownNormal = "clip3071";
_theDownRoll = "clip3071";
_listener = "_global.resp";
_accessText = "back";
}
Frame 211
_global.resp.registerButton(this.button3132, "itemnav", "prevQuestion", 3132);
_global.resp.registerButton(this.button3133, "itemnav", "nextQuestion", 3133);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 2127777008-5", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q4-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3133" in Frame 211
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 212
resp.checkTimeAllowed(false);
stop();
Frame 214
resp.setResponseProcessingString("<ops pageid='3'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><not><varequal respident='questiontitle # 2127777008-5'>a</varequal></not><varequal respident='questiontitle # 2127777008-5'>b</varequal><not><varequal respident='questiontitle # 2127777008-5'>c</varequal></not><not><varequal respident='questiontitle # 2127777008-5'>d</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 215
gotoAndPlay(this._currentFrame + 3);
Frame 218
resp.stopStartTimer(-1);
Frame 219
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3146" in Frame 219
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3145";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3146";
}
Frame 220
resp.checkTimeAllowed(true);
stop();
Frame 222
resp.jumpToNextDestination();
Frame 223
gotoAndPlay(this._currentFrame + 3);
Frame 226
resp.jumpToNextDestination();
Frame 227
resp.checkExitBranching("Question Q4", 28, "2127777008-1The NG Quiz 1", 4);
Frame 230
resp.majorElementExit("item_result", "Question Q4");
resp.jumpToNextDestination();
Frame 231
resp.checkEntryBranching("Question Q5", 28, "2127777008-1The NG Quiz 1", 5);
Frame 234
resp.majorElementEnter("item_result", "Question Q5");
resp.jumpToNextDestination();
Frame 235
gotoAndPlay(this._currentFrame + 3);
Frame 238
resp.startStopTimer(-1);
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3147" in Frame 239
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3067";
_theUpRoll = "clip3071";
_theDownNormal = "clip3071";
_theDownRoll = "clip3071";
_listener = "_global.resp";
_accessText = "back";
}
Frame 239
_global.resp.registerButton(this.button3147, "itemnav", "prevQuestion", 3147);
_global.resp.registerButton(this.button3148, "itemnav", "nextQuestion", 3148);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 2127777008-6", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q5-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3148" in Frame 239
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 240
resp.checkTimeAllowed(false);
stop();
Frame 242
resp.setResponseProcessingString("<ops pageid='4'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><not><varequal respident='questiontitle # 2127777008-6'>a</varequal></not><not><varequal respident='questiontitle # 2127777008-6'>b</varequal></not><varequal respident='questiontitle # 2127777008-6'>c</varequal><not><varequal respident='questiontitle # 2127777008-6'>d</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 243
gotoAndPlay(this._currentFrame + 3);
Frame 246
resp.stopStartTimer(-1);
Frame 247
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3161" in Frame 247
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3160";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3161";
}
Frame 248
resp.checkTimeAllowed(true);
stop();
Frame 250
resp.jumpToNextDestination();
Frame 251
gotoAndPlay(this._currentFrame + 3);
Frame 254
resp.jumpToNextDestination();
Frame 255
resp.checkExitBranching("Question Q5", 28, "2127777008-1The NG Quiz 1", 5);
Frame 258
resp.majorElementExit("item_result", "Question Q5");
resp.jumpToNextDestination();
Frame 259
resp.checkEntryBranching("Question Q6", 28, "2127777008-1The NG Quiz 1", 6);
Frame 262
resp.majorElementEnter("item_result", "Question Q6");
resp.jumpToNextDestination();
Frame 263
gotoAndPlay(this._currentFrame + 3);
Frame 266
resp.startStopTimer(-1);
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3162" in Frame 267
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3067";
_theUpRoll = "clip3071";
_theDownNormal = "clip3071";
_theDownRoll = "clip3071";
_listener = "_global.resp";
_accessText = "back";
}
Frame 267
_global.resp.registerButton(this.button3162, "itemnav", "prevQuestion", 3162);
_global.resp.registerButton(this.button3163, "itemnav", "nextQuestion", 3163);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 2127777008-7", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q6-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3163" in Frame 267
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 268
resp.checkTimeAllowed(false);
stop();
Frame 270
resp.setResponseProcessingString("<ops pageid='5'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><not><varequal respident='questiontitle # 2127777008-7'>a</varequal></not><varequal respident='questiontitle # 2127777008-7'>b</varequal><not><varequal respident='questiontitle # 2127777008-7'>c</varequal></not><not><varequal respident='questiontitle # 2127777008-7'>d</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 271
gotoAndPlay(this._currentFrame + 3);
Frame 274
resp.stopStartTimer(-1);
Frame 275
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3176" in Frame 275
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3175";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3176";
}
Frame 276
resp.checkTimeAllowed(true);
stop();
Frame 278
resp.jumpToNextDestination();
Frame 279
gotoAndPlay(this._currentFrame + 3);
Frame 282
resp.jumpToNextDestination();
Frame 283
resp.checkExitBranching("Question Q6", 28, "2127777008-1The NG Quiz 1", 6);
Frame 286
resp.majorElementExit("item_result", "Question Q6");
resp.jumpToNextDestination();
Frame 287
resp.checkEntryBranching("Question Q7", 28, "2127777008-1The NG Quiz 1", 7);
Frame 290
resp.majorElementEnter("item_result", "Question Q7");
resp.jumpToNextDestination();
Frame 291
gotoAndPlay(this._currentFrame + 3);
Frame 294
resp.startStopTimer(-1);
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3177" in Frame 295
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3067";
_theUpRoll = "clip3071";
_theDownNormal = "clip3071";
_theDownRoll = "clip3071";
_listener = "_global.resp";
_accessText = "back";
}
Frame 295
_global.resp.registerButton(this.button3177, "itemnav", "prevQuestion", 3177);
_global.resp.registerButton(this.button3178, "itemnav", "nextQuestion", 3178);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 2127777008-8", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q7-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3178" in Frame 295
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 296
resp.checkTimeAllowed(false);
stop();
Frame 298
resp.setResponseProcessingString("<ops pageid='6'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><not><varequal respident='questiontitle # 2127777008-8'>a</varequal></not><varequal respident='questiontitle # 2127777008-8'>b</varequal><not><varequal respident='questiontitle # 2127777008-8'>c</varequal></not><not><varequal respident='questiontitle # 2127777008-8'>d</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 299
gotoAndPlay(this._currentFrame + 3);
Frame 302
resp.stopStartTimer(-1);
Frame 303
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3191" in Frame 303
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3190";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3191";
}
Frame 304
resp.checkTimeAllowed(true);
stop();
Frame 306
resp.jumpToNextDestination();
Frame 307
gotoAndPlay(this._currentFrame + 3);
Frame 310
resp.jumpToNextDestination();
Frame 311
resp.checkExitBranching("Question Q7", 28, "2127777008-1The NG Quiz 1", 7);
Frame 314
resp.majorElementExit("item_result", "Question Q7");
resp.jumpToNextDestination();
Frame 315
resp.checkEntryBranching("Question Q8", 28, "2127777008-1The NG Quiz 1", 8);
Frame 318
resp.majorElementEnter("item_result", "Question Q8");
resp.jumpToNextDestination();
Frame 319
gotoAndPlay(this._currentFrame + 3);
Frame 322
resp.startStopTimer(-1);
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3192" in Frame 323
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3067";
_theUpRoll = "clip3071";
_theDownNormal = "clip3071";
_theDownRoll = "clip3071";
_listener = "_global.resp";
_accessText = "back";
}
Frame 323
_global.resp.registerButton(this.button3192, "itemnav", "prevQuestion", 3192);
_global.resp.registerButton(this.button3193, "itemnav", "nextQuestion", 3193);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 2127777008-9", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q8-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3193" in Frame 323
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 324
resp.checkTimeAllowed(false);
stop();
Frame 326
resp.setResponseProcessingString("<ops pageid='7'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><varequal respident='questiontitle # 2127777008-9'>a</varequal><not><varequal respident='questiontitle # 2127777008-9'>b</varequal></not><not><varequal respident='questiontitle # 2127777008-9'>c</varequal></not><not><varequal respident='questiontitle # 2127777008-9'>d</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 327
gotoAndPlay(this._currentFrame + 3);
Frame 330
resp.stopStartTimer(-1);
Frame 331
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3206" in Frame 331
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3205";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3206";
}
Frame 332
resp.checkTimeAllowed(true);
stop();
Frame 334
resp.jumpToNextDestination();
Frame 335
gotoAndPlay(this._currentFrame + 3);
Frame 338
resp.jumpToNextDestination();
Frame 339
resp.checkExitBranching("Question Q8", 28, "2127777008-1The NG Quiz 1", 8);
Frame 342
resp.majorElementExit("item_result", "Question Q8");
resp.jumpToNextDestination();
Frame 343
resp.checkEntryBranching("Question Q9", 28, "2127777008-1The NG Quiz 1", 9);
Frame 346
resp.majorElementEnter("item_result", "Question Q9");
resp.jumpToNextDestination();
Frame 347
gotoAndPlay(this._currentFrame + 3);
Frame 350
resp.startStopTimer(-1);
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3207" in Frame 351
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3067";
_theUpRoll = "clip3071";
_theDownNormal = "clip3071";
_theDownRoll = "clip3071";
_listener = "_global.resp";
_accessText = "back";
}
Frame 351
_global.resp.registerButton(this.button3207, "itemnav", "prevQuestion", 3207);
_global.resp.registerButton(this.button3208, "itemnav", "nextQuestion", 3208);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 2127777008-10", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q9-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3208" in Frame 351
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 352
resp.checkTimeAllowed(false);
stop();
Frame 354
resp.setResponseProcessingString("<ops pageid='8'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><varequal respident='questiontitle # 2127777008-10'>a</varequal><not><varequal respident='questiontitle # 2127777008-10'>b</varequal></not><not><varequal respident='questiontitle # 2127777008-10'>c</varequal></not><not><varequal respident='questiontitle # 2127777008-10'>d</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 355
gotoAndPlay(this._currentFrame + 3);
Frame 358
resp.stopStartTimer(-1);
Frame 359
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3221" in Frame 359
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3220";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3221";
}
Frame 360
resp.checkTimeAllowed(true);
stop();
Frame 362
resp.jumpToNextDestination();
Frame 363
gotoAndPlay(this._currentFrame + 3);
Frame 366
resp.jumpToNextDestination();
Frame 367
resp.checkExitBranching("Question Q9", 28, "2127777008-1The NG Quiz 1", 9);
Frame 370
resp.majorElementExit("item_result", "Question Q9");
resp.jumpToNextDestination();
Frame 371
resp.checkEntryBranching("Question Q10", 28, "2127777008-1The NG Quiz 1", 10);
Frame 374
resp.majorElementEnter("item_result", "Question Q10");
resp.jumpToNextDestination();
Frame 375
gotoAndPlay(this._currentFrame + 3);
Frame 378
resp.startStopTimer(-1);
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3222" in Frame 379
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3067";
_theUpRoll = "clip3071";
_theDownNormal = "clip3071";
_theDownRoll = "clip3071";
_listener = "_global.resp";
_accessText = "back";
}
Frame 379
_global.resp.registerButton(this.button3222, "itemnav", "prevQuestion", 3222);
_global.resp.registerButton(this.button3223, "itemnav", "nextQuestion", 3223);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 2127777008-11", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q10-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3223" in Frame 379
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 380
resp.checkTimeAllowed(false);
stop();
Frame 382
resp.setResponseProcessingString("<ops pageid='9'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><not><varequal respident='questiontitle # 2127777008-11'>a</varequal></not><not><varequal respident='questiontitle # 2127777008-11'>b</varequal></not><varequal respident='questiontitle # 2127777008-11'>c</varequal><not><varequal respident='questiontitle # 2127777008-11'>d</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 383
gotoAndPlay(this._currentFrame + 3);
Frame 386
resp.stopStartTimer(-1);
Frame 387
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3236" in Frame 387
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3235";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3236";
}
Frame 388
resp.checkTimeAllowed(true);
stop();
Frame 390
resp.jumpToNextDestination();
Frame 391
gotoAndPlay(this._currentFrame + 3);
Frame 394
resp.jumpToNextDestination();
Frame 395
resp.checkExitBranching("Question Q10", 28, "2127777008-1The NG Quiz 1", 10);
Frame 398
resp.majorElementExit("item_result", "Question Q10");
resp.jumpToNextDestination();
Frame 399
resp.checkEntryBranching("EndPage", 28, "2127777008-1The NG Quiz 1", 11);
Frame 402
resp.majorElementEnter("item_result", "EndPage");
resp.jumpToNextDestination();
Frame 403
gotoAndPlay(this._currentFrame + 3);
Frame 406
resp.startStopTimer(-1);
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3237" in Frame 407
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3067";
_theUpRoll = "clip3071";
_theDownNormal = "clip3071";
_theDownRoll = "clip3071";
_listener = "_global.resp";
_accessText = "back";
}
Frame 407
_global.resp.registerButton(this.button3237, "itemnav", "prevQuestion", 3237);
_global.resp.registerButton(this.button3238, "itemnav", "nextQuestion", 3238);
resp.showHideNextButton();
_global.resp.enterVisible("EndPage-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3238" in Frame 407
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 408
resp.checkTimeAllowed(false);
stop();
Frame 410
resp.setResponseProcessingString("<ops pageid='10'></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 411
gotoAndPlay(this._currentFrame + 3);
Frame 414
resp.stopStartTimer(-1);
Frame 415
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3242" in Frame 415
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3241";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3242";
}
Frame 416
resp.checkTimeAllowed(true);
stop();
Frame 418
resp.jumpToNextDestination();
Frame 419
gotoAndPlay(this._currentFrame + 3);
Frame 422
resp.jumpToNextDestination();
Frame 423
resp.checkExitBranching("EndPage", 28, "2127777008-1The NG Quiz 1", 11);
Frame 426
resp.majorElementExit("item_result", "EndPage");
resp.jumpToNextDestination();
Frame 427
gotoAndPlay(this._currentFrame + 3);
Frame 430
resp.stopStartTimer(-1);
Frame 431
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3244" in Frame 431
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3243";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3244";
}
Frame 432
resp.checkTimeAllowed(true);
stop();
Frame 434
resp.jumpToNextDestination();
Frame 435
gotoAndPlay(this._currentFrame + 3);
Frame 438
resp.jumpToNextDestination();
Frame 439
resp.checkExitBranching("2127777008-1The NG Quiz 1", 364, "The NG Quiz 1 #2127777008-1", 1);
Frame 442
resp.majorElementExit("section_result", "2127777008-1The NG Quiz 1");
resp.jumpToNextDestination();
Frame 443
resp.checkEntryBranching("quizReview", 392, "The NG Quiz 1 #2127777008-1", 2);
Frame 446
resp.majorElementEnter("section_result", "quizReview");
resp.jumpToNextDestination();
Frame 447
gotoAndPlay(this._currentFrame + 3);
Frame 450
resp.startStopTimer(-1);
Frame 451
_global.resp.bypassQuestion();
Frame 452
resp.checkTimeAllowed(false);
stop();
Frame 454
resp.jumpToNextDestination();
Frame 455
resp.checkEntryBranching("CalculationPage", 28, "quizReview", 0);
Frame 458
resp.majorElementEnter("item_result", "CalculationPage");
resp.jumpToNextDestination();
Frame 459
gotoAndPlay(this._currentFrame + 3);
Frame 462
resp.startStopTimer(-1);
Frame 463
_global.resp.bypassQuestion();
Frame 464
resp.checkTimeAllowed(false);
stop();
Frame 466
resp.setResponseProcessingString("<ops pageid='10'><resprocessing><outcomes><decvar defaultval='0' minvalue='0' varname='OVERALLSCORE' vartype='Decimal'></decvar><decvar defaultval='0' minvalue='0' varname='TOTALPOSSIBLESCORE' vartype='Decimal'></decvar><decvar defaultval='0' minvalue='0' maxvalue='100' varname='PERCENTAGESCORE' vartype='Integer'></decvar><decvar defaultval='0' varname='PERCENTAGESCORESTRING' vartype='String'></decvar><decvar defaultval='80' varname='PERCENTAGEPASS' vartype='String'></decvar><decvar defaultval='FAIL' varname='PASSFAIL' vartype='String'></decvar></outcomes><respcondition continue='Yes'><setvar varname='OVERALLSCORE' action='Add' sourcevarname='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q1.SCORE'></setvar></respcondition><respcondition continue='Yes'><setvar varname='TOTALPOSSIBLESCORE' action='Add'>10</setvar></respcondition><respcondition continue='Yes'><setvar varname='OVERALLSCORE' action='Add' sourcevarname='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q2.SCORE'></setvar></respcondition><respcondition continue='Yes'><setvar varname='TOTALPOSSIBLESCORE' action='Add'>10</setvar></respcondition><respcondition continue='Yes'><setvar varname='OVERALLSCORE' action='Add' sourcevarname='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q3.SCORE'></setvar></respcondition><respcondition continue='Yes'><setvar varname='TOTALPOSSIBLESCORE' action='Add'>10</setvar></respcondition><respcondition continue='Yes'><setvar varname='OVERALLSCORE' action='Add' sourcevarname='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q4.SCORE'></setvar></respcondition><respcondition continue='Yes'><setvar varname='TOTALPOSSIBLESCORE' action='Add'>10</setvar></respcondition><respcondition continue='Yes'><setvar varname='OVERALLSCORE' action='Add' sourcevarname='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q5.SCORE'></setvar></respcondition><respcondition continue='Yes'><setvar varname='TOTALPOSSIBLESCORE' action='Add'>10</setvar></respcondition><respcondition continue='Yes'><setvar varname='OVERALLSCORE' action='Add' sourcevarname='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q6.SCORE'></setvar></respcondition><respcondition continue='Yes'><setvar varname='TOTALPOSSIBLESCORE' action='Add'>10</setvar></respcondition><respcondition continue='Yes'><setvar varname='OVERALLSCORE' action='Add' sourcevarname='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q7.SCORE'></setvar></respcondition><respcondition continue='Yes'><setvar varname='TOTALPOSSIBLESCORE' action='Add'>10</setvar></respcondition><respcondition continue='Yes'><setvar varname='OVERALLSCORE' action='Add' sourcevarname='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q8.SCORE'></setvar></respcondition><respcondition continue='Yes'><setvar varname='TOTALPOSSIBLESCORE' action='Add'>10</setvar></respcondition><respcondition continue='Yes'><setvar varname='OVERALLSCORE' action='Add' sourcevarname='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q9.SCORE'></setvar></respcondition><respcondition continue='Yes'><setvar varname='TOTALPOSSIBLESCORE' action='Add'>10</setvar></respcondition><respcondition continue='Yes'><setvar varname='OVERALLSCORE' action='Add' sourcevarname='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q10.SCORE'></setvar></respcondition><respcondition continue='Yes'><setvar varname='TOTALPOSSIBLESCORE' action='Add'>10</setvar></respcondition><respcondition continue='Yes'><conditionvar><and><varlt varname='OVERALLSCORE'>0</varlt></and></conditionvar><setvar varname='OVERALLSCORE' action='Set'>0</setvar></respcondition><respcondition continue='Yes'><setvar varname='PERCENTAGESCORE' sourcevarname='OVERALLSCORE' action='Add'></setvar><setvar varname='PERCENTAGESCORE' action='Multiply'>100</setvar><setvar varname='PERCENTAGESCORE' sourcevarname='TOTALPOSSIBLESCORE' action='Divide'></setvar></respcondition><respcondition continue='Yes'><conditionvar><and><vargte varname='PERCENTAGESCORE'>80</vargte></and></conditionvar><setvar varname='PASSFAIL' action='Set'>PASS</setvar></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 467
gotoAndPlay(this._currentFrame + 3);
Frame 470
resp.stopStartTimer(-1);
Frame 471
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3246" in Frame 471
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3245";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3246";
}
Frame 472
resp.checkTimeAllowed(true);
stop();
Frame 474
resp.jumpToNextDestination();
Frame 475
gotoAndPlay(this._currentFrame + 3);
Frame 478
resp.jumpToNextDestination();
Frame 479
resp.checkExitBranching("CalculationPage", 28, "quizReview", 0);
Frame 482
resp.majorElementExit("item_result", "CalculationPage");
resp.jumpToNextDestination();
Frame 483
resp.checkEntryBranching("StartOfFeedbackPage", 28, "quizReview", 1);
Frame 486
resp.majorElementEnter("item_result", "StartOfFeedbackPage");
resp.jumpToNextDestination();
Frame 487
gotoAndPlay(this._currentFrame + 3);
Frame 490
resp.startStopTimer(-1);
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3247" in Frame 491
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 491
_global.resp.registerButton(this.button3247, "itemnav", "nextQuestion", 3247);
resp.showHideNextButton();
_global.resp.enterVisible("StartOfFeedbackPage-item-presentation");
Frame 492
resp.checkTimeAllowed(false);
stop();
Frame 494
resp.setResponseProcessingString("<ops pageid='16'></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 495
gotoAndPlay(this._currentFrame + 3);
Frame 498
resp.stopStartTimer(-1);
Frame 499
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3251" in Frame 499
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3250";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3251";
}
Frame 500
resp.checkTimeAllowed(true);
stop();
Frame 502
resp.jumpToNextDestination();
Frame 503
gotoAndPlay(this._currentFrame + 3);
Frame 506
resp.jumpToNextDestination();
Frame 507
resp.checkExitBranching("StartOfFeedbackPage", 28, "quizReview", 1);
Frame 510
resp.majorElementExit("item_result", "StartOfFeedbackPage");
resp.jumpToNextDestination();
Frame 511
resp.checkEntryBranching("ReportPage", 28, "quizReview", 2);
Frame 514
resp.majorElementEnter("item_result", "ReportPage");
resp.jumpToNextDestination();
Frame 515
gotoAndPlay(this._currentFrame + 3);
Frame 518
resp.startStopTimer(-1);
Frame 519
_global.resp.bypassQuestion();
Frame 520
resp.checkTimeAllowed(false);
stop();
Frame 522
resp.setResponseProcessingString("<ops pageid='16'><resprocessing><respcondition continue='Yes'><conditionvar><and><varequal varname='The NG Quiz 1 #2127777008-1.quizReview.CalculationPage.PASSFAIL'>PASS</varequal></and></conditionvar><displayfeedback linkrefid='GeneralReport'></displayfeedback><displayfeedback linkrefid='FooterFeedback'></displayfeedback><displayfeedback linkrefid='PassFeedback'></displayfeedback></respcondition><respcondition continue='Yes'><conditionvar><and><varequal varname='The NG Quiz 1 #2127777008-1.quizReview.CalculationPage.PASSFAIL'>FAIL</varequal></and></conditionvar><displayfeedback linkrefid='GeneralReport'></displayfeedback><displayfeedback linkrefid='FooterFeedback'></displayfeedback><displayfeedback linkrefid='FailFeedback'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 523
gotoAndPlay(this._currentFrame + 3);
Frame 526
resp.stopStartTimer(-1);
Frame 527
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3280, "itemnav", "prevQuestion", 3280);
_global.resp.registerButton(this.button3281, "itemnav", "nextQuestion", 3281);
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3279" in Frame 527
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3252";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3279";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3280" in Frame 527
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3067";
_theUpRoll = "clip3071";
_theDownNormal = "clip3071";
_theDownRoll = "clip3071";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3281" in Frame 527
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 528
resp.checkTimeAllowed(true);
stop();
Frame 530
resp.jumpToNextDestination();
Frame 531
gotoAndPlay(this._currentFrame + 3);
Frame 534
resp.jumpToNextDestination();
Frame 535
resp.checkExitBranching("ReportPage", 28, "quizReview", 2);
Frame 538
resp.majorElementExit("item_result", "ReportPage");
resp.jumpToNextDestination();
Frame 539
resp.checkEntryBranching("FB: Question Q1", 28, "quizReview", 3);
Frame 542
resp.majorElementEnter("item_result", "FB: Question Q1");
resp.jumpToNextDestination();
Frame 543
gotoAndPlay(this._currentFrame + 3);
Frame 546
resp.startStopTimer(-1);
Frame 547
_global.resp.bypassQuestion();
Frame 548
resp.checkTimeAllowed(false);
stop();
Frame 550
resp.setResponseProcessingString("<ops pageid='16'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q1.questiontitle # 2127777008-2'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q1.questiontitle # 2127777008-2'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q1.questiontitle # 2127777008-2'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q1.questiontitle # 2127777008-2'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q1.questiontitle # 2127777008-2'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q1.questiontitle # 2127777008-2'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q1.questiontitle # 2127777008-2'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q1.questiontitle # 2127777008-2'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 2127777008-2'></displayfeedback><displayfeedback linkrefid='Correct Answers # 2127777008-2'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q1.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 2127777008-2'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 2127777008-2'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 551
gotoAndPlay(this._currentFrame + 3);
Frame 554
resp.stopStartTimer(-1);
Frame 555
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3338, "itemnav", "prevQuestion", 3338);
_global.resp.registerButton(this.button3339, "itemnav", "nextQuestion", 3339);
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3337" in Frame 555
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3282";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3337";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3338" in Frame 555
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3067";
_theUpRoll = "clip3071";
_theDownNormal = "clip3071";
_theDownRoll = "clip3071";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3339" in Frame 555
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 556
resp.checkTimeAllowed(true);
stop();
Frame 558
resp.jumpToNextDestination();
Frame 559
gotoAndPlay(this._currentFrame + 3);
Frame 562
resp.jumpToNextDestination();
Frame 563
resp.checkExitBranching("FB: Question Q1", 28, "quizReview", 3);
Frame 566
resp.majorElementExit("item_result", "FB: Question Q1");
resp.jumpToNextDestination();
Frame 567
resp.checkEntryBranching("FB: Question Q2", 28, "quizReview", 4);
Frame 570
resp.majorElementEnter("item_result", "FB: Question Q2");
resp.jumpToNextDestination();
Frame 571
gotoAndPlay(this._currentFrame + 3);
Frame 574
resp.startStopTimer(-1);
Frame 575
_global.resp.bypassQuestion();
Frame 576
resp.checkTimeAllowed(false);
stop();
Frame 578
resp.setResponseProcessingString("<ops pageid='16'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q2.questiontitle # 2127777008-3'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q2.questiontitle # 2127777008-3'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q2.questiontitle # 2127777008-3'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q2.questiontitle # 2127777008-3'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q2.questiontitle # 2127777008-3'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q2.questiontitle # 2127777008-3'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 2127777008-3'></displayfeedback><displayfeedback linkrefid='Correct Answers # 2127777008-3'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q2.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 2127777008-3'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 2127777008-3'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 579
gotoAndPlay(this._currentFrame + 3);
Frame 582
resp.stopStartTimer(-1);
Frame 583
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3383, "itemnav", "prevQuestion", 3383);
_global.resp.registerButton(this.button3384, "itemnav", "nextQuestion", 3384);
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3382" in Frame 583
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3340";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3382";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3383" in Frame 583
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3067";
_theUpRoll = "clip3071";
_theDownNormal = "clip3071";
_theDownRoll = "clip3071";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3384" in Frame 583
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 584
resp.checkTimeAllowed(true);
stop();
Frame 586
resp.jumpToNextDestination();
Frame 587
gotoAndPlay(this._currentFrame + 3);
Frame 590
resp.jumpToNextDestination();
Frame 591
resp.checkExitBranching("FB: Question Q2", 28, "quizReview", 4);
Frame 594
resp.majorElementExit("item_result", "FB: Question Q2");
resp.jumpToNextDestination();
Frame 595
resp.checkEntryBranching("FB: Question Q3", 28, "quizReview", 5);
Frame 598
resp.majorElementEnter("item_result", "FB: Question Q3");
resp.jumpToNextDestination();
Frame 599
gotoAndPlay(this._currentFrame + 3);
Frame 602
resp.startStopTimer(-1);
Frame 603
_global.resp.bypassQuestion();
Frame 604
resp.checkTimeAllowed(false);
stop();
Frame 606
resp.setResponseProcessingString("<ops pageid='16'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q3.questiontitle # 2127777008-4'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q3.questiontitle # 2127777008-4'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q3.questiontitle # 2127777008-4'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q3.questiontitle # 2127777008-4'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q3.questiontitle # 2127777008-4'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q3.questiontitle # 2127777008-4'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q3.questiontitle # 2127777008-4'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q3.questiontitle # 2127777008-4'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 2127777008-4'></displayfeedback><displayfeedback linkrefid='Correct Answers # 2127777008-4'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q3.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 2127777008-4'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 2127777008-4'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 607
gotoAndPlay(this._currentFrame + 3);
Frame 610
resp.stopStartTimer(-1);
Frame 611
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3427, "itemnav", "prevQuestion", 3427);
_global.resp.registerButton(this.button3428, "itemnav", "nextQuestion", 3428);
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3426" in Frame 611
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3385";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3426";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3427" in Frame 611
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3067";
_theUpRoll = "clip3071";
_theDownNormal = "clip3071";
_theDownRoll = "clip3071";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3428" in Frame 611
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 612
resp.checkTimeAllowed(true);
stop();
Frame 614
resp.jumpToNextDestination();
Frame 615
gotoAndPlay(this._currentFrame + 3);
Frame 618
resp.jumpToNextDestination();
Frame 619
resp.checkExitBranching("FB: Question Q3", 28, "quizReview", 5);
Frame 622
resp.majorElementExit("item_result", "FB: Question Q3");
resp.jumpToNextDestination();
Frame 623
resp.checkEntryBranching("FB: Question Q4", 28, "quizReview", 6);
Frame 626
resp.majorElementEnter("item_result", "FB: Question Q4");
resp.jumpToNextDestination();
Frame 627
gotoAndPlay(this._currentFrame + 3);
Frame 630
resp.startStopTimer(-1);
Frame 631
_global.resp.bypassQuestion();
Frame 632
resp.checkTimeAllowed(false);
stop();
Frame 634
resp.setResponseProcessingString("<ops pageid='16'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q4.questiontitle # 2127777008-5'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q4.questiontitle # 2127777008-5'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q4.questiontitle # 2127777008-5'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q4.questiontitle # 2127777008-5'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q4.questiontitle # 2127777008-5'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q4.questiontitle # 2127777008-5'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q4.questiontitle # 2127777008-5'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q4.questiontitle # 2127777008-5'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 2127777008-5'></displayfeedback><displayfeedback linkrefid='Correct Answers # 2127777008-5'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q4.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 2127777008-5'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 2127777008-5'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 635
gotoAndPlay(this._currentFrame + 3);
Frame 638
resp.stopStartTimer(-1);
Frame 639
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3471, "itemnav", "prevQuestion", 3471);
_global.resp.registerButton(this.button3472, "itemnav", "nextQuestion", 3472);
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3470" in Frame 639
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3429";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3470";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3471" in Frame 639
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3067";
_theUpRoll = "clip3071";
_theDownNormal = "clip3071";
_theDownRoll = "clip3071";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3472" in Frame 639
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 640
resp.checkTimeAllowed(true);
stop();
Frame 642
resp.jumpToNextDestination();
Frame 643
gotoAndPlay(this._currentFrame + 3);
Frame 646
resp.jumpToNextDestination();
Frame 647
resp.checkExitBranching("FB: Question Q4", 28, "quizReview", 6);
Frame 650
resp.majorElementExit("item_result", "FB: Question Q4");
resp.jumpToNextDestination();
Frame 651
resp.checkEntryBranching("FB: Question Q5", 28, "quizReview", 7);
Frame 654
resp.majorElementEnter("item_result", "FB: Question Q5");
resp.jumpToNextDestination();
Frame 655
gotoAndPlay(this._currentFrame + 3);
Frame 658
resp.startStopTimer(-1);
Frame 659
_global.resp.bypassQuestion();
Frame 660
resp.checkTimeAllowed(false);
stop();
Frame 662
resp.setResponseProcessingString("<ops pageid='16'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q5.questiontitle # 2127777008-6'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q5.questiontitle # 2127777008-6'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q5.questiontitle # 2127777008-6'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q5.questiontitle # 2127777008-6'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q5.questiontitle # 2127777008-6'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q5.questiontitle # 2127777008-6'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q5.questiontitle # 2127777008-6'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q5.questiontitle # 2127777008-6'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 2127777008-6'></displayfeedback><displayfeedback linkrefid='Correct Answers # 2127777008-6'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q5.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 2127777008-6'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 2127777008-6'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 663
gotoAndPlay(this._currentFrame + 3);
Frame 666
resp.stopStartTimer(-1);
Frame 667
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3515, "itemnav", "prevQuestion", 3515);
_global.resp.registerButton(this.button3516, "itemnav", "nextQuestion", 3516);
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3514" in Frame 667
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3473";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3514";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3515" in Frame 667
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3067";
_theUpRoll = "clip3071";
_theDownNormal = "clip3071";
_theDownRoll = "clip3071";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3516" in Frame 667
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 668
resp.checkTimeAllowed(true);
stop();
Frame 670
resp.jumpToNextDestination();
Frame 671
gotoAndPlay(this._currentFrame + 3);
Frame 674
resp.jumpToNextDestination();
Frame 675
resp.checkExitBranching("FB: Question Q5", 28, "quizReview", 7);
Frame 678
resp.majorElementExit("item_result", "FB: Question Q5");
resp.jumpToNextDestination();
Frame 679
resp.checkEntryBranching("FB: Question Q6", 28, "quizReview", 8);
Frame 682
resp.majorElementEnter("item_result", "FB: Question Q6");
resp.jumpToNextDestination();
Frame 683
gotoAndPlay(this._currentFrame + 3);
Frame 686
resp.startStopTimer(-1);
Frame 687
_global.resp.bypassQuestion();
Frame 688
resp.checkTimeAllowed(false);
stop();
Frame 690
resp.setResponseProcessingString("<ops pageid='16'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q6.questiontitle # 2127777008-7'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q6.questiontitle # 2127777008-7'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q6.questiontitle # 2127777008-7'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q6.questiontitle # 2127777008-7'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q6.questiontitle # 2127777008-7'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q6.questiontitle # 2127777008-7'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q6.questiontitle # 2127777008-7'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q6.questiontitle # 2127777008-7'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 2127777008-7'></displayfeedback><displayfeedback linkrefid='Correct Answers # 2127777008-7'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q6.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 2127777008-7'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 2127777008-7'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 691
gotoAndPlay(this._currentFrame + 3);
Frame 694
resp.stopStartTimer(-1);
Frame 695
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3557, "itemnav", "prevQuestion", 3557);
_global.resp.registerButton(this.button3558, "itemnav", "nextQuestion", 3558);
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3556" in Frame 695
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3517";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3556";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3557" in Frame 695
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3067";
_theUpRoll = "clip3071";
_theDownNormal = "clip3071";
_theDownRoll = "clip3071";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3558" in Frame 695
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 696
resp.checkTimeAllowed(true);
stop();
Frame 698
resp.jumpToNextDestination();
Frame 699
gotoAndPlay(this._currentFrame + 3);
Frame 702
resp.jumpToNextDestination();
Frame 703
resp.checkExitBranching("FB: Question Q6", 28, "quizReview", 8);
Frame 706
resp.majorElementExit("item_result", "FB: Question Q6");
resp.jumpToNextDestination();
Frame 707
resp.checkEntryBranching("FB: Question Q7", 28, "quizReview", 9);
Frame 710
resp.majorElementEnter("item_result", "FB: Question Q7");
resp.jumpToNextDestination();
Frame 711
gotoAndPlay(this._currentFrame + 3);
Frame 714
resp.startStopTimer(-1);
Frame 715
_global.resp.bypassQuestion();
Frame 716
resp.checkTimeAllowed(false);
stop();
Frame 718
resp.setResponseProcessingString("<ops pageid='16'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q7.questiontitle # 2127777008-8'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q7.questiontitle # 2127777008-8'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q7.questiontitle # 2127777008-8'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q7.questiontitle # 2127777008-8'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q7.questiontitle # 2127777008-8'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q7.questiontitle # 2127777008-8'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q7.questiontitle # 2127777008-8'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q7.questiontitle # 2127777008-8'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 2127777008-8'></displayfeedback><displayfeedback linkrefid='Correct Answers # 2127777008-8'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q7.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 2127777008-8'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 2127777008-8'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 719
gotoAndPlay(this._currentFrame + 3);
Frame 722
resp.stopStartTimer(-1);
Frame 723
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3601, "itemnav", "prevQuestion", 3601);
_global.resp.registerButton(this.button3602, "itemnav", "nextQuestion", 3602);
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3600" in Frame 723
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3559";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3600";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3601" in Frame 723
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3067";
_theUpRoll = "clip3071";
_theDownNormal = "clip3071";
_theDownRoll = "clip3071";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3602" in Frame 723
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 724
resp.checkTimeAllowed(true);
stop();
Frame 726
resp.jumpToNextDestination();
Frame 727
gotoAndPlay(this._currentFrame + 3);
Frame 730
resp.jumpToNextDestination();
Frame 731
resp.checkExitBranching("FB: Question Q7", 28, "quizReview", 9);
Frame 734
resp.majorElementExit("item_result", "FB: Question Q7");
resp.jumpToNextDestination();
Frame 735
resp.checkEntryBranching("FB: Question Q8", 28, "quizReview", 10);
Frame 738
resp.majorElementEnter("item_result", "FB: Question Q8");
resp.jumpToNextDestination();
Frame 739
gotoAndPlay(this._currentFrame + 3);
Frame 742
resp.startStopTimer(-1);
Frame 743
_global.resp.bypassQuestion();
Frame 744
resp.checkTimeAllowed(false);
stop();
Frame 746
resp.setResponseProcessingString("<ops pageid='16'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q8.questiontitle # 2127777008-9'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q8.questiontitle # 2127777008-9'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q8.questiontitle # 2127777008-9'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q8.questiontitle # 2127777008-9'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q8.questiontitle # 2127777008-9'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q8.questiontitle # 2127777008-9'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q8.questiontitle # 2127777008-9'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q8.questiontitle # 2127777008-9'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 2127777008-9'></displayfeedback><displayfeedback linkrefid='Correct Answers # 2127777008-9'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q8.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 2127777008-9'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 2127777008-9'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 747
gotoAndPlay(this._currentFrame + 3);
Frame 750
resp.stopStartTimer(-1);
Frame 751
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3645, "itemnav", "prevQuestion", 3645);
_global.resp.registerButton(this.button3646, "itemnav", "nextQuestion", 3646);
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3644" in Frame 751
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3603";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3644";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3645" in Frame 751
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3067";
_theUpRoll = "clip3071";
_theDownNormal = "clip3071";
_theDownRoll = "clip3071";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3646" in Frame 751
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 752
resp.checkTimeAllowed(true);
stop();
Frame 754
resp.jumpToNextDestination();
Frame 755
gotoAndPlay(this._currentFrame + 3);
Frame 758
resp.jumpToNextDestination();
Frame 759
resp.checkExitBranching("FB: Question Q8", 28, "quizReview", 10);
Frame 762
resp.majorElementExit("item_result", "FB: Question Q8");
resp.jumpToNextDestination();
Frame 763
resp.checkEntryBranching("FB: Question Q9", 28, "quizReview", 11);
Frame 766
resp.majorElementEnter("item_result", "FB: Question Q9");
resp.jumpToNextDestination();
Frame 767
gotoAndPlay(this._currentFrame + 3);
Frame 770
resp.startStopTimer(-1);
Frame 771
_global.resp.bypassQuestion();
Frame 772
resp.checkTimeAllowed(false);
stop();
Frame 774
resp.setResponseProcessingString("<ops pageid='16'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q9.questiontitle # 2127777008-10'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q9.questiontitle # 2127777008-10'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q9.questiontitle # 2127777008-10'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q9.questiontitle # 2127777008-10'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q9.questiontitle # 2127777008-10'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q9.questiontitle # 2127777008-10'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q9.questiontitle # 2127777008-10'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q9.questiontitle # 2127777008-10'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 2127777008-10'></displayfeedback><displayfeedback linkrefid='Correct Answers # 2127777008-10'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q9.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 2127777008-10'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 2127777008-10'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 775
gotoAndPlay(this._currentFrame + 3);
Frame 778
resp.stopStartTimer(-1);
Frame 779
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3689, "itemnav", "prevQuestion", 3689);
_global.resp.registerButton(this.button3690, "itemnav", "nextQuestion", 3690);
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3688" in Frame 779
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3647";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3688";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3689" in Frame 779
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3067";
_theUpRoll = "clip3071";
_theDownNormal = "clip3071";
_theDownRoll = "clip3071";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3690" in Frame 779
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 780
resp.checkTimeAllowed(true);
stop();
Frame 782
resp.jumpToNextDestination();
Frame 783
gotoAndPlay(this._currentFrame + 3);
Frame 786
resp.jumpToNextDestination();
Frame 787
resp.checkExitBranching("FB: Question Q9", 28, "quizReview", 11);
Frame 790
resp.majorElementExit("item_result", "FB: Question Q9");
resp.jumpToNextDestination();
Frame 791
resp.checkEntryBranching("FB: Question Q10", 28, "quizReview", 12);
Frame 794
resp.majorElementEnter("item_result", "FB: Question Q10");
resp.jumpToNextDestination();
Frame 795
gotoAndPlay(this._currentFrame + 3);
Frame 798
resp.startStopTimer(-1);
Frame 799
_global.resp.bypassQuestion();
Frame 800
resp.checkTimeAllowed(false);
stop();
Frame 802
resp.setResponseProcessingString("<ops pageid='16'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q10.questiontitle # 2127777008-11'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q10.questiontitle # 2127777008-11'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q10.questiontitle # 2127777008-11'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q10.questiontitle # 2127777008-11'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q10.questiontitle # 2127777008-11'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q10.questiontitle # 2127777008-11'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q10.questiontitle # 2127777008-11'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q10.questiontitle # 2127777008-11'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 2127777008-11'></displayfeedback><displayfeedback linkrefid='Correct Answers # 2127777008-11'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='The NG Quiz 1 #2127777008-1.2127777008-1The NG Quiz 1.Question Q10.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 2127777008-11'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 2127777008-11'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 803
gotoAndPlay(this._currentFrame + 3);
Frame 806
resp.stopStartTimer(-1);
Frame 807
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3733, "itemnav", "prevQuestion", 3733);
_global.resp.registerButton(this.button3734, "itemnav", "nextQuestion", 3734);
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3732" in Frame 807
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3691";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3732";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3733" in Frame 807
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3067";
_theUpRoll = "clip3071";
_theDownNormal = "clip3071";
_theDownRoll = "clip3071";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3734" in Frame 807
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 808
resp.checkTimeAllowed(true);
stop();
Frame 810
resp.jumpToNextDestination();
Frame 811
gotoAndPlay(this._currentFrame + 3);
Frame 814
resp.jumpToNextDestination();
Frame 815
resp.checkExitBranching("FB: Question Q10", 28, "quizReview", 12);
Frame 818
resp.majorElementExit("item_result", "FB: Question Q10");
resp.jumpToNextDestination();
Frame 819
gotoAndPlay(this._currentFrame + 3);
Frame 822
resp.stopStartTimer(-1);
Frame 823
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3736" in Frame 823
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3735";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3736";
}
Frame 824
resp.checkTimeAllowed(true);
stop();
Frame 826
resp.jumpToNextDestination();
Frame 827
gotoAndPlay(this._currentFrame + 3);
Frame 830
resp.jumpToNextDestination();
Frame 831
resp.checkExitBranching("quizReview", 392, "The NG Quiz 1 #2127777008-1", 2);
Frame 834
resp.majorElementExit("section_result", "quizReview");
resp.jumpToNextDestination();
Frame 835
gotoAndPlay(this._currentFrame + 3);
Frame 838
resp.stopStartTimer(-1);
Frame 839
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3053 MovieClip [CQScrollbarV1_5] "scroller3738" in Frame 839
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3737";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3738";
}
Frame 840
resp.checkTimeAllowed(true);
stop();
Frame 842
resp.jumpToNextDestination();
Frame 843
gotoAndPlay(this._currentFrame + 3);
Frame 846
resp.jumpToNextDestination();
Frame 847
resp.checkExitBranching("The NG Quiz 1 #2127777008-1", 840, "NA", 0);
Frame 850
resp.majorElementExit("assessment_result", "The NG Quiz 1 #2127777008-1");
resp.jumpToNextDestination();
Frame 851
this.clip3739._accProps = new Object();
this.clip3739._accProps.forceSimple = true;
this.clip3739._accProps.name = "";
this.clip3739.tabIndex = 3739;
this.clip3739.tabEnabled = false;
this.clip3739.tabChildren = true;
this.text3740.tabIndex = 3740;
Frame 852
if ((forwardURL != null) && (forwardURL != "")) {
this.getURL(("javascript:document.location = '" + forwardURL) + "';", "_self");
}
_global.resp.moveHead(1);
Frame 853
if (_global.resp.getResponseMechanism().toLowerCase() == "scorm") {
var scormObjects = new Array();
scormObjects = new Array();
scormObjects.push("LMSFinish");
_global.resp.queueFSCommand(scormObjects);
} else if (_global.resp.getResponseMechanism().toLowerCase() == "questionmark") {
var scormObjects = new Array();
scormObjects.push("CMIExitAU");
_global.resp.queueFSCommand(scormObjects);
scormObjects = new Array();
scormObjects.push("QMPEnableSubmit");
_global.resp.queueFSCommand(scormObjects);
}
this.theAPI.finished = true;
if (isMDM == "true") {
fscommand ("mdm.exit");
}
this.stop();
Frame 855
stop();
Frame 856
stop();
Frame 857
stop();
Frame 858
stop();
Symbol 3009 MovieClip [clip3009] Frame 1
_global.cqRootPointer3010 = this;
Symbol 3013 MovieClip [clip3013] Frame 1
_global.cqRootPointer3014 = this;
Symbol 3019 MovieClip [CQButtonV1_4] Frame 1
#initclip 1
function CQButton() {
this.respObject = eval (this._listener);
this.accessibilityText = this._accessText;
this._accProps = new Object();
this._accProps.forceSimple = true;
this.attachMovie(this._theUpNormal, "tmp_un", 3);
this.upnormal = this.tmp_un;
this.upnormal._accProps = new Object();
this.upnormal._accProps.silent = true;
this.attachMovie(this._theUpRoll, "tmp_ur", 4);
this.uproll = this.tmp_ur;
this.uproll._accProps = new Object();
this.uproll._accProps.silent = true;
this.attachMovie(this._theDownNormal, "tmp_dn", 5);
this.downnormal = this.tmp_dn;
this.downnormal._accProps = new Object();
this.downnormal._accProps.silent = true;
this.attachMovie(this._theDownRoll, "tmp_dr", 6);
this.downroll = this.tmp_dr;
this.downroll._accProps = new Object();
this.downroll._accProps.silent = true;
if (this.isMouseOver()) {
this.setTheState(2);
} else {
this.setTheState(1);
}
}
CQButton.prototype = new MovieClip();
Object.registerClass("CQButtonV1_4", CQButton);
CQButton.prototype.setTheState = function (stateNo) {
this.state = stateNo;
if ((this.state == 1) | (this.state == 2)) {
this.buttonStateText = "unchecked";
} else {
this.buttonStateText = "checked";
}
this.upnormal._visible = stateNo == 1;
this.uproll._visible = stateNo == 2;
this.downnormal._visible = stateNo == 3;
this.downroll._visible = stateNo == 4;
this._accProps.name = (this.accessibilityText + " ") + this.buttonStateText;
};
CQButton.prototype.onRollOver = function () {
if (this.state == 1) {
this.setTheState(2);
} else if (this.state == 3) {
this.setTheState(4);
}
};
CQButton.prototype.onRollOut = function () {
if (this.state == 2) {
this.setTheState(1);
} else if (this.state == 4) {
this.setTheState(3);
}
};
CQButton.prototype.onDragOver = function () {
if (this.state == 1) {
this.setTheState(2);
} else if (this.state == 3) {
this.setTheState(4);
}
};
CQButton.prototype.onDragOut = function () {
if (this.state == 2) {
this.setTheState(1);
} else if (this.state == 4) {
this.setTheState(3);
}
};
CQButton.prototype.onPress = function () {
this.respObject.beenHit(this);
};
CQButton.prototype.onRelease = function () {
};
CQButton.prototype.onReleaseOutside = function () {
};
CQButton.prototype.switchOn = function () {
if (this.state == 1) {
this.setTheState(3);
} else if (this.state == 2) {
this.setTheState(4);
}
};
CQButton.prototype.switchOff = function () {
if (this.state == 3) {
this.setTheState(1);
} else if (this.state == 4) {
this.setTheState(2);
}
};
CQButton.prototype.setVisible = function (isVisible) {
this._visible = isVisible;
if (isVisible == false) {
this.onRollOut();
} else if (isVisible && (this.isMouseOver())) {
this.onRollOver();
}
};
CQButton.prototype.isMouseOver = function () {
return((((this._xmouse > 0) && (this._ymouse > 0)) && (this._xmouse < this._width)) && (this._ymouse < this._height));
};
#endinitclip
Symbol 3017 MovieClip Frame 1
_global.cqRootPointer3018 = this;
if (this._parent == null) {
this.createTextField("version", 10, 0, 0, 200, 200);
this.version.multiline = true;
this.version.wordWrap = true;
this.version.text = "Symbol: CQButtonV1_4\nVersion 1.4\nCopyright 2005 Central Question Ltd.";
}
Symbol 3021 MovieClip Frame 1
this.text3022.tabIndex = 3022;
Symbol 3034 Button
on (press) {
if (_xmouse > SliderButton._x) {
_parent.MovePlaneByOffset(_parent.paneWidth, 0);
_parent.delayEffect = 0;
ScrollUpdateID = setInterval(_parent, "MovePlaneByOffset", 100, _parent.paneWidth, 0, 2);
} else {
_parent.MovePlaneByOffset(-_parent.paneWidth, 0);
_parent.delayEffect = 0;
ScrollUpdateID = setInterval(_parent, "MovePlaneByOffset", 100, -_parent.paneWidth, 0, 2);
}
}
on (rollOut, release, dragOut, releaseOutside) {
clearInterval(ScrollUpdateID);
}
Symbol 3036 Button
on (press) {
if (..:PageMove._width == _width) {
startDrag ("", false, 0, 0, 0, ..:PageMove._height - _height);
ScrollUpdateID = setInterval(..:_parent, "LockToScrolls", 25);
} else if (..:PageMove._height == _height) {
startDrag ("", false, 0, 0, ..:PageMove._width - _width, 0);
ScrollUpdateID = setInterval(..:_parent, "LockToScrolls", 25);
}
}
on (release, releaseOutside) {
clearInterval(ScrollUpdateID);
stopDrag();
}
Symbol 3039 Button
on (press) {
if (_ymouse > SliderButton._y) {
_parent.MovePlaneByOffset(0, _parent.paneHeight);
_parent.delayEffect = 0;
ScrollUpdateID = setInterval(_parent, "MovePlaneByOffset", 100, 0, _parent.paneHeight, 2);
} else {
_parent.MovePlaneByOffset(0, -_parent.paneHeight);
_parent.delayEffect = 0;
ScrollUpdateID = setInterval(_parent, "MovePlaneByOffset", 100, 0, -_parent.paneHeight, 2);
}
}
on (rollOut, release, dragOut, releaseOutside) {
clearInterval(ScrollUpdateID);
}
Symbol 3043 Button
on (press) {
this.MovePlaneByOffset(0, -15);
this.delayEffect = 0;
ScrollRepeatID = setInterval(this, "MovePlaneByOffset", 25, 0, -15, 10);
}
on (rollOut, release, dragOut, releaseOutside) {
clearInterval(ScrollRepeatID);
}
Symbol 3046 Button
on (press) {
this.MovePlaneByOffset(15, 0);
this.delayEffect = 0;
ScrollRepeatID = setInterval(this, "MovePlaneByOffset", 25, 15, 0, 10);
}
on (rollOut, release, dragOut, releaseOutside) {
clearInterval(ScrollRepeatID);
}
Symbol 3049 Button
on (press) {
this.MovePlaneByOffset(-15, 0);
this.delayEffect = 0;
ScrollRepeatID = setInterval(this, "MovePlaneByOffset", 25, -15, 0, 10);
}
on (rollOut, release, dragOut, releaseOutside) {
clearInterval(ScrollRepeatID);
}
Symbol 3052 Button
on (press) {
this.MovePlaneByOffset(0, 15);
this.delayEffect = 0;
ScrollRepeatID = setInterval(this, "MovePlaneByOffset", 25, 0, 15, 10);
}
on (rollOut, release, dragOut, releaseOutside) {
clearInterval(ScrollRepeatID);
}
Symbol 3053 MovieClip [CQScrollbarV1_5] Frame 1
#initclip 2
function ScrollPaneClass() {
ScrollPaneClass.prototype.addProperty("MaxXScroll", this.getMaxXScroll, null);
ScrollPaneClass.prototype.addProperty("MaxYScroll", this.getMaxYScroll, null);
ScrollPaneClass.prototype.addProperty("XScrollPos", this.getXScrollPos, this.setXScrollPos);
ScrollPaneClass.prototype.addProperty("YScrollPos", this.getYScrollPos, this.setYScrollPos);
ScrollPaneClass.prototype.addProperty("width", this.getPWidth, this.setPWidth);
ScrollPaneClass.prototype.addProperty("height", this.getPHeight, this.setPHeight);
ScrollPaneClass.prototype.addProperty("paneWidth", this.getPlaneWidth, null);
ScrollPaneClass.prototype.addProperty("paneHeight", this.getPlaneHeight, null);
ScrollPaneClass.prototype.addProperty("content", this.getScrollContent, this.setScrollContent);
this.NewWidth = this._width;
this.NewHeight = this._height;
this._xscale = 100;
this._yscale = 100;
this.DelayEffect = -1;
this.Bounds._alpha = 0;
this.tabenabled = false;
this.tabchildren = true;
this.bUp.tabenabled = true;
this.bUp.tabindex = 16003;
this.bDown.tabenabled = true;
this.bDown.tabindex = 16004;
this.bLeft.tabenabled = true;
this.bLeft.tabindex = 16001;
this.bRight.tabenabled = true;
this.bRight.tabindex = 16002;
this.HScrollBar.tabenabled = false;
this.HScrollBar.tabchildren = false;
this.VScrollBar.tabenabled = false;
this.VScrollBar.tabchildren = false;
this.BUp.useHandCursor = false;
this.BDown.useHandCursor = false;
this.BLeft.useHandCursor = false;
this.BRight.useHandCursor = false;
this.HScrollBar.PageMove.useHandCursor = false;
this.VScrollBar.PageMove.useHandCursor = false;
this.HScrollBar.SliderButton.SB.useHandCursor = false;
this.VScrollBar.SliderButton.SB.useHandCursor = false;
this.ScrollPosition = new Object();
this.ScrollPosition.x = 0;
this.ScrollPosition.y = 0;
this.setScrollContent(this._panecontent);
this.Bounds._alpha = Number(this._panealpha);
if (this._panecolor.length > 6) {
new Color(this.Bounds).setRGB("0x" + this._panecolor.substr(1, 6));
} else {
new Color(this.Bounds).setRGB("0x" + this._panecolor);
}
this.respObject = eval (this._listener);
this.theScrollBarName = this._uid;
this.initScrollX = this.respObject.getPairValue(this.theScrollBarName + "x");
this.initScrollY = this.respObject.getPairValue(this.theScrollBarName + "y");
this.setSize(this.NewWidth, this.NewHeight);
this.setScrollPos(this.initScrollX, this.initScrollY);
this._visible = false;
var updateF = function (theObj) {
clearInterval(theObj.myTimer);
theObj._visible = true;
theObj.setSize(theObj.NewWidth, theObj.NewHeight);
theObj.setScrollPos(theObj.initScrollX, theObj.initScrollY);
};
this.myTimer = setInterval(updateF, 1, this);
}
ScrollPaneClass.prototype = new MovieClip();
Object.registerClass("CQScrollbarV1_5", ScrollPaneClass);
ScrollPaneClass.prototype.setSize = function (NewWidth, NewHeight) {
if (((arguments.length < 2) || (isNaN(NewWidth))) || (isNaN(NewHeight))) {
return(undefined);
}
var w = Math.max(NewWidth, 100);
var h = Math.max(NewHeight, 100);
this.Bounds._width = w;
this.Bounds._height = h;
this.Refresh();
};
ScrollPaneClass.prototype.Refresh = function () {
this.ActiveXScroller = false;
this.ActiveYScroller = false;
this.PlaneMask._width = this.Bounds._width;
this.PlaneMask._height = this.Bounds._height;
if (this.MaxXScroll != 0) {
this.ActiveXScroller = true;
this.PlaneMask._height = this.Bounds._height - 16;
}
if (this.MaxYScroll != 0) {
this.ActiveYScroller = true;
this.PlaneMask._width = this.Bounds._width - 16;
}
if (this.MaxXScroll != 0) {
this.ActiveXScroller = true;
this.PlaneMask._height = this.Bounds._height - 16;
}
this.BUp._x = this.paneWidth;
this.BUp._y = 0;
this.BDown._x = this.paneWidth;
this.BDown._y = this.paneHeight - 16;
this.VScrollBar._x = this.paneWidth;
this.VScrollBar._y = 17;
this.VScrollBar.PageMove._height = Math.round(this.paneHeight - 34);
this.VScrollBar.SliderButton._height = Math.round((this.VScrollBar.PageMove._height * this.paneHeight) / (this.paneHeight + this.MaxYScroll));
this.VScrollBar.SliderButton._height = Math.max(this.VScrollBar.SliderButton._height, 4);
this.BLeft._x = 0;
this.BLeft._y = this.paneHeight;
this.BRight._x = this.paneWidth - 16;
this.BRight._y = this.paneHeight;
this.HScrollBar._x = 17;
this.HScrollBar._y = this.paneHeight;
this.HScrollBar.PageMove._width = Math.round(this.paneWidth - 34);
this.HScrollBar.SliderButton._width = Math.round((this.HScrollBar.PageMove._width * this.paneWidth) / (this.paneWidth + this.MaxXScroll));
this.HScrollBar.SliderButton._width = Math.max(this.HScrollBar.SliderButton._width, 4);
this.BLeft._visible = this.ActiveXScroller;
this.BRight._visible = this.ActiveXScroller;
this.HScrollBar._visible = this.ActiveXScroller;
this.BUp._visible = this.ActiveYScroller;
this.BDown._visible = this.ActiveYScroller;
this.VScrollBar._visible = this.ActiveYScroller;
this.MovePlaneByOffset(0, 0);
};
ScrollPaneClass.prototype.getScrollContent = function () {
return(this.PlaneContent);
};
ScrollPaneClass.prototype.setScrollContent = function (NewScrollingMC) {
if ((this.PlaneContent != undefined) && (target != this.PlaneContent)) {
this.PlaneContent._visible = false;
this.PlaneContent.removeMovieClip();
this.PlaneContent.unloadMovie();
}
this.PlaneContent = eval ("this._parent." + NewScrollingMC);
this.PlaneContent.scrollPaneRef = this;
this.ScrollPosition = new Object();
this.ScrollPosition.x = 0;
this.ScrollPosition.y = 0;
this.MovePlane(this.ScrollPosition.x, this.ScrollPosition.y);
this.PlaneContent.setMask(this.PlaneMask);
this.setSize(this._width, this._height);
};
ScrollPaneClass.prototype.MovePlane = function (x, y, DelayEff) {
if (DelayEff > 0) {
this.DelayEffect++;
if (this.DelayEffect <= DelayEff) {
return(undefined);
}
}
x = Math.max(x, 0);
y = Math.max(y, 0);
x = Math.min(x, this.MaxXScroll);
y = Math.min(y, this.MaxYScroll);
this.offset = new Object();
this.offset.x = x;
this.offset.y = y;
this.localToGlobal(this.offset);
this.PlaneContent._parent.globalToLocal(this.offset);
this.PlaneContent._x = this.offset.x;
this.PlaneContent._y = this.offset.y;
var contentAdjust = this.PlaneContent.getBounds(this.PlaneContent);
var contentAdjustX = contentAdjust.xMin;
var contentAdjustY = contentAdjust.yMin;
var contentBounds = this.PlaneContent.getBounds(this);
this.offset.x = -(contentBounds.xMin - contentAdjustX);
this.offset.y = -(contentBounds.yMin - contentAdjustY);
this.localToGlobal(this.offset);
this.PlaneContent._parent.globalToLocal(this.offset);
this.PlaneContent._x = this.offset.x - this._x;
this.PlaneContent._y = this.offset.y - this._y;
this.ScrollPosition.x = x;
this.ScrollPosition.y = y;
this.HScrollBar.SliderButton._x = Math.round((this.HScrollBar.PageMove._width - this.HScrollBar.SliderButton._width) * (x / this.MaxXScroll));
this.VScrollBar.SliderButton._y = Math.round((this.VScrollBar.PageMove._height - this.VScrollBar.SliderButton._height) * (y / this.MaxYScroll));
updateAfterEvent();
if (this.respObject != undefined) {
var scrollPos = this.getScrollPos();
this.respObject.setPair(this.theScrollBarName + "x", this.XScrollPos);
this.respObject.setPair(this.theScrollBarName + "y", this.YScrollPos);
}
};
ScrollPaneClass.prototype.MovePlaneByOffset = function (x, y, DelayEff) {
this.MovePlane(this.ScrollPosition.x + x, this.ScrollPosition.y + y, DelayEff);
};
ScrollPaneClass.prototype.LockToScrolls = function () {
var x = Math.round(this.MaxXScroll * (this.HScrollBar.SliderButton._x / (this.HScrollBar.PageMove._width - this.HScrollBar.SliderButton._width)));
var y = Math.round(this.MaxYScroll * (this.VScrollBar.SliderButton._y / (this.VScrollBar.PageMove._height - this.VScrollBar.SliderButton._height)));
this.MovePlane(x, y);
};
ScrollPaneClass.prototype.getMaxXScroll = function () {
var contentAdjust = this.PlaneContent.getBounds(this.PlaneContent);
var contentAdjustX = contentAdjust.xMin;
return(Math.max(((this.PlaneContent._width + contentAdjustX) - this._x) - this.PlaneMask._width, 0));
};
ScrollPaneClass.prototype.getMaxYScroll = function () {
var contentAdjust = this.PlaneContent.getBounds(this.PlaneContent);
var contentAdjustY = contentAdjust.yMin;
return(Math.max(((this.PlaneContent._height + contentAdjustY) - this._y) - this.PlaneMask._height, 0));
};
ScrollPaneClass.prototype.getXScrollPos = function () {
return(this.ScrollPosition.x);
};
ScrollPaneClass.prototype.setXScrollPos = function (value) {
this.MovePlane(value, this.YScrollPos);
};
ScrollPaneClass.prototype.getYScrollPos = function () {
return(this.ScrollPosition.y);
};
ScrollPaneClass.prototype.setYScrollPos = function (value) {
this.MovePlane(this.XScrollPos, value);
};
ScrollPaneClass.prototype.getPWidth = function () {
return(this.Bounds._width);
};
ScrollPaneClass.prototype.setPWidth = function (value) {
this.setSize(value, this.Bounds._height);
};
ScrollPaneClass.prototype.getPHeight = function () {
return(this.Bounds._height);
};
ScrollPaneClass.prototype.setPHeight = function (value) {
this.setSize(this.Bounds._width, value);
};
ScrollPaneClass.prototype.getPlaneWidth = function () {
return(this.PlaneMask._width);
};
ScrollPaneClass.prototype.getPlaneHeight = function () {
return(this.PlaneMask._height);
};
ScrollPaneClass.prototype.setScrollPos = function (x, y) {
this.movePlane(x, y);
};
ScrollPaneClass.prototype.getScrollPos = function () {
return({x:this.XScrollPos, y:this.YScrollPos});
};
ScrollPaneClass.prototype.prepareForPrinting = function () {
this.PlaneContent.setMask(null);
this.PlaneMask._visible = false;
};
ScrollPaneClass.prototype.printingFinished = function () {
this.PlaneMask._visible = true;
this.PlaneContent.setMask(this.PlaneMask);
};
#endinitclip
Symbol 3026 MovieClip Frame 1
_global.cqRootPointer3027 = this;
if (this._parent == null) {
this.createTextField("version", 10, 0, 0, 200, 200);
this.version.multiline = true;
this.version.wordWrap = true;
this.version.text = "Symbol: CQScrollbarV1_5\nVersion 1.5\nCopyright 2005 Central Question Ltd.";
}
Symbol 3062 MovieClip [CQRandomV1_2] Frame 1
#initclip 3
function CQRandom() {
this.respObject = eval (this._listener);
this.theValue = new Array();
}
CQRandom.prototype = new Movieclip();
Object.registerClass("CQRandomV1_2", CQRandom);
CQRandom.prototype.setAnswers = function (theAnswer) {
if (theAnswer.length == 0) {
if (Number(this._min) >= Number(this._max)) {
var i = 0;
while (i < Number(this._max)) {
this.theValue[i] = "1";
i++;
}
} else {
var i = 0;
while (i < Number(this._max)) {
this.theValue[i] = "0";
i++;
}
var i = 0;
while (i < Number(this._min)) {
do {
this.theIndex = Math.floor(Math.random() * this._max);
} while (this.theValue[this.theIndex] == "1");
this.theValue[this.theIndex] = "1";
i++;
}
}
var updateF = function (theObj) {
clearInterval(theObj.myTimer);
theObj.respObject.updateFlash(theObj._responseid);
};
this.myTimer = setInterval(updateF, 50, this);
} else {
var i = 0;
while (i < theAnswer.length) {
this.theValue[i / 2] = theAnswer[i];
i = i + 2;
}
}
};
CQRandom.prototype.getAnswers = function () {
var returnValue = new Array();
var questionNumber = 0;
var i = 0;
while (i < this.theValue.length) {
returnValue[i * 2] = this.theValue[i];
if (this.theValue[i] == "1") {
questionNumber++;
}
returnValue[(i * 2) + 1] = (((((this._text1 + " ") + questionNumber) + " ") + this._text2) + " ") + this._min;
i++;
}
return(returnValue);
};
CQRandom.prototype.isFullyAnswered = function () {
if (this.theValue.length == 0) {
return(false);
}
return(true);
};
#endinitclip
Symbol 3060 MovieClip Frame 1
_global.cqRootPointer3061 = this;
if (this._parent == null) {
this.createTextField("version", 10, 0, 0, 100, 100);
this.version.multiline = true;
this.version.wordWrap = true;
this.version.text = "Symbol: CQRandomV1_2\nVersion 1.2\nCopyright 2005 Central Question Ltd.";
}
Symbol 3058 MovieClip Frame 1
this.text3059.tabIndex = 3059;
this.custom3063.tabIndex = 3063;
_global.resp.registerResponseStrRenderFlash("RandomChooser", custom3063);
Instance of Symbol 3062 MovieClip [CQRandomV1_2] "custom3063" in Symbol 3058 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_allocatedwidth = "-10000";
_allocatedheight = "-10000";
_responseid = "RandomChooser";
_min = "1";
_max = "1";
_listener = "_global.resp";
_text1 = "Question ";
_text2 = " of";
_option0 = "responselabel3001";
_option0TabIndex = "3064";
_option0ident = "RandomChooser";
}
Symbol 3067 MovieClip [clip3067] Frame 1
_global.cqRootPointer3068 = this;
Symbol 3071 MovieClip [clip3071] Frame 1
_global.cqRootPointer3072 = this;
Symbol 3080 MovieClip [clip3080] Frame 1
_global.cqRootPointer3081 = this;
Symbol 3084 MovieClip [clip3084] Frame 1
_global.cqRootPointer3085 = this;
Symbol 3088 MovieClip [clip3088] Frame 1
_global.cqRootPointer3089 = this;
Symbol 3078 MovieClip Frame 1
this.text3079.tabIndex = 3079;
_global.resp.registerButton(this.button3092, "questiontitle # 2127777008-2", "a", 3092);
this.text3093.tabIndex = 3093;
_global.resp.registerButton(this.button3094, "questiontitle # 2127777008-2", "b", 3094);
this.text3095.tabIndex = 3095;
_global.resp.registerButton(this.button3096, "questiontitle # 2127777008-2", "c", 3096);
this.text3097.tabIndex = 3097;
_global.resp.registerButton(this.button3098, "questiontitle # 2127777008-2", "d", 3098);
this.text3099.tabIndex = 3099;
this.text3100.tabIndex = 3100;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3092" in Symbol 3078 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " 1995";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3094" in Symbol 3078 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " 1998";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3096" in Symbol 3078 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " 2000";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3098" in Symbol 3078 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " 1999";
}
Symbol 3106 MovieClip Frame 1
this.text3107.tabIndex = 3107;
_global.resp.registerButton(this.button3108, "questiontitle # 2127777008-3", "a", 3108);
this.text3109.tabIndex = 3109;
_global.resp.registerButton(this.button3110, "questiontitle # 2127777008-3", "b", 3110);
this.text3111.tabIndex = 3111;
_global.resp.registerButton(this.button3112, "questiontitle # 2127777008-3", "c", 3112);
this.text3113.tabIndex = 3113;
this.text3114.tabIndex = 3114;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3108" in Symbol 3106 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " Wade Fulp";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3110" in Symbol 3106 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " Tom Fulp";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3112" in Symbol 3106 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " Mr.Magato";
}
Symbol 3119 MovieClip Frame 1
this.text3120.tabIndex = 3120;
_global.resp.registerButton(this.button3121, "questiontitle # 2127777008-4", "a", 3121);
this.text3122.tabIndex = 3122;
_global.resp.registerButton(this.button3123, "questiontitle # 2127777008-4", "b", 3123);
this.text3124.tabIndex = 3124;
_global.resp.registerButton(this.button3125, "questiontitle # 2127777008-4", "c", 3125);
this.text3126.tabIndex = 3126;
_global.resp.registerButton(this.button3127, "questiontitle # 2127777008-4", "d", 3127);
this.text3128.tabIndex = 3128;
this.text3129.tabIndex = 3129;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3121" in Symbol 3119 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " A starfish";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3123" in Symbol 3119 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " A cat";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3125" in Symbol 3119 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " A Tankman";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3127" in Symbol 3119 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " A dog";
}
Symbol 3134 MovieClip Frame 1
this.text3135.tabIndex = 3135;
_global.resp.registerButton(this.button3136, "questiontitle # 2127777008-5", "a", 3136);
this.text3137.tabIndex = 3137;
_global.resp.registerButton(this.button3138, "questiontitle # 2127777008-5", "b", 3138);
this.text3139.tabIndex = 3139;
_global.resp.registerButton(this.button3140, "questiontitle # 2127777008-5", "c", 3140);
this.text3141.tabIndex = 3141;
_global.resp.registerButton(this.button3142, "questiontitle # 2127777008-5", "d", 3142);
this.text3143.tabIndex = 3143;
this.text3144.tabIndex = 3144;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3136" in Symbol 3134 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " 0";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3138" in Symbol 3134 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " 5";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3140" in Symbol 3134 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " 2";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3142" in Symbol 3134 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " 10";
}
Symbol 3149 MovieClip Frame 1
this.text3150.tabIndex = 3150;
_global.resp.registerButton(this.button3151, "questiontitle # 2127777008-6", "a", 3151);
this.text3152.tabIndex = 3152;
_global.resp.registerButton(this.button3153, "questiontitle # 2127777008-6", "b", 3153);
this.text3154.tabIndex = 3154;
_global.resp.registerButton(this.button3155, "questiontitle # 2127777008-6", "c", 3155);
this.text3156.tabIndex = 3156;
_global.resp.registerButton(this.button3157, "questiontitle # 2127777008-6", "d", 3157);
this.text3158.tabIndex = 3158;
this.text3159.tabIndex = 3159;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3151" in Symbol 3149 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " Worst of the Week";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3153" in Symbol 3149 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " The Suck Flash";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3155" in Symbol 3149 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " Turd of the Week";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3157" in Symbol 3149 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " This Shit sucks";
}
Symbol 3164 MovieClip Frame 1
this.text3165.tabIndex = 3165;
_global.resp.registerButton(this.button3166, "questiontitle # 2127777008-7", "a", 3166);
this.text3167.tabIndex = 3167;
_global.resp.registerButton(this.button3168, "questiontitle # 2127777008-7", "b", 3168);
this.text3169.tabIndex = 3169;
_global.resp.registerButton(this.button3170, "questiontitle # 2127777008-7", "c", 3170);
this.text3171.tabIndex = 3171;
_global.resp.registerButton(this.button3172, "questiontitle # 2127777008-7", "d", 3172);
this.text3173.tabIndex = 3173;
this.text3174.tabIndex = 3174;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3166" in Symbol 3164 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " 1";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3168" in Symbol 3164 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " 2";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3170" in Symbol 3164 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " 3";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3172" in Symbol 3164 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " as much as you want, just spam this shit up";
}
Symbol 3179 MovieClip Frame 1
this.text3180.tabIndex = 3180;
_global.resp.registerButton(this.button3181, "questiontitle # 2127777008-8", "a", 3181);
this.text3182.tabIndex = 3182;
_global.resp.registerButton(this.button3183, "questiontitle # 2127777008-8", "b", 3183);
this.text3184.tabIndex = 3184;
_global.resp.registerButton(this.button3185, "questiontitle # 2127777008-8", "c", 3185);
this.text3186.tabIndex = 3186;
_global.resp.registerButton(this.button3187, "questiontitle # 2127777008-8", "d", 3187);
this.text3188.tabIndex = 3188;
this.text3189.tabIndex = 3189;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3181" in Symbol 3179 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " 1";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3183" in Symbol 3179 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " 2";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3185" in Symbol 3179 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " 3";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3187" in Symbol 3179 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " 4";
}
Symbol 3194 MovieClip Frame 1
this.text3195.tabIndex = 3195;
_global.resp.registerButton(this.button3196, "questiontitle # 2127777008-9", "a", 3196);
this.text3197.tabIndex = 3197;
_global.resp.registerButton(this.button3198, "questiontitle # 2127777008-9", "b", 3198);
this.text3199.tabIndex = 3199;
_global.resp.registerButton(this.button3200, "questiontitle # 2127777008-9", "c", 3200);
this.text3201.tabIndex = 3201;
_global.resp.registerButton(this.button3202, "questiontitle # 2127777008-9", "d", 3202);
this.text3203.tabIndex = 3203;
this.text3204.tabIndex = 3204;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3196" in Symbol 3194 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " Strawberry Clock";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3198" in Symbol 3194 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " Rasberry Clock";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3200" in Symbol 3194 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " Penis clock";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3202" in Symbol 3194 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " Blueberry Clock";
}
Symbol 3209 MovieClip Frame 1
this.text3210.tabIndex = 3210;
_global.resp.registerButton(this.button3211, "questiontitle # 2127777008-10", "a", 3211);
this.text3212.tabIndex = 3212;
_global.resp.registerButton(this.button3213, "questiontitle # 2127777008-10", "b", 3213);
this.text3214.tabIndex = 3214;
_global.resp.registerButton(this.button3215, "questiontitle # 2127777008-10", "c", 3215);
this.text3216.tabIndex = 3216;
_global.resp.registerButton(this.button3217, "questiontitle # 2127777008-10", "d", 3217);
this.text3218.tabIndex = 3218;
this.text3219.tabIndex = 3219;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3211" in Symbol 3209 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " Porn";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3213" in Symbol 3209 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " Corn";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3215" in Symbol 3209 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " Wrestling";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3217" in Symbol 3209 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " Basketball";
}
Symbol 3224 MovieClip Frame 1
this.text3225.tabIndex = 3225;
_global.resp.registerButton(this.button3226, "questiontitle # 2127777008-11", "a", 3226);
this.text3227.tabIndex = 3227;
_global.resp.registerButton(this.button3228, "questiontitle # 2127777008-11", "b", 3228);
this.text3229.tabIndex = 3229;
_global.resp.registerButton(this.button3230, "questiontitle # 2127777008-11", "c", 3230);
this.text3231.tabIndex = 3231;
_global.resp.registerButton(this.button3232, "questiontitle # 2127777008-11", "d", 3232);
this.text3233.tabIndex = 3233;
this.text3234.tabIndex = 3234;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3226" in Symbol 3224 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " 14";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3228" in Symbol 3224 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " 12";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3230" in Symbol 3224 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " 13";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3232" in Symbol 3224 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3080";
_theUpRoll = "clip3084";
_theDownNormal = "clip3088";
_theDownRoll = "clip3088";
_listener = "_global.resp";
_accessText = " 15";
}
Symbol 3239 MovieClip Frame 1
this.text3240.tabIndex = 3240;
Symbol 3248 MovieClip Frame 1
this.text3249.tabIndex = 3249;
Symbol 3260 MovieClip Frame 1
this.stop();
this.onPress = function () {
var _local1 = this;
if ((_local1._parent._parent._parent.scrollPaneRef != null) && (_local1._parent._parent._parent.scrollPaneRef.prepareForPrinting != null)) {
_local1.hasScrollbar = true;
} else {
_local1.hasScrollbar = false;
}
_local1.gotoAndPlay(2);
};
Symbol 3260 MovieClip Frame 2
if (this.hasScrollbar) {
this._parent._parent._parent.scrollPaneRef.prepareForPrinting();
}
if (this._parent._rotate.toLowerCase() == "true") {
this._parent._parent._parent._rotation = 270;
}
Symbol 3260 MovieClip Frame 3
printAsBitmap (this._parent._parent._parent, "bmax");
Symbol 3260 MovieClip Frame 4
if (this.hasScrollbar) {
this._parent._parent._parent.scrollPaneRef.printingFinished();
}
if (this._parent._rotate.toLowerCase() == "true") {
this._parent._parent._parent._rotation = 0;
}
Symbol 3256 MovieClip [clip3256] Frame 1
_global.cqRootPointer3257 = this;
Symbol 3253 MovieClip Frame 1
_global.resp.registerFeedback("GeneralReportResponse", this);
Symbol 3253 MovieClip Frame 2
this.text3254.tabIndex = 3254;
this.clip3255._accProps = new Object();
this.clip3255._accProps.forceSimple = true;
this.clip3255._accProps.name = "";
this.clip3255.tabIndex = 3255;
this.clip3255.tabEnabled = false;
this.clip3255.tabChildren = true;
this.text3261.tabIndex = 3261;
this.text3262.tabIndex = 3262;
this.text3263.tabIndex = 3263;
this.text3263.background = false;
this.text3263.backgroundColor = -1;
this.text3263.border = false;
this.text3263.borderColor = -16777216;
this.text3263.maxChars = 10000;
this.text3263.password = false;
_global.resp.populateMatvar(this.text3263, "The NG Quiz 1 #2127777008-1.quizReview.CalculationPage.OVERALLSCORE", 1, false);
this.text3264.tabIndex = 3264;
this.text3265.tabIndex = 3265;
this.text3265.background = false;
this.text3265.backgroundColor = -1;
this.text3265.border = false;
this.text3265.borderColor = -16777216;
this.text3265.maxChars = 10000;
this.text3265.password = false;
_global.resp.populateMatvar(this.text3265, "The NG Quiz 1 #2127777008-1.quizReview.CalculationPage.PERCENTAGESCORE", 1, false);
this.text3266.tabIndex = 3266;
this.text3267.tabIndex = 3267;
this.text3268.tabIndex = 3268;
this.text3268.background = false;
this.text3268.backgroundColor = -1;
this.text3268.border = false;
this.text3268.borderColor = -16777216;
this.text3268.maxChars = 10000;
this.text3268.password = false;
_global.resp.populateMatvar(this.text3268, "The NG Quiz 1 #2127777008-1.quizReview.CalculationPage.TOTALPOSSIBLESCORE", 1, false);
this.text3269.tabIndex = 3269;
this.text3270.tabIndex = 3270;
this.text3270.background = false;
this.text3270.backgroundColor = -1;
this.text3270.border = false;
this.text3270.borderColor = -16777216;
this.text3270.maxChars = 10000;
this.text3270.password = false;
_global.resp.populateMatvar(this.text3270, "The NG Quiz 1 #2127777008-1.quizReview.CalculationPage.PERCENTAGEPASS", 1, false);
this.text3271.tabIndex = 3271;
this.stop();
Symbol 3272 MovieClip Frame 1
_global.resp.registerFeedback("PassFeedbackResponse", this);
Symbol 3272 MovieClip Frame 2
this.text3273.tabIndex = 3273;
this.text3274.tabIndex = 3274;
this.stop();
Symbol 3275 MovieClip Frame 1
_global.resp.registerFeedback("FailFeedbackResponse", this);
Symbol 3275 MovieClip Frame 2
this.text3276.tabIndex = 3276;
this.text3277.tabIndex = 3277;
this.stop();
Symbol 3278 MovieClip Frame 1
_global.resp.registerFeedback("FooterFeedbackResponse", this);
Symbol 3278 MovieClip Frame 2
this.stop();
Symbol 3283 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 2127777008-2Response", this);
Symbol 3283 MovieClip Frame 2
this.text3284.tabIndex = 3284;
this.stop();
Symbol 3288 MovieClip [clip3288] Frame 1
_global.cqRootPointer3289 = this;
Symbol 3285 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3285 MovieClip Frame 2
this.text3286.tabIndex = 3286;
this.clip3287._accProps = new Object();
this.clip3287._accProps.forceSimple = true;
this.clip3287._accProps.name = "Cross";
this.clip3287.tabIndex = 3287;
this.clip3287.tabEnabled = false;
this.clip3287.tabChildren = true;
this.clip3293._accProps = new Object();
this.clip3293._accProps.forceSimple = true;
this.clip3293._accProps.name = "Unselected Radio Button";
this.clip3293.tabIndex = 3293;
this.clip3293.tabEnabled = false;
this.clip3293.tabChildren = true;
this.stop();
Symbol 3294 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3294 MovieClip Frame 2
this.text3295.tabIndex = 3295;
this.clip3296._accProps = new Object();
this.clip3296._accProps.forceSimple = true;
this.clip3296._accProps.name = "Unselected Radio Button";
this.clip3296.tabIndex = 3296;
this.clip3296.tabEnabled = false;
this.clip3296.tabChildren = true;
this.stop();
Symbol 3297 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3297 MovieClip Frame 2
this.text3298.tabIndex = 3298;
this.clip3299._accProps = new Object();
this.clip3299._accProps.forceSimple = true;
this.clip3299._accProps.name = "Cross";
this.clip3299.tabIndex = 3299;
this.clip3299.tabEnabled = false;
this.clip3299.tabChildren = true;
this.clip3300._accProps = new Object();
this.clip3300._accProps.forceSimple = true;
this.clip3300._accProps.name = "Unselected Radio Button";
this.clip3300.tabIndex = 3300;
this.clip3300.tabEnabled = false;
this.clip3300.tabChildren = true;
this.stop();
Symbol 3301 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3301 MovieClip Frame 2
this.text3302.tabIndex = 3302;
this.clip3303._accProps = new Object();
this.clip3303._accProps.forceSimple = true;
this.clip3303._accProps.name = "Unselected Radio Button";
this.clip3303.tabIndex = 3303;
this.clip3303.tabEnabled = false;
this.clip3303.tabChildren = true;
this.stop();
Symbol 3304 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3304 MovieClip Frame 2
this.text3305.tabIndex = 3305;
this.clip3306._accProps = new Object();
this.clip3306._accProps.forceSimple = true;
this.clip3306._accProps.name = "Cross";
this.clip3306.tabIndex = 3306;
this.clip3306.tabEnabled = false;
this.clip3306.tabChildren = true;
this.clip3307._accProps = new Object();
this.clip3307._accProps.forceSimple = true;
this.clip3307._accProps.name = "Unselected Radio Button";
this.clip3307.tabIndex = 3307;
this.clip3307.tabEnabled = false;
this.clip3307.tabChildren = true;
this.stop();
Symbol 3308 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3308 MovieClip Frame 2
this.text3309.tabIndex = 3309;
this.clip3310._accProps = new Object();
this.clip3310._accProps.forceSimple = true;
this.clip3310._accProps.name = "Unselected Radio Button";
this.clip3310.tabIndex = 3310;
this.clip3310.tabEnabled = false;
this.clip3310.tabChildren = true;
this.stop();
Symbol 3311 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3311 MovieClip Frame 2
this.text3312.tabIndex = 3312;
this.clip3313._accProps = new Object();
this.clip3313._accProps.forceSimple = true;
this.clip3313._accProps.name = "Cross";
this.clip3313.tabIndex = 3313;
this.clip3313.tabEnabled = false;
this.clip3313.tabChildren = true;
this.clip3314._accProps = new Object();
this.clip3314._accProps.forceSimple = true;
this.clip3314._accProps.name = "Unselected Radio Button";
this.clip3314.tabIndex = 3314;
this.clip3314.tabEnabled = false;
this.clip3314.tabChildren = true;
this.stop();
Symbol 3315 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3315 MovieClip Frame 2
this.text3316.tabIndex = 3316;
this.clip3317._accProps = new Object();
this.clip3317._accProps.forceSimple = true;
this.clip3317._accProps.name = "Unselected Radio Button";
this.clip3317.tabIndex = 3317;
this.clip3317.tabEnabled = false;
this.clip3317.tabChildren = true;
this.stop();
Symbol 3321 MovieClip [clip3321] Frame 1
_global.cqRootPointer3322 = this;
Symbol 3318 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 2127777008-2Response", this);
Symbol 3318 MovieClip Frame 2
this.text3319.tabIndex = 3319;
this.clip3320._accProps = new Object();
this.clip3320._accProps.forceSimple = true;
this.clip3320._accProps.name = "Tick";
this.clip3320.tabIndex = 3320;
this.clip3320.tabEnabled = false;
this.clip3320.tabChildren = true;
this.text3326.tabIndex = 3326;
this.stop();
Symbol 3330 MovieClip [clip3330] Frame 1
_global.cqRootPointer3331 = this;
Symbol 3327 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 2127777008-2Response", this);
Symbol 3327 MovieClip Frame 2
this.text3328.tabIndex = 3328;
this.clip3329._accProps = new Object();
this.clip3329._accProps.forceSimple = true;
this.clip3329._accProps.name = "Cross";
this.clip3329.tabIndex = 3329;
this.clip3329.tabEnabled = false;
this.clip3329.tabChildren = true;
this.text3335.tabIndex = 3335;
this.stop();
Symbol 3336 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 2127777008-2Response", this);
Symbol 3336 MovieClip Frame 2
this.stop();
Symbol 3341 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 2127777008-3Response", this);
Symbol 3341 MovieClip Frame 2
this.text3342.tabIndex = 3342;
this.stop();
Symbol 3343 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3343 MovieClip Frame 2
this.text3344.tabIndex = 3344;
this.clip3345._accProps = new Object();
this.clip3345._accProps.forceSimple = true;
this.clip3345._accProps.name = "Cross";
this.clip3345.tabIndex = 3345;
this.clip3345.tabEnabled = false;
this.clip3345.tabChildren = true;
this.clip3346._accProps = new Object();
this.clip3346._accProps.forceSimple = true;
this.clip3346._accProps.name = "Unselected Radio Button";
this.clip3346.tabIndex = 3346;
this.clip3346.tabEnabled = false;
this.clip3346.tabChildren = true;
this.stop();
Symbol 3347 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3347 MovieClip Frame 2
this.text3348.tabIndex = 3348;
this.clip3349._accProps = new Object();
this.clip3349._accProps.forceSimple = true;
this.clip3349._accProps.name = "Unselected Radio Button";
this.clip3349.tabIndex = 3349;
this.clip3349.tabEnabled = false;
this.clip3349.tabChildren = true;
this.stop();
Symbol 3353 MovieClip [clip3353] Frame 1
_global.cqRootPointer3354 = this;
Symbol 3350 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3350 MovieClip Frame 2
this.text3351.tabIndex = 3351;
this.clip3352._accProps = new Object();
this.clip3352._accProps.forceSimple = true;
this.clip3352._accProps.name = "Tick";
this.clip3352.tabIndex = 3352;
this.clip3352.tabEnabled = false;
this.clip3352.tabChildren = true;
this.clip3358._accProps = new Object();
this.clip3358._accProps.forceSimple = true;
this.clip3358._accProps.name = "Unselected Radio Button";
this.clip3358.tabIndex = 3358;
this.clip3358.tabEnabled = false;
this.clip3358.tabChildren = true;
this.stop();
Symbol 3362 MovieClip [clip3362] Frame 1
_global.cqRootPointer3363 = this;
Symbol 3359 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3359 MovieClip Frame 2
this.text3360.tabIndex = 3360;
this.clip3361._accProps = new Object();
this.clip3361._accProps.forceSimple = true;
this.clip3361._accProps.name = "Arrow";
this.clip3361.tabIndex = 3361;
this.clip3361.tabEnabled = false;
this.clip3361.tabChildren = true;
this.clip3365._accProps = new Object();
this.clip3365._accProps.forceSimple = true;
this.clip3365._accProps.name = "Unselected Radio Button";
this.clip3365.tabIndex = 3365;
this.clip3365.tabEnabled = false;
this.clip3365.tabChildren = true;
this.stop();
Symbol 3366 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3366 MovieClip Frame 2
this.text3367.tabIndex = 3367;
this.clip3368._accProps = new Object();
this.clip3368._accProps.forceSimple = true;
this.clip3368._accProps.name = "Cross";
this.clip3368.tabIndex = 3368;
this.clip3368.tabEnabled = false;
this.clip3368.tabChildren = true;
this.clip3369._accProps = new Object();
this.clip3369._accProps.forceSimple = true;
this.clip3369._accProps.name = "Unselected Radio Button";
this.clip3369.tabIndex = 3369;
this.clip3369.tabEnabled = false;
this.clip3369.tabChildren = true;
this.stop();
Symbol 3370 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3370 MovieClip Frame 2
this.text3371.tabIndex = 3371;
this.clip3372._accProps = new Object();
this.clip3372._accProps.forceSimple = true;
this.clip3372._accProps.name = "Unselected Radio Button";
this.clip3372.tabIndex = 3372;
this.clip3372.tabEnabled = false;
this.clip3372.tabChildren = true;
this.stop();
Symbol 3373 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 2127777008-3Response", this);
Symbol 3373 MovieClip Frame 2
this.text3374.tabIndex = 3374;
this.clip3375._accProps = new Object();
this.clip3375._accProps.forceSimple = true;
this.clip3375._accProps.name = "Tick";
this.clip3375.tabIndex = 3375;
this.clip3375.tabEnabled = false;
this.clip3375.tabChildren = true;
this.text3376.tabIndex = 3376;
this.stop();
Symbol 3377 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 2127777008-3Response", this);
Symbol 3377 MovieClip Frame 2
this.text3378.tabIndex = 3378;
this.clip3379._accProps = new Object();
this.clip3379._accProps.forceSimple = true;
this.clip3379._accProps.name = "Cross";
this.clip3379.tabIndex = 3379;
this.clip3379.tabEnabled = false;
this.clip3379.tabChildren = true;
this.text3380.tabIndex = 3380;
this.stop();
Symbol 3381 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 2127777008-3Response", this);
Symbol 3381 MovieClip Frame 2
this.stop();
Symbol 3386 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 2127777008-4Response", this);
Symbol 3386 MovieClip Frame 2
this.text3387.tabIndex = 3387;
this.stop();
Symbol 3388 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3388 MovieClip Frame 2
this.text3389.tabIndex = 3389;
this.clip3390._accProps = new Object();
this.clip3390._accProps.forceSimple = true;
this.clip3390._accProps.name = "Cross";
this.clip3390.tabIndex = 3390;
this.clip3390.tabEnabled = false;
this.clip3390.tabChildren = true;
this.clip3391._accProps = new Object();
this.clip3391._accProps.forceSimple = true;
this.clip3391._accProps.name = "Unselected Radio Button";
this.clip3391.tabIndex = 3391;
this.clip3391.tabEnabled = false;
this.clip3391.tabChildren = true;
this.stop();
Symbol 3392 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3392 MovieClip Frame 2
this.text3393.tabIndex = 3393;
this.clip3394._accProps = new Object();
this.clip3394._accProps.forceSimple = true;
this.clip3394._accProps.name = "Unselected Radio Button";
this.clip3394.tabIndex = 3394;
this.clip3394.tabEnabled = false;
this.clip3394.tabChildren = true;
this.stop();
Symbol 3395 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3395 MovieClip Frame 2
this.text3396.tabIndex = 3396;
this.clip3397._accProps = new Object();
this.clip3397._accProps.forceSimple = true;
this.clip3397._accProps.name = "Cross";
this.clip3397.tabIndex = 3397;
this.clip3397.tabEnabled = false;
this.clip3397.tabChildren = true;
this.clip3398._accProps = new Object();
this.clip3398._accProps.forceSimple = true;
this.clip3398._accProps.name = "Unselected Radio Button";
this.clip3398.tabIndex = 3398;
this.clip3398.tabEnabled = false;
this.clip3398.tabChildren = true;
this.stop();
Symbol 3399 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3399 MovieClip Frame 2
this.text3400.tabIndex = 3400;
this.clip3401._accProps = new Object();
this.clip3401._accProps.forceSimple = true;
this.clip3401._accProps.name = "Unselected Radio Button";
this.clip3401.tabIndex = 3401;
this.clip3401.tabEnabled = false;
this.clip3401.tabChildren = true;
this.stop();
Symbol 3402 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3402 MovieClip Frame 2
this.text3403.tabIndex = 3403;
this.clip3404._accProps = new Object();
this.clip3404._accProps.forceSimple = true;
this.clip3404._accProps.name = "Tick";
this.clip3404.tabIndex = 3404;
this.clip3404.tabEnabled = false;
this.clip3404.tabChildren = true;
this.clip3405._accProps = new Object();
this.clip3405._accProps.forceSimple = true;
this.clip3405._accProps.name = "Unselected Radio Button";
this.clip3405.tabIndex = 3405;
this.clip3405.tabEnabled = false;
this.clip3405.tabChildren = true;
this.stop();
Symbol 3406 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3406 MovieClip Frame 2
this.text3407.tabIndex = 3407;
this.clip3408._accProps = new Object();
this.clip3408._accProps.forceSimple = true;
this.clip3408._accProps.name = "Arrow";
this.clip3408.tabIndex = 3408;
this.clip3408.tabEnabled = false;
this.clip3408.tabChildren = true;
this.clip3409._accProps = new Object();
this.clip3409._accProps.forceSimple = true;
this.clip3409._accProps.name = "Unselected Radio Button";
this.clip3409.tabIndex = 3409;
this.clip3409.tabEnabled = false;
this.clip3409.tabChildren = true;
this.stop();
Symbol 3410 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3410 MovieClip Frame 2
this.text3411.tabIndex = 3411;
this.clip3412._accProps = new Object();
this.clip3412._accProps.forceSimple = true;
this.clip3412._accProps.name = "Cross";
this.clip3412.tabIndex = 3412;
this.clip3412.tabEnabled = false;
this.clip3412.tabChildren = true;
this.clip3413._accProps = new Object();
this.clip3413._accProps.forceSimple = true;
this.clip3413._accProps.name = "Unselected Radio Button";
this.clip3413.tabIndex = 3413;
this.clip3413.tabEnabled = false;
this.clip3413.tabChildren = true;
this.stop();
Symbol 3414 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3414 MovieClip Frame 2
this.text3415.tabIndex = 3415;
this.clip3416._accProps = new Object();
this.clip3416._accProps.forceSimple = true;
this.clip3416._accProps.name = "Unselected Radio Button";
this.clip3416.tabIndex = 3416;
this.clip3416.tabEnabled = false;
this.clip3416.tabChildren = true;
this.stop();
Symbol 3417 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 2127777008-4Response", this);
Symbol 3417 MovieClip Frame 2
this.text3418.tabIndex = 3418;
this.clip3419._accProps = new Object();
this.clip3419._accProps.forceSimple = true;
this.clip3419._accProps.name = "Tick";
this.clip3419.tabIndex = 3419;
this.clip3419.tabEnabled = false;
this.clip3419.tabChildren = true;
this.text3420.tabIndex = 3420;
this.stop();
Symbol 3421 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 2127777008-4Response", this);
Symbol 3421 MovieClip Frame 2
this.text3422.tabIndex = 3422;
this.clip3423._accProps = new Object();
this.clip3423._accProps.forceSimple = true;
this.clip3423._accProps.name = "Cross";
this.clip3423.tabIndex = 3423;
this.clip3423.tabEnabled = false;
this.clip3423.tabChildren = true;
this.text3424.tabIndex = 3424;
this.stop();
Symbol 3425 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 2127777008-4Response", this);
Symbol 3425 MovieClip Frame 2
this.stop();
Symbol 3430 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 2127777008-5Response", this);
Symbol 3430 MovieClip Frame 2
this.text3431.tabIndex = 3431;
this.stop();
Symbol 3432 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3432 MovieClip Frame 2
this.text3433.tabIndex = 3433;
this.clip3434._accProps = new Object();
this.clip3434._accProps.forceSimple = true;
this.clip3434._accProps.name = "Cross";
this.clip3434.tabIndex = 3434;
this.clip3434.tabEnabled = false;
this.clip3434.tabChildren = true;
this.clip3435._accProps = new Object();
this.clip3435._accProps.forceSimple = true;
this.clip3435._accProps.name = "Unselected Radio Button";
this.clip3435.tabIndex = 3435;
this.clip3435.tabEnabled = false;
this.clip3435.tabChildren = true;
this.stop();
Symbol 3436 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3436 MovieClip Frame 2
this.text3437.tabIndex = 3437;
this.clip3438._accProps = new Object();
this.clip3438._accProps.forceSimple = true;
this.clip3438._accProps.name = "Unselected Radio Button";
this.clip3438.tabIndex = 3438;
this.clip3438.tabEnabled = false;
this.clip3438.tabChildren = true;
this.stop();
Symbol 3439 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3439 MovieClip Frame 2
this.text3440.tabIndex = 3440;
this.clip3441._accProps = new Object();
this.clip3441._accProps.forceSimple = true;
this.clip3441._accProps.name = "Tick";
this.clip3441.tabIndex = 3441;
this.clip3441.tabEnabled = false;
this.clip3441.tabChildren = true;
this.clip3442._accProps = new Object();
this.clip3442._accProps.forceSimple = true;
this.clip3442._accProps.name = "Unselected Radio Button";
this.clip3442.tabIndex = 3442;
this.clip3442.tabEnabled = false;
this.clip3442.tabChildren = true;
this.stop();
Symbol 3443 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3443 MovieClip Frame 2
this.text3444.tabIndex = 3444;
this.clip3445._accProps = new Object();
this.clip3445._accProps.forceSimple = true;
this.clip3445._accProps.name = "Arrow";
this.clip3445.tabIndex = 3445;
this.clip3445.tabEnabled = false;
this.clip3445.tabChildren = true;
this.clip3446._accProps = new Object();
this.clip3446._accProps.forceSimple = true;
this.clip3446._accProps.name = "Unselected Radio Button";
this.clip3446.tabIndex = 3446;
this.clip3446.tabEnabled = false;
this.clip3446.tabChildren = true;
this.stop();
Symbol 3447 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3447 MovieClip Frame 2
this.text3448.tabIndex = 3448;
this.clip3449._accProps = new Object();
this.clip3449._accProps.forceSimple = true;
this.clip3449._accProps.name = "Cross";
this.clip3449.tabIndex = 3449;
this.clip3449.tabEnabled = false;
this.clip3449.tabChildren = true;
this.clip3450._accProps = new Object();
this.clip3450._accProps.forceSimple = true;
this.clip3450._accProps.name = "Unselected Radio Button";
this.clip3450.tabIndex = 3450;
this.clip3450.tabEnabled = false;
this.clip3450.tabChildren = true;
this.stop();
Symbol 3451 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3451 MovieClip Frame 2
this.text3452.tabIndex = 3452;
this.clip3453._accProps = new Object();
this.clip3453._accProps.forceSimple = true;
this.clip3453._accProps.name = "Unselected Radio Button";
this.clip3453.tabIndex = 3453;
this.clip3453.tabEnabled = false;
this.clip3453.tabChildren = true;
this.stop();
Symbol 3454 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3454 MovieClip Frame 2
this.text3455.tabIndex = 3455;
this.clip3456._accProps = new Object();
this.clip3456._accProps.forceSimple = true;
this.clip3456._accProps.name = "Cross";
this.clip3456.tabIndex = 3456;
this.clip3456.tabEnabled = false;
this.clip3456.tabChildren = true;
this.clip3457._accProps = new Object();
this.clip3457._accProps.forceSimple = true;
this.clip3457._accProps.name = "Unselected Radio Button";
this.clip3457.tabIndex = 3457;
this.clip3457.tabEnabled = false;
this.clip3457.tabChildren = true;
this.stop();
Symbol 3458 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3458 MovieClip Frame 2
this.text3459.tabIndex = 3459;
this.clip3460._accProps = new Object();
this.clip3460._accProps.forceSimple = true;
this.clip3460._accProps.name = "Unselected Radio Button";
this.clip3460.tabIndex = 3460;
this.clip3460.tabEnabled = false;
this.clip3460.tabChildren = true;
this.stop();
Symbol 3461 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 2127777008-5Response", this);
Symbol 3461 MovieClip Frame 2
this.text3462.tabIndex = 3462;
this.clip3463._accProps = new Object();
this.clip3463._accProps.forceSimple = true;
this.clip3463._accProps.name = "Tick";
this.clip3463.tabIndex = 3463;
this.clip3463.tabEnabled = false;
this.clip3463.tabChildren = true;
this.text3464.tabIndex = 3464;
this.stop();
Symbol 3465 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 2127777008-5Response", this);
Symbol 3465 MovieClip Frame 2
this.text3466.tabIndex = 3466;
this.clip3467._accProps = new Object();
this.clip3467._accProps.forceSimple = true;
this.clip3467._accProps.name = "Cross";
this.clip3467.tabIndex = 3467;
this.clip3467.tabEnabled = false;
this.clip3467.tabChildren = true;
this.text3468.tabIndex = 3468;
this.stop();
Symbol 3469 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 2127777008-5Response", this);
Symbol 3469 MovieClip Frame 2
this.stop();
Symbol 3474 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 2127777008-6Response", this);
Symbol 3474 MovieClip Frame 2
this.text3475.tabIndex = 3475;
this.stop();
Symbol 3476 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3476 MovieClip Frame 2
this.text3477.tabIndex = 3477;
this.clip3478._accProps = new Object();
this.clip3478._accProps.forceSimple = true;
this.clip3478._accProps.name = "Cross";
this.clip3478.tabIndex = 3478;
this.clip3478.tabEnabled = false;
this.clip3478.tabChildren = true;
this.clip3479._accProps = new Object();
this.clip3479._accProps.forceSimple = true;
this.clip3479._accProps.name = "Unselected Radio Button";
this.clip3479.tabIndex = 3479;
this.clip3479.tabEnabled = false;
this.clip3479.tabChildren = true;
this.stop();
Symbol 3480 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3480 MovieClip Frame 2
this.text3481.tabIndex = 3481;
this.clip3482._accProps = new Object();
this.clip3482._accProps.forceSimple = true;
this.clip3482._accProps.name = "Unselected Radio Button";
this.clip3482.tabIndex = 3482;
this.clip3482.tabEnabled = false;
this.clip3482.tabChildren = true;
this.stop();
Symbol 3483 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3483 MovieClip Frame 2
this.text3484.tabIndex = 3484;
this.clip3485._accProps = new Object();
this.clip3485._accProps.forceSimple = true;
this.clip3485._accProps.name = "Cross";
this.clip3485.tabIndex = 3485;
this.clip3485.tabEnabled = false;
this.clip3485.tabChildren = true;
this.clip3486._accProps = new Object();
this.clip3486._accProps.forceSimple = true;
this.clip3486._accProps.name = "Unselected Radio Button";
this.clip3486.tabIndex = 3486;
this.clip3486.tabEnabled = false;
this.clip3486.tabChildren = true;
this.stop();
Symbol 3487 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3487 MovieClip Frame 2
this.text3488.tabIndex = 3488;
this.clip3489._accProps = new Object();
this.clip3489._accProps.forceSimple = true;
this.clip3489._accProps.name = "Unselected Radio Button";
this.clip3489.tabIndex = 3489;
this.clip3489.tabEnabled = false;
this.clip3489.tabChildren = true;
this.stop();
Symbol 3490 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3490 MovieClip Frame 2
this.text3491.tabIndex = 3491;
this.clip3492._accProps = new Object();
this.clip3492._accProps.forceSimple = true;
this.clip3492._accProps.name = "Tick";
this.clip3492.tabIndex = 3492;
this.clip3492.tabEnabled = false;
this.clip3492.tabChildren = true;
this.clip3493._accProps = new Object();
this.clip3493._accProps.forceSimple = true;
this.clip3493._accProps.name = "Unselected Radio Button";
this.clip3493.tabIndex = 3493;
this.clip3493.tabEnabled = false;
this.clip3493.tabChildren = true;
this.stop();
Symbol 3494 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3494 MovieClip Frame 2
this.text3495.tabIndex = 3495;
this.clip3496._accProps = new Object();
this.clip3496._accProps.forceSimple = true;
this.clip3496._accProps.name = "Arrow";
this.clip3496.tabIndex = 3496;
this.clip3496.tabEnabled = false;
this.clip3496.tabChildren = true;
this.clip3497._accProps = new Object();
this.clip3497._accProps.forceSimple = true;
this.clip3497._accProps.name = "Unselected Radio Button";
this.clip3497.tabIndex = 3497;
this.clip3497.tabEnabled = false;
this.clip3497.tabChildren = true;
this.stop();
Symbol 3498 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3498 MovieClip Frame 2
this.text3499.tabIndex = 3499;
this.clip3500._accProps = new Object();
this.clip3500._accProps.forceSimple = true;
this.clip3500._accProps.name = "Cross";
this.clip3500.tabIndex = 3500;
this.clip3500.tabEnabled = false;
this.clip3500.tabChildren = true;
this.clip3501._accProps = new Object();
this.clip3501._accProps.forceSimple = true;
this.clip3501._accProps.name = "Unselected Radio Button";
this.clip3501.tabIndex = 3501;
this.clip3501.tabEnabled = false;
this.clip3501.tabChildren = true;
this.stop();
Symbol 3502 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3502 MovieClip Frame 2
this.text3503.tabIndex = 3503;
this.clip3504._accProps = new Object();
this.clip3504._accProps.forceSimple = true;
this.clip3504._accProps.name = "Unselected Radio Button";
this.clip3504.tabIndex = 3504;
this.clip3504.tabEnabled = false;
this.clip3504.tabChildren = true;
this.stop();
Symbol 3505 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 2127777008-6Response", this);
Symbol 3505 MovieClip Frame 2
this.text3506.tabIndex = 3506;
this.clip3507._accProps = new Object();
this.clip3507._accProps.forceSimple = true;
this.clip3507._accProps.name = "Tick";
this.clip3507.tabIndex = 3507;
this.clip3507.tabEnabled = false;
this.clip3507.tabChildren = true;
this.text3508.tabIndex = 3508;
this.stop();
Symbol 3509 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 2127777008-6Response", this);
Symbol 3509 MovieClip Frame 2
this.text3510.tabIndex = 3510;
this.clip3511._accProps = new Object();
this.clip3511._accProps.forceSimple = true;
this.clip3511._accProps.name = "Cross";
this.clip3511.tabIndex = 3511;
this.clip3511.tabEnabled = false;
this.clip3511.tabChildren = true;
this.text3512.tabIndex = 3512;
this.stop();
Symbol 3513 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 2127777008-6Response", this);
Symbol 3513 MovieClip Frame 2
this.stop();
Symbol 3518 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 2127777008-7Response", this);
Symbol 3518 MovieClip Frame 2
this.text3519.tabIndex = 3519;
this.stop();
Symbol 3520 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3520 MovieClip Frame 2
this.text3521.tabIndex = 3521;
this.clip3522._accProps = new Object();
this.clip3522._accProps.forceSimple = true;
this.clip3522._accProps.name = "Cross";
this.clip3522.tabIndex = 3522;
this.clip3522.tabEnabled = false;
this.clip3522.tabChildren = true;
this.clip3523._accProps = new Object();
this.clip3523._accProps.forceSimple = true;
this.clip3523._accProps.name = "Unselected Radio Button";
this.clip3523.tabIndex = 3523;
this.clip3523.tabEnabled = false;
this.clip3523.tabChildren = true;
this.stop();
Symbol 3524 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3524 MovieClip Frame 2
this.text3525.tabIndex = 3525;
this.clip3526._accProps = new Object();
this.clip3526._accProps.forceSimple = true;
this.clip3526._accProps.name = "Unselected Radio Button";
this.clip3526.tabIndex = 3526;
this.clip3526.tabEnabled = false;
this.clip3526.tabChildren = true;
this.stop();
Symbol 3527 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3527 MovieClip Frame 2
this.text3528.tabIndex = 3528;
this.clip3529._accProps = new Object();
this.clip3529._accProps.forceSimple = true;
this.clip3529._accProps.name = "Tick";
this.clip3529.tabIndex = 3529;
this.clip3529.tabEnabled = false;
this.clip3529.tabChildren = true;
this.clip3530._accProps = new Object();
this.clip3530._accProps.forceSimple = true;
this.clip3530._accProps.name = "Unselected Radio Button";
this.clip3530.tabIndex = 3530;
this.clip3530.tabEnabled = false;
this.clip3530.tabChildren = true;
this.stop();
Symbol 3531 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3531 MovieClip Frame 2
this.text3532.tabIndex = 3532;
this.clip3533._accProps = new Object();
this.clip3533._accProps.forceSimple = true;
this.clip3533._accProps.name = "Arrow";
this.clip3533.tabIndex = 3533;
this.clip3533.tabEnabled = false;
this.clip3533.tabChildren = true;
this.clip3534._accProps = new Object();
this.clip3534._accProps.forceSimple = true;
this.clip3534._accProps.name = "Unselected Radio Button";
this.clip3534.tabIndex = 3534;
this.clip3534.tabEnabled = false;
this.clip3534.tabChildren = true;
this.stop();
Symbol 3535 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3535 MovieClip Frame 2
this.text3536.tabIndex = 3536;
this.clip3537._accProps = new Object();
this.clip3537._accProps.forceSimple = true;
this.clip3537._accProps.name = "Cross";
this.clip3537.tabIndex = 3537;
this.clip3537.tabEnabled = false;
this.clip3537.tabChildren = true;
this.clip3538._accProps = new Object();
this.clip3538._accProps.forceSimple = true;
this.clip3538._accProps.name = "Unselected Radio Button";
this.clip3538.tabIndex = 3538;
this.clip3538.tabEnabled = false;
this.clip3538.tabChildren = true;
this.stop();
Symbol 3539 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3539 MovieClip Frame 2
this.text3540.tabIndex = 3540;
this.clip3541._accProps = new Object();
this.clip3541._accProps.forceSimple = true;
this.clip3541._accProps.name = "Unselected Radio Button";
this.clip3541.tabIndex = 3541;
this.clip3541.tabEnabled = false;
this.clip3541.tabChildren = true;
this.stop();
Symbol 3542 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3542 MovieClip Frame 2
this.text3543.tabIndex = 3543;
this.clip3544._accProps = new Object();
this.clip3544._accProps.forceSimple = true;
this.clip3544._accProps.name = "Cross";
this.clip3544.tabIndex = 3544;
this.clip3544.tabEnabled = false;
this.clip3544.tabChildren = true;
this.clip3545._accProps = new Object();
this.clip3545._accProps.forceSimple = true;
this.clip3545._accProps.name = "Unselected Radio Button";
this.clip3545.tabIndex = 3545;
this.clip3545.tabEnabled = false;
this.clip3545.tabChildren = true;
this.stop();
Symbol 3546 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3546 MovieClip Frame 2
this.text3547.tabIndex = 3547;
this.clip3548._accProps = new Object();
this.clip3548._accProps.forceSimple = true;
this.clip3548._accProps.name = "Unselected Radio Button";
this.clip3548.tabIndex = 3548;
this.clip3548.tabEnabled = false;
this.clip3548.tabChildren = true;
this.stop();
Symbol 3549 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 2127777008-7Response", this);
Symbol 3549 MovieClip Frame 2
this.text3550.tabIndex = 3550;
this.clip3551._accProps = new Object();
this.clip3551._accProps.forceSimple = true;
this.clip3551._accProps.name = "Tick";
this.clip3551.tabIndex = 3551;
this.clip3551.tabEnabled = false;
this.clip3551.tabChildren = true;
this.stop();
Symbol 3552 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 2127777008-7Response", this);
Symbol 3552 MovieClip Frame 2
this.text3553.tabIndex = 3553;
this.clip3554._accProps = new Object();
this.clip3554._accProps.forceSimple = true;
this.clip3554._accProps.name = "Cross";
this.clip3554.tabIndex = 3554;
this.clip3554.tabEnabled = false;
this.clip3554.tabChildren = true;
this.stop();
Symbol 3555 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 2127777008-7Response", this);
Symbol 3555 MovieClip Frame 2
this.stop();
Symbol 3560 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 2127777008-8Response", this);
Symbol 3560 MovieClip Frame 2
this.text3561.tabIndex = 3561;
this.stop();
Symbol 3562 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3562 MovieClip Frame 2
this.text3563.tabIndex = 3563;
this.clip3564._accProps = new Object();
this.clip3564._accProps.forceSimple = true;
this.clip3564._accProps.name = "Cross";
this.clip3564.tabIndex = 3564;
this.clip3564.tabEnabled = false;
this.clip3564.tabChildren = true;
this.clip3565._accProps = new Object();
this.clip3565._accProps.forceSimple = true;
this.clip3565._accProps.name = "Unselected Radio Button";
this.clip3565.tabIndex = 3565;
this.clip3565.tabEnabled = false;
this.clip3565.tabChildren = true;
this.stop();
Symbol 3566 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3566 MovieClip Frame 2
this.text3567.tabIndex = 3567;
this.clip3568._accProps = new Object();
this.clip3568._accProps.forceSimple = true;
this.clip3568._accProps.name = "Unselected Radio Button";
this.clip3568.tabIndex = 3568;
this.clip3568.tabEnabled = false;
this.clip3568.tabChildren = true;
this.stop();
Symbol 3569 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3569 MovieClip Frame 2
this.text3570.tabIndex = 3570;
this.clip3571._accProps = new Object();
this.clip3571._accProps.forceSimple = true;
this.clip3571._accProps.name = "Tick";
this.clip3571.tabIndex = 3571;
this.clip3571.tabEnabled = false;
this.clip3571.tabChildren = true;
this.clip3572._accProps = new Object();
this.clip3572._accProps.forceSimple = true;
this.clip3572._accProps.name = "Unselected Radio Button";
this.clip3572.tabIndex = 3572;
this.clip3572.tabEnabled = false;
this.clip3572.tabChildren = true;
this.stop();
Symbol 3573 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3573 MovieClip Frame 2
this.text3574.tabIndex = 3574;
this.clip3575._accProps = new Object();
this.clip3575._accProps.forceSimple = true;
this.clip3575._accProps.name = "Arrow";
this.clip3575.tabIndex = 3575;
this.clip3575.tabEnabled = false;
this.clip3575.tabChildren = true;
this.clip3576._accProps = new Object();
this.clip3576._accProps.forceSimple = true;
this.clip3576._accProps.name = "Unselected Radio Button";
this.clip3576.tabIndex = 3576;
this.clip3576.tabEnabled = false;
this.clip3576.tabChildren = true;
this.stop();
Symbol 3577 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3577 MovieClip Frame 2
this.text3578.tabIndex = 3578;
this.clip3579._accProps = new Object();
this.clip3579._accProps.forceSimple = true;
this.clip3579._accProps.name = "Cross";
this.clip3579.tabIndex = 3579;
this.clip3579.tabEnabled = false;
this.clip3579.tabChildren = true;
this.clip3580._accProps = new Object();
this.clip3580._accProps.forceSimple = true;
this.clip3580._accProps.name = "Unselected Radio Button";
this.clip3580.tabIndex = 3580;
this.clip3580.tabEnabled = false;
this.clip3580.tabChildren = true;
this.stop();
Symbol 3581 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3581 MovieClip Frame 2
this.text3582.tabIndex = 3582;
this.clip3583._accProps = new Object();
this.clip3583._accProps.forceSimple = true;
this.clip3583._accProps.name = "Unselected Radio Button";
this.clip3583.tabIndex = 3583;
this.clip3583.tabEnabled = false;
this.clip3583.tabChildren = true;
this.stop();
Symbol 3584 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3584 MovieClip Frame 2
this.text3585.tabIndex = 3585;
this.clip3586._accProps = new Object();
this.clip3586._accProps.forceSimple = true;
this.clip3586._accProps.name = "Cross";
this.clip3586.tabIndex = 3586;
this.clip3586.tabEnabled = false;
this.clip3586.tabChildren = true;
this.clip3587._accProps = new Object();
this.clip3587._accProps.forceSimple = true;
this.clip3587._accProps.name = "Unselected Radio Button";
this.clip3587.tabIndex = 3587;
this.clip3587.tabEnabled = false;
this.clip3587.tabChildren = true;
this.stop();
Symbol 3588 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3588 MovieClip Frame 2
this.text3589.tabIndex = 3589;
this.clip3590._accProps = new Object();
this.clip3590._accProps.forceSimple = true;
this.clip3590._accProps.name = "Unselected Radio Button";
this.clip3590.tabIndex = 3590;
this.clip3590.tabEnabled = false;
this.clip3590.tabChildren = true;
this.stop();
Symbol 3591 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 2127777008-8Response", this);
Symbol 3591 MovieClip Frame 2
this.text3592.tabIndex = 3592;
this.clip3593._accProps = new Object();
this.clip3593._accProps.forceSimple = true;
this.clip3593._accProps.name = "Tick";
this.clip3593.tabIndex = 3593;
this.clip3593.tabEnabled = false;
this.clip3593.tabChildren = true;
this.text3594.tabIndex = 3594;
this.stop();
Symbol 3595 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 2127777008-8Response", this);
Symbol 3595 MovieClip Frame 2
this.text3596.tabIndex = 3596;
this.clip3597._accProps = new Object();
this.clip3597._accProps.forceSimple = true;
this.clip3597._accProps.name = "Cross";
this.clip3597.tabIndex = 3597;
this.clip3597.tabEnabled = false;
this.clip3597.tabChildren = true;
this.text3598.tabIndex = 3598;
this.stop();
Symbol 3599 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 2127777008-8Response", this);
Symbol 3599 MovieClip Frame 2
this.stop();
Symbol 3604 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 2127777008-9Response", this);
Symbol 3604 MovieClip Frame 2
this.text3605.tabIndex = 3605;
this.stop();
Symbol 3606 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3606 MovieClip Frame 2
this.text3607.tabIndex = 3607;
this.clip3608._accProps = new Object();
this.clip3608._accProps.forceSimple = true;
this.clip3608._accProps.name = "Tick";
this.clip3608.tabIndex = 3608;
this.clip3608.tabEnabled = false;
this.clip3608.tabChildren = true;
this.clip3609._accProps = new Object();
this.clip3609._accProps.forceSimple = true;
this.clip3609._accProps.name = "Unselected Radio Button";
this.clip3609.tabIndex = 3609;
this.clip3609.tabEnabled = false;
this.clip3609.tabChildren = true;
this.stop();
Symbol 3610 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3610 MovieClip Frame 2
this.text3611.tabIndex = 3611;
this.clip3612._accProps = new Object();
this.clip3612._accProps.forceSimple = true;
this.clip3612._accProps.name = "Arrow";
this.clip3612.tabIndex = 3612;
this.clip3612.tabEnabled = false;
this.clip3612.tabChildren = true;
this.clip3613._accProps = new Object();
this.clip3613._accProps.forceSimple = true;
this.clip3613._accProps.name = "Unselected Radio Button";
this.clip3613.tabIndex = 3613;
this.clip3613.tabEnabled = false;
this.clip3613.tabChildren = true;
this.stop();
Symbol 3614 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3614 MovieClip Frame 2
this.text3615.tabIndex = 3615;
this.clip3616._accProps = new Object();
this.clip3616._accProps.forceSimple = true;
this.clip3616._accProps.name = "Cross";
this.clip3616.tabIndex = 3616;
this.clip3616.tabEnabled = false;
this.clip3616.tabChildren = true;
this.clip3617._accProps = new Object();
this.clip3617._accProps.forceSimple = true;
this.clip3617._accProps.name = "Unselected Radio Button";
this.clip3617.tabIndex = 3617;
this.clip3617.tabEnabled = false;
this.clip3617.tabChildren = true;
this.stop();
Symbol 3618 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3618 MovieClip Frame 2
this.text3619.tabIndex = 3619;
this.clip3620._accProps = new Object();
this.clip3620._accProps.forceSimple = true;
this.clip3620._accProps.name = "Unselected Radio Button";
this.clip3620.tabIndex = 3620;
this.clip3620.tabEnabled = false;
this.clip3620.tabChildren = true;
this.stop();
Symbol 3621 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3621 MovieClip Frame 2
this.text3622.tabIndex = 3622;
this.clip3623._accProps = new Object();
this.clip3623._accProps.forceSimple = true;
this.clip3623._accProps.name = "Cross";
this.clip3623.tabIndex = 3623;
this.clip3623.tabEnabled = false;
this.clip3623.tabChildren = true;
this.clip3624._accProps = new Object();
this.clip3624._accProps.forceSimple = true;
this.clip3624._accProps.name = "Unselected Radio Button";
this.clip3624.tabIndex = 3624;
this.clip3624.tabEnabled = false;
this.clip3624.tabChildren = true;
this.stop();
Symbol 3625 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3625 MovieClip Frame 2
this.text3626.tabIndex = 3626;
this.clip3627._accProps = new Object();
this.clip3627._accProps.forceSimple = true;
this.clip3627._accProps.name = "Unselected Radio Button";
this.clip3627.tabIndex = 3627;
this.clip3627.tabEnabled = false;
this.clip3627.tabChildren = true;
this.stop();
Symbol 3628 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3628 MovieClip Frame 2
this.text3629.tabIndex = 3629;
this.clip3630._accProps = new Object();
this.clip3630._accProps.forceSimple = true;
this.clip3630._accProps.name = "Cross";
this.clip3630.tabIndex = 3630;
this.clip3630.tabEnabled = false;
this.clip3630.tabChildren = true;
this.clip3631._accProps = new Object();
this.clip3631._accProps.forceSimple = true;
this.clip3631._accProps.name = "Unselected Radio Button";
this.clip3631.tabIndex = 3631;
this.clip3631.tabEnabled = false;
this.clip3631.tabChildren = true;
this.stop();
Symbol 3632 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3632 MovieClip Frame 2
this.text3633.tabIndex = 3633;
this.clip3634._accProps = new Object();
this.clip3634._accProps.forceSimple = true;
this.clip3634._accProps.name = "Unselected Radio Button";
this.clip3634.tabIndex = 3634;
this.clip3634.tabEnabled = false;
this.clip3634.tabChildren = true;
this.stop();
Symbol 3635 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 2127777008-9Response", this);
Symbol 3635 MovieClip Frame 2
this.text3636.tabIndex = 3636;
this.clip3637._accProps = new Object();
this.clip3637._accProps.forceSimple = true;
this.clip3637._accProps.name = "Tick";
this.clip3637.tabIndex = 3637;
this.clip3637.tabEnabled = false;
this.clip3637.tabChildren = true;
this.text3638.tabIndex = 3638;
this.stop();
Symbol 3639 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 2127777008-9Response", this);
Symbol 3639 MovieClip Frame 2
this.text3640.tabIndex = 3640;
this.clip3641._accProps = new Object();
this.clip3641._accProps.forceSimple = true;
this.clip3641._accProps.name = "Cross";
this.clip3641.tabIndex = 3641;
this.clip3641.tabEnabled = false;
this.clip3641.tabChildren = true;
this.text3642.tabIndex = 3642;
this.stop();
Symbol 3643 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 2127777008-9Response", this);
Symbol 3643 MovieClip Frame 2
this.stop();
Symbol 3648 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 2127777008-10Response", this);
Symbol 3648 MovieClip Frame 2
this.text3649.tabIndex = 3649;
this.stop();
Symbol 3650 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3650 MovieClip Frame 2
this.text3651.tabIndex = 3651;
this.clip3652._accProps = new Object();
this.clip3652._accProps.forceSimple = true;
this.clip3652._accProps.name = "Tick";
this.clip3652.tabIndex = 3652;
this.clip3652.tabEnabled = false;
this.clip3652.tabChildren = true;
this.clip3653._accProps = new Object();
this.clip3653._accProps.forceSimple = true;
this.clip3653._accProps.name = "Unselected Radio Button";
this.clip3653.tabIndex = 3653;
this.clip3653.tabEnabled = false;
this.clip3653.tabChildren = true;
this.stop();
Symbol 3654 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3654 MovieClip Frame 2
this.text3655.tabIndex = 3655;
this.clip3656._accProps = new Object();
this.clip3656._accProps.forceSimple = true;
this.clip3656._accProps.name = "Arrow";
this.clip3656.tabIndex = 3656;
this.clip3656.tabEnabled = false;
this.clip3656.tabChildren = true;
this.clip3657._accProps = new Object();
this.clip3657._accProps.forceSimple = true;
this.clip3657._accProps.name = "Unselected Radio Button";
this.clip3657.tabIndex = 3657;
this.clip3657.tabEnabled = false;
this.clip3657.tabChildren = true;
this.stop();
Symbol 3658 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3658 MovieClip Frame 2
this.text3659.tabIndex = 3659;
this.clip3660._accProps = new Object();
this.clip3660._accProps.forceSimple = true;
this.clip3660._accProps.name = "Cross";
this.clip3660.tabIndex = 3660;
this.clip3660.tabEnabled = false;
this.clip3660.tabChildren = true;
this.clip3661._accProps = new Object();
this.clip3661._accProps.forceSimple = true;
this.clip3661._accProps.name = "Unselected Radio Button";
this.clip3661.tabIndex = 3661;
this.clip3661.tabEnabled = false;
this.clip3661.tabChildren = true;
this.stop();
Symbol 3662 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3662 MovieClip Frame 2
this.text3663.tabIndex = 3663;
this.clip3664._accProps = new Object();
this.clip3664._accProps.forceSimple = true;
this.clip3664._accProps.name = "Unselected Radio Button";
this.clip3664.tabIndex = 3664;
this.clip3664.tabEnabled = false;
this.clip3664.tabChildren = true;
this.stop();
Symbol 3665 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3665 MovieClip Frame 2
this.text3666.tabIndex = 3666;
this.clip3667._accProps = new Object();
this.clip3667._accProps.forceSimple = true;
this.clip3667._accProps.name = "Cross";
this.clip3667.tabIndex = 3667;
this.clip3667.tabEnabled = false;
this.clip3667.tabChildren = true;
this.clip3668._accProps = new Object();
this.clip3668._accProps.forceSimple = true;
this.clip3668._accProps.name = "Unselected Radio Button";
this.clip3668.tabIndex = 3668;
this.clip3668.tabEnabled = false;
this.clip3668.tabChildren = true;
this.stop();
Symbol 3669 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3669 MovieClip Frame 2
this.text3670.tabIndex = 3670;
this.clip3671._accProps = new Object();
this.clip3671._accProps.forceSimple = true;
this.clip3671._accProps.name = "Unselected Radio Button";
this.clip3671.tabIndex = 3671;
this.clip3671.tabEnabled = false;
this.clip3671.tabChildren = true;
this.stop();
Symbol 3672 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3672 MovieClip Frame 2
this.text3673.tabIndex = 3673;
this.clip3674._accProps = new Object();
this.clip3674._accProps.forceSimple = true;
this.clip3674._accProps.name = "Cross";
this.clip3674.tabIndex = 3674;
this.clip3674.tabEnabled = false;
this.clip3674.tabChildren = true;
this.clip3675._accProps = new Object();
this.clip3675._accProps.forceSimple = true;
this.clip3675._accProps.name = "Unselected Radio Button";
this.clip3675.tabIndex = 3675;
this.clip3675.tabEnabled = false;
this.clip3675.tabChildren = true;
this.stop();
Symbol 3676 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3676 MovieClip Frame 2
this.text3677.tabIndex = 3677;
this.clip3678._accProps = new Object();
this.clip3678._accProps.forceSimple = true;
this.clip3678._accProps.name = "Unselected Radio Button";
this.clip3678.tabIndex = 3678;
this.clip3678.tabEnabled = false;
this.clip3678.tabChildren = true;
this.stop();
Symbol 3679 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 2127777008-10Response", this);
Symbol 3679 MovieClip Frame 2
this.text3680.tabIndex = 3680;
this.clip3681._accProps = new Object();
this.clip3681._accProps.forceSimple = true;
this.clip3681._accProps.name = "Tick";
this.clip3681.tabIndex = 3681;
this.clip3681.tabEnabled = false;
this.clip3681.tabChildren = true;
this.text3682.tabIndex = 3682;
this.stop();
Symbol 3683 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 2127777008-10Response", this);
Symbol 3683 MovieClip Frame 2
this.text3684.tabIndex = 3684;
this.clip3685._accProps = new Object();
this.clip3685._accProps.forceSimple = true;
this.clip3685._accProps.name = "Cross";
this.clip3685.tabIndex = 3685;
this.clip3685.tabEnabled = false;
this.clip3685.tabChildren = true;
this.text3686.tabIndex = 3686;
this.stop();
Symbol 3687 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 2127777008-10Response", this);
Symbol 3687 MovieClip Frame 2
this.stop();
Symbol 3692 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 2127777008-11Response", this);
Symbol 3692 MovieClip Frame 2
this.text3693.tabIndex = 3693;
this.stop();
Symbol 3694 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3694 MovieClip Frame 2
this.text3695.tabIndex = 3695;
this.clip3696._accProps = new Object();
this.clip3696._accProps.forceSimple = true;
this.clip3696._accProps.name = "Cross";
this.clip3696.tabIndex = 3696;
this.clip3696.tabEnabled = false;
this.clip3696.tabChildren = true;
this.clip3697._accProps = new Object();
this.clip3697._accProps.forceSimple = true;
this.clip3697._accProps.name = "Unselected Radio Button";
this.clip3697.tabIndex = 3697;
this.clip3697.tabEnabled = false;
this.clip3697.tabChildren = true;
this.stop();
Symbol 3698 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3698 MovieClip Frame 2
this.text3699.tabIndex = 3699;
this.clip3700._accProps = new Object();
this.clip3700._accProps.forceSimple = true;
this.clip3700._accProps.name = "Unselected Radio Button";
this.clip3700.tabIndex = 3700;
this.clip3700.tabEnabled = false;
this.clip3700.tabChildren = true;
this.stop();
Symbol 3701 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3701 MovieClip Frame 2
this.text3702.tabIndex = 3702;
this.clip3703._accProps = new Object();
this.clip3703._accProps.forceSimple = true;
this.clip3703._accProps.name = "Cross";
this.clip3703.tabIndex = 3703;
this.clip3703.tabEnabled = false;
this.clip3703.tabChildren = true;
this.clip3704._accProps = new Object();
this.clip3704._accProps.forceSimple = true;
this.clip3704._accProps.name = "Unselected Radio Button";
this.clip3704.tabIndex = 3704;
this.clip3704.tabEnabled = false;
this.clip3704.tabChildren = true;
this.stop();
Symbol 3705 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3705 MovieClip Frame 2
this.text3706.tabIndex = 3706;
this.clip3707._accProps = new Object();
this.clip3707._accProps.forceSimple = true;
this.clip3707._accProps.name = "Unselected Radio Button";
this.clip3707.tabIndex = 3707;
this.clip3707.tabEnabled = false;
this.clip3707.tabChildren = true;
this.stop();
Symbol 3708 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3708 MovieClip Frame 2
this.text3709.tabIndex = 3709;
this.clip3710._accProps = new Object();
this.clip3710._accProps.forceSimple = true;
this.clip3710._accProps.name = "Tick";
this.clip3710.tabIndex = 3710;
this.clip3710.tabEnabled = false;
this.clip3710.tabChildren = true;
this.clip3711._accProps = new Object();
this.clip3711._accProps.forceSimple = true;
this.clip3711._accProps.name = "Unselected Radio Button";
this.clip3711.tabIndex = 3711;
this.clip3711.tabEnabled = false;
this.clip3711.tabChildren = true;
this.stop();
Symbol 3712 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3712 MovieClip Frame 2
this.text3713.tabIndex = 3713;
this.clip3714._accProps = new Object();
this.clip3714._accProps.forceSimple = true;
this.clip3714._accProps.name = "Arrow";
this.clip3714.tabIndex = 3714;
this.clip3714.tabEnabled = false;
this.clip3714.tabChildren = true;
this.clip3715._accProps = new Object();
this.clip3715._accProps.forceSimple = true;
this.clip3715._accProps.name = "Unselected Radio Button";
this.clip3715.tabIndex = 3715;
this.clip3715.tabEnabled = false;
this.clip3715.tabChildren = true;
this.stop();
Symbol 3716 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3716 MovieClip Frame 2
this.text3717.tabIndex = 3717;
this.clip3718._accProps = new Object();
this.clip3718._accProps.forceSimple = true;
this.clip3718._accProps.name = "Cross";
this.clip3718.tabIndex = 3718;
this.clip3718.tabEnabled = false;
this.clip3718.tabChildren = true;
this.clip3719._accProps = new Object();
this.clip3719._accProps.forceSimple = true;
this.clip3719._accProps.name = "Unselected Radio Button";
this.clip3719.tabIndex = 3719;
this.clip3719.tabEnabled = false;
this.clip3719.tabChildren = true;
this.stop();
Symbol 3720 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3720 MovieClip Frame 2
this.text3721.tabIndex = 3721;
this.clip3722._accProps = new Object();
this.clip3722._accProps.forceSimple = true;
this.clip3722._accProps.name = "Unselected Radio Button";
this.clip3722.tabIndex = 3722;
this.clip3722.tabEnabled = false;
this.clip3722.tabChildren = true;
this.stop();
Symbol 3723 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 2127777008-11Response", this);
Symbol 3723 MovieClip Frame 2
this.text3724.tabIndex = 3724;
this.clip3725._accProps = new Object();
this.clip3725._accProps.forceSimple = true;
this.clip3725._accProps.name = "Tick";
this.clip3725.tabIndex = 3725;
this.clip3725.tabEnabled = false;
this.clip3725.tabChildren = true;
this.text3726.tabIndex = 3726;
this.stop();
Symbol 3727 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 2127777008-11Response", this);
Symbol 3727 MovieClip Frame 2
this.text3728.tabIndex = 3728;
this.clip3729._accProps = new Object();
this.clip3729._accProps.forceSimple = true;
this.clip3729._accProps.name = "Cross";
this.clip3729.tabIndex = 3729;
this.clip3729.tabEnabled = false;
this.clip3729.tabChildren = true;
this.text3730.tabIndex = 3730;
this.stop();
Symbol 3731 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 2127777008-11Response", this);
Symbol 3731 MovieClip Frame 2
this.stop();