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("Salad Fingers Thread #964807185-1", 896, "NA", 0);
Frame 14
resp.majorElementEnter("assessment_result", "Salad Fingers Thread #964807185-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, "Salad Fingers Thread #964807185-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 3052 MovieClip [CQScrollbarV1_5] "scroller3053" in Frame 51
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3024";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3053";
}
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 3052 MovieClip [CQScrollbarV1_5] "scroller3055" in Frame 67
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3054";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3055";
}
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, "Salad Fingers Thread #964807185-1", 0);
Frame 78
resp.majorElementExit("section_result", "Instructions");
resp.jumpToNextDestination();
Frame 79
resp.checkEntryBranching("964807185-1Salad Fingers Thread", 392, "Salad Fingers Thread #964807185-1", 1);
Frame 82
resp.majorElementEnter("section_result", "964807185-1Salad Fingers Thread");
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, "964807185-1Salad Fingers Thread", 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] "button3056" 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.button3056, "itemnav", "nextQuestion", 3056);
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 3052 MovieClip [CQScrollbarV1_5] "scroller3065" in Frame 107
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3064";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3065";
}
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, "964807185-1Salad Fingers Thread", 0);
Frame 118
resp.majorElementExit("item_result", "IntroductionPage");
resp.jumpToNextDestination();
Frame 119
resp.checkEntryBranching("Question Q1", 28, "964807185-1Salad Fingers Thread", 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] "button3075" in Frame 127
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Frame 127
_global.resp.registerButton(this.button3075, "itemnav", "prevQuestion", 3075);
_global.resp.registerButton(this.button3076, "itemnav", "nextQuestion", 3076);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 964807185-2", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q1-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3076" 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 # 964807185-2'>a</varequal></not><varequal respident='questiontitle # 964807185-2'>b</varequal></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 3052 MovieClip [CQScrollbarV1_5] "scroller3098" in Frame 135
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3097";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3098";
}
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, "964807185-1Salad Fingers Thread", 1);
Frame 146
resp.majorElementExit("item_result", "Question Q1");
resp.jumpToNextDestination();
Frame 147
resp.checkEntryBranching("Question Q2", 28, "964807185-1Salad Fingers Thread", 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] "button3099" in Frame 155
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Frame 155
_global.resp.registerButton(this.button3099, "itemnav", "prevQuestion", 3099);
_global.resp.registerButton(this.button3100, "itemnav", "nextQuestion", 3100);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 964807185-3", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q2-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3100" 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 # 964807185-3'>a</varequal></not><varequal respident='questiontitle # 964807185-3'>b</varequal><not><varequal respident='questiontitle # 964807185-3'>c</varequal></not><not><varequal respident='questiontitle # 964807185-3'>d</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 3052 MovieClip [CQScrollbarV1_5] "scroller3113" in Frame 163
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3112";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3113";
}
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, "964807185-1Salad Fingers Thread", 2);
Frame 174
resp.majorElementExit("item_result", "Question Q2");
resp.jumpToNextDestination();
Frame 175
resp.checkEntryBranching("Question Q3", 28, "964807185-1Salad Fingers Thread", 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] "button3114" in Frame 183
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Frame 183
_global.resp.registerButton(this.button3114, "itemnav", "prevQuestion", 3114);
_global.resp.registerButton(this.button3115, "itemnav", "nextQuestion", 3115);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 964807185-4", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q3-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3115" 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 # 964807185-4'>a</varequal></not><not><varequal respident='questiontitle # 964807185-4'>b</varequal></not><not><varequal respident='questiontitle # 964807185-4'>c</varequal></not><varequal respident='questiontitle # 964807185-4'>d</varequal></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 3052 MovieClip [CQScrollbarV1_5] "scroller3128" in Frame 191
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3127";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3128";
}
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, "964807185-1Salad Fingers Thread", 3);
Frame 202
resp.majorElementExit("item_result", "Question Q3");
resp.jumpToNextDestination();
Frame 203
resp.checkEntryBranching("Question Q4", 28, "964807185-1Salad Fingers Thread", 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] "button3129" in Frame 211
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Frame 211
_global.resp.registerButton(this.button3129, "itemnav", "prevQuestion", 3129);
_global.resp.registerButton(this.button3130, "itemnav", "nextQuestion", 3130);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 964807185-5", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q4-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3130" 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 # 964807185-5'>a</varequal></not><not><varequal respident='questiontitle # 964807185-5'>b</varequal></not><varequal respident='questiontitle # 964807185-5'>c</varequal><not><varequal respident='questiontitle # 964807185-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 3052 MovieClip [CQScrollbarV1_5] "scroller3143" in Frame 219
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3142";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3143";
}
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, "964807185-1Salad Fingers Thread", 4);
Frame 230
resp.majorElementExit("item_result", "Question Q4");
resp.jumpToNextDestination();
Frame 231
resp.checkEntryBranching("Question Q5", 28, "964807185-1Salad Fingers Thread", 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] "button3144" in Frame 239
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Frame 239
_global.resp.registerButton(this.button3144, "itemnav", "prevQuestion", 3144);
_global.resp.registerButton(this.button3145, "itemnav", "nextQuestion", 3145);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 964807185-6", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q5-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3145" 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 # 964807185-6'>a</varequal></not><varequal respident='questiontitle # 964807185-6'>b</varequal><not><varequal respident='questiontitle # 964807185-6'>c</varequal></not><not><varequal respident='questiontitle # 964807185-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 3052 MovieClip [CQScrollbarV1_5] "scroller3158" in Frame 247
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3157";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3158";
}
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, "964807185-1Salad Fingers Thread", 5);
Frame 258
resp.majorElementExit("item_result", "Question Q5");
resp.jumpToNextDestination();
Frame 259
resp.checkEntryBranching("Question Q6", 28, "964807185-1Salad Fingers Thread", 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] "button3159" in Frame 267
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Frame 267
_global.resp.registerButton(this.button3159, "itemnav", "prevQuestion", 3159);
_global.resp.registerButton(this.button3160, "itemnav", "nextQuestion", 3160);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 964807185-7", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q6-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3160" 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 # 964807185-7'>a</varequal></not><not><varequal respident='questiontitle # 964807185-7'>b</varequal></not><not><varequal respident='questiontitle # 964807185-7'>c</varequal></not><varequal respident='questiontitle # 964807185-7'>d</varequal></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 3052 MovieClip [CQScrollbarV1_5] "scroller3173" in Frame 275
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3172";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3173";
}
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, "964807185-1Salad Fingers Thread", 6);
Frame 286
resp.majorElementExit("item_result", "Question Q6");
resp.jumpToNextDestination();
Frame 287
resp.checkEntryBranching("Question Q7", 28, "964807185-1Salad Fingers Thread", 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] "button3174" in Frame 295
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Frame 295
_global.resp.registerButton(this.button3174, "itemnav", "prevQuestion", 3174);
_global.resp.registerButton(this.button3175, "itemnav", "nextQuestion", 3175);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 964807185-8", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q7-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3175" 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 # 964807185-8'>a</varequal></not><not><varequal respident='questiontitle # 964807185-8'>b</varequal></not><not><varequal respident='questiontitle # 964807185-8'>c</varequal></not><varequal respident='questiontitle # 964807185-8'>d</varequal></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 3052 MovieClip [CQScrollbarV1_5] "scroller3188" in Frame 303
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3187";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3188";
}
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, "964807185-1Salad Fingers Thread", 7);
Frame 314
resp.majorElementExit("item_result", "Question Q7");
resp.jumpToNextDestination();
Frame 315
resp.checkEntryBranching("Question Q8", 28, "964807185-1Salad Fingers Thread", 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] "button3189" in Frame 323
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Frame 323
_global.resp.registerButton(this.button3189, "itemnav", "prevQuestion", 3189);
_global.resp.registerButton(this.button3190, "itemnav", "nextQuestion", 3190);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 964807185-9", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q8-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3190" 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><not><varequal respident='questiontitle # 964807185-9'>a</varequal></not><not><varequal respident='questiontitle # 964807185-9'>b</varequal></not><varequal respident='questiontitle # 964807185-9'>c</varequal><not><varequal respident='questiontitle # 964807185-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 3052 MovieClip [CQScrollbarV1_5] "scroller3203" in Frame 331
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3202";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3203";
}
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, "964807185-1Salad Fingers Thread", 8);
Frame 342
resp.majorElementExit("item_result", "Question Q8");
resp.jumpToNextDestination();
Frame 343
resp.checkEntryBranching("Question Q9", 28, "964807185-1Salad Fingers Thread", 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] "button3204" in Frame 351
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Frame 351
_global.resp.registerButton(this.button3204, "itemnav", "prevQuestion", 3204);
_global.resp.registerButton(this.button3205, "itemnav", "nextQuestion", 3205);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 964807185-10", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q9-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3205" 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 # 964807185-10'>a</varequal><not><varequal respident='questiontitle # 964807185-10'>b</varequal></not><not><varequal respident='questiontitle # 964807185-10'>c</varequal></not><not><varequal respident='questiontitle # 964807185-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 3052 MovieClip [CQScrollbarV1_5] "scroller3218" in Frame 359
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3217";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3218";
}
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, "964807185-1Salad Fingers Thread", 9);
Frame 370
resp.majorElementExit("item_result", "Question Q9");
resp.jumpToNextDestination();
Frame 371
resp.checkEntryBranching("Question Q10", 28, "964807185-1Salad Fingers Thread", 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] "button3219" in Frame 379
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Frame 379
_global.resp.registerButton(this.button3219, "itemnav", "prevQuestion", 3219);
_global.resp.registerButton(this.button3220, "itemnav", "nextQuestion", 3220);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 964807185-11", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q10-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3220" 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 # 964807185-11'>a</varequal></not><varequal respident='questiontitle # 964807185-11'>b</varequal><not><varequal respident='questiontitle # 964807185-11'>c</varequal></not><not><varequal respident='questiontitle # 964807185-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 3052 MovieClip [CQScrollbarV1_5] "scroller3233" in Frame 387
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3232";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3233";
}
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, "964807185-1Salad Fingers Thread", 10);
Frame 398
resp.majorElementExit("item_result", "Question Q10");
resp.jumpToNextDestination();
Frame 399
resp.checkEntryBranching("Question Q11", 28, "964807185-1Salad Fingers Thread", 11);
Frame 402
resp.majorElementEnter("item_result", "Question Q11");
resp.jumpToNextDestination();
Frame 403
gotoAndPlay(this._currentFrame + 3);
Frame 406
resp.startStopTimer(-1);
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3234" in Frame 407
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Frame 407
_global.resp.registerButton(this.button3234, "itemnav", "prevQuestion", 3234);
_global.resp.registerButton(this.button3235, "itemnav", "nextQuestion", 3235);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 964807185-12", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q11-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3235" 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'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><varequal respident='questiontitle # 964807185-12'>a</varequal></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></respcondition></resprocessing></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 3052 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("Question Q11", 28, "964807185-1Salad Fingers Thread", 11);
Frame 426
resp.majorElementExit("item_result", "Question Q11");
resp.jumpToNextDestination();
Frame 427
resp.checkEntryBranching("EndPage", 28, "964807185-1Salad Fingers Thread", 12);
Frame 430
resp.majorElementEnter("item_result", "EndPage");
resp.jumpToNextDestination();
Frame 431
gotoAndPlay(this._currentFrame + 3);
Frame 434
resp.startStopTimer(-1);
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3243" in Frame 435
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Frame 435
_global.resp.registerButton(this.button3243, "itemnav", "prevQuestion", 3243);
_global.resp.registerButton(this.button3244, "itemnav", "nextQuestion", 3244);
resp.showHideNextButton();
_global.resp.enterVisible("EndPage-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3244" in Frame 435
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 436
resp.checkTimeAllowed(false);
stop();
Frame 438
resp.setResponseProcessingString("<ops pageid='11'></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 439
gotoAndPlay(this._currentFrame + 3);
Frame 442
resp.stopStartTimer(-1);
Frame 443
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3248" in Frame 443
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3247";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3248";
}
Frame 444
resp.checkTimeAllowed(true);
stop();
Frame 446
resp.jumpToNextDestination();
Frame 447
gotoAndPlay(this._currentFrame + 3);
Frame 450
resp.jumpToNextDestination();
Frame 451
resp.checkExitBranching("EndPage", 28, "964807185-1Salad Fingers Thread", 12);
Frame 454
resp.majorElementExit("item_result", "EndPage");
resp.jumpToNextDestination();
Frame 455
gotoAndPlay(this._currentFrame + 3);
Frame 458
resp.stopStartTimer(-1);
Frame 459
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3250" in Frame 459
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3249";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3250";
}
Frame 460
resp.checkTimeAllowed(true);
stop();
Frame 462
resp.jumpToNextDestination();
Frame 463
gotoAndPlay(this._currentFrame + 3);
Frame 466
resp.jumpToNextDestination();
Frame 467
resp.checkExitBranching("964807185-1Salad Fingers Thread", 392, "Salad Fingers Thread #964807185-1", 1);
Frame 470
resp.majorElementExit("section_result", "964807185-1Salad Fingers Thread");
resp.jumpToNextDestination();
Frame 471
resp.checkEntryBranching("quizReview", 420, "Salad Fingers Thread #964807185-1", 2);
Frame 474
resp.majorElementEnter("section_result", "quizReview");
resp.jumpToNextDestination();
Frame 475
gotoAndPlay(this._currentFrame + 3);
Frame 478
resp.startStopTimer(-1);
Frame 479
_global.resp.bypassQuestion();
Frame 480
resp.checkTimeAllowed(false);
stop();
Frame 482
resp.jumpToNextDestination();
Frame 483
resp.checkEntryBranching("CalculationPage", 28, "quizReview", 0);
Frame 486
resp.majorElementEnter("item_result", "CalculationPage");
resp.jumpToNextDestination();
Frame 487
gotoAndPlay(this._currentFrame + 3);
Frame 490
resp.startStopTimer(-1);
Frame 491
_global.resp.bypassQuestion();
Frame 492
resp.checkTimeAllowed(false);
stop();
Frame 494
resp.setResponseProcessingString("<ops pageid='11'><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='70' varname='PERCENTAGEPASS' vartype='String'></decvar><decvar defaultval='FAIL' varname='PASSFAIL' vartype='String'></decvar></outcomes><respcondition continue='Yes'><setvar varname='OVERALLSCORE' action='Add' sourcevarname='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.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='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.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='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.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='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.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='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.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='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.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='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.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='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.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='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.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='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q10.SCORE'></setvar></respcondition><respcondition continue='Yes'><setvar varname='TOTALPOSSIBLESCORE' action='Add'>10</setvar></respcondition><respcondition continue='Yes'><setvar varname='OVERALLSCORE' action='Add' sourcevarname='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q11.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'>70</vargte></and></conditionvar><setvar varname='PASSFAIL' action='Set'>PASS</setvar></respcondition></resprocessing></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 3052 MovieClip [CQScrollbarV1_5] "scroller3252" in Frame 499
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3251";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3252";
}
Frame 500
resp.checkTimeAllowed(true);
stop();
Frame 502
resp.jumpToNextDestination();
Frame 503
gotoAndPlay(this._currentFrame + 3);
Frame 506
resp.jumpToNextDestination();
Frame 507
resp.checkExitBranching("CalculationPage", 28, "quizReview", 0);
Frame 510
resp.majorElementExit("item_result", "CalculationPage");
resp.jumpToNextDestination();
Frame 511
resp.checkEntryBranching("StartOfFeedbackPage", 28, "quizReview", 1);
Frame 514
resp.majorElementEnter("item_result", "StartOfFeedbackPage");
resp.jumpToNextDestination();
Frame 515
gotoAndPlay(this._currentFrame + 3);
Frame 518
resp.startStopTimer(-1);
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3253" in Frame 519
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 519
_global.resp.registerButton(this.button3253, "itemnav", "nextQuestion", 3253);
resp.showHideNextButton();
_global.resp.enterVisible("StartOfFeedbackPage-item-presentation");
Frame 520
resp.checkTimeAllowed(false);
stop();
Frame 522
resp.setResponseProcessingString("<ops pageid='17'></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 523
gotoAndPlay(this._currentFrame + 3);
Frame 526
resp.stopStartTimer(-1);
Frame 527
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3257" in Frame 527
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3256";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3257";
}
Frame 528
resp.checkTimeAllowed(true);
stop();
Frame 530
resp.jumpToNextDestination();
Frame 531
gotoAndPlay(this._currentFrame + 3);
Frame 534
resp.jumpToNextDestination();
Frame 535
resp.checkExitBranching("StartOfFeedbackPage", 28, "quizReview", 1);
Frame 538
resp.majorElementExit("item_result", "StartOfFeedbackPage");
resp.jumpToNextDestination();
Frame 539
resp.checkEntryBranching("ReportPage", 28, "quizReview", 2);
Frame 542
resp.majorElementEnter("item_result", "ReportPage");
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='17'><resprocessing><respcondition continue='Yes'><conditionvar><and><varequal varname='Salad Fingers Thread #964807185-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='Salad Fingers Thread #964807185-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 551
gotoAndPlay(this._currentFrame + 3);
Frame 554
resp.stopStartTimer(-1);
Frame 555
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3286, "itemnav", "prevQuestion", 3286);
_global.resp.registerButton(this.button3287, "itemnav", "nextQuestion", 3287);
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3285" in Frame 555
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3258";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3285";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3286" in Frame 555
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3287" 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("ReportPage", 28, "quizReview", 2);
Frame 566
resp.majorElementExit("item_result", "ReportPage");
resp.jumpToNextDestination();
Frame 567
resp.checkEntryBranching("FB: Question Q1", 28, "quizReview", 3);
Frame 570
resp.majorElementEnter("item_result", "FB: Question Q1");
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='17'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q1.questiontitle # 964807185-2'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q1.questiontitle # 964807185-2'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q1.questiontitle # 964807185-2'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q1.questiontitle # 964807185-2'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 964807185-2'></displayfeedback><displayfeedback linkrefid='Correct Answers # 964807185-2'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q1.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 964807185-2'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 964807185-2'></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.button3339, "itemnav", "prevQuestion", 3339);
_global.resp.registerButton(this.button3340, "itemnav", "nextQuestion", 3340);
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3338" in Frame 583
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3288";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3338";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3339" in Frame 583
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3340" 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 Q1", 28, "quizReview", 3);
Frame 594
resp.majorElementExit("item_result", "FB: Question Q1");
resp.jumpToNextDestination();
Frame 595
resp.checkEntryBranching("FB: Question Q2", 28, "quizReview", 4);
Frame 598
resp.majorElementEnter("item_result", "FB: Question Q2");
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='17'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q2.questiontitle # 964807185-3'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q2.questiontitle # 964807185-3'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q2.questiontitle # 964807185-3'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q2.questiontitle # 964807185-3'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q2.questiontitle # 964807185-3'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q2.questiontitle # 964807185-3'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q2.questiontitle # 964807185-3'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q2.questiontitle # 964807185-3'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 964807185-3'></displayfeedback><displayfeedback linkrefid='Correct Answers # 964807185-3'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q2.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 964807185-3'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 964807185-3'></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.button3383, "itemnav", "prevQuestion", 3383);
_global.resp.registerButton(this.button3384, "itemnav", "nextQuestion", 3384);
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3382" in Frame 611
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3341";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3382";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3383" in Frame 611
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3384" 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 Q2", 28, "quizReview", 4);
Frame 622
resp.majorElementExit("item_result", "FB: Question Q2");
resp.jumpToNextDestination();
Frame 623
resp.checkEntryBranching("FB: Question Q3", 28, "quizReview", 5);
Frame 626
resp.majorElementEnter("item_result", "FB: Question Q3");
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='17'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q3.questiontitle # 964807185-4'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q3.questiontitle # 964807185-4'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q3.questiontitle # 964807185-4'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q3.questiontitle # 964807185-4'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q3.questiontitle # 964807185-4'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q3.questiontitle # 964807185-4'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q3.questiontitle # 964807185-4'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q3.questiontitle # 964807185-4'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 964807185-4'></displayfeedback><displayfeedback linkrefid='Correct Answers # 964807185-4'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q3.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 964807185-4'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 964807185-4'></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.button3427, "itemnav", "prevQuestion", 3427);
_global.resp.registerButton(this.button3428, "itemnav", "nextQuestion", 3428);
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3426" in Frame 639
//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 639
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3428" 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 Q3", 28, "quizReview", 5);
Frame 650
resp.majorElementExit("item_result", "FB: Question Q3");
resp.jumpToNextDestination();
Frame 651
resp.checkEntryBranching("FB: Question Q4", 28, "quizReview", 6);
Frame 654
resp.majorElementEnter("item_result", "FB: Question Q4");
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='17'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q4.questiontitle # 964807185-5'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q4.questiontitle # 964807185-5'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q4.questiontitle # 964807185-5'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q4.questiontitle # 964807185-5'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q4.questiontitle # 964807185-5'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q4.questiontitle # 964807185-5'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q4.questiontitle # 964807185-5'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q4.questiontitle # 964807185-5'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 964807185-5'></displayfeedback><displayfeedback linkrefid='Correct Answers # 964807185-5'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q4.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 964807185-5'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 964807185-5'></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.button3471, "itemnav", "prevQuestion", 3471);
_global.resp.registerButton(this.button3472, "itemnav", "nextQuestion", 3472);
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3470" in Frame 667
//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 667
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3472" 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 Q4", 28, "quizReview", 6);
Frame 678
resp.majorElementExit("item_result", "FB: Question Q4");
resp.jumpToNextDestination();
Frame 679
resp.checkEntryBranching("FB: Question Q5", 28, "quizReview", 7);
Frame 682
resp.majorElementEnter("item_result", "FB: Question Q5");
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='17'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q5.questiontitle # 964807185-6'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q5.questiontitle # 964807185-6'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q5.questiontitle # 964807185-6'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q5.questiontitle # 964807185-6'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q5.questiontitle # 964807185-6'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q5.questiontitle # 964807185-6'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q5.questiontitle # 964807185-6'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q5.questiontitle # 964807185-6'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 964807185-6'></displayfeedback><displayfeedback linkrefid='Correct Answers # 964807185-6'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q5.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 964807185-6'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 964807185-6'></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.button3515, "itemnav", "prevQuestion", 3515);
_global.resp.registerButton(this.button3516, "itemnav", "nextQuestion", 3516);
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3514" in Frame 695
//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 695
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3516" 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 Q5", 28, "quizReview", 7);
Frame 706
resp.majorElementExit("item_result", "FB: Question Q5");
resp.jumpToNextDestination();
Frame 707
resp.checkEntryBranching("FB: Question Q6", 28, "quizReview", 8);
Frame 710
resp.majorElementEnter("item_result", "FB: Question Q6");
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='17'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q6.questiontitle # 964807185-7'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q6.questiontitle # 964807185-7'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q6.questiontitle # 964807185-7'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q6.questiontitle # 964807185-7'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q6.questiontitle # 964807185-7'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q6.questiontitle # 964807185-7'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q6.questiontitle # 964807185-7'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q6.questiontitle # 964807185-7'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 964807185-7'></displayfeedback><displayfeedback linkrefid='Correct Answers # 964807185-7'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q6.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 964807185-7'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 964807185-7'></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.button3559, "itemnav", "prevQuestion", 3559);
_global.resp.registerButton(this.button3560, "itemnav", "nextQuestion", 3560);
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3558" in Frame 723
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3517";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3558";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3559" in Frame 723
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3560" 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 Q6", 28, "quizReview", 8);
Frame 734
resp.majorElementExit("item_result", "FB: Question Q6");
resp.jumpToNextDestination();
Frame 735
resp.checkEntryBranching("FB: Question Q7", 28, "quizReview", 9);
Frame 738
resp.majorElementEnter("item_result", "FB: Question Q7");
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='17'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q7.questiontitle # 964807185-8'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q7.questiontitle # 964807185-8'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q7.questiontitle # 964807185-8'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q7.questiontitle # 964807185-8'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q7.questiontitle # 964807185-8'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q7.questiontitle # 964807185-8'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q7.questiontitle # 964807185-8'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q7.questiontitle # 964807185-8'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 964807185-8'></displayfeedback><displayfeedback linkrefid='Correct Answers # 964807185-8'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q7.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 964807185-8'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 964807185-8'></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.button3603, "itemnav", "prevQuestion", 3603);
_global.resp.registerButton(this.button3604, "itemnav", "nextQuestion", 3604);
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3602" in Frame 751
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3561";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3602";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3603" in Frame 751
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3604" 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 Q7", 28, "quizReview", 9);
Frame 762
resp.majorElementExit("item_result", "FB: Question Q7");
resp.jumpToNextDestination();
Frame 763
resp.checkEntryBranching("FB: Question Q8", 28, "quizReview", 10);
Frame 766
resp.majorElementEnter("item_result", "FB: Question Q8");
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='17'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q8.questiontitle # 964807185-9'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q8.questiontitle # 964807185-9'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q8.questiontitle # 964807185-9'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q8.questiontitle # 964807185-9'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q8.questiontitle # 964807185-9'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q8.questiontitle # 964807185-9'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q8.questiontitle # 964807185-9'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q8.questiontitle # 964807185-9'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 964807185-9'></displayfeedback><displayfeedback linkrefid='Correct Answers # 964807185-9'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q8.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 964807185-9'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 964807185-9'></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.button3647, "itemnav", "prevQuestion", 3647);
_global.resp.registerButton(this.button3648, "itemnav", "nextQuestion", 3648);
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3646" in Frame 779
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3605";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3646";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3647" in Frame 779
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3648" 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 Q8", 28, "quizReview", 10);
Frame 790
resp.majorElementExit("item_result", "FB: Question Q8");
resp.jumpToNextDestination();
Frame 791
resp.checkEntryBranching("FB: Question Q9", 28, "quizReview", 11);
Frame 794
resp.majorElementEnter("item_result", "FB: Question Q9");
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='17'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q9.questiontitle # 964807185-10'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q9.questiontitle # 964807185-10'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q9.questiontitle # 964807185-10'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q9.questiontitle # 964807185-10'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q9.questiontitle # 964807185-10'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q9.questiontitle # 964807185-10'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q9.questiontitle # 964807185-10'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q9.questiontitle # 964807185-10'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 964807185-10'></displayfeedback><displayfeedback linkrefid='Correct Answers # 964807185-10'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q9.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 964807185-10'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 964807185-10'></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.button3691, "itemnav", "prevQuestion", 3691);
_global.resp.registerButton(this.button3692, "itemnav", "nextQuestion", 3692);
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3690" in Frame 807
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3649";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3690";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3691" in Frame 807
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3692" 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 Q9", 28, "quizReview", 11);
Frame 818
resp.majorElementExit("item_result", "FB: Question Q9");
resp.jumpToNextDestination();
Frame 819
resp.checkEntryBranching("FB: Question Q10", 28, "quizReview", 12);
Frame 822
resp.majorElementEnter("item_result", "FB: Question Q10");
resp.jumpToNextDestination();
Frame 823
gotoAndPlay(this._currentFrame + 3);
Frame 826
resp.startStopTimer(-1);
Frame 827
_global.resp.bypassQuestion();
Frame 828
resp.checkTimeAllowed(false);
stop();
Frame 830
resp.setResponseProcessingString("<ops pageid='17'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q10.questiontitle # 964807185-11'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q10.questiontitle # 964807185-11'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q10.questiontitle # 964807185-11'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q10.questiontitle # 964807185-11'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q10.questiontitle # 964807185-11'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q10.questiontitle # 964807185-11'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q10.questiontitle # 964807185-11'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q10.questiontitle # 964807185-11'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 964807185-11'></displayfeedback><displayfeedback linkrefid='Correct Answers # 964807185-11'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q10.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 964807185-11'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 964807185-11'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 831
gotoAndPlay(this._currentFrame + 3);
Frame 834
resp.stopStartTimer(-1);
Frame 835
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3735, "itemnav", "prevQuestion", 3735);
_global.resp.registerButton(this.button3736, "itemnav", "nextQuestion", 3736);
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3734" in Frame 835
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3693";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3734";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3735" in Frame 835
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3736" in Frame 835
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 836
resp.checkTimeAllowed(true);
stop();
Frame 838
resp.jumpToNextDestination();
Frame 839
gotoAndPlay(this._currentFrame + 3);
Frame 842
resp.jumpToNextDestination();
Frame 843
resp.checkExitBranching("FB: Question Q10", 28, "quizReview", 12);
Frame 846
resp.majorElementExit("item_result", "FB: Question Q10");
resp.jumpToNextDestination();
Frame 847
resp.checkEntryBranching("FB: Question Q11", 28, "quizReview", 13);
Frame 850
resp.majorElementEnter("item_result", "FB: Question Q11");
resp.jumpToNextDestination();
Frame 851
gotoAndPlay(this._currentFrame + 3);
Frame 854
resp.startStopTimer(-1);
Frame 855
_global.resp.bypassQuestion();
Frame 856
resp.checkTimeAllowed(false);
stop();
Frame 858
resp.setResponseProcessingString("<ops pageid='17'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q11.questiontitle # 964807185-12'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q11.questiontitle # 964807185-12'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 964807185-12'></displayfeedback><displayfeedback linkrefid='Correct Answers # 964807185-12'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Salad Fingers Thread #964807185-1.964807185-1Salad Fingers Thread.Question Q11.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 964807185-12'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 964807185-12'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 859
gotoAndPlay(this._currentFrame + 3);
Frame 862
resp.stopStartTimer(-1);
Frame 863
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3758, "itemnav", "prevQuestion", 3758);
_global.resp.registerButton(this.button3759, "itemnav", "nextQuestion", 3759);
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3757" in Frame 863
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3737";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3757";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3758" in Frame 863
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3759" in Frame 863
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 864
resp.checkTimeAllowed(true);
stop();
Frame 866
resp.jumpToNextDestination();
Frame 867
gotoAndPlay(this._currentFrame + 3);
Frame 870
resp.jumpToNextDestination();
Frame 871
resp.checkExitBranching("FB: Question Q11", 28, "quizReview", 13);
Frame 874
resp.majorElementExit("item_result", "FB: Question Q11");
resp.jumpToNextDestination();
Frame 875
gotoAndPlay(this._currentFrame + 3);
Frame 878
resp.stopStartTimer(-1);
Frame 879
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3761" in Frame 879
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3760";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3761";
}
Frame 880
resp.checkTimeAllowed(true);
stop();
Frame 882
resp.jumpToNextDestination();
Frame 883
gotoAndPlay(this._currentFrame + 3);
Frame 886
resp.jumpToNextDestination();
Frame 887
resp.checkExitBranching("quizReview", 420, "Salad Fingers Thread #964807185-1", 2);
Frame 890
resp.majorElementExit("section_result", "quizReview");
resp.jumpToNextDestination();
Frame 891
gotoAndPlay(this._currentFrame + 3);
Frame 894
resp.stopStartTimer(-1);
Frame 895
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3763" in Frame 895
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3762";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3763";
}
Frame 896
resp.checkTimeAllowed(true);
stop();
Frame 898
resp.jumpToNextDestination();
Frame 899
gotoAndPlay(this._currentFrame + 3);
Frame 902
resp.jumpToNextDestination();
Frame 903
resp.checkExitBranching("Salad Fingers Thread #964807185-1", 896, "NA", 0);
Frame 906
resp.majorElementExit("assessment_result", "Salad Fingers Thread #964807185-1");
resp.jumpToNextDestination();
Frame 907
this.clip3764._accProps = new Object();
this.clip3764._accProps.forceSimple = true;
this.clip3764._accProps.name = "";
this.clip3764.tabIndex = 3764;
this.clip3764.tabEnabled = false;
this.clip3764.tabChildren = true;
this.text3765.tabIndex = 3765;
Frame 908
if ((forwardURL != null) && (forwardURL != "")) {
this.getURL(("javascript:document.location = '" + forwardURL) + "';", "_self");
}
_global.resp.moveHead(1);
Frame 909
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 911
stop();
Frame 912
stop();
Frame 913
stop();
Frame 914
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 3033 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 3035 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 3038 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 3042 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 3045 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 3048 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 3051 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 3052 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 3025 MovieClip Frame 1
_global.cqRootPointer3026 = 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 3061 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 3059 MovieClip Frame 1
_global.cqRootPointer3060 = 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 3057 MovieClip Frame 1
this.text3058.tabIndex = 3058;
this.custom3062.tabIndex = 3062;
_global.resp.registerResponseStrRenderFlash("RandomChooser", custom3062);
Instance of Symbol 3061 MovieClip [CQRandomV1_2] "custom3062" in Symbol 3057 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 = "3063";
_option0ident = "RandomChooser";
}
Symbol 3066 MovieClip [clip3066] Frame 1
_global.cqRootPointer3067 = this;
Symbol 3070 MovieClip [clip3070] Frame 1
_global.cqRootPointer3071 = this;
Symbol 3079 MovieClip [clip3079] Frame 1
_global.cqRootPointer3080 = this;
Symbol 3083 MovieClip [clip3083] Frame 1
_global.cqRootPointer3084 = this;
Symbol 3087 MovieClip [clip3087] Frame 1
_global.cqRootPointer3088 = this;
Symbol 3077 MovieClip Frame 1
this.text3078.tabIndex = 3078;
_global.resp.registerButton(this.button3091, "questiontitle # 964807185-2", "a", 3091);
this.text3092.tabIndex = 3092;
_global.resp.registerButton(this.button3093, "questiontitle # 964807185-2", "b", 3093);
this.text3094.tabIndex = 3094;
this.text3095.tabIndex = 3095;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3091" in Symbol 3077 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Yes";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3093" in Symbol 3077 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " No";
}
Symbol 3101 MovieClip Frame 1
this.text3102.tabIndex = 3102;
_global.resp.registerButton(this.button3103, "questiontitle # 964807185-3", "a", 3103);
this.text3104.tabIndex = 3104;
_global.resp.registerButton(this.button3105, "questiontitle # 964807185-3", "b", 3105);
this.text3106.tabIndex = 3106;
_global.resp.registerButton(this.button3107, "questiontitle # 964807185-3", "c", 3107);
this.text3108.tabIndex = 3108;
_global.resp.registerButton(this.button3109, "questiontitle # 964807185-3", "d", 3109);
this.text3110.tabIndex = 3110;
this.text3111.tabIndex = 3111;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3103" in Symbol 3101 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " They shine";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3105" in Symbol 3101 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Some are rusty";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3107" in Symbol 3101 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " He sees his reflection";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3109" in Symbol 3101 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " They remind him of happiness";
}
Symbol 3116 MovieClip Frame 1
this.text3117.tabIndex = 3117;
_global.resp.registerButton(this.button3118, "questiontitle # 964807185-4", "a", 3118);
this.text3119.tabIndex = 3119;
_global.resp.registerButton(this.button3120, "questiontitle # 964807185-4", "b", 3120);
this.text3121.tabIndex = 3121;
_global.resp.registerButton(this.button3122, "questiontitle # 964807185-4", "c", 3122);
this.text3123.tabIndex = 3123;
_global.resp.registerButton(this.button3124, "questiontitle # 964807185-4", "d", 3124);
this.text3125.tabIndex = 3125;
this.text3126.tabIndex = 3126;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3118" in Symbol 3116 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Rick Astley";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3120" in Symbol 3116 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Steven Mandermen";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3122" in Symbol 3116 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Tyler Joyal";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3124" in Symbol 3116 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Jeremy Fisher";
}
Symbol 3131 MovieClip Frame 1
this.text3132.tabIndex = 3132;
_global.resp.registerButton(this.button3133, "questiontitle # 964807185-5", "a", 3133);
this.text3134.tabIndex = 3134;
_global.resp.registerButton(this.button3135, "questiontitle # 964807185-5", "b", 3135);
this.text3136.tabIndex = 3136;
_global.resp.registerButton(this.button3137, "questiontitle # 964807185-5", "c", 3137);
this.text3138.tabIndex = 3138;
_global.resp.registerButton(this.button3139, "questiontitle # 964807185-5", "d", 3139);
this.text3140.tabIndex = 3140;
this.text3141.tabIndex = 3141;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3133" in Symbol 3131 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " A grandfatehr clock";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3135" in Symbol 3131 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " A wooden chest";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3137" in Symbol 3131 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " A radio";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3139" in Symbol 3131 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " A black and white television";
}
Symbol 3146 MovieClip Frame 1
this.text3147.tabIndex = 3147;
_global.resp.registerButton(this.button3148, "questiontitle # 964807185-6", "a", 3148);
this.text3149.tabIndex = 3149;
_global.resp.registerButton(this.button3150, "questiontitle # 964807185-6", "b", 3150);
this.text3151.tabIndex = 3151;
_global.resp.registerButton(this.button3152, "questiontitle # 964807185-6", "c", 3152);
this.text3153.tabIndex = 3153;
_global.resp.registerButton(this.button3154, "questiontitle # 964807185-6", "d", 3154);
this.text3155.tabIndex = 3155;
this.text3156.tabIndex = 3156;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3148" in Symbol 3146 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Beats him up";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3150" in Symbol 3146 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Throws him in the oven";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3152" in Symbol 3146 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Breaks his neck";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3154" in Symbol 3146 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Knocks him out with an axe";
}
Symbol 3161 MovieClip Frame 1
this.text3162.tabIndex = 3162;
_global.resp.registerButton(this.button3163, "questiontitle # 964807185-7", "a", 3163);
this.text3164.tabIndex = 3164;
_global.resp.registerButton(this.button3165, "questiontitle # 964807185-7", "b", 3165);
this.text3166.tabIndex = 3166;
_global.resp.registerButton(this.button3167, "questiontitle # 964807185-7", "c", 3167);
this.text3168.tabIndex = 3168;
_global.resp.registerButton(this.button3169, "questiontitle # 964807185-7", "d", 3169);
this.text3170.tabIndex = 3170;
this.text3171.tabIndex = 3171;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3163" in Symbol 3161 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Chlorine";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3165" in Symbol 3161 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Acid";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3167" in Symbol 3161 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Baby powder";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3169" in Symbol 3161 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Nettles";
}
Symbol 3176 MovieClip Frame 1
this.text3177.tabIndex = 3177;
_global.resp.registerButton(this.button3178, "questiontitle # 964807185-8", "a", 3178);
this.text3179.tabIndex = 3179;
_global.resp.registerButton(this.button3180, "questiontitle # 964807185-8", "b", 3180);
this.text3181.tabIndex = 3181;
_global.resp.registerButton(this.button3182, "questiontitle # 964807185-8", "c", 3182);
this.text3183.tabIndex = 3183;
_global.resp.registerButton(this.button3184, "questiontitle # 964807185-8", "d", 3184);
this.text3185.tabIndex = 3185;
this.text3186.tabIndex = 3186;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3178" in Symbol 3176 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " TJoyal";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3180" in Symbol 3176 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Johnny Utah";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3182" in Symbol 3176 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " John Stewarts";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3184" in Symbol 3176 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " David Firth";
}
Symbol 3191 MovieClip Frame 1
this.text3192.tabIndex = 3192;
_global.resp.registerButton(this.button3193, "questiontitle # 964807185-9", "a", 3193);
this.text3194.tabIndex = 3194;
_global.resp.registerButton(this.button3195, "questiontitle # 964807185-9", "b", 3195);
this.text3196.tabIndex = 3196;
_global.resp.registerButton(this.button3197, "questiontitle # 964807185-9", "c", 3197);
this.text3198.tabIndex = 3198;
_global.resp.registerButton(this.button3199, "questiontitle # 964807185-9", "d", 3199);
this.text3200.tabIndex = 3200;
this.text3201.tabIndex = 3201;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3193" in Symbol 3191 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Five";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3195" in Symbol 3191 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " None";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3197" in Symbol 3191 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Three";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3199" in Symbol 3191 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Four";
}
Symbol 3206 MovieClip Frame 1
this.text3207.tabIndex = 3207;
_global.resp.registerButton(this.button3208, "questiontitle # 964807185-10", "a", 3208);
this.text3209.tabIndex = 3209;
_global.resp.registerButton(this.button3210, "questiontitle # 964807185-10", "b", 3210);
this.text3211.tabIndex = 3211;
_global.resp.registerButton(this.button3212, "questiontitle # 964807185-10", "c", 3212);
this.text3213.tabIndex = 3213;
_global.resp.registerButton(this.button3214, "questiontitle # 964807185-10", "d", 3214);
this.text3215.tabIndex = 3215;
this.text3216.tabIndex = 3216;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3208" in Symbol 3206 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Cage";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3210" in Symbol 3206 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Trapped";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3212" in Symbol 3206 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Prison";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3214" in Symbol 3206 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Help Me";
}
Symbol 3221 MovieClip Frame 1
this.text3222.tabIndex = 3222;
_global.resp.registerButton(this.button3223, "questiontitle # 964807185-11", "a", 3223);
this.text3224.tabIndex = 3224;
_global.resp.registerButton(this.button3225, "questiontitle # 964807185-11", "b", 3225);
this.text3226.tabIndex = 3226;
_global.resp.registerButton(this.button3227, "questiontitle # 964807185-11", "c", 3227);
this.text3228.tabIndex = 3228;
_global.resp.registerButton(this.button3229, "questiontitle # 964807185-11", "d", 3229);
this.text3230.tabIndex = 3230;
this.text3231.tabIndex = 3231;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3223" in Symbol 3221 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Because he liked Cheese";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3225" in Symbol 3221 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " He always wanted to go there";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3227" in Symbol 3221 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " He wanted to meet his friend";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3229" in Symbol 3221 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " He left his spoon there";
}
Symbol 3236 MovieClip Frame 1
this.text3237.tabIndex = 3237;
_global.resp.registerButton(this.button3238, "questiontitle # 964807185-12", "a", 3238);
this.text3239.tabIndex = 3239;
this.text3240.tabIndex = 3240;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3238" in Symbol 3236 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " You too!";
}
Symbol 3245 MovieClip Frame 1
this.text3246.tabIndex = 3246;
Symbol 3254 MovieClip Frame 1
this.text3255.tabIndex = 3255;
Symbol 3266 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 3266 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 3266 MovieClip Frame 3
printAsBitmap (this._parent._parent._parent, "bmax");
Symbol 3266 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 3262 MovieClip [clip3262] Frame 1
_global.cqRootPointer3263 = this;
Symbol 3259 MovieClip Frame 1
_global.resp.registerFeedback("GeneralReportResponse", this);
Symbol 3259 MovieClip Frame 2
this.text3260.tabIndex = 3260;
this.clip3261._accProps = new Object();
this.clip3261._accProps.forceSimple = true;
this.clip3261._accProps.name = "";
this.clip3261.tabIndex = 3261;
this.clip3261.tabEnabled = false;
this.clip3261.tabChildren = true;
this.text3267.tabIndex = 3267;
this.text3268.tabIndex = 3268;
this.text3269.tabIndex = 3269;
this.text3269.background = false;
this.text3269.backgroundColor = -1;
this.text3269.border = false;
this.text3269.borderColor = -16777216;
this.text3269.maxChars = 10000;
this.text3269.password = false;
_global.resp.populateMatvar(this.text3269, "Salad Fingers Thread #964807185-1.quizReview.CalculationPage.OVERALLSCORE", 1, false);
this.text3270.tabIndex = 3270;
this.text3271.tabIndex = 3271;
this.text3271.background = false;
this.text3271.backgroundColor = -1;
this.text3271.border = false;
this.text3271.borderColor = -16777216;
this.text3271.maxChars = 10000;
this.text3271.password = false;
_global.resp.populateMatvar(this.text3271, "Salad Fingers Thread #964807185-1.quizReview.CalculationPage.PERCENTAGESCORE", 1, false);
this.text3272.tabIndex = 3272;
this.text3273.tabIndex = 3273;
this.text3274.tabIndex = 3274;
this.text3274.background = false;
this.text3274.backgroundColor = -1;
this.text3274.border = false;
this.text3274.borderColor = -16777216;
this.text3274.maxChars = 10000;
this.text3274.password = false;
_global.resp.populateMatvar(this.text3274, "Salad Fingers Thread #964807185-1.quizReview.CalculationPage.TOTALPOSSIBLESCORE", 1, false);
this.text3275.tabIndex = 3275;
this.text3276.tabIndex = 3276;
this.text3276.background = false;
this.text3276.backgroundColor = -1;
this.text3276.border = false;
this.text3276.borderColor = -16777216;
this.text3276.maxChars = 10000;
this.text3276.password = false;
_global.resp.populateMatvar(this.text3276, "Salad Fingers Thread #964807185-1.quizReview.CalculationPage.PERCENTAGEPASS", 1, false);
this.text3277.tabIndex = 3277;
this.stop();
Symbol 3278 MovieClip Frame 1
_global.resp.registerFeedback("PassFeedbackResponse", this);
Symbol 3278 MovieClip Frame 2
this.text3279.tabIndex = 3279;
this.text3280.tabIndex = 3280;
this.stop();
Symbol 3281 MovieClip Frame 1
_global.resp.registerFeedback("FailFeedbackResponse", this);
Symbol 3281 MovieClip Frame 2
this.text3282.tabIndex = 3282;
this.text3283.tabIndex = 3283;
this.stop();
Symbol 3284 MovieClip Frame 1
_global.resp.registerFeedback("FooterFeedbackResponse", this);
Symbol 3284 MovieClip Frame 2
this.stop();
Symbol 3289 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 964807185-2Response", this);
Symbol 3289 MovieClip Frame 2
this.text3290.tabIndex = 3290;
this.stop();
Symbol 3294 MovieClip [clip3294] Frame 1
_global.cqRootPointer3295 = this;
Symbol 3291 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3291 MovieClip Frame 2
this.text3292.tabIndex = 3292;
this.clip3293._accProps = new Object();
this.clip3293._accProps.forceSimple = true;
this.clip3293._accProps.name = "Cross";
this.clip3293.tabIndex = 3293;
this.clip3293.tabEnabled = false;
this.clip3293.tabChildren = true;
this.clip3299._accProps = new Object();
this.clip3299._accProps.forceSimple = true;
this.clip3299._accProps.name = "Unselected Radio Button";
this.clip3299.tabIndex = 3299;
this.clip3299.tabEnabled = false;
this.clip3299.tabChildren = true;
this.stop();
Symbol 3300 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3300 MovieClip Frame 2
this.text3301.tabIndex = 3301;
this.clip3302._accProps = new Object();
this.clip3302._accProps.forceSimple = true;
this.clip3302._accProps.name = "Unselected Radio Button";
this.clip3302.tabIndex = 3302;
this.clip3302.tabEnabled = false;
this.clip3302.tabChildren = true;
this.stop();
Symbol 3306 MovieClip [clip3306] Frame 1
_global.cqRootPointer3307 = this;
Symbol 3303 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3303 MovieClip Frame 2
this.text3304.tabIndex = 3304;
this.clip3305._accProps = new Object();
this.clip3305._accProps.forceSimple = true;
this.clip3305._accProps.name = "Tick";
this.clip3305.tabIndex = 3305;
this.clip3305.tabEnabled = false;
this.clip3305.tabChildren = true;
this.clip3311._accProps = new Object();
this.clip3311._accProps.forceSimple = true;
this.clip3311._accProps.name = "Unselected Radio Button";
this.clip3311.tabIndex = 3311;
this.clip3311.tabEnabled = false;
this.clip3311.tabChildren = true;
this.stop();
Symbol 3315 MovieClip [clip3315] Frame 1
_global.cqRootPointer3316 = this;
Symbol 3312 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3312 MovieClip Frame 2
this.text3313.tabIndex = 3313;
this.clip3314._accProps = new Object();
this.clip3314._accProps.forceSimple = true;
this.clip3314._accProps.name = "Arrow";
this.clip3314.tabIndex = 3314;
this.clip3314.tabEnabled = false;
this.clip3314.tabChildren = true;
this.clip3318._accProps = new Object();
this.clip3318._accProps.forceSimple = true;
this.clip3318._accProps.name = "Unselected Radio Button";
this.clip3318.tabIndex = 3318;
this.clip3318.tabEnabled = false;
this.clip3318.tabChildren = true;
this.stop();
Symbol 3322 MovieClip [clip3322] Frame 1
_global.cqRootPointer3323 = this;
Symbol 3319 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 964807185-2Response", this);
Symbol 3319 MovieClip Frame 2
this.text3320.tabIndex = 3320;
this.clip3321._accProps = new Object();
this.clip3321._accProps.forceSimple = true;
this.clip3321._accProps.name = "Tick";
this.clip3321.tabIndex = 3321;
this.clip3321.tabEnabled = false;
this.clip3321.tabChildren = true;
this.text3327.tabIndex = 3327;
this.stop();
Symbol 3331 MovieClip [clip3331] Frame 1
_global.cqRootPointer3332 = this;
Symbol 3328 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 964807185-2Response", this);
Symbol 3328 MovieClip Frame 2
this.text3329.tabIndex = 3329;
this.clip3330._accProps = new Object();
this.clip3330._accProps.forceSimple = true;
this.clip3330._accProps.name = "Cross";
this.clip3330.tabIndex = 3330;
this.clip3330.tabEnabled = false;
this.clip3330.tabChildren = true;
this.text3336.tabIndex = 3336;
this.stop();
Symbol 3337 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 964807185-2Response", this);
Symbol 3337 MovieClip Frame 2
this.stop();
Symbol 3342 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 964807185-3Response", this);
Symbol 3342 MovieClip Frame 2
this.text3343.tabIndex = 3343;
this.stop();
Symbol 3344 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3344 MovieClip Frame 2
this.text3345.tabIndex = 3345;
this.clip3346._accProps = new Object();
this.clip3346._accProps.forceSimple = true;
this.clip3346._accProps.name = "Cross";
this.clip3346.tabIndex = 3346;
this.clip3346.tabEnabled = false;
this.clip3346.tabChildren = true;
this.clip3347._accProps = new Object();
this.clip3347._accProps.forceSimple = true;
this.clip3347._accProps.name = "Unselected Radio Button";
this.clip3347.tabIndex = 3347;
this.clip3347.tabEnabled = false;
this.clip3347.tabChildren = true;
this.stop();
Symbol 3348 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3348 MovieClip Frame 2
this.text3349.tabIndex = 3349;
this.clip3350._accProps = new Object();
this.clip3350._accProps.forceSimple = true;
this.clip3350._accProps.name = "Unselected Radio Button";
this.clip3350.tabIndex = 3350;
this.clip3350.tabEnabled = false;
this.clip3350.tabChildren = true;
this.stop();
Symbol 3351 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3351 MovieClip Frame 2
this.text3352.tabIndex = 3352;
this.clip3353._accProps = new Object();
this.clip3353._accProps.forceSimple = true;
this.clip3353._accProps.name = "Tick";
this.clip3353.tabIndex = 3353;
this.clip3353.tabEnabled = false;
this.clip3353.tabChildren = true;
this.clip3354._accProps = new Object();
this.clip3354._accProps.forceSimple = true;
this.clip3354._accProps.name = "Unselected Radio Button";
this.clip3354.tabIndex = 3354;
this.clip3354.tabEnabled = false;
this.clip3354.tabChildren = true;
this.stop();
Symbol 3355 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3355 MovieClip Frame 2
this.text3356.tabIndex = 3356;
this.clip3357._accProps = new Object();
this.clip3357._accProps.forceSimple = true;
this.clip3357._accProps.name = "Arrow";
this.clip3357.tabIndex = 3357;
this.clip3357.tabEnabled = false;
this.clip3357.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 3359 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3359 MovieClip Frame 2
this.text3360.tabIndex = 3360;
this.clip3361._accProps = new Object();
this.clip3361._accProps.forceSimple = true;
this.clip3361._accProps.name = "Cross";
this.clip3361.tabIndex = 3361;
this.clip3361.tabEnabled = false;
this.clip3361.tabChildren = true;
this.clip3362._accProps = new Object();
this.clip3362._accProps.forceSimple = true;
this.clip3362._accProps.name = "Unselected Radio Button";
this.clip3362.tabIndex = 3362;
this.clip3362.tabEnabled = false;
this.clip3362.tabChildren = true;
this.stop();
Symbol 3363 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3363 MovieClip Frame 2
this.text3364.tabIndex = 3364;
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 dResponse", 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 dResponse", 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 # 964807185-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 # 964807185-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 # 964807185-3Response", this);
Symbol 3381 MovieClip Frame 2
this.stop();
Symbol 3386 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 964807185-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 = "Cross";
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 = "Unselected Radio Button";
this.clip3408.tabIndex = 3408;
this.clip3408.tabEnabled = false;
this.clip3408.tabChildren = true;
this.stop();
Symbol 3409 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3409 MovieClip Frame 2
this.text3410.tabIndex = 3410;
this.clip3411._accProps = new Object();
this.clip3411._accProps.forceSimple = true;
this.clip3411._accProps.name = "Tick";
this.clip3411.tabIndex = 3411;
this.clip3411.tabEnabled = false;
this.clip3411.tabChildren = true;
this.clip3412._accProps = new Object();
this.clip3412._accProps.forceSimple = true;
this.clip3412._accProps.name = "Unselected Radio Button";
this.clip3412.tabIndex = 3412;
this.clip3412.tabEnabled = false;
this.clip3412.tabChildren = true;
this.stop();
Symbol 3413 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3413 MovieClip Frame 2
this.text3414.tabIndex = 3414;
this.clip3415._accProps = new Object();
this.clip3415._accProps.forceSimple = true;
this.clip3415._accProps.name = "Arrow";
this.clip3415.tabIndex = 3415;
this.clip3415.tabEnabled = false;
this.clip3415.tabChildren = true;
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 # 964807185-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 # 964807185-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 # 964807185-4Response", this);
Symbol 3425 MovieClip Frame 2
this.stop();
Symbol 3430 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 964807185-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 = "Cross";
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 = "Unselected Radio Button";
this.clip3445.tabIndex = 3445;
this.clip3445.tabEnabled = false;
this.clip3445.tabChildren = true;
this.stop();
Symbol 3446 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3446 MovieClip Frame 2
this.text3447.tabIndex = 3447;
this.clip3448._accProps = new Object();
this.clip3448._accProps.forceSimple = true;
this.clip3448._accProps.name = "Tick";
this.clip3448.tabIndex = 3448;
this.clip3448.tabEnabled = false;
this.clip3448.tabChildren = true;
this.clip3449._accProps = new Object();
this.clip3449._accProps.forceSimple = true;
this.clip3449._accProps.name = "Unselected Radio Button";
this.clip3449.tabIndex = 3449;
this.clip3449.tabEnabled = false;
this.clip3449.tabChildren = true;
this.stop();
Symbol 3450 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3450 MovieClip Frame 2
this.text3451.tabIndex = 3451;
this.clip3452._accProps = new Object();
this.clip3452._accProps.forceSimple = true;
this.clip3452._accProps.name = "Arrow";
this.clip3452.tabIndex = 3452;
this.clip3452.tabEnabled = false;
this.clip3452.tabChildren = true;
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 # 964807185-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 # 964807185-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 # 964807185-5Response", this);
Symbol 3469 MovieClip Frame 2
this.stop();
Symbol 3474 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 964807185-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 = "Tick";
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 = "Arrow";
this.clip3489.tabIndex = 3489;
this.clip3489.tabEnabled = false;
this.clip3489.tabChildren = true;
this.clip3490._accProps = new Object();
this.clip3490._accProps.forceSimple = true;
this.clip3490._accProps.name = "Unselected Radio Button";
this.clip3490.tabIndex = 3490;
this.clip3490.tabEnabled = false;
this.clip3490.tabChildren = true;
this.stop();
Symbol 3491 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3491 MovieClip Frame 2
this.text3492.tabIndex = 3492;
this.clip3493._accProps = new Object();
this.clip3493._accProps.forceSimple = true;
this.clip3493._accProps.name = "Cross";
this.clip3493.tabIndex = 3493;
this.clip3493.tabEnabled = false;
this.clip3493.tabChildren = true;
this.clip3494._accProps = new Object();
this.clip3494._accProps.forceSimple = true;
this.clip3494._accProps.name = "Unselected Radio Button";
this.clip3494.tabIndex = 3494;
this.clip3494.tabEnabled = false;
this.clip3494.tabChildren = true;
this.stop();
Symbol 3495 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3495 MovieClip Frame 2
this.text3496.tabIndex = 3496;
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 # 964807185-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 # 964807185-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 # 964807185-6Response", this);
Symbol 3513 MovieClip Frame 2
this.stop();
Symbol 3518 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 964807185-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 = "Cross";
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 = "Unselected Radio Button";
this.clip3533.tabIndex = 3533;
this.clip3533.tabEnabled = false;
this.clip3533.tabChildren = true;
this.stop();
Symbol 3534 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3534 MovieClip Frame 2
this.text3535.tabIndex = 3535;
this.clip3536._accProps = new Object();
this.clip3536._accProps.forceSimple = true;
this.clip3536._accProps.name = "Cross";
this.clip3536.tabIndex = 3536;
this.clip3536.tabEnabled = false;
this.clip3536.tabChildren = true;
this.clip3537._accProps = new Object();
this.clip3537._accProps.forceSimple = true;
this.clip3537._accProps.name = "Unselected Radio Button";
this.clip3537.tabIndex = 3537;
this.clip3537.tabEnabled = false;
this.clip3537.tabChildren = true;
this.stop();
Symbol 3538 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3538 MovieClip Frame 2
this.text3539.tabIndex = 3539;
this.clip3540._accProps = new Object();
this.clip3540._accProps.forceSimple = true;
this.clip3540._accProps.name = "Unselected Radio Button";
this.clip3540.tabIndex = 3540;
this.clip3540.tabEnabled = false;
this.clip3540.tabChildren = true;
this.stop();
Symbol 3541 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3541 MovieClip Frame 2
this.text3542.tabIndex = 3542;
this.clip3543._accProps = new Object();
this.clip3543._accProps.forceSimple = true;
this.clip3543._accProps.name = "Tick";
this.clip3543.tabIndex = 3543;
this.clip3543.tabEnabled = false;
this.clip3543.tabChildren = true;
this.clip3544._accProps = new Object();
this.clip3544._accProps.forceSimple = true;
this.clip3544._accProps.name = "Unselected Radio Button";
this.clip3544.tabIndex = 3544;
this.clip3544.tabEnabled = false;
this.clip3544.tabChildren = true;
this.stop();
Symbol 3545 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3545 MovieClip Frame 2
this.text3546.tabIndex = 3546;
this.clip3547._accProps = new Object();
this.clip3547._accProps.forceSimple = true;
this.clip3547._accProps.name = "Arrow";
this.clip3547.tabIndex = 3547;
this.clip3547.tabEnabled = false;
this.clip3547.tabChildren = true;
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 # 964807185-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.text3552.tabIndex = 3552;
this.stop();
Symbol 3553 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 964807185-7Response", this);
Symbol 3553 MovieClip Frame 2
this.text3554.tabIndex = 3554;
this.clip3555._accProps = new Object();
this.clip3555._accProps.forceSimple = true;
this.clip3555._accProps.name = "Cross";
this.clip3555.tabIndex = 3555;
this.clip3555.tabEnabled = false;
this.clip3555.tabChildren = true;
this.text3556.tabIndex = 3556;
this.stop();
Symbol 3557 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 964807185-7Response", this);
Symbol 3557 MovieClip Frame 2
this.stop();
Symbol 3562 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 964807185-8Response", this);
Symbol 3562 MovieClip Frame 2
this.text3563.tabIndex = 3563;
this.stop();
Symbol 3564 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3564 MovieClip Frame 2
this.text3565.tabIndex = 3565;
this.clip3566._accProps = new Object();
this.clip3566._accProps.forceSimple = true;
this.clip3566._accProps.name = "Cross";
this.clip3566.tabIndex = 3566;
this.clip3566.tabEnabled = false;
this.clip3566.tabChildren = true;
this.clip3567._accProps = new Object();
this.clip3567._accProps.forceSimple = true;
this.clip3567._accProps.name = "Unselected Radio Button";
this.clip3567.tabIndex = 3567;
this.clip3567.tabEnabled = false;
this.clip3567.tabChildren = true;
this.stop();
Symbol 3568 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3568 MovieClip Frame 2
this.text3569.tabIndex = 3569;
this.clip3570._accProps = new Object();
this.clip3570._accProps.forceSimple = true;
this.clip3570._accProps.name = "Unselected Radio Button";
this.clip3570.tabIndex = 3570;
this.clip3570.tabEnabled = false;
this.clip3570.tabChildren = true;
this.stop();
Symbol 3571 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3571 MovieClip Frame 2
this.text3572.tabIndex = 3572;
this.clip3573._accProps = new Object();
this.clip3573._accProps.forceSimple = true;
this.clip3573._accProps.name = "Cross";
this.clip3573.tabIndex = 3573;
this.clip3573.tabEnabled = false;
this.clip3573.tabChildren = true;
this.clip3574._accProps = new Object();
this.clip3574._accProps.forceSimple = true;
this.clip3574._accProps.name = "Unselected Radio Button";
this.clip3574.tabIndex = 3574;
this.clip3574.tabEnabled = false;
this.clip3574.tabChildren = true;
this.stop();
Symbol 3575 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3575 MovieClip Frame 2
this.text3576.tabIndex = 3576;
this.clip3577._accProps = new Object();
this.clip3577._accProps.forceSimple = true;
this.clip3577._accProps.name = "Unselected Radio Button";
this.clip3577.tabIndex = 3577;
this.clip3577.tabEnabled = false;
this.clip3577.tabChildren = true;
this.stop();
Symbol 3578 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3578 MovieClip Frame 2
this.text3579.tabIndex = 3579;
this.clip3580._accProps = new Object();
this.clip3580._accProps.forceSimple = true;
this.clip3580._accProps.name = "Cross";
this.clip3580.tabIndex = 3580;
this.clip3580.tabEnabled = false;
this.clip3580.tabChildren = true;
this.clip3581._accProps = new Object();
this.clip3581._accProps.forceSimple = true;
this.clip3581._accProps.name = "Unselected Radio Button";
this.clip3581.tabIndex = 3581;
this.clip3581.tabEnabled = false;
this.clip3581.tabChildren = true;
this.stop();
Symbol 3582 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3582 MovieClip Frame 2
this.text3583.tabIndex = 3583;
this.clip3584._accProps = new Object();
this.clip3584._accProps.forceSimple = true;
this.clip3584._accProps.name = "Unselected Radio Button";
this.clip3584.tabIndex = 3584;
this.clip3584.tabEnabled = false;
this.clip3584.tabChildren = true;
this.stop();
Symbol 3585 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3585 MovieClip Frame 2
this.text3586.tabIndex = 3586;
this.clip3587._accProps = new Object();
this.clip3587._accProps.forceSimple = true;
this.clip3587._accProps.name = "Tick";
this.clip3587.tabIndex = 3587;
this.clip3587.tabEnabled = false;
this.clip3587.tabChildren = true;
this.clip3588._accProps = new Object();
this.clip3588._accProps.forceSimple = true;
this.clip3588._accProps.name = "Unselected Radio Button";
this.clip3588.tabIndex = 3588;
this.clip3588.tabEnabled = false;
this.clip3588.tabChildren = true;
this.stop();
Symbol 3589 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3589 MovieClip Frame 2
this.text3590.tabIndex = 3590;
this.clip3591._accProps = new Object();
this.clip3591._accProps.forceSimple = true;
this.clip3591._accProps.name = "Arrow";
this.clip3591.tabIndex = 3591;
this.clip3591.tabEnabled = false;
this.clip3591.tabChildren = true;
this.clip3592._accProps = new Object();
this.clip3592._accProps.forceSimple = true;
this.clip3592._accProps.name = "Unselected Radio Button";
this.clip3592.tabIndex = 3592;
this.clip3592.tabEnabled = false;
this.clip3592.tabChildren = true;
this.stop();
Symbol 3593 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 964807185-8Response", this);
Symbol 3593 MovieClip Frame 2
this.text3594.tabIndex = 3594;
this.clip3595._accProps = new Object();
this.clip3595._accProps.forceSimple = true;
this.clip3595._accProps.name = "Tick";
this.clip3595.tabIndex = 3595;
this.clip3595.tabEnabled = false;
this.clip3595.tabChildren = true;
this.text3596.tabIndex = 3596;
this.stop();
Symbol 3597 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 964807185-8Response", this);
Symbol 3597 MovieClip Frame 2
this.text3598.tabIndex = 3598;
this.clip3599._accProps = new Object();
this.clip3599._accProps.forceSimple = true;
this.clip3599._accProps.name = "Cross";
this.clip3599.tabIndex = 3599;
this.clip3599.tabEnabled = false;
this.clip3599.tabChildren = true;
this.text3600.tabIndex = 3600;
this.stop();
Symbol 3601 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 964807185-8Response", this);
Symbol 3601 MovieClip Frame 2
this.stop();
Symbol 3606 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 964807185-9Response", this);
Symbol 3606 MovieClip Frame 2
this.text3607.tabIndex = 3607;
this.stop();
Symbol 3608 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3608 MovieClip Frame 2
this.text3609.tabIndex = 3609;
this.clip3610._accProps = new Object();
this.clip3610._accProps.forceSimple = true;
this.clip3610._accProps.name = "Cross";
this.clip3610.tabIndex = 3610;
this.clip3610.tabEnabled = false;
this.clip3610.tabChildren = true;
this.clip3611._accProps = new Object();
this.clip3611._accProps.forceSimple = true;
this.clip3611._accProps.name = "Unselected Radio Button";
this.clip3611.tabIndex = 3611;
this.clip3611.tabEnabled = false;
this.clip3611.tabChildren = true;
this.stop();
Symbol 3612 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3612 MovieClip Frame 2
this.text3613.tabIndex = 3613;
this.clip3614._accProps = new Object();
this.clip3614._accProps.forceSimple = true;
this.clip3614._accProps.name = "Unselected Radio Button";
this.clip3614.tabIndex = 3614;
this.clip3614.tabEnabled = false;
this.clip3614.tabChildren = true;
this.stop();
Symbol 3615 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3615 MovieClip Frame 2
this.text3616.tabIndex = 3616;
this.clip3617._accProps = new Object();
this.clip3617._accProps.forceSimple = true;
this.clip3617._accProps.name = "Cross";
this.clip3617.tabIndex = 3617;
this.clip3617.tabEnabled = false;
this.clip3617.tabChildren = true;
this.clip3618._accProps = new Object();
this.clip3618._accProps.forceSimple = true;
this.clip3618._accProps.name = "Unselected Radio Button";
this.clip3618.tabIndex = 3618;
this.clip3618.tabEnabled = false;
this.clip3618.tabChildren = true;
this.stop();
Symbol 3619 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3619 MovieClip Frame 2
this.text3620.tabIndex = 3620;
this.clip3621._accProps = new Object();
this.clip3621._accProps.forceSimple = true;
this.clip3621._accProps.name = "Unselected Radio Button";
this.clip3621.tabIndex = 3621;
this.clip3621.tabEnabled = false;
this.clip3621.tabChildren = true;
this.stop();
Symbol 3622 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3622 MovieClip Frame 2
this.text3623.tabIndex = 3623;
this.clip3624._accProps = new Object();
this.clip3624._accProps.forceSimple = true;
this.clip3624._accProps.name = "Tick";
this.clip3624.tabIndex = 3624;
this.clip3624.tabEnabled = false;
this.clip3624.tabChildren = true;
this.clip3625._accProps = new Object();
this.clip3625._accProps.forceSimple = true;
this.clip3625._accProps.name = "Unselected Radio Button";
this.clip3625.tabIndex = 3625;
this.clip3625.tabEnabled = false;
this.clip3625.tabChildren = true;
this.stop();
Symbol 3626 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3626 MovieClip Frame 2
this.text3627.tabIndex = 3627;
this.clip3628._accProps = new Object();
this.clip3628._accProps.forceSimple = true;
this.clip3628._accProps.name = "Arrow";
this.clip3628.tabIndex = 3628;
this.clip3628.tabEnabled = false;
this.clip3628.tabChildren = true;
this.clip3629._accProps = new Object();
this.clip3629._accProps.forceSimple = true;
this.clip3629._accProps.name = "Unselected Radio Button";
this.clip3629.tabIndex = 3629;
this.clip3629.tabEnabled = false;
this.clip3629.tabChildren = true;
this.stop();
Symbol 3630 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3630 MovieClip Frame 2
this.text3631.tabIndex = 3631;
this.clip3632._accProps = new Object();
this.clip3632._accProps.forceSimple = true;
this.clip3632._accProps.name = "Cross";
this.clip3632.tabIndex = 3632;
this.clip3632.tabEnabled = false;
this.clip3632.tabChildren = true;
this.clip3633._accProps = new Object();
this.clip3633._accProps.forceSimple = true;
this.clip3633._accProps.name = "Unselected Radio Button";
this.clip3633.tabIndex = 3633;
this.clip3633.tabEnabled = false;
this.clip3633.tabChildren = true;
this.stop();
Symbol 3634 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3634 MovieClip Frame 2
this.text3635.tabIndex = 3635;
this.clip3636._accProps = new Object();
this.clip3636._accProps.forceSimple = true;
this.clip3636._accProps.name = "Unselected Radio Button";
this.clip3636.tabIndex = 3636;
this.clip3636.tabEnabled = false;
this.clip3636.tabChildren = true;
this.stop();
Symbol 3637 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 964807185-9Response", this);
Symbol 3637 MovieClip Frame 2
this.text3638.tabIndex = 3638;
this.clip3639._accProps = new Object();
this.clip3639._accProps.forceSimple = true;
this.clip3639._accProps.name = "Tick";
this.clip3639.tabIndex = 3639;
this.clip3639.tabEnabled = false;
this.clip3639.tabChildren = true;
this.text3640.tabIndex = 3640;
this.stop();
Symbol 3641 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 964807185-9Response", this);
Symbol 3641 MovieClip Frame 2
this.text3642.tabIndex = 3642;
this.clip3643._accProps = new Object();
this.clip3643._accProps.forceSimple = true;
this.clip3643._accProps.name = "Cross";
this.clip3643.tabIndex = 3643;
this.clip3643.tabEnabled = false;
this.clip3643.tabChildren = true;
this.text3644.tabIndex = 3644;
this.stop();
Symbol 3645 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 964807185-9Response", this);
Symbol 3645 MovieClip Frame 2
this.stop();
Symbol 3650 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 964807185-10Response", this);
Symbol 3650 MovieClip Frame 2
this.text3651.tabIndex = 3651;
this.stop();
Symbol 3652 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3652 MovieClip Frame 2
this.text3653.tabIndex = 3653;
this.clip3654._accProps = new Object();
this.clip3654._accProps.forceSimple = true;
this.clip3654._accProps.name = "Tick";
this.clip3654.tabIndex = 3654;
this.clip3654.tabEnabled = false;
this.clip3654.tabChildren = true;
this.clip3655._accProps = new Object();
this.clip3655._accProps.forceSimple = true;
this.clip3655._accProps.name = "Unselected Radio Button";
this.clip3655.tabIndex = 3655;
this.clip3655.tabEnabled = false;
this.clip3655.tabChildren = true;
this.stop();
Symbol 3656 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3656 MovieClip Frame 2
this.text3657.tabIndex = 3657;
this.clip3658._accProps = new Object();
this.clip3658._accProps.forceSimple = true;
this.clip3658._accProps.name = "Arrow";
this.clip3658.tabIndex = 3658;
this.clip3658.tabEnabled = false;
this.clip3658.tabChildren = true;
this.clip3659._accProps = new Object();
this.clip3659._accProps.forceSimple = true;
this.clip3659._accProps.name = "Unselected Radio Button";
this.clip3659.tabIndex = 3659;
this.clip3659.tabEnabled = false;
this.clip3659.tabChildren = true;
this.stop();
Symbol 3660 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3660 MovieClip Frame 2
this.text3661.tabIndex = 3661;
this.clip3662._accProps = new Object();
this.clip3662._accProps.forceSimple = true;
this.clip3662._accProps.name = "Cross";
this.clip3662.tabIndex = 3662;
this.clip3662.tabEnabled = false;
this.clip3662.tabChildren = true;
this.clip3663._accProps = new Object();
this.clip3663._accProps.forceSimple = true;
this.clip3663._accProps.name = "Unselected Radio Button";
this.clip3663.tabIndex = 3663;
this.clip3663.tabEnabled = false;
this.clip3663.tabChildren = true;
this.stop();
Symbol 3664 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3664 MovieClip Frame 2
this.text3665.tabIndex = 3665;
this.clip3666._accProps = new Object();
this.clip3666._accProps.forceSimple = true;
this.clip3666._accProps.name = "Unselected Radio Button";
this.clip3666.tabIndex = 3666;
this.clip3666.tabEnabled = false;
this.clip3666.tabChildren = true;
this.stop();
Symbol 3667 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3667 MovieClip Frame 2
this.text3668.tabIndex = 3668;
this.clip3669._accProps = new Object();
this.clip3669._accProps.forceSimple = true;
this.clip3669._accProps.name = "Cross";
this.clip3669.tabIndex = 3669;
this.clip3669.tabEnabled = false;
this.clip3669.tabChildren = true;
this.clip3670._accProps = new Object();
this.clip3670._accProps.forceSimple = true;
this.clip3670._accProps.name = "Unselected Radio Button";
this.clip3670.tabIndex = 3670;
this.clip3670.tabEnabled = false;
this.clip3670.tabChildren = true;
this.stop();
Symbol 3671 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3671 MovieClip Frame 2
this.text3672.tabIndex = 3672;
this.clip3673._accProps = new Object();
this.clip3673._accProps.forceSimple = true;
this.clip3673._accProps.name = "Unselected Radio Button";
this.clip3673.tabIndex = 3673;
this.clip3673.tabEnabled = false;
this.clip3673.tabChildren = true;
this.stop();
Symbol 3674 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3674 MovieClip Frame 2
this.text3675.tabIndex = 3675;
this.clip3676._accProps = new Object();
this.clip3676._accProps.forceSimple = true;
this.clip3676._accProps.name = "Cross";
this.clip3676.tabIndex = 3676;
this.clip3676.tabEnabled = false;
this.clip3676.tabChildren = true;
this.clip3677._accProps = new Object();
this.clip3677._accProps.forceSimple = true;
this.clip3677._accProps.name = "Unselected Radio Button";
this.clip3677.tabIndex = 3677;
this.clip3677.tabEnabled = false;
this.clip3677.tabChildren = true;
this.stop();
Symbol 3678 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3678 MovieClip Frame 2
this.text3679.tabIndex = 3679;
this.clip3680._accProps = new Object();
this.clip3680._accProps.forceSimple = true;
this.clip3680._accProps.name = "Unselected Radio Button";
this.clip3680.tabIndex = 3680;
this.clip3680.tabEnabled = false;
this.clip3680.tabChildren = true;
this.stop();
Symbol 3681 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 964807185-10Response", this);
Symbol 3681 MovieClip Frame 2
this.text3682.tabIndex = 3682;
this.clip3683._accProps = new Object();
this.clip3683._accProps.forceSimple = true;
this.clip3683._accProps.name = "Tick";
this.clip3683.tabIndex = 3683;
this.clip3683.tabEnabled = false;
this.clip3683.tabChildren = true;
this.text3684.tabIndex = 3684;
this.stop();
Symbol 3685 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 964807185-10Response", this);
Symbol 3685 MovieClip Frame 2
this.text3686.tabIndex = 3686;
this.clip3687._accProps = new Object();
this.clip3687._accProps.forceSimple = true;
this.clip3687._accProps.name = "Cross";
this.clip3687.tabIndex = 3687;
this.clip3687.tabEnabled = false;
this.clip3687.tabChildren = true;
this.text3688.tabIndex = 3688;
this.stop();
Symbol 3689 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 964807185-10Response", this);
Symbol 3689 MovieClip Frame 2
this.stop();
Symbol 3694 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 964807185-11Response", this);
Symbol 3694 MovieClip Frame 2
this.text3695.tabIndex = 3695;
this.stop();
Symbol 3696 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3696 MovieClip Frame 2
this.text3697.tabIndex = 3697;
this.clip3698._accProps = new Object();
this.clip3698._accProps.forceSimple = true;
this.clip3698._accProps.name = "Cross";
this.clip3698.tabIndex = 3698;
this.clip3698.tabEnabled = false;
this.clip3698.tabChildren = true;
this.clip3699._accProps = new Object();
this.clip3699._accProps.forceSimple = true;
this.clip3699._accProps.name = "Unselected Radio Button";
this.clip3699.tabIndex = 3699;
this.clip3699.tabEnabled = false;
this.clip3699.tabChildren = true;
this.stop();
Symbol 3700 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3700 MovieClip Frame 2
this.text3701.tabIndex = 3701;
this.clip3702._accProps = new Object();
this.clip3702._accProps.forceSimple = true;
this.clip3702._accProps.name = "Unselected Radio Button";
this.clip3702.tabIndex = 3702;
this.clip3702.tabEnabled = false;
this.clip3702.tabChildren = true;
this.stop();
Symbol 3703 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3703 MovieClip Frame 2
this.text3704.tabIndex = 3704;
this.clip3705._accProps = new Object();
this.clip3705._accProps.forceSimple = true;
this.clip3705._accProps.name = "Tick";
this.clip3705.tabIndex = 3705;
this.clip3705.tabEnabled = false;
this.clip3705.tabChildren = true;
this.clip3706._accProps = new Object();
this.clip3706._accProps.forceSimple = true;
this.clip3706._accProps.name = "Unselected Radio Button";
this.clip3706.tabIndex = 3706;
this.clip3706.tabEnabled = false;
this.clip3706.tabChildren = true;
this.stop();
Symbol 3707 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3707 MovieClip Frame 2
this.text3708.tabIndex = 3708;
this.clip3709._accProps = new Object();
this.clip3709._accProps.forceSimple = true;
this.clip3709._accProps.name = "Arrow";
this.clip3709.tabIndex = 3709;
this.clip3709.tabEnabled = false;
this.clip3709.tabChildren = true;
this.clip3710._accProps = new Object();
this.clip3710._accProps.forceSimple = true;
this.clip3710._accProps.name = "Unselected Radio Button";
this.clip3710.tabIndex = 3710;
this.clip3710.tabEnabled = false;
this.clip3710.tabChildren = true;
this.stop();
Symbol 3711 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3711 MovieClip Frame 2
this.text3712.tabIndex = 3712;
this.clip3713._accProps = new Object();
this.clip3713._accProps.forceSimple = true;
this.clip3713._accProps.name = "Cross";
this.clip3713.tabIndex = 3713;
this.clip3713.tabEnabled = false;
this.clip3713.tabChildren = true;
this.clip3714._accProps = new Object();
this.clip3714._accProps.forceSimple = true;
this.clip3714._accProps.name = "Unselected Radio Button";
this.clip3714.tabIndex = 3714;
this.clip3714.tabEnabled = false;
this.clip3714.tabChildren = true;
this.stop();
Symbol 3715 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3715 MovieClip Frame 2
this.text3716.tabIndex = 3716;
this.clip3717._accProps = new Object();
this.clip3717._accProps.forceSimple = true;
this.clip3717._accProps.name = "Unselected Radio Button";
this.clip3717.tabIndex = 3717;
this.clip3717.tabEnabled = false;
this.clip3717.tabChildren = true;
this.stop();
Symbol 3718 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3718 MovieClip Frame 2
this.text3719.tabIndex = 3719;
this.clip3720._accProps = new Object();
this.clip3720._accProps.forceSimple = true;
this.clip3720._accProps.name = "Cross";
this.clip3720.tabIndex = 3720;
this.clip3720.tabEnabled = false;
this.clip3720.tabChildren = true;
this.clip3721._accProps = new Object();
this.clip3721._accProps.forceSimple = true;
this.clip3721._accProps.name = "Unselected Radio Button";
this.clip3721.tabIndex = 3721;
this.clip3721.tabEnabled = false;
this.clip3721.tabChildren = true;
this.stop();
Symbol 3722 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3722 MovieClip Frame 2
this.text3723.tabIndex = 3723;
this.clip3724._accProps = new Object();
this.clip3724._accProps.forceSimple = true;
this.clip3724._accProps.name = "Unselected Radio Button";
this.clip3724.tabIndex = 3724;
this.clip3724.tabEnabled = false;
this.clip3724.tabChildren = true;
this.stop();
Symbol 3725 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 964807185-11Response", this);
Symbol 3725 MovieClip Frame 2
this.text3726.tabIndex = 3726;
this.clip3727._accProps = new Object();
this.clip3727._accProps.forceSimple = true;
this.clip3727._accProps.name = "Tick";
this.clip3727.tabIndex = 3727;
this.clip3727.tabEnabled = false;
this.clip3727.tabChildren = true;
this.text3728.tabIndex = 3728;
this.stop();
Symbol 3729 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 964807185-11Response", this);
Symbol 3729 MovieClip Frame 2
this.text3730.tabIndex = 3730;
this.clip3731._accProps = new Object();
this.clip3731._accProps.forceSimple = true;
this.clip3731._accProps.name = "Cross";
this.clip3731.tabIndex = 3731;
this.clip3731.tabEnabled = false;
this.clip3731.tabChildren = true;
this.text3732.tabIndex = 3732;
this.stop();
Symbol 3733 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 964807185-11Response", this);
Symbol 3733 MovieClip Frame 2
this.stop();
Symbol 3738 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 964807185-12Response", this);
Symbol 3738 MovieClip Frame 2
this.text3739.tabIndex = 3739;
this.stop();
Symbol 3740 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3740 MovieClip Frame 2
this.text3741.tabIndex = 3741;
this.clip3742._accProps = new Object();
this.clip3742._accProps.forceSimple = true;
this.clip3742._accProps.name = "Tick";
this.clip3742.tabIndex = 3742;
this.clip3742.tabEnabled = false;
this.clip3742.tabChildren = true;
this.clip3743._accProps = new Object();
this.clip3743._accProps.forceSimple = true;
this.clip3743._accProps.name = "Unselected Radio Button";
this.clip3743.tabIndex = 3743;
this.clip3743.tabEnabled = false;
this.clip3743.tabChildren = true;
this.stop();
Symbol 3744 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3744 MovieClip Frame 2
this.text3745.tabIndex = 3745;
this.clip3746._accProps = new Object();
this.clip3746._accProps.forceSimple = true;
this.clip3746._accProps.name = "Arrow";
this.clip3746.tabIndex = 3746;
this.clip3746.tabEnabled = false;
this.clip3746.tabChildren = true;
this.clip3747._accProps = new Object();
this.clip3747._accProps.forceSimple = true;
this.clip3747._accProps.name = "Unselected Radio Button";
this.clip3747.tabIndex = 3747;
this.clip3747.tabEnabled = false;
this.clip3747.tabChildren = true;
this.stop();
Symbol 3748 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 964807185-12Response", this);
Symbol 3748 MovieClip Frame 2
this.text3749.tabIndex = 3749;
this.clip3750._accProps = new Object();
this.clip3750._accProps.forceSimple = true;
this.clip3750._accProps.name = "Tick";
this.clip3750.tabIndex = 3750;
this.clip3750.tabEnabled = false;
this.clip3750.tabChildren = true;
this.text3751.tabIndex = 3751;
this.stop();
Symbol 3752 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 964807185-12Response", this);
Symbol 3752 MovieClip Frame 2
this.text3753.tabIndex = 3753;
this.clip3754._accProps = new Object();
this.clip3754._accProps.forceSimple = true;
this.clip3754._accProps.name = "Cross";
this.clip3754.tabIndex = 3754;
this.clip3754.tabEnabled = false;
this.clip3754.tabChildren = true;
this.text3755.tabIndex = 3755;
this.stop();
Symbol 3756 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 964807185-12Response", this);
Symbol 3756 MovieClip Frame 2
this.stop();