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 + 2000)) && (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.text3007.tabIndex = 3007;
Frame 5
this.waitForFrame = 72;
Frame 6
this.waitForFrame = 72;
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("Naurto Quiz #57158008-1", 1568, "NA", 0);
Frame 14
resp.majorElementEnter("assessment_result", "Naurto Quiz #57158008-1");
resp.jumpToNextDestination();
Frame 15
this.clip3009._accProps = new Object();
this.clip3009._accProps.forceSimple = true;
this.clip3009._accProps.name = "";
this.clip3009.tabIndex = 3009;
this.clip3009.tabEnabled = false;
this.clip3009.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, "Naurto Quiz #57158008-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 3024 MovieClip [CQButtonV1_4] "button3025" in Frame 43
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 43
_global.resp.registerButton(this.button3025, "itemnav", "nextQuestion", 3025);
this.button3025text.tabIndex = 3026;
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 3058 MovieClip [CQScrollbarV1_5] "scroller3059" in Frame 51
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3030";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3059";
}
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 3058 MovieClip [CQScrollbarV1_5] "scroller3061" in Frame 67
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3060";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3061";
}
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, "Naurto Quiz #57158008-1", 0);
Frame 78
resp.majorElementExit("section_result", "Instructions");
resp.jumpToNextDestination();
Frame 79
resp.checkEntryBranching("57158008-1Naurto Quiz", 728, "Naurto Quiz #57158008-1", 1);
Frame 82
resp.majorElementEnter("section_result", "57158008-1Naurto Quiz");
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, "57158008-1Naurto Quiz", 0);
Frame 94
resp.majorElementEnter("item_result", "IntroductionPage");
resp.jumpToNextDestination();
Frame 95
gotoAndPlay(this._currentFrame + 3);
Frame 98
resp.startStopTimer(-1);
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3062" in Frame 99
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 99
_global.resp.registerButton(this.button3062, "itemnav", "nextQuestion", 3062);
this.button3062text.tabIndex = 3063;
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 3058 MovieClip [CQScrollbarV1_5] "scroller3072" in Frame 107
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3071";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3072";
}
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, "57158008-1Naurto Quiz", 0);
Frame 118
resp.majorElementExit("item_result", "IntroductionPage");
resp.jumpToNextDestination();
Frame 119
resp.checkEntryBranching("Question Q1", 28, "57158008-1Naurto Quiz", 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 3024 MovieClip [CQButtonV1_4] "button3079" in Frame 127
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Frame 127
_global.resp.registerButton(this.button3079, "itemnav", "prevQuestion", 3079);
this.button3079text.tabIndex = 3080;
_global.resp.registerButton(this.button3081, "itemnav", "nextQuestion", 3081);
this.button3081text.tabIndex = 3082;
_global.resp.registerResponseLabelRenderChoice("questiontitle # 57158008-2", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q1-item-presentation");
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3081" in Frame 127
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_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 # 57158008-2'>d</varequal></not><not><varequal respident='questiontitle # 57158008-2'>b</varequal></not><varequal respident='questiontitle # 57158008-2'>c</varequal><not><varequal respident='questiontitle # 57158008-2'>a</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 131
gotoAndPlay(this._currentFrame + 3);
Frame 134
resp.stopStartTimer(-1);
Frame 135
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller3108" in Frame 135
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3107";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3108";
}
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, "57158008-1Naurto Quiz", 1);
Frame 146
resp.majorElementExit("item_result", "Question Q1");
resp.jumpToNextDestination();
Frame 147
resp.checkEntryBranching("Question Q2", 28, "57158008-1Naurto Quiz", 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 3024 MovieClip [CQButtonV1_4] "button3109" in Frame 155
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Frame 155
_global.resp.registerButton(this.button3109, "itemnav", "prevQuestion", 3109);
this.button3109text.tabIndex = 3110;
_global.resp.registerButton(this.button3111, "itemnav", "nextQuestion", 3111);
this.button3111text.tabIndex = 3112;
_global.resp.registerResponseLabelRenderChoice("questiontitle # 57158008-5", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q2-item-presentation");
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3111" in Frame 155
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_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 # 57158008-5'>c</varequal></not><not><varequal respident='questiontitle # 57158008-5'>d</varequal></not><varequal respident='questiontitle # 57158008-5'>a</varequal><not><varequal respident='questiontitle # 57158008-5'>b</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 3058 MovieClip [CQScrollbarV1_5] "scroller3125" in Frame 163
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3124";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3125";
}
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, "57158008-1Naurto Quiz", 2);
Frame 174
resp.majorElementExit("item_result", "Question Q2");
resp.jumpToNextDestination();
Frame 175
resp.checkEntryBranching("Question Q3", 28, "57158008-1Naurto Quiz", 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 3024 MovieClip [CQButtonV1_4] "button3126" in Frame 183
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Frame 183
_global.resp.registerButton(this.button3126, "itemnav", "prevQuestion", 3126);
this.button3126text.tabIndex = 3127;
_global.resp.registerButton(this.button3128, "itemnav", "nextQuestion", 3128);
this.button3128text.tabIndex = 3129;
_global.resp.registerResponseLabelRenderChoice("questiontitle # 57158008-7", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q3-item-presentation");
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3128" in Frame 183
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_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 # 57158008-7'>c</varequal></not><not><varequal respident='questiontitle # 57158008-7'>d</varequal></not><not><varequal respident='questiontitle # 57158008-7'>a</varequal></not><varequal respident='questiontitle # 57158008-7'>b</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 3058 MovieClip [CQScrollbarV1_5] "scroller3142" in Frame 191
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3141";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3142";
}
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, "57158008-1Naurto Quiz", 3);
Frame 202
resp.majorElementExit("item_result", "Question Q3");
resp.jumpToNextDestination();
Frame 203
resp.checkEntryBranching("Question Q4", 28, "57158008-1Naurto Quiz", 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 3024 MovieClip [CQButtonV1_4] "button3143" in Frame 211
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Frame 211
_global.resp.registerButton(this.button3143, "itemnav", "prevQuestion", 3143);
this.button3143text.tabIndex = 3144;
_global.resp.registerButton(this.button3145, "itemnav", "nextQuestion", 3145);
this.button3145text.tabIndex = 3146;
_global.resp.registerResponseLabelRenderChoice("questiontitle # 57158008-8", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q4-item-presentation");
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3145" in Frame 211
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_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 # 57158008-8'>b</varequal></not><not><varequal respident='questiontitle # 57158008-8'>a</varequal></not><not><varequal respident='questiontitle # 57158008-8'>d</varequal></not><varequal respident='questiontitle # 57158008-8'>c</varequal></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 3058 MovieClip [CQScrollbarV1_5] "scroller3159" in Frame 219
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3158";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3159";
}
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, "57158008-1Naurto Quiz", 4);
Frame 230
resp.majorElementExit("item_result", "Question Q4");
resp.jumpToNextDestination();
Frame 231
resp.checkEntryBranching("Question Q5", 28, "57158008-1Naurto Quiz", 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 3024 MovieClip [CQButtonV1_4] "button3160" in Frame 239
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Frame 239
_global.resp.registerButton(this.button3160, "itemnav", "prevQuestion", 3160);
this.button3160text.tabIndex = 3161;
_global.resp.registerButton(this.button3162, "itemnav", "nextQuestion", 3162);
this.button3162text.tabIndex = 3163;
_global.resp.registerResponseLabelRenderChoice("questiontitle # 57158008-9", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q5-item-presentation");
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3162" in Frame 239
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_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 # 57158008-9'>d</varequal></not><not><varequal respident='questiontitle # 57158008-9'>a</varequal></not><varequal respident='questiontitle # 57158008-9'>c</varequal><not><varequal respident='questiontitle # 57158008-9'>b</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 3058 MovieClip [CQScrollbarV1_5] "scroller3176" in Frame 247
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3175";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3176";
}
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, "57158008-1Naurto Quiz", 5);
Frame 258
resp.majorElementExit("item_result", "Question Q5");
resp.jumpToNextDestination();
Frame 259
resp.checkEntryBranching("Question Q6", 28, "57158008-1Naurto Quiz", 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 3024 MovieClip [CQButtonV1_4] "button3177" in Frame 267
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Frame 267
_global.resp.registerButton(this.button3177, "itemnav", "prevQuestion", 3177);
this.button3177text.tabIndex = 3178;
_global.resp.registerButton(this.button3179, "itemnav", "nextQuestion", 3179);
this.button3179text.tabIndex = 3180;
_global.resp.registerResponseLabelRenderChoice("questiontitle # 57158008-10", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q6-item-presentation");
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3179" in Frame 267
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_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 # 57158008-10'>d</varequal></not><varequal respident='questiontitle # 57158008-10'>a</varequal><not><varequal respident='questiontitle # 57158008-10'>c</varequal></not><not><varequal respident='questiontitle # 57158008-10'>b</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 271
gotoAndPlay(this._currentFrame + 3);
Frame 274
resp.stopStartTimer(-1);
Frame 275
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller3193" in Frame 275
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3192";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3193";
}
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, "57158008-1Naurto Quiz", 6);
Frame 286
resp.majorElementExit("item_result", "Question Q6");
resp.jumpToNextDestination();
Frame 287
resp.checkEntryBranching("Question Q7", 28, "57158008-1Naurto Quiz", 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 3024 MovieClip [CQButtonV1_4] "button3194" in Frame 295
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Frame 295
_global.resp.registerButton(this.button3194, "itemnav", "prevQuestion", 3194);
this.button3194text.tabIndex = 3195;
_global.resp.registerButton(this.button3196, "itemnav", "nextQuestion", 3196);
this.button3196text.tabIndex = 3197;
_global.resp.registerResponseLabelRenderChoice("questiontitle # 57158008-11", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q7-item-presentation");
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3196" in Frame 295
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_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 # 57158008-11'>c</varequal></not><not><varequal respident='questiontitle # 57158008-11'>b</varequal></not><not><varequal respident='questiontitle # 57158008-11'>a</varequal></not><varequal respident='questiontitle # 57158008-11'>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 3058 MovieClip [CQScrollbarV1_5] "scroller3210" in Frame 303
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3209";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3210";
}
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, "57158008-1Naurto Quiz", 7);
Frame 314
resp.majorElementExit("item_result", "Question Q7");
resp.jumpToNextDestination();
Frame 315
resp.checkEntryBranching("Question Q8", 28, "57158008-1Naurto Quiz", 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 3024 MovieClip [CQButtonV1_4] "button3211" in Frame 323
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Frame 323
_global.resp.registerButton(this.button3211, "itemnav", "prevQuestion", 3211);
this.button3211text.tabIndex = 3212;
_global.resp.registerButton(this.button3213, "itemnav", "nextQuestion", 3213);
this.button3213text.tabIndex = 3214;
_global.resp.registerResponseLabelRenderChoice("questiontitle # 57158008-12", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q8-item-presentation");
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3213" in Frame 323
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 324
resp.checkTimeAllowed(false);
stop();
Frame 326
resp.setResponseProcessingString("<ops pageid='7'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><varequal respident='questiontitle # 57158008-12'>c</varequal><not><varequal respident='questiontitle # 57158008-12'>b</varequal></not><not><varequal respident='questiontitle # 57158008-12'>a</varequal></not><not><varequal respident='questiontitle # 57158008-12'>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 3058 MovieClip [CQScrollbarV1_5] "scroller3227" in Frame 331
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3226";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3227";
}
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, "57158008-1Naurto Quiz", 8);
Frame 342
resp.majorElementExit("item_result", "Question Q8");
resp.jumpToNextDestination();
Frame 343
resp.checkEntryBranching("Question Q9", 28, "57158008-1Naurto Quiz", 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 3024 MovieClip [CQButtonV1_4] "button3228" in Frame 351
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Frame 351
_global.resp.registerButton(this.button3228, "itemnav", "prevQuestion", 3228);
this.button3228text.tabIndex = 3229;
_global.resp.registerButton(this.button3230, "itemnav", "nextQuestion", 3230);
this.button3230text.tabIndex = 3231;
_global.resp.registerResponseLabelRenderChoice("questiontitle # 57158008-13", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q9-item-presentation");
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3230" in Frame 351
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_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><not><varequal respident='questiontitle # 57158008-13'>b</varequal></not><varequal respident='questiontitle # 57158008-13'>d</varequal><not><varequal respident='questiontitle # 57158008-13'>c</varequal></not><not><varequal respident='questiontitle # 57158008-13'>a</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 3058 MovieClip [CQScrollbarV1_5] "scroller3244" in Frame 359
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3243";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3244";
}
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, "57158008-1Naurto Quiz", 9);
Frame 370
resp.majorElementExit("item_result", "Question Q9");
resp.jumpToNextDestination();
Frame 371
resp.checkEntryBranching("Question Q10", 28, "57158008-1Naurto Quiz", 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 3024 MovieClip [CQButtonV1_4] "button3245" in Frame 379
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Frame 379
_global.resp.registerButton(this.button3245, "itemnav", "prevQuestion", 3245);
this.button3245text.tabIndex = 3246;
_global.resp.registerButton(this.button3247, "itemnav", "nextQuestion", 3247);
this.button3247text.tabIndex = 3248;
_global.resp.registerResponseLabelRenderChoice("questiontitle # 57158008-14", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q10-item-presentation");
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3247" in Frame 379
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_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 # 57158008-14'>b</varequal></not><not><varequal respident='questiontitle # 57158008-14'>d</varequal></not><not><varequal respident='questiontitle # 57158008-14'>c</varequal></not><varequal respident='questiontitle # 57158008-14'>a</varequal></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 3058 MovieClip [CQScrollbarV1_5] "scroller3261" in Frame 387
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3260";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3261";
}
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, "57158008-1Naurto Quiz", 10);
Frame 398
resp.majorElementExit("item_result", "Question Q10");
resp.jumpToNextDestination();
Frame 399
resp.checkEntryBranching("Question Q11", 28, "57158008-1Naurto Quiz", 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 3024 MovieClip [CQButtonV1_4] "button3262" in Frame 407
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Frame 407
_global.resp.registerButton(this.button3262, "itemnav", "prevQuestion", 3262);
this.button3262text.tabIndex = 3263;
_global.resp.registerButton(this.button3264, "itemnav", "nextQuestion", 3264);
this.button3264text.tabIndex = 3265;
_global.resp.registerResponseLabelRenderChoice("questiontitle # 57158008-15", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q11-item-presentation");
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3264" in Frame 407
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_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 # 57158008-15'>a</varequal><not><varequal respident='questiontitle # 57158008-15'>b</varequal></not><not><varequal respident='questiontitle # 57158008-15'>c</varequal></not><not><varequal respident='questiontitle # 57158008-15'>d</varequal></not></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 3058 MovieClip [CQScrollbarV1_5] "scroller3278" in Frame 415
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3277";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3278";
}
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, "57158008-1Naurto Quiz", 11);
Frame 426
resp.majorElementExit("item_result", "Question Q11");
resp.jumpToNextDestination();
Frame 427
resp.checkEntryBranching("Question Q12", 28, "57158008-1Naurto Quiz", 12);
Frame 430
resp.majorElementEnter("item_result", "Question Q12");
resp.jumpToNextDestination();
Frame 431
gotoAndPlay(this._currentFrame + 3);
Frame 434
resp.startStopTimer(-1);
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3279" in Frame 435
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Frame 435
_global.resp.registerButton(this.button3279, "itemnav", "prevQuestion", 3279);
this.button3279text.tabIndex = 3280;
_global.resp.registerButton(this.button3281, "itemnav", "nextQuestion", 3281);
this.button3281text.tabIndex = 3282;
_global.resp.registerResponseLabelRenderChoice("questiontitle # 57158008-16", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q12-item-presentation");
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3281" in Frame 435
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 436
resp.checkTimeAllowed(false);
stop();
Frame 438
resp.setResponseProcessingString("<ops pageid='11'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><varequal respident='questiontitle # 57158008-16'>d</varequal><not><varequal respident='questiontitle # 57158008-16'>b</varequal></not><not><varequal respident='questiontitle # 57158008-16'>c</varequal></not><not><varequal respident='questiontitle # 57158008-16'>a</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></respcondition></resprocessing></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 3058 MovieClip [CQScrollbarV1_5] "scroller3295" in Frame 443
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3294";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3295";
}
Frame 444
resp.checkTimeAllowed(true);
stop();
Frame 446
resp.jumpToNextDestination();
Frame 447
gotoAndPlay(this._currentFrame + 3);
Frame 450
resp.jumpToNextDestination();
Frame 451
resp.checkExitBranching("Question Q12", 28, "57158008-1Naurto Quiz", 12);
Frame 454
resp.majorElementExit("item_result", "Question Q12");
resp.jumpToNextDestination();
Frame 455
resp.checkEntryBranching("Question Q13", 28, "57158008-1Naurto Quiz", 13);
Frame 458
resp.majorElementEnter("item_result", "Question Q13");
resp.jumpToNextDestination();
Frame 459
gotoAndPlay(this._currentFrame + 3);
Frame 462
resp.startStopTimer(-1);
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3296" in Frame 463
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Frame 463
_global.resp.registerButton(this.button3296, "itemnav", "prevQuestion", 3296);
this.button3296text.tabIndex = 3297;
_global.resp.registerButton(this.button3298, "itemnav", "nextQuestion", 3298);
this.button3298text.tabIndex = 3299;
_global.resp.registerResponseLabelRenderChoice("questiontitle # 57158008-17", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q13-item-presentation");
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3298" in Frame 463
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 464
resp.checkTimeAllowed(false);
stop();
Frame 466
resp.setResponseProcessingString("<ops pageid='12'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><not><varequal respident='questiontitle # 57158008-17'>d</varequal></not><not><varequal respident='questiontitle # 57158008-17'>c</varequal></not><varequal respident='questiontitle # 57158008-17'>a</varequal><not><varequal respident='questiontitle # 57158008-17'>b</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 467
gotoAndPlay(this._currentFrame + 3);
Frame 470
resp.stopStartTimer(-1);
Frame 471
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller3312" in Frame 471
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3311";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3312";
}
Frame 472
resp.checkTimeAllowed(true);
stop();
Frame 474
resp.jumpToNextDestination();
Frame 475
gotoAndPlay(this._currentFrame + 3);
Frame 478
resp.jumpToNextDestination();
Frame 479
resp.checkExitBranching("Question Q13", 28, "57158008-1Naurto Quiz", 13);
Frame 482
resp.majorElementExit("item_result", "Question Q13");
resp.jumpToNextDestination();
Frame 483
resp.checkEntryBranching("Question Q14", 28, "57158008-1Naurto Quiz", 14);
Frame 486
resp.majorElementEnter("item_result", "Question Q14");
resp.jumpToNextDestination();
Frame 487
gotoAndPlay(this._currentFrame + 3);
Frame 490
resp.startStopTimer(-1);
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3313" in Frame 491
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Frame 491
_global.resp.registerButton(this.button3313, "itemnav", "prevQuestion", 3313);
this.button3313text.tabIndex = 3314;
_global.resp.registerButton(this.button3315, "itemnav", "nextQuestion", 3315);
this.button3315text.tabIndex = 3316;
_global.resp.registerResponseLabelRenderChoice("questiontitle # 57158008-18", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q14-item-presentation");
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3315" in Frame 491
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 492
resp.checkTimeAllowed(false);
stop();
Frame 494
resp.setResponseProcessingString("<ops pageid='13'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><not><varequal respident='questiontitle # 57158008-18'>a</varequal></not><not><varequal respident='questiontitle # 57158008-18'>d</varequal></not><varequal respident='questiontitle # 57158008-18'>b</varequal><not><varequal respident='questiontitle # 57158008-18'>c</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</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 3058 MovieClip [CQScrollbarV1_5] "scroller3329" in Frame 499
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3328";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3329";
}
Frame 500
resp.checkTimeAllowed(true);
stop();
Frame 502
resp.jumpToNextDestination();
Frame 503
gotoAndPlay(this._currentFrame + 3);
Frame 506
resp.jumpToNextDestination();
Frame 507
resp.checkExitBranching("Question Q14", 28, "57158008-1Naurto Quiz", 14);
Frame 510
resp.majorElementExit("item_result", "Question Q14");
resp.jumpToNextDestination();
Frame 511
resp.checkEntryBranching("Question Q15", 28, "57158008-1Naurto Quiz", 15);
Frame 514
resp.majorElementEnter("item_result", "Question Q15");
resp.jumpToNextDestination();
Frame 515
gotoAndPlay(this._currentFrame + 3);
Frame 518
resp.startStopTimer(-1);
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3330" in Frame 519
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Frame 519
_global.resp.registerButton(this.button3330, "itemnav", "prevQuestion", 3330);
this.button3330text.tabIndex = 3331;
_global.resp.registerButton(this.button3332, "itemnav", "nextQuestion", 3332);
this.button3332text.tabIndex = 3333;
_global.resp.registerResponseLabelRenderChoice("questiontitle # 57158008-19", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q15-item-presentation");
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3332" in Frame 519
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 520
resp.checkTimeAllowed(false);
stop();
Frame 522
resp.setResponseProcessingString("<ops pageid='14'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><not><varequal respident='questiontitle # 57158008-19'>a</varequal></not><varequal respident='questiontitle # 57158008-19'>d</varequal><not><varequal respident='questiontitle # 57158008-19'>b</varequal></not><not><varequal respident='questiontitle # 57158008-19'>c</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 523
gotoAndPlay(this._currentFrame + 3);
Frame 526
resp.stopStartTimer(-1);
Frame 527
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller3346" in Frame 527
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3345";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3346";
}
Frame 528
resp.checkTimeAllowed(true);
stop();
Frame 530
resp.jumpToNextDestination();
Frame 531
gotoAndPlay(this._currentFrame + 3);
Frame 534
resp.jumpToNextDestination();
Frame 535
resp.checkExitBranching("Question Q15", 28, "57158008-1Naurto Quiz", 15);
Frame 538
resp.majorElementExit("item_result", "Question Q15");
resp.jumpToNextDestination();
Frame 539
resp.checkEntryBranching("Question Q16", 28, "57158008-1Naurto Quiz", 16);
Frame 542
resp.majorElementEnter("item_result", "Question Q16");
resp.jumpToNextDestination();
Frame 543
gotoAndPlay(this._currentFrame + 3);
Frame 546
resp.startStopTimer(-1);
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3347" in Frame 547
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Frame 547
_global.resp.registerButton(this.button3347, "itemnav", "prevQuestion", 3347);
this.button3347text.tabIndex = 3348;
_global.resp.registerButton(this.button3349, "itemnav", "nextQuestion", 3349);
this.button3349text.tabIndex = 3350;
_global.resp.registerResponseLabelRenderChoice("questiontitle # 57158008-20", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q16-item-presentation");
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3349" in Frame 547
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 548
resp.checkTimeAllowed(false);
stop();
Frame 550
resp.setResponseProcessingString("<ops pageid='15'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><not><varequal respident='questiontitle # 57158008-20'>b</varequal></not><varequal respident='questiontitle # 57158008-20'>d</varequal><not><varequal respident='questiontitle # 57158008-20'>c</varequal></not><not><varequal respident='questiontitle # 57158008-20'>a</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></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.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller3363" in Frame 555
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3362";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3363";
}
Frame 556
resp.checkTimeAllowed(true);
stop();
Frame 558
resp.jumpToNextDestination();
Frame 559
gotoAndPlay(this._currentFrame + 3);
Frame 562
resp.jumpToNextDestination();
Frame 563
resp.checkExitBranching("Question Q16", 28, "57158008-1Naurto Quiz", 16);
Frame 566
resp.majorElementExit("item_result", "Question Q16");
resp.jumpToNextDestination();
Frame 567
resp.checkEntryBranching("Question Q17", 28, "57158008-1Naurto Quiz", 17);
Frame 570
resp.majorElementEnter("item_result", "Question Q17");
resp.jumpToNextDestination();
Frame 571
gotoAndPlay(this._currentFrame + 3);
Frame 574
resp.startStopTimer(-1);
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3364" in Frame 575
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Frame 575
_global.resp.registerButton(this.button3364, "itemnav", "prevQuestion", 3364);
this.button3364text.tabIndex = 3365;
_global.resp.registerButton(this.button3366, "itemnav", "nextQuestion", 3366);
this.button3366text.tabIndex = 3367;
_global.resp.registerResponseLabelRenderChoice("questiontitle # 57158008-21", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q17-item-presentation");
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3366" in Frame 575
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 576
resp.checkTimeAllowed(false);
stop();
Frame 578
resp.setResponseProcessingString("<ops pageid='16'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><varequal respident='questiontitle # 57158008-21'>c</varequal><not><varequal respident='questiontitle # 57158008-21'>b</varequal></not><not><varequal respident='questiontitle # 57158008-21'>a</varequal></not><not><varequal respident='questiontitle # 57158008-21'>d</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></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.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller3380" in Frame 583
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3379";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3380";
}
Frame 584
resp.checkTimeAllowed(true);
stop();
Frame 586
resp.jumpToNextDestination();
Frame 587
gotoAndPlay(this._currentFrame + 3);
Frame 590
resp.jumpToNextDestination();
Frame 591
resp.checkExitBranching("Question Q17", 28, "57158008-1Naurto Quiz", 17);
Frame 594
resp.majorElementExit("item_result", "Question Q17");
resp.jumpToNextDestination();
Frame 595
resp.checkEntryBranching("Question Q18", 28, "57158008-1Naurto Quiz", 18);
Frame 598
resp.majorElementEnter("item_result", "Question Q18");
resp.jumpToNextDestination();
Frame 599
gotoAndPlay(this._currentFrame + 3);
Frame 602
resp.startStopTimer(-1);
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3381" in Frame 603
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Frame 603
_global.resp.registerButton(this.button3381, "itemnav", "prevQuestion", 3381);
this.button3381text.tabIndex = 3382;
_global.resp.registerButton(this.button3383, "itemnav", "nextQuestion", 3383);
this.button3383text.tabIndex = 3384;
_global.resp.registerResponseLabelRenderChoice("questiontitle # 57158008-22", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q18-item-presentation");
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3383" in Frame 603
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 604
resp.checkTimeAllowed(false);
stop();
Frame 606
resp.setResponseProcessingString("<ops pageid='17'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><not><varequal respident='questiontitle # 57158008-22'>c</varequal></not><not><varequal respident='questiontitle # 57158008-22'>d</varequal></not><not><varequal respident='questiontitle # 57158008-22'>b</varequal></not><varequal respident='questiontitle # 57158008-22'>a</varequal></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></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.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller3397" in Frame 611
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3396";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3397";
}
Frame 612
resp.checkTimeAllowed(true);
stop();
Frame 614
resp.jumpToNextDestination();
Frame 615
gotoAndPlay(this._currentFrame + 3);
Frame 618
resp.jumpToNextDestination();
Frame 619
resp.checkExitBranching("Question Q18", 28, "57158008-1Naurto Quiz", 18);
Frame 622
resp.majorElementExit("item_result", "Question Q18");
resp.jumpToNextDestination();
Frame 623
resp.checkEntryBranching("Question Q19", 28, "57158008-1Naurto Quiz", 19);
Frame 626
resp.majorElementEnter("item_result", "Question Q19");
resp.jumpToNextDestination();
Frame 627
gotoAndPlay(this._currentFrame + 3);
Frame 630
resp.startStopTimer(-1);
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3398" in Frame 631
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Frame 631
_global.resp.registerButton(this.button3398, "itemnav", "prevQuestion", 3398);
this.button3398text.tabIndex = 3399;
_global.resp.registerButton(this.button3400, "itemnav", "nextQuestion", 3400);
this.button3400text.tabIndex = 3401;
_global.resp.registerResponseLabelRenderChoice("questiontitle # 57158008-23", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q19-item-presentation");
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3400" in Frame 631
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 632
resp.checkTimeAllowed(false);
stop();
Frame 634
resp.setResponseProcessingString("<ops pageid='18'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><not><varequal respident='questiontitle # 57158008-23'>d</varequal></not><varequal respident='questiontitle # 57158008-23'>b</varequal><not><varequal respident='questiontitle # 57158008-23'>c</varequal></not><not><varequal respident='questiontitle # 57158008-23'>a</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></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.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller3414" in Frame 639
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3413";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3414";
}
Frame 640
resp.checkTimeAllowed(true);
stop();
Frame 642
resp.jumpToNextDestination();
Frame 643
gotoAndPlay(this._currentFrame + 3);
Frame 646
resp.jumpToNextDestination();
Frame 647
resp.checkExitBranching("Question Q19", 28, "57158008-1Naurto Quiz", 19);
Frame 650
resp.majorElementExit("item_result", "Question Q19");
resp.jumpToNextDestination();
Frame 651
resp.checkEntryBranching("Question Q20", 28, "57158008-1Naurto Quiz", 20);
Frame 654
resp.majorElementEnter("item_result", "Question Q20");
resp.jumpToNextDestination();
Frame 655
gotoAndPlay(this._currentFrame + 3);
Frame 658
resp.startStopTimer(-1);
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3415" in Frame 659
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Frame 659
_global.resp.registerButton(this.button3415, "itemnav", "prevQuestion", 3415);
this.button3415text.tabIndex = 3416;
_global.resp.registerButton(this.button3417, "itemnav", "nextQuestion", 3417);
this.button3417text.tabIndex = 3418;
_global.resp.registerResponseLabelRenderChoice("questiontitle # 57158008-24", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q20-item-presentation");
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3417" in Frame 659
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 660
resp.checkTimeAllowed(false);
stop();
Frame 662
resp.setResponseProcessingString("<ops pageid='19'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><not><varequal respident='questiontitle # 57158008-24'>a</varequal></not><not><varequal respident='questiontitle # 57158008-24'>b</varequal></not><not><varequal respident='questiontitle # 57158008-24'>d</varequal></not><varequal respident='questiontitle # 57158008-24'>c</varequal></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></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.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller3431" in Frame 667
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3430";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3431";
}
Frame 668
resp.checkTimeAllowed(true);
stop();
Frame 670
resp.jumpToNextDestination();
Frame 671
gotoAndPlay(this._currentFrame + 3);
Frame 674
resp.jumpToNextDestination();
Frame 675
resp.checkExitBranching("Question Q20", 28, "57158008-1Naurto Quiz", 20);
Frame 678
resp.majorElementExit("item_result", "Question Q20");
resp.jumpToNextDestination();
Frame 679
resp.checkEntryBranching("Question Q21", 28, "57158008-1Naurto Quiz", 21);
Frame 682
resp.majorElementEnter("item_result", "Question Q21");
resp.jumpToNextDestination();
Frame 683
gotoAndPlay(this._currentFrame + 3);
Frame 686
resp.startStopTimer(-1);
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3432" in Frame 687
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Frame 687
_global.resp.registerButton(this.button3432, "itemnav", "prevQuestion", 3432);
this.button3432text.tabIndex = 3433;
_global.resp.registerButton(this.button3434, "itemnav", "nextQuestion", 3434);
this.button3434text.tabIndex = 3435;
_global.resp.registerResponseLabelRenderChoice("questiontitle # 57158008-25", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q21-item-presentation");
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3434" in Frame 687
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 688
resp.checkTimeAllowed(false);
stop();
Frame 690
resp.setResponseProcessingString("<ops pageid='20'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><not><varequal respident='questiontitle # 57158008-25'>a</varequal></not><not><varequal respident='questiontitle # 57158008-25'>d</varequal></not><not><varequal respident='questiontitle # 57158008-25'>b</varequal></not><varequal respident='questiontitle # 57158008-25'>c</varequal></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></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.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller3448" in Frame 695
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3447";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3448";
}
Frame 696
resp.checkTimeAllowed(true);
stop();
Frame 698
resp.jumpToNextDestination();
Frame 699
gotoAndPlay(this._currentFrame + 3);
Frame 702
resp.jumpToNextDestination();
Frame 703
resp.checkExitBranching("Question Q21", 28, "57158008-1Naurto Quiz", 21);
Frame 706
resp.majorElementExit("item_result", "Question Q21");
resp.jumpToNextDestination();
Frame 707
resp.checkEntryBranching("Question Q22", 28, "57158008-1Naurto Quiz", 22);
Frame 710
resp.majorElementEnter("item_result", "Question Q22");
resp.jumpToNextDestination();
Frame 711
gotoAndPlay(this._currentFrame + 3);
Frame 714
resp.startStopTimer(-1);
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3449" in Frame 715
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Frame 715
_global.resp.registerButton(this.button3449, "itemnav", "prevQuestion", 3449);
this.button3449text.tabIndex = 3450;
_global.resp.registerButton(this.button3451, "itemnav", "nextQuestion", 3451);
this.button3451text.tabIndex = 3452;
_global.resp.registerResponseLabelRenderChoice("questiontitle # 57158008-26", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q22-item-presentation");
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3451" in Frame 715
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 716
resp.checkTimeAllowed(false);
stop();
Frame 718
resp.setResponseProcessingString("<ops pageid='21'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><not><varequal respident='questiontitle # 57158008-26'>c</varequal></not><not><varequal respident='questiontitle # 57158008-26'>b</varequal></not><varequal respident='questiontitle # 57158008-26'>a</varequal><not><varequal respident='questiontitle # 57158008-26'>d</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></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.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller3465" in Frame 723
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3464";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3465";
}
Frame 724
resp.checkTimeAllowed(true);
stop();
Frame 726
resp.jumpToNextDestination();
Frame 727
gotoAndPlay(this._currentFrame + 3);
Frame 730
resp.jumpToNextDestination();
Frame 731
resp.checkExitBranching("Question Q22", 28, "57158008-1Naurto Quiz", 22);
Frame 734
resp.majorElementExit("item_result", "Question Q22");
resp.jumpToNextDestination();
Frame 735
resp.checkEntryBranching("Question Q23", 28, "57158008-1Naurto Quiz", 23);
Frame 738
resp.majorElementEnter("item_result", "Question Q23");
resp.jumpToNextDestination();
Frame 739
gotoAndPlay(this._currentFrame + 3);
Frame 742
resp.startStopTimer(-1);
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3466" in Frame 743
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Frame 743
_global.resp.registerButton(this.button3466, "itemnav", "prevQuestion", 3466);
this.button3466text.tabIndex = 3467;
_global.resp.registerButton(this.button3468, "itemnav", "nextQuestion", 3468);
this.button3468text.tabIndex = 3469;
_global.resp.registerResponseLabelRenderChoice("questiontitle # 57158008-27", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q23-item-presentation");
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3468" in Frame 743
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 744
resp.checkTimeAllowed(false);
stop();
Frame 746
resp.setResponseProcessingString("<ops pageid='22'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><not><varequal respident='questiontitle # 57158008-27'>d</varequal></not><not><varequal respident='questiontitle # 57158008-27'>a</varequal></not><varequal respident='questiontitle # 57158008-27'>b</varequal><not><varequal respident='questiontitle # 57158008-27'>c</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></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.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller3482" in Frame 751
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3481";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3482";
}
Frame 752
resp.checkTimeAllowed(true);
stop();
Frame 754
resp.jumpToNextDestination();
Frame 755
gotoAndPlay(this._currentFrame + 3);
Frame 758
resp.jumpToNextDestination();
Frame 759
resp.checkExitBranching("Question Q23", 28, "57158008-1Naurto Quiz", 23);
Frame 762
resp.majorElementExit("item_result", "Question Q23");
resp.jumpToNextDestination();
Frame 763
resp.checkEntryBranching("EndPage", 28, "57158008-1Naurto Quiz", 24);
Frame 766
resp.majorElementEnter("item_result", "EndPage");
resp.jumpToNextDestination();
Frame 767
gotoAndPlay(this._currentFrame + 3);
Frame 770
resp.startStopTimer(-1);
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3483" in Frame 771
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Frame 771
_global.resp.registerButton(this.button3483, "itemnav", "prevQuestion", 3483);
this.button3483text.tabIndex = 3484;
_global.resp.registerButton(this.button3485, "itemnav", "nextQuestion", 3485);
this.button3485text.tabIndex = 3486;
resp.showHideNextButton();
_global.resp.enterVisible("EndPage-item-presentation");
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3485" in Frame 771
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 772
resp.checkTimeAllowed(false);
stop();
Frame 774
resp.setResponseProcessingString("<ops pageid='23'></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 775
gotoAndPlay(this._currentFrame + 3);
Frame 778
resp.stopStartTimer(-1);
Frame 779
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller3490" in Frame 779
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3489";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3490";
}
Frame 780
resp.checkTimeAllowed(true);
stop();
Frame 782
resp.jumpToNextDestination();
Frame 783
gotoAndPlay(this._currentFrame + 3);
Frame 786
resp.jumpToNextDestination();
Frame 787
resp.checkExitBranching("EndPage", 28, "57158008-1Naurto Quiz", 24);
Frame 790
resp.majorElementExit("item_result", "EndPage");
resp.jumpToNextDestination();
Frame 791
gotoAndPlay(this._currentFrame + 3);
Frame 794
resp.stopStartTimer(-1);
Frame 795
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller3492" in Frame 795
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3491";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3492";
}
Frame 796
resp.checkTimeAllowed(true);
stop();
Frame 798
resp.jumpToNextDestination();
Frame 799
gotoAndPlay(this._currentFrame + 3);
Frame 802
resp.jumpToNextDestination();
Frame 803
resp.checkExitBranching("57158008-1Naurto Quiz", 728, "Naurto Quiz #57158008-1", 1);
Frame 806
resp.majorElementExit("section_result", "57158008-1Naurto Quiz");
resp.jumpToNextDestination();
Frame 807
resp.checkEntryBranching("quizReview", 756, "Naurto Quiz #57158008-1", 2);
Frame 810
resp.majorElementEnter("section_result", "quizReview");
resp.jumpToNextDestination();
Frame 811
gotoAndPlay(this._currentFrame + 3);
Frame 814
resp.startStopTimer(-1);
Frame 815
_global.resp.bypassQuestion();
Frame 816
resp.checkTimeAllowed(false);
stop();
Frame 818
resp.jumpToNextDestination();
Frame 819
resp.checkEntryBranching("CalculationPage", 28, "quizReview", 0);
Frame 822
resp.majorElementEnter("item_result", "CalculationPage");
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='23'><resprocessing><outcomes><decvar defaultval='0' minvalue='0' varname='OVERALLSCORE' vartype='Decimal'></decvar><decvar defaultval='0' minvalue='0' varname='TOTALPOSSIBLESCORE' vartype='Decimal'></decvar><decvar defaultval='0' minvalue='0' maxvalue='100' varname='PERCENTAGESCORE' vartype='Integer'></decvar><decvar defaultval='0' varname='PERCENTAGESCORESTRING' vartype='String'></decvar><decvar defaultval='80' varname='PERCENTAGEPASS' vartype='String'></decvar><decvar defaultval='FAIL' varname='PASSFAIL' vartype='String'></decvar></outcomes><respcondition continue='Yes'><setvar varname='OVERALLSCORE' action='Add' sourcevarname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.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='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.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='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.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='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.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='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.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='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.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='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.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='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.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='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.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='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.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='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q11.SCORE'></setvar></respcondition><respcondition continue='Yes'><setvar varname='TOTALPOSSIBLESCORE' action='Add'>10</setvar></respcondition><respcondition continue='Yes'><setvar varname='OVERALLSCORE' action='Add' sourcevarname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q12.SCORE'></setvar></respcondition><respcondition continue='Yes'><setvar varname='TOTALPOSSIBLESCORE' action='Add'>10</setvar></respcondition><respcondition continue='Yes'><setvar varname='OVERALLSCORE' action='Add' sourcevarname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q13.SCORE'></setvar></respcondition><respcondition continue='Yes'><setvar varname='TOTALPOSSIBLESCORE' action='Add'>10</setvar></respcondition><respcondition continue='Yes'><setvar varname='OVERALLSCORE' action='Add' sourcevarname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q14.SCORE'></setvar></respcondition><respcondition continue='Yes'><setvar varname='TOTALPOSSIBLESCORE' action='Add'>10</setvar></respcondition><respcondition continue='Yes'><setvar varname='OVERALLSCORE' action='Add' sourcevarname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q15.SCORE'></setvar></respcondition><respcondition continue='Yes'><setvar varname='TOTALPOSSIBLESCORE' action='Add'>10</setvar></respcondition><respcondition continue='Yes'><setvar varname='OVERALLSCORE' action='Add' sourcevarname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q16.SCORE'></setvar></respcondition><respcondition continue='Yes'><setvar varname='TOTALPOSSIBLESCORE' action='Add'>10</setvar></respcondition><respcondition continue='Yes'><setvar varname='OVERALLSCORE' action='Add' sourcevarname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q17.SCORE'></setvar></respcondition><respcondition continue='Yes'><setvar varname='TOTALPOSSIBLESCORE' action='Add'>10</setvar></respcondition><respcondition continue='Yes'><setvar varname='OVERALLSCORE' action='Add' sourcevarname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q18.SCORE'></setvar></respcondition><respcondition continue='Yes'><setvar varname='TOTALPOSSIBLESCORE' action='Add'>10</setvar></respcondition><respcondition continue='Yes'><setvar varname='OVERALLSCORE' action='Add' sourcevarname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q19.SCORE'></setvar></respcondition><respcondition continue='Yes'><setvar varname='TOTALPOSSIBLESCORE' action='Add'>10</setvar></respcondition><respcondition continue='Yes'><setvar varname='OVERALLSCORE' action='Add' sourcevarname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q20.SCORE'></setvar></respcondition><respcondition continue='Yes'><setvar varname='TOTALPOSSIBLESCORE' action='Add'>10</setvar></respcondition><respcondition continue='Yes'><setvar varname='OVERALLSCORE' action='Add' sourcevarname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q21.SCORE'></setvar></respcondition><respcondition continue='Yes'><setvar varname='TOTALPOSSIBLESCORE' action='Add'>10</setvar></respcondition><respcondition continue='Yes'><setvar varname='OVERALLSCORE' action='Add' sourcevarname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q22.SCORE'></setvar></respcondition><respcondition continue='Yes'><setvar varname='TOTALPOSSIBLESCORE' action='Add'>10</setvar></respcondition><respcondition continue='Yes'><setvar varname='OVERALLSCORE' action='Add' sourcevarname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q23.SCORE'></setvar></respcondition><respcondition continue='Yes'><setvar varname='TOTALPOSSIBLESCORE' action='Add'>10</setvar></respcondition><respcondition continue='Yes'><conditionvar><and><varlt varname='OVERALLSCORE'>0</varlt></and></conditionvar><setvar varname='OVERALLSCORE' action='Set'>0</setvar></respcondition><respcondition continue='Yes'><setvar varname='PERCENTAGESCORE' sourcevarname='OVERALLSCORE' action='Add'></setvar><setvar varname='PERCENTAGESCORE' action='Multiply'>100</setvar><setvar varname='PERCENTAGESCORE' sourcevarname='TOTALPOSSIBLESCORE' action='Divide'></setvar></respcondition><respcondition continue='Yes'><conditionvar><and><vargte varname='PERCENTAGESCORE'>80</vargte></and></conditionvar><setvar varname='PASSFAIL' action='Set'>PASS</setvar></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 831
gotoAndPlay(this._currentFrame + 3);
Frame 834
resp.stopStartTimer(-1);
Frame 835
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller3494" in Frame 835
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3493";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3494";
}
Frame 836
resp.checkTimeAllowed(true);
stop();
Frame 838
resp.jumpToNextDestination();
Frame 839
gotoAndPlay(this._currentFrame + 3);
Frame 842
resp.jumpToNextDestination();
Frame 843
resp.checkExitBranching("CalculationPage", 28, "quizReview", 0);
Frame 846
resp.majorElementExit("item_result", "CalculationPage");
resp.jumpToNextDestination();
Frame 847
resp.checkEntryBranching("StartOfFeedbackPage", 28, "quizReview", 1);
Frame 850
resp.majorElementEnter("item_result", "StartOfFeedbackPage");
resp.jumpToNextDestination();
Frame 851
gotoAndPlay(this._currentFrame + 3);
Frame 854
resp.startStopTimer(-1);
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3495" in Frame 855
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 855
_global.resp.registerButton(this.button3495, "itemnav", "nextQuestion", 3495);
this.button3495text.tabIndex = 3496;
resp.showHideNextButton();
_global.resp.enterVisible("StartOfFeedbackPage-item-presentation");
Frame 856
resp.checkTimeAllowed(false);
stop();
Frame 858
resp.setResponseProcessingString("<ops pageid='29'></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 859
gotoAndPlay(this._currentFrame + 3);
Frame 862
resp.stopStartTimer(-1);
Frame 863
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller3500" in Frame 863
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3499";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3500";
}
Frame 864
resp.checkTimeAllowed(true);
stop();
Frame 866
resp.jumpToNextDestination();
Frame 867
gotoAndPlay(this._currentFrame + 3);
Frame 870
resp.jumpToNextDestination();
Frame 871
resp.checkExitBranching("StartOfFeedbackPage", 28, "quizReview", 1);
Frame 874
resp.majorElementExit("item_result", "StartOfFeedbackPage");
resp.jumpToNextDestination();
Frame 875
resp.checkEntryBranching("ReportPage", 28, "quizReview", 2);
Frame 878
resp.majorElementEnter("item_result", "ReportPage");
resp.jumpToNextDestination();
Frame 879
gotoAndPlay(this._currentFrame + 3);
Frame 882
resp.startStopTimer(-1);
Frame 883
_global.resp.bypassQuestion();
Frame 884
resp.checkTimeAllowed(false);
stop();
Frame 886
resp.setResponseProcessingString("<ops pageid='29'><resprocessing><respcondition continue='Yes'><conditionvar><and><varequal varname='Naurto Quiz #57158008-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='Naurto Quiz #57158008-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 887
gotoAndPlay(this._currentFrame + 3);
Frame 890
resp.stopStartTimer(-1);
Frame 891
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3529, "itemnav", "prevQuestion", 3529);
this.button3529text.tabIndex = 3530;
_global.resp.registerButton(this.button3531, "itemnav", "nextQuestion", 3531);
this.button3531text.tabIndex = 3532;
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller3528" in Frame 891
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3501";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3528";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3529" in Frame 891
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3531" in Frame 891
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 892
resp.checkTimeAllowed(true);
stop();
Frame 894
resp.jumpToNextDestination();
Frame 895
gotoAndPlay(this._currentFrame + 3);
Frame 898
resp.jumpToNextDestination();
Frame 899
resp.checkExitBranching("ReportPage", 28, "quizReview", 2);
Frame 902
resp.majorElementExit("item_result", "ReportPage");
resp.jumpToNextDestination();
Frame 903
resp.checkEntryBranching("FB: Question Q1", 28, "quizReview", 3);
Frame 906
resp.majorElementEnter("item_result", "FB: Question Q1");
resp.jumpToNextDestination();
Frame 907
gotoAndPlay(this._currentFrame + 3);
Frame 910
resp.startStopTimer(-1);
Frame 911
_global.resp.bypassQuestion();
Frame 912
resp.checkTimeAllowed(false);
stop();
Frame 914
resp.setResponseProcessingString("<ops pageid='29'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q1.questiontitle # 57158008-2'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q1.questiontitle # 57158008-2'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q1.questiontitle # 57158008-2'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q1.questiontitle # 57158008-2'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q1.questiontitle # 57158008-2'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q1.questiontitle # 57158008-2'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q1.questiontitle # 57158008-2'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q1.questiontitle # 57158008-2'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 57158008-2'></displayfeedback><displayfeedback linkrefid='Correct Answers # 57158008-2'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q1.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 57158008-2'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 57158008-2'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 915
gotoAndPlay(this._currentFrame + 3);
Frame 918
resp.stopStartTimer(-1);
Frame 919
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3598, "itemnav", "prevQuestion", 3598);
this.button3598text.tabIndex = 3599;
_global.resp.registerButton(this.button3600, "itemnav", "nextQuestion", 3600);
this.button3600text.tabIndex = 3601;
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller3597" in Frame 919
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3533";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3597";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3598" in Frame 919
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3600" in Frame 919
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 920
resp.checkTimeAllowed(true);
stop();
Frame 922
resp.jumpToNextDestination();
Frame 923
gotoAndPlay(this._currentFrame + 3);
Frame 926
resp.jumpToNextDestination();
Frame 927
resp.checkExitBranching("FB: Question Q1", 28, "quizReview", 3);
Frame 930
resp.majorElementExit("item_result", "FB: Question Q1");
resp.jumpToNextDestination();
Frame 931
resp.checkEntryBranching("FB: Question Q2", 28, "quizReview", 4);
Frame 934
resp.majorElementEnter("item_result", "FB: Question Q2");
resp.jumpToNextDestination();
Frame 935
gotoAndPlay(this._currentFrame + 3);
Frame 938
resp.startStopTimer(-1);
Frame 939
_global.resp.bypassQuestion();
Frame 940
resp.checkTimeAllowed(false);
stop();
Frame 942
resp.setResponseProcessingString("<ops pageid='29'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q2.questiontitle # 57158008-5'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q2.questiontitle # 57158008-5'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q2.questiontitle # 57158008-5'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q2.questiontitle # 57158008-5'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q2.questiontitle # 57158008-5'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q2.questiontitle # 57158008-5'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q2.questiontitle # 57158008-5'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q2.questiontitle # 57158008-5'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 57158008-5'></displayfeedback><displayfeedback linkrefid='Correct Answers # 57158008-5'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q2.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 57158008-5'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 57158008-5'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 943
gotoAndPlay(this._currentFrame + 3);
Frame 946
resp.stopStartTimer(-1);
Frame 947
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3644, "itemnav", "prevQuestion", 3644);
this.button3644text.tabIndex = 3645;
_global.resp.registerButton(this.button3646, "itemnav", "nextQuestion", 3646);
this.button3646text.tabIndex = 3647;
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller3643" in Frame 947
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3602";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3643";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3644" in Frame 947
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3646" in Frame 947
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 948
resp.checkTimeAllowed(true);
stop();
Frame 950
resp.jumpToNextDestination();
Frame 951
gotoAndPlay(this._currentFrame + 3);
Frame 954
resp.jumpToNextDestination();
Frame 955
resp.checkExitBranching("FB: Question Q2", 28, "quizReview", 4);
Frame 958
resp.majorElementExit("item_result", "FB: Question Q2");
resp.jumpToNextDestination();
Frame 959
resp.checkEntryBranching("FB: Question Q3", 28, "quizReview", 5);
Frame 962
resp.majorElementEnter("item_result", "FB: Question Q3");
resp.jumpToNextDestination();
Frame 963
gotoAndPlay(this._currentFrame + 3);
Frame 966
resp.startStopTimer(-1);
Frame 967
_global.resp.bypassQuestion();
Frame 968
resp.checkTimeAllowed(false);
stop();
Frame 970
resp.setResponseProcessingString("<ops pageid='29'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q3.questiontitle # 57158008-7'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q3.questiontitle # 57158008-7'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q3.questiontitle # 57158008-7'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q3.questiontitle # 57158008-7'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q3.questiontitle # 57158008-7'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q3.questiontitle # 57158008-7'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q3.questiontitle # 57158008-7'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q3.questiontitle # 57158008-7'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 57158008-7'></displayfeedback><displayfeedback linkrefid='Correct Answers # 57158008-7'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q3.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 57158008-7'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 57158008-7'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 971
gotoAndPlay(this._currentFrame + 3);
Frame 974
resp.stopStartTimer(-1);
Frame 975
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3690, "itemnav", "prevQuestion", 3690);
this.button3690text.tabIndex = 3691;
_global.resp.registerButton(this.button3692, "itemnav", "nextQuestion", 3692);
this.button3692text.tabIndex = 3693;
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller3689" in Frame 975
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3648";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3689";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3690" in Frame 975
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3692" in Frame 975
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 976
resp.checkTimeAllowed(true);
stop();
Frame 978
resp.jumpToNextDestination();
Frame 979
gotoAndPlay(this._currentFrame + 3);
Frame 982
resp.jumpToNextDestination();
Frame 983
resp.checkExitBranching("FB: Question Q3", 28, "quizReview", 5);
Frame 986
resp.majorElementExit("item_result", "FB: Question Q3");
resp.jumpToNextDestination();
Frame 987
resp.checkEntryBranching("FB: Question Q4", 28, "quizReview", 6);
Frame 990
resp.majorElementEnter("item_result", "FB: Question Q4");
resp.jumpToNextDestination();
Frame 991
gotoAndPlay(this._currentFrame + 3);
Frame 994
resp.startStopTimer(-1);
Frame 995
_global.resp.bypassQuestion();
Frame 996
resp.checkTimeAllowed(false);
stop();
Frame 998
resp.setResponseProcessingString("<ops pageid='29'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q4.questiontitle # 57158008-8'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q4.questiontitle # 57158008-8'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q4.questiontitle # 57158008-8'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q4.questiontitle # 57158008-8'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q4.questiontitle # 57158008-8'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q4.questiontitle # 57158008-8'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q4.questiontitle # 57158008-8'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q4.questiontitle # 57158008-8'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 57158008-8'></displayfeedback><displayfeedback linkrefid='Correct Answers # 57158008-8'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q4.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 57158008-8'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 57158008-8'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 999
gotoAndPlay(this._currentFrame + 3);
Frame 1002
resp.stopStartTimer(-1);
Frame 1003
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3736, "itemnav", "prevQuestion", 3736);
this.button3736text.tabIndex = 3737;
_global.resp.registerButton(this.button3738, "itemnav", "nextQuestion", 3738);
this.button3738text.tabIndex = 3739;
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller3735" in Frame 1003
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3694";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3735";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3736" in Frame 1003
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3738" in Frame 1003
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 1004
resp.checkTimeAllowed(true);
stop();
Frame 1006
resp.jumpToNextDestination();
Frame 1007
gotoAndPlay(this._currentFrame + 3);
Frame 1010
resp.jumpToNextDestination();
Frame 1011
resp.checkExitBranching("FB: Question Q4", 28, "quizReview", 6);
Frame 1014
resp.majorElementExit("item_result", "FB: Question Q4");
resp.jumpToNextDestination();
Frame 1015
resp.checkEntryBranching("FB: Question Q5", 28, "quizReview", 7);
Frame 1018
resp.majorElementEnter("item_result", "FB: Question Q5");
resp.jumpToNextDestination();
Frame 1019
gotoAndPlay(this._currentFrame + 3);
Frame 1022
resp.startStopTimer(-1);
Frame 1023
_global.resp.bypassQuestion();
Frame 1024
resp.checkTimeAllowed(false);
stop();
Frame 1026
resp.setResponseProcessingString("<ops pageid='29'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q5.questiontitle # 57158008-9'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q5.questiontitle # 57158008-9'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q5.questiontitle # 57158008-9'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q5.questiontitle # 57158008-9'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q5.questiontitle # 57158008-9'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q5.questiontitle # 57158008-9'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q5.questiontitle # 57158008-9'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q5.questiontitle # 57158008-9'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 57158008-9'></displayfeedback><displayfeedback linkrefid='Correct Answers # 57158008-9'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q5.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 57158008-9'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 57158008-9'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 1027
gotoAndPlay(this._currentFrame + 3);
Frame 1030
resp.stopStartTimer(-1);
Frame 1031
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3782, "itemnav", "prevQuestion", 3782);
this.button3782text.tabIndex = 3783;
_global.resp.registerButton(this.button3784, "itemnav", "nextQuestion", 3784);
this.button3784text.tabIndex = 3785;
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller3781" in Frame 1031
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3740";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3781";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3782" in Frame 1031
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3784" in Frame 1031
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 1032
resp.checkTimeAllowed(true);
stop();
Frame 1034
resp.jumpToNextDestination();
Frame 1035
gotoAndPlay(this._currentFrame + 3);
Frame 1038
resp.jumpToNextDestination();
Frame 1039
resp.checkExitBranching("FB: Question Q5", 28, "quizReview", 7);
Frame 1042
resp.majorElementExit("item_result", "FB: Question Q5");
resp.jumpToNextDestination();
Frame 1043
resp.checkEntryBranching("FB: Question Q6", 28, "quizReview", 8);
Frame 1046
resp.majorElementEnter("item_result", "FB: Question Q6");
resp.jumpToNextDestination();
Frame 1047
gotoAndPlay(this._currentFrame + 3);
Frame 1050
resp.startStopTimer(-1);
Frame 1051
_global.resp.bypassQuestion();
Frame 1052
resp.checkTimeAllowed(false);
stop();
Frame 1054
resp.setResponseProcessingString("<ops pageid='29'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q6.questiontitle # 57158008-10'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q6.questiontitle # 57158008-10'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q6.questiontitle # 57158008-10'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q6.questiontitle # 57158008-10'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q6.questiontitle # 57158008-10'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q6.questiontitle # 57158008-10'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q6.questiontitle # 57158008-10'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q6.questiontitle # 57158008-10'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 57158008-10'></displayfeedback><displayfeedback linkrefid='Correct Answers # 57158008-10'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q6.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 57158008-10'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 57158008-10'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 1055
gotoAndPlay(this._currentFrame + 3);
Frame 1058
resp.stopStartTimer(-1);
Frame 1059
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3828, "itemnav", "prevQuestion", 3828);
this.button3828text.tabIndex = 3829;
_global.resp.registerButton(this.button3830, "itemnav", "nextQuestion", 3830);
this.button3830text.tabIndex = 3831;
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller3827" in Frame 1059
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3786";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3827";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3828" in Frame 1059
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3830" in Frame 1059
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 1060
resp.checkTimeAllowed(true);
stop();
Frame 1062
resp.jumpToNextDestination();
Frame 1063
gotoAndPlay(this._currentFrame + 3);
Frame 1066
resp.jumpToNextDestination();
Frame 1067
resp.checkExitBranching("FB: Question Q6", 28, "quizReview", 8);
Frame 1070
resp.majorElementExit("item_result", "FB: Question Q6");
resp.jumpToNextDestination();
Frame 1071
resp.checkEntryBranching("FB: Question Q7", 28, "quizReview", 9);
Frame 1074
resp.majorElementEnter("item_result", "FB: Question Q7");
resp.jumpToNextDestination();
Frame 1075
gotoAndPlay(this._currentFrame + 3);
Frame 1078
resp.startStopTimer(-1);
Frame 1079
_global.resp.bypassQuestion();
Frame 1080
resp.checkTimeAllowed(false);
stop();
Frame 1082
resp.setResponseProcessingString("<ops pageid='29'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q7.questiontitle # 57158008-11'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q7.questiontitle # 57158008-11'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q7.questiontitle # 57158008-11'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q7.questiontitle # 57158008-11'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q7.questiontitle # 57158008-11'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q7.questiontitle # 57158008-11'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q7.questiontitle # 57158008-11'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q7.questiontitle # 57158008-11'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 57158008-11'></displayfeedback><displayfeedback linkrefid='Correct Answers # 57158008-11'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q7.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 57158008-11'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 57158008-11'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 1083
gotoAndPlay(this._currentFrame + 3);
Frame 1086
resp.stopStartTimer(-1);
Frame 1087
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3874, "itemnav", "prevQuestion", 3874);
this.button3874text.tabIndex = 3875;
_global.resp.registerButton(this.button3876, "itemnav", "nextQuestion", 3876);
this.button3876text.tabIndex = 3877;
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller3873" in Frame 1087
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3832";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3873";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3874" in Frame 1087
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3876" in Frame 1087
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 1088
resp.checkTimeAllowed(true);
stop();
Frame 1090
resp.jumpToNextDestination();
Frame 1091
gotoAndPlay(this._currentFrame + 3);
Frame 1094
resp.jumpToNextDestination();
Frame 1095
resp.checkExitBranching("FB: Question Q7", 28, "quizReview", 9);
Frame 1098
resp.majorElementExit("item_result", "FB: Question Q7");
resp.jumpToNextDestination();
Frame 1099
resp.checkEntryBranching("FB: Question Q8", 28, "quizReview", 10);
Frame 1102
resp.majorElementEnter("item_result", "FB: Question Q8");
resp.jumpToNextDestination();
Frame 1103
gotoAndPlay(this._currentFrame + 3);
Frame 1106
resp.startStopTimer(-1);
Frame 1107
_global.resp.bypassQuestion();
Frame 1108
resp.checkTimeAllowed(false);
stop();
Frame 1110
resp.setResponseProcessingString("<ops pageid='29'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q8.questiontitle # 57158008-12'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q8.questiontitle # 57158008-12'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q8.questiontitle # 57158008-12'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q8.questiontitle # 57158008-12'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q8.questiontitle # 57158008-12'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q8.questiontitle # 57158008-12'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q8.questiontitle # 57158008-12'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q8.questiontitle # 57158008-12'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 57158008-12'></displayfeedback><displayfeedback linkrefid='Correct Answers # 57158008-12'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q8.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 57158008-12'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 57158008-12'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 1111
gotoAndPlay(this._currentFrame + 3);
Frame 1114
resp.stopStartTimer(-1);
Frame 1115
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3920, "itemnav", "prevQuestion", 3920);
this.button3920text.tabIndex = 3921;
_global.resp.registerButton(this.button3922, "itemnav", "nextQuestion", 3922);
this.button3922text.tabIndex = 3923;
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller3919" in Frame 1115
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3878";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3919";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3920" in Frame 1115
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3922" in Frame 1115
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 1116
resp.checkTimeAllowed(true);
stop();
Frame 1118
resp.jumpToNextDestination();
Frame 1119
gotoAndPlay(this._currentFrame + 3);
Frame 1122
resp.jumpToNextDestination();
Frame 1123
resp.checkExitBranching("FB: Question Q8", 28, "quizReview", 10);
Frame 1126
resp.majorElementExit("item_result", "FB: Question Q8");
resp.jumpToNextDestination();
Frame 1127
resp.checkEntryBranching("FB: Question Q9", 28, "quizReview", 11);
Frame 1130
resp.majorElementEnter("item_result", "FB: Question Q9");
resp.jumpToNextDestination();
Frame 1131
gotoAndPlay(this._currentFrame + 3);
Frame 1134
resp.startStopTimer(-1);
Frame 1135
_global.resp.bypassQuestion();
Frame 1136
resp.checkTimeAllowed(false);
stop();
Frame 1138
resp.setResponseProcessingString("<ops pageid='29'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q9.questiontitle # 57158008-13'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q9.questiontitle # 57158008-13'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q9.questiontitle # 57158008-13'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q9.questiontitle # 57158008-13'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q9.questiontitle # 57158008-13'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q9.questiontitle # 57158008-13'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q9.questiontitle # 57158008-13'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q9.questiontitle # 57158008-13'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 57158008-13'></displayfeedback><displayfeedback linkrefid='Correct Answers # 57158008-13'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q9.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 57158008-13'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 57158008-13'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 1139
gotoAndPlay(this._currentFrame + 3);
Frame 1142
resp.stopStartTimer(-1);
Frame 1143
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3966, "itemnav", "prevQuestion", 3966);
this.button3966text.tabIndex = 3967;
_global.resp.registerButton(this.button3968, "itemnav", "nextQuestion", 3968);
this.button3968text.tabIndex = 3969;
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller3965" in Frame 1143
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3924";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3965";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3966" in Frame 1143
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3968" in Frame 1143
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 1144
resp.checkTimeAllowed(true);
stop();
Frame 1146
resp.jumpToNextDestination();
Frame 1147
gotoAndPlay(this._currentFrame + 3);
Frame 1150
resp.jumpToNextDestination();
Frame 1151
resp.checkExitBranching("FB: Question Q9", 28, "quizReview", 11);
Frame 1154
resp.majorElementExit("item_result", "FB: Question Q9");
resp.jumpToNextDestination();
Frame 1155
resp.checkEntryBranching("FB: Question Q10", 28, "quizReview", 12);
Frame 1158
resp.majorElementEnter("item_result", "FB: Question Q10");
resp.jumpToNextDestination();
Frame 1159
gotoAndPlay(this._currentFrame + 3);
Frame 1162
resp.startStopTimer(-1);
Frame 1163
_global.resp.bypassQuestion();
Frame 1164
resp.checkTimeAllowed(false);
stop();
Frame 1166
resp.setResponseProcessingString("<ops pageid='29'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q10.questiontitle # 57158008-14'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q10.questiontitle # 57158008-14'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q10.questiontitle # 57158008-14'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q10.questiontitle # 57158008-14'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q10.questiontitle # 57158008-14'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q10.questiontitle # 57158008-14'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q10.questiontitle # 57158008-14'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q10.questiontitle # 57158008-14'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 57158008-14'></displayfeedback><displayfeedback linkrefid='Correct Answers # 57158008-14'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q10.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 57158008-14'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 57158008-14'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 1167
gotoAndPlay(this._currentFrame + 3);
Frame 1170
resp.stopStartTimer(-1);
Frame 1171
_global.resp.clearFeedback();
_global.resp.registerButton(this.button4012, "itemnav", "prevQuestion", 4012);
this.button4012text.tabIndex = 4013;
_global.resp.registerButton(this.button4014, "itemnav", "nextQuestion", 4014);
this.button4014text.tabIndex = 4015;
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller4011" in Frame 1171
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3970";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller4011";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4012" in Frame 1171
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4014" in Frame 1171
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 1172
resp.checkTimeAllowed(true);
stop();
Frame 1174
resp.jumpToNextDestination();
Frame 1175
gotoAndPlay(this._currentFrame + 3);
Frame 1178
resp.jumpToNextDestination();
Frame 1179
resp.checkExitBranching("FB: Question Q10", 28, "quizReview", 12);
Frame 1182
resp.majorElementExit("item_result", "FB: Question Q10");
resp.jumpToNextDestination();
Frame 1183
resp.checkEntryBranching("FB: Question Q11", 28, "quizReview", 13);
Frame 1186
resp.majorElementEnter("item_result", "FB: Question Q11");
resp.jumpToNextDestination();
Frame 1187
gotoAndPlay(this._currentFrame + 3);
Frame 1190
resp.startStopTimer(-1);
Frame 1191
_global.resp.bypassQuestion();
Frame 1192
resp.checkTimeAllowed(false);
stop();
Frame 1194
resp.setResponseProcessingString("<ops pageid='29'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q11.questiontitle # 57158008-15'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q11.questiontitle # 57158008-15'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q11.questiontitle # 57158008-15'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q11.questiontitle # 57158008-15'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q11.questiontitle # 57158008-15'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q11.questiontitle # 57158008-15'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q11.questiontitle # 57158008-15'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q11.questiontitle # 57158008-15'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 57158008-15'></displayfeedback><displayfeedback linkrefid='Correct Answers # 57158008-15'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q11.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 57158008-15'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 57158008-15'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 1195
gotoAndPlay(this._currentFrame + 3);
Frame 1198
resp.stopStartTimer(-1);
Frame 1199
_global.resp.clearFeedback();
_global.resp.registerButton(this.button4058, "itemnav", "prevQuestion", 4058);
this.button4058text.tabIndex = 4059;
_global.resp.registerButton(this.button4060, "itemnav", "nextQuestion", 4060);
this.button4060text.tabIndex = 4061;
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller4057" in Frame 1199
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable4016";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller4057";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4058" in Frame 1199
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4060" in Frame 1199
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 1200
resp.checkTimeAllowed(true);
stop();
Frame 1202
resp.jumpToNextDestination();
Frame 1203
gotoAndPlay(this._currentFrame + 3);
Frame 1206
resp.jumpToNextDestination();
Frame 1207
resp.checkExitBranching("FB: Question Q11", 28, "quizReview", 13);
Frame 1210
resp.majorElementExit("item_result", "FB: Question Q11");
resp.jumpToNextDestination();
Frame 1211
resp.checkEntryBranching("FB: Question Q12", 28, "quizReview", 14);
Frame 1214
resp.majorElementEnter("item_result", "FB: Question Q12");
resp.jumpToNextDestination();
Frame 1215
gotoAndPlay(this._currentFrame + 3);
Frame 1218
resp.startStopTimer(-1);
Frame 1219
_global.resp.bypassQuestion();
Frame 1220
resp.checkTimeAllowed(false);
stop();
Frame 1222
resp.setResponseProcessingString("<ops pageid='29'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q12.questiontitle # 57158008-16'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q12.questiontitle # 57158008-16'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q12.questiontitle # 57158008-16'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q12.questiontitle # 57158008-16'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q12.questiontitle # 57158008-16'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q12.questiontitle # 57158008-16'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q12.questiontitle # 57158008-16'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q12.questiontitle # 57158008-16'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 57158008-16'></displayfeedback><displayfeedback linkrefid='Correct Answers # 57158008-16'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q12.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 57158008-16'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 57158008-16'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 1223
gotoAndPlay(this._currentFrame + 3);
Frame 1226
resp.stopStartTimer(-1);
Frame 1227
_global.resp.clearFeedback();
_global.resp.registerButton(this.button4104, "itemnav", "prevQuestion", 4104);
this.button4104text.tabIndex = 4105;
_global.resp.registerButton(this.button4106, "itemnav", "nextQuestion", 4106);
this.button4106text.tabIndex = 4107;
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller4103" in Frame 1227
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable4062";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller4103";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4104" in Frame 1227
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4106" in Frame 1227
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 1228
resp.checkTimeAllowed(true);
stop();
Frame 1230
resp.jumpToNextDestination();
Frame 1231
gotoAndPlay(this._currentFrame + 3);
Frame 1234
resp.jumpToNextDestination();
Frame 1235
resp.checkExitBranching("FB: Question Q12", 28, "quizReview", 14);
Frame 1238
resp.majorElementExit("item_result", "FB: Question Q12");
resp.jumpToNextDestination();
Frame 1239
resp.checkEntryBranching("FB: Question Q13", 28, "quizReview", 15);
Frame 1242
resp.majorElementEnter("item_result", "FB: Question Q13");
resp.jumpToNextDestination();
Frame 1243
gotoAndPlay(this._currentFrame + 3);
Frame 1246
resp.startStopTimer(-1);
Frame 1247
_global.resp.bypassQuestion();
Frame 1248
resp.checkTimeAllowed(false);
stop();
Frame 1250
resp.setResponseProcessingString("<ops pageid='29'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q13.questiontitle # 57158008-17'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q13.questiontitle # 57158008-17'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q13.questiontitle # 57158008-17'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q13.questiontitle # 57158008-17'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q13.questiontitle # 57158008-17'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q13.questiontitle # 57158008-17'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q13.questiontitle # 57158008-17'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q13.questiontitle # 57158008-17'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 57158008-17'></displayfeedback><displayfeedback linkrefid='Correct Answers # 57158008-17'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q13.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 57158008-17'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 57158008-17'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 1251
gotoAndPlay(this._currentFrame + 3);
Frame 1254
resp.stopStartTimer(-1);
Frame 1255
_global.resp.clearFeedback();
_global.resp.registerButton(this.button4150, "itemnav", "prevQuestion", 4150);
this.button4150text.tabIndex = 4151;
_global.resp.registerButton(this.button4152, "itemnav", "nextQuestion", 4152);
this.button4152text.tabIndex = 4153;
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller4149" in Frame 1255
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable4108";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller4149";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4150" in Frame 1255
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4152" in Frame 1255
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 1256
resp.checkTimeAllowed(true);
stop();
Frame 1258
resp.jumpToNextDestination();
Frame 1259
gotoAndPlay(this._currentFrame + 3);
Frame 1262
resp.jumpToNextDestination();
Frame 1263
resp.checkExitBranching("FB: Question Q13", 28, "quizReview", 15);
Frame 1266
resp.majorElementExit("item_result", "FB: Question Q13");
resp.jumpToNextDestination();
Frame 1267
resp.checkEntryBranching("FB: Question Q14", 28, "quizReview", 16);
Frame 1270
resp.majorElementEnter("item_result", "FB: Question Q14");
resp.jumpToNextDestination();
Frame 1271
gotoAndPlay(this._currentFrame + 3);
Frame 1274
resp.startStopTimer(-1);
Frame 1275
_global.resp.bypassQuestion();
Frame 1276
resp.checkTimeAllowed(false);
stop();
Frame 1278
resp.setResponseProcessingString("<ops pageid='29'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q14.questiontitle # 57158008-18'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q14.questiontitle # 57158008-18'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q14.questiontitle # 57158008-18'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q14.questiontitle # 57158008-18'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q14.questiontitle # 57158008-18'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q14.questiontitle # 57158008-18'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q14.questiontitle # 57158008-18'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q14.questiontitle # 57158008-18'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 57158008-18'></displayfeedback><displayfeedback linkrefid='Correct Answers # 57158008-18'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q14.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 57158008-18'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 57158008-18'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 1279
gotoAndPlay(this._currentFrame + 3);
Frame 1282
resp.stopStartTimer(-1);
Frame 1283
_global.resp.clearFeedback();
_global.resp.registerButton(this.button4196, "itemnav", "prevQuestion", 4196);
this.button4196text.tabIndex = 4197;
_global.resp.registerButton(this.button4198, "itemnav", "nextQuestion", 4198);
this.button4198text.tabIndex = 4199;
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller4195" in Frame 1283
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable4154";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller4195";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4196" in Frame 1283
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4198" in Frame 1283
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 1284
resp.checkTimeAllowed(true);
stop();
Frame 1286
resp.jumpToNextDestination();
Frame 1287
gotoAndPlay(this._currentFrame + 3);
Frame 1290
resp.jumpToNextDestination();
Frame 1291
resp.checkExitBranching("FB: Question Q14", 28, "quizReview", 16);
Frame 1294
resp.majorElementExit("item_result", "FB: Question Q14");
resp.jumpToNextDestination();
Frame 1295
resp.checkEntryBranching("FB: Question Q15", 28, "quizReview", 17);
Frame 1298
resp.majorElementEnter("item_result", "FB: Question Q15");
resp.jumpToNextDestination();
Frame 1299
gotoAndPlay(this._currentFrame + 3);
Frame 1302
resp.startStopTimer(-1);
Frame 1303
_global.resp.bypassQuestion();
Frame 1304
resp.checkTimeAllowed(false);
stop();
Frame 1306
resp.setResponseProcessingString("<ops pageid='29'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q15.questiontitle # 57158008-19'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q15.questiontitle # 57158008-19'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q15.questiontitle # 57158008-19'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q15.questiontitle # 57158008-19'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q15.questiontitle # 57158008-19'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q15.questiontitle # 57158008-19'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q15.questiontitle # 57158008-19'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q15.questiontitle # 57158008-19'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 57158008-19'></displayfeedback><displayfeedback linkrefid='Correct Answers # 57158008-19'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q15.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 57158008-19'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 57158008-19'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 1307
gotoAndPlay(this._currentFrame + 3);
Frame 1310
resp.stopStartTimer(-1);
Frame 1311
_global.resp.clearFeedback();
_global.resp.registerButton(this.button4242, "itemnav", "prevQuestion", 4242);
this.button4242text.tabIndex = 4243;
_global.resp.registerButton(this.button4244, "itemnav", "nextQuestion", 4244);
this.button4244text.tabIndex = 4245;
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller4241" in Frame 1311
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable4200";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller4241";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4242" in Frame 1311
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4244" in Frame 1311
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 1312
resp.checkTimeAllowed(true);
stop();
Frame 1314
resp.jumpToNextDestination();
Frame 1315
gotoAndPlay(this._currentFrame + 3);
Frame 1318
resp.jumpToNextDestination();
Frame 1319
resp.checkExitBranching("FB: Question Q15", 28, "quizReview", 17);
Frame 1322
resp.majorElementExit("item_result", "FB: Question Q15");
resp.jumpToNextDestination();
Frame 1323
resp.checkEntryBranching("FB: Question Q16", 28, "quizReview", 18);
Frame 1326
resp.majorElementEnter("item_result", "FB: Question Q16");
resp.jumpToNextDestination();
Frame 1327
gotoAndPlay(this._currentFrame + 3);
Frame 1330
resp.startStopTimer(-1);
Frame 1331
_global.resp.bypassQuestion();
Frame 1332
resp.checkTimeAllowed(false);
stop();
Frame 1334
resp.setResponseProcessingString("<ops pageid='29'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q16.questiontitle # 57158008-20'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q16.questiontitle # 57158008-20'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q16.questiontitle # 57158008-20'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q16.questiontitle # 57158008-20'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q16.questiontitle # 57158008-20'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q16.questiontitle # 57158008-20'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q16.questiontitle # 57158008-20'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q16.questiontitle # 57158008-20'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 57158008-20'></displayfeedback><displayfeedback linkrefid='Correct Answers # 57158008-20'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q16.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 57158008-20'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 57158008-20'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 1335
gotoAndPlay(this._currentFrame + 3);
Frame 1338
resp.stopStartTimer(-1);
Frame 1339
_global.resp.clearFeedback();
_global.resp.registerButton(this.button4288, "itemnav", "prevQuestion", 4288);
this.button4288text.tabIndex = 4289;
_global.resp.registerButton(this.button4290, "itemnav", "nextQuestion", 4290);
this.button4290text.tabIndex = 4291;
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller4287" in Frame 1339
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable4246";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller4287";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4288" in Frame 1339
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4290" in Frame 1339
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 1340
resp.checkTimeAllowed(true);
stop();
Frame 1342
resp.jumpToNextDestination();
Frame 1343
gotoAndPlay(this._currentFrame + 3);
Frame 1346
resp.jumpToNextDestination();
Frame 1347
resp.checkExitBranching("FB: Question Q16", 28, "quizReview", 18);
Frame 1350
resp.majorElementExit("item_result", "FB: Question Q16");
resp.jumpToNextDestination();
Frame 1351
resp.checkEntryBranching("FB: Question Q17", 28, "quizReview", 19);
Frame 1354
resp.majorElementEnter("item_result", "FB: Question Q17");
resp.jumpToNextDestination();
Frame 1355
gotoAndPlay(this._currentFrame + 3);
Frame 1358
resp.startStopTimer(-1);
Frame 1359
_global.resp.bypassQuestion();
Frame 1360
resp.checkTimeAllowed(false);
stop();
Frame 1362
resp.setResponseProcessingString("<ops pageid='29'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q17.questiontitle # 57158008-21'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q17.questiontitle # 57158008-21'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q17.questiontitle # 57158008-21'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q17.questiontitle # 57158008-21'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q17.questiontitle # 57158008-21'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q17.questiontitle # 57158008-21'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q17.questiontitle # 57158008-21'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q17.questiontitle # 57158008-21'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 57158008-21'></displayfeedback><displayfeedback linkrefid='Correct Answers # 57158008-21'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q17.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 57158008-21'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 57158008-21'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 1363
gotoAndPlay(this._currentFrame + 3);
Frame 1366
resp.stopStartTimer(-1);
Frame 1367
_global.resp.clearFeedback();
_global.resp.registerButton(this.button4334, "itemnav", "prevQuestion", 4334);
this.button4334text.tabIndex = 4335;
_global.resp.registerButton(this.button4336, "itemnav", "nextQuestion", 4336);
this.button4336text.tabIndex = 4337;
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller4333" in Frame 1367
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable4292";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller4333";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4334" in Frame 1367
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4336" in Frame 1367
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 1368
resp.checkTimeAllowed(true);
stop();
Frame 1370
resp.jumpToNextDestination();
Frame 1371
gotoAndPlay(this._currentFrame + 3);
Frame 1374
resp.jumpToNextDestination();
Frame 1375
resp.checkExitBranching("FB: Question Q17", 28, "quizReview", 19);
Frame 1378
resp.majorElementExit("item_result", "FB: Question Q17");
resp.jumpToNextDestination();
Frame 1379
resp.checkEntryBranching("FB: Question Q18", 28, "quizReview", 20);
Frame 1382
resp.majorElementEnter("item_result", "FB: Question Q18");
resp.jumpToNextDestination();
Frame 1383
gotoAndPlay(this._currentFrame + 3);
Frame 1386
resp.startStopTimer(-1);
Frame 1387
_global.resp.bypassQuestion();
Frame 1388
resp.checkTimeAllowed(false);
stop();
Frame 1390
resp.setResponseProcessingString("<ops pageid='29'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q18.questiontitle # 57158008-22'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q18.questiontitle # 57158008-22'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q18.questiontitle # 57158008-22'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q18.questiontitle # 57158008-22'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q18.questiontitle # 57158008-22'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q18.questiontitle # 57158008-22'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q18.questiontitle # 57158008-22'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q18.questiontitle # 57158008-22'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 57158008-22'></displayfeedback><displayfeedback linkrefid='Correct Answers # 57158008-22'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q18.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 57158008-22'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 57158008-22'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 1391
gotoAndPlay(this._currentFrame + 3);
Frame 1394
resp.stopStartTimer(-1);
Frame 1395
_global.resp.clearFeedback();
_global.resp.registerButton(this.button4380, "itemnav", "prevQuestion", 4380);
this.button4380text.tabIndex = 4381;
_global.resp.registerButton(this.button4382, "itemnav", "nextQuestion", 4382);
this.button4382text.tabIndex = 4383;
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller4379" in Frame 1395
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable4338";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller4379";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4380" in Frame 1395
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4382" in Frame 1395
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 1396
resp.checkTimeAllowed(true);
stop();
Frame 1398
resp.jumpToNextDestination();
Frame 1399
gotoAndPlay(this._currentFrame + 3);
Frame 1402
resp.jumpToNextDestination();
Frame 1403
resp.checkExitBranching("FB: Question Q18", 28, "quizReview", 20);
Frame 1406
resp.majorElementExit("item_result", "FB: Question Q18");
resp.jumpToNextDestination();
Frame 1407
resp.checkEntryBranching("FB: Question Q19", 28, "quizReview", 21);
Frame 1410
resp.majorElementEnter("item_result", "FB: Question Q19");
resp.jumpToNextDestination();
Frame 1411
gotoAndPlay(this._currentFrame + 3);
Frame 1414
resp.startStopTimer(-1);
Frame 1415
_global.resp.bypassQuestion();
Frame 1416
resp.checkTimeAllowed(false);
stop();
Frame 1418
resp.setResponseProcessingString("<ops pageid='29'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q19.questiontitle # 57158008-23'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q19.questiontitle # 57158008-23'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q19.questiontitle # 57158008-23'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q19.questiontitle # 57158008-23'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q19.questiontitle # 57158008-23'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q19.questiontitle # 57158008-23'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q19.questiontitle # 57158008-23'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q19.questiontitle # 57158008-23'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 57158008-23'></displayfeedback><displayfeedback linkrefid='Correct Answers # 57158008-23'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q19.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 57158008-23'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 57158008-23'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 1419
gotoAndPlay(this._currentFrame + 3);
Frame 1422
resp.stopStartTimer(-1);
Frame 1423
_global.resp.clearFeedback();
_global.resp.registerButton(this.button4426, "itemnav", "prevQuestion", 4426);
this.button4426text.tabIndex = 4427;
_global.resp.registerButton(this.button4428, "itemnav", "nextQuestion", 4428);
this.button4428text.tabIndex = 4429;
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller4425" in Frame 1423
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable4384";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller4425";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4426" in Frame 1423
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4428" in Frame 1423
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 1424
resp.checkTimeAllowed(true);
stop();
Frame 1426
resp.jumpToNextDestination();
Frame 1427
gotoAndPlay(this._currentFrame + 3);
Frame 1430
resp.jumpToNextDestination();
Frame 1431
resp.checkExitBranching("FB: Question Q19", 28, "quizReview", 21);
Frame 1434
resp.majorElementExit("item_result", "FB: Question Q19");
resp.jumpToNextDestination();
Frame 1435
resp.checkEntryBranching("FB: Question Q20", 28, "quizReview", 22);
Frame 1438
resp.majorElementEnter("item_result", "FB: Question Q20");
resp.jumpToNextDestination();
Frame 1439
gotoAndPlay(this._currentFrame + 3);
Frame 1442
resp.startStopTimer(-1);
Frame 1443
_global.resp.bypassQuestion();
Frame 1444
resp.checkTimeAllowed(false);
stop();
Frame 1446
resp.setResponseProcessingString("<ops pageid='29'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q20.questiontitle # 57158008-24'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q20.questiontitle # 57158008-24'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q20.questiontitle # 57158008-24'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q20.questiontitle # 57158008-24'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q20.questiontitle # 57158008-24'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q20.questiontitle # 57158008-24'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q20.questiontitle # 57158008-24'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q20.questiontitle # 57158008-24'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 57158008-24'></displayfeedback><displayfeedback linkrefid='Correct Answers # 57158008-24'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q20.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 57158008-24'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 57158008-24'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 1447
gotoAndPlay(this._currentFrame + 3);
Frame 1450
resp.stopStartTimer(-1);
Frame 1451
_global.resp.clearFeedback();
_global.resp.registerButton(this.button4472, "itemnav", "prevQuestion", 4472);
this.button4472text.tabIndex = 4473;
_global.resp.registerButton(this.button4474, "itemnav", "nextQuestion", 4474);
this.button4474text.tabIndex = 4475;
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller4471" in Frame 1451
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable4430";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller4471";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4472" in Frame 1451
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4474" in Frame 1451
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 1452
resp.checkTimeAllowed(true);
stop();
Frame 1454
resp.jumpToNextDestination();
Frame 1455
gotoAndPlay(this._currentFrame + 3);
Frame 1458
resp.jumpToNextDestination();
Frame 1459
resp.checkExitBranching("FB: Question Q20", 28, "quizReview", 22);
Frame 1462
resp.majorElementExit("item_result", "FB: Question Q20");
resp.jumpToNextDestination();
Frame 1463
resp.checkEntryBranching("FB: Question Q21", 28, "quizReview", 23);
Frame 1466
resp.majorElementEnter("item_result", "FB: Question Q21");
resp.jumpToNextDestination();
Frame 1467
gotoAndPlay(this._currentFrame + 3);
Frame 1470
resp.startStopTimer(-1);
Frame 1471
_global.resp.bypassQuestion();
Frame 1472
resp.checkTimeAllowed(false);
stop();
Frame 1474
resp.setResponseProcessingString("<ops pageid='29'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q21.questiontitle # 57158008-25'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q21.questiontitle # 57158008-25'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q21.questiontitle # 57158008-25'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q21.questiontitle # 57158008-25'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q21.questiontitle # 57158008-25'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q21.questiontitle # 57158008-25'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q21.questiontitle # 57158008-25'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q21.questiontitle # 57158008-25'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 57158008-25'></displayfeedback><displayfeedback linkrefid='Correct Answers # 57158008-25'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q21.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 57158008-25'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 57158008-25'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 1475
gotoAndPlay(this._currentFrame + 3);
Frame 1478
resp.stopStartTimer(-1);
Frame 1479
_global.resp.clearFeedback();
_global.resp.registerButton(this.button4518, "itemnav", "prevQuestion", 4518);
this.button4518text.tabIndex = 4519;
_global.resp.registerButton(this.button4520, "itemnav", "nextQuestion", 4520);
this.button4520text.tabIndex = 4521;
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller4517" in Frame 1479
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable4476";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller4517";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4518" in Frame 1479
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4520" in Frame 1479
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 1480
resp.checkTimeAllowed(true);
stop();
Frame 1482
resp.jumpToNextDestination();
Frame 1483
gotoAndPlay(this._currentFrame + 3);
Frame 1486
resp.jumpToNextDestination();
Frame 1487
resp.checkExitBranching("FB: Question Q21", 28, "quizReview", 23);
Frame 1490
resp.majorElementExit("item_result", "FB: Question Q21");
resp.jumpToNextDestination();
Frame 1491
resp.checkEntryBranching("FB: Question Q22", 28, "quizReview", 24);
Frame 1494
resp.majorElementEnter("item_result", "FB: Question Q22");
resp.jumpToNextDestination();
Frame 1495
gotoAndPlay(this._currentFrame + 3);
Frame 1498
resp.startStopTimer(-1);
Frame 1499
_global.resp.bypassQuestion();
Frame 1500
resp.checkTimeAllowed(false);
stop();
Frame 1502
resp.setResponseProcessingString("<ops pageid='29'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q22.questiontitle # 57158008-26'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q22.questiontitle # 57158008-26'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q22.questiontitle # 57158008-26'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q22.questiontitle # 57158008-26'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q22.questiontitle # 57158008-26'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q22.questiontitle # 57158008-26'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q22.questiontitle # 57158008-26'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q22.questiontitle # 57158008-26'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 57158008-26'></displayfeedback><displayfeedback linkrefid='Correct Answers # 57158008-26'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q22.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 57158008-26'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 57158008-26'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 1503
gotoAndPlay(this._currentFrame + 3);
Frame 1506
resp.stopStartTimer(-1);
Frame 1507
_global.resp.clearFeedback();
_global.resp.registerButton(this.button4564, "itemnav", "prevQuestion", 4564);
this.button4564text.tabIndex = 4565;
_global.resp.registerButton(this.button4566, "itemnav", "nextQuestion", 4566);
this.button4566text.tabIndex = 4567;
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller4563" in Frame 1507
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable4522";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller4563";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4564" in Frame 1507
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4566" in Frame 1507
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 1508
resp.checkTimeAllowed(true);
stop();
Frame 1510
resp.jumpToNextDestination();
Frame 1511
gotoAndPlay(this._currentFrame + 3);
Frame 1514
resp.jumpToNextDestination();
Frame 1515
resp.checkExitBranching("FB: Question Q22", 28, "quizReview", 24);
Frame 1518
resp.majorElementExit("item_result", "FB: Question Q22");
resp.jumpToNextDestination();
Frame 1519
resp.checkEntryBranching("FB: Question Q23", 28, "quizReview", 25);
Frame 1522
resp.majorElementEnter("item_result", "FB: Question Q23");
resp.jumpToNextDestination();
Frame 1523
gotoAndPlay(this._currentFrame + 3);
Frame 1526
resp.startStopTimer(-1);
Frame 1527
_global.resp.bypassQuestion();
Frame 1528
resp.checkTimeAllowed(false);
stop();
Frame 1530
resp.setResponseProcessingString("<ops pageid='29'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q23.questiontitle # 57158008-27'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q23.questiontitle # 57158008-27'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q23.questiontitle # 57158008-27'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q23.questiontitle # 57158008-27'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q23.questiontitle # 57158008-27'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q23.questiontitle # 57158008-27'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q23.questiontitle # 57158008-27'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q23.questiontitle # 57158008-27'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 57158008-27'></displayfeedback><displayfeedback linkrefid='Correct Answers # 57158008-27'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='Naurto Quiz #57158008-1.57158008-1Naurto Quiz.Question Q23.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 57158008-27'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 57158008-27'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 1531
gotoAndPlay(this._currentFrame + 3);
Frame 1534
resp.stopStartTimer(-1);
Frame 1535
_global.resp.clearFeedback();
_global.resp.registerButton(this.button4610, "itemnav", "prevQuestion", 4610);
this.button4610text.tabIndex = 4611;
_global.resp.registerButton(this.button4612, "itemnav", "nextQuestion", 4612);
this.button4612text.tabIndex = 4613;
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller4609" in Frame 1535
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable4568";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller4609";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4610" in Frame 1535
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3073";
_theUpRoll = "clip3076";
_theDownNormal = "clip3076";
_theDownRoll = "clip3076";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button4612" in Frame 1535
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3016";
_theUpRoll = "clip3019";
_theDownNormal = "clip3016";
_theDownRoll = "clip3019";
_listener = "_global.resp";
_accessText = "next";
}
Frame 1536
resp.checkTimeAllowed(true);
stop();
Frame 1538
resp.jumpToNextDestination();
Frame 1539
gotoAndPlay(this._currentFrame + 3);
Frame 1542
resp.jumpToNextDestination();
Frame 1543
resp.checkExitBranching("FB: Question Q23", 28, "quizReview", 25);
Frame 1546
resp.majorElementExit("item_result", "FB: Question Q23");
resp.jumpToNextDestination();
Frame 1547
gotoAndPlay(this._currentFrame + 3);
Frame 1550
resp.stopStartTimer(-1);
Frame 1551
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller4615" in Frame 1551
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable4614";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller4615";
}
Frame 1552
resp.checkTimeAllowed(true);
stop();
Frame 1554
resp.jumpToNextDestination();
Frame 1555
gotoAndPlay(this._currentFrame + 3);
Frame 1558
resp.jumpToNextDestination();
Frame 1559
resp.checkExitBranching("quizReview", 756, "Naurto Quiz #57158008-1", 2);
Frame 1562
resp.majorElementExit("section_result", "quizReview");
resp.jumpToNextDestination();
Frame 1563
gotoAndPlay(this._currentFrame + 3);
Frame 1566
resp.stopStartTimer(-1);
Frame 1567
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3058 MovieClip [CQScrollbarV1_5] "scroller4617" in Frame 1567
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable4616";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller4617";
}
Frame 1568
resp.checkTimeAllowed(true);
stop();
Frame 1570
resp.jumpToNextDestination();
Frame 1571
gotoAndPlay(this._currentFrame + 3);
Frame 1574
resp.jumpToNextDestination();
Frame 1575
resp.checkExitBranching("Naurto Quiz #57158008-1", 1568, "NA", 0);
Frame 1578
resp.majorElementExit("assessment_result", "Naurto Quiz #57158008-1");
resp.jumpToNextDestination();
Frame 1579
this.clip4618._accProps = new Object();
this.clip4618._accProps.forceSimple = true;
this.clip4618._accProps.name = "";
this.clip4618.tabIndex = 4618;
this.clip4618.tabEnabled = false;
this.clip4618.tabChildren = true;
this.text4619.tabIndex = 4619;
Frame 1580
if ((forwardURL != null) && (forwardURL != "")) {
this.getURL(("javascript:document.location = '" + forwardURL) + "';", "_self");
}
_global.resp.moveHead(1);
Frame 1581
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 1583
stop();
Frame 1584
stop();
Frame 1585
stop();
Frame 1586
stop();
Symbol 3003 MovieClip [clip3003] Frame 1
_global.cqRootPointer3004 = this;
Symbol 3010 MovieClip [clip3010] Frame 1
_global.cqRootPointer3011 = this;
Symbol 3016 MovieClip [clip3016] Frame 1
_global.cqRootPointer3017 = this;
Symbol 3019 MovieClip [clip3019] Frame 1
_global.cqRootPointer3020 = this;
Symbol 3024 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 3022 MovieClip Frame 1
_global.cqRootPointer3023 = 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 3027 MovieClip Frame 1
this.text3028.tabIndex = 3028;
Symbol 3039 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 3041 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 3044 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 3048 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 3051 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 3054 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 3057 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 3058 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 3031 MovieClip Frame 1
_global.cqRootPointer3032 = 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 3068 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 3066 MovieClip Frame 1
_global.cqRootPointer3067 = 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 3064 MovieClip Frame 1
this.text3065.tabIndex = 3065;
this.custom3069.tabIndex = 3069;
_global.resp.registerResponseStrRenderFlash("RandomChooser", custom3069);
Instance of Symbol 3068 MovieClip [CQRandomV1_2] "custom3069" in Symbol 3064 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 = "3070";
_option0ident = "RandomChooser";
}
Symbol 3073 MovieClip [clip3073] Frame 1
_global.cqRootPointer3074 = this;
Symbol 3076 MovieClip [clip3076] Frame 1
_global.cqRootPointer3077 = this;
Symbol 3085 MovieClip [clip3085] Frame 1
_global.cqRootPointer3086 = this;
Symbol 3089 MovieClip [clip3089] Frame 1
_global.cqRootPointer3090 = this;
Symbol 3093 MovieClip [clip3093] Frame 1
_global.cqRootPointer3094 = this;
Symbol 3083 MovieClip Frame 1
this.text3084.tabIndex = 3084;
_global.resp.registerButton(this.button3097, "questiontitle # 57158008-2", "d", 3097);
this.text3098.tabIndex = 3098;
_global.resp.registerButton(this.button3099, "questiontitle # 57158008-2", "b", 3099);
this.text3100.tabIndex = 3100;
_global.resp.registerButton(this.button3101, "questiontitle # 57158008-2", "c", 3101);
this.text3102.tabIndex = 3102;
_global.resp.registerButton(this.button3103, "questiontitle # 57158008-2", "a", 3103);
this.text3104.tabIndex = 3104;
this.text3105.tabIndex = 3105;
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3097" in Symbol 3083 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " He wanted to explore the world";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3099" in Symbol 3083 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " He went to search for Itachi";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3101" in Symbol 3083 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Orochimaru promised him power ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3103" in Symbol 3083 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " He wanted to be a ninja of another village";
}
Symbol 3113 MovieClip Frame 1
this.text3114.tabIndex = 3114;
_global.resp.registerButton(this.button3115, "questiontitle # 57158008-5", "c", 3115);
this.text3116.tabIndex = 3116;
_global.resp.registerButton(this.button3117, "questiontitle # 57158008-5", "d", 3117);
this.text3118.tabIndex = 3118;
_global.resp.registerButton(this.button3119, "questiontitle # 57158008-5", "a", 3119);
this.text3120.tabIndex = 3120;
_global.resp.registerButton(this.button3121, "questiontitle # 57158008-5", "b", 3121);
this.text3122.tabIndex = 3122;
this.text3123.tabIndex = 3123;
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3115" in Symbol 3113 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Naruto";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3117" in Symbol 3113 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Kiba";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3119" in Symbol 3113 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Kakashi";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3121" in Symbol 3113 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Iruka";
}
Symbol 3130 MovieClip Frame 1
this.text3131.tabIndex = 3131;
_global.resp.registerButton(this.button3132, "questiontitle # 57158008-7", "c", 3132);
this.text3133.tabIndex = 3133;
_global.resp.registerButton(this.button3134, "questiontitle # 57158008-7", "d", 3134);
this.text3135.tabIndex = 3135;
_global.resp.registerButton(this.button3136, "questiontitle # 57158008-7", "a", 3136);
this.text3137.tabIndex = 3137;
_global.resp.registerButton(this.button3138, "questiontitle # 57158008-7", "b", 3138);
this.text3139.tabIndex = 3139;
this.text3140.tabIndex = 3140;
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3132" in Symbol 3130 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Shikamaru ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3134" in Symbol 3130 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Ino";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3136" in Symbol 3130 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Choji";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3138" in Symbol 3130 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Kiba";
}
Symbol 3147 MovieClip Frame 1
this.text3148.tabIndex = 3148;
_global.resp.registerButton(this.button3149, "questiontitle # 57158008-8", "b", 3149);
this.text3150.tabIndex = 3150;
_global.resp.registerButton(this.button3151, "questiontitle # 57158008-8", "a", 3151);
this.text3152.tabIndex = 3152;
_global.resp.registerButton(this.button3153, "questiontitle # 57158008-8", "d", 3153);
this.text3154.tabIndex = 3154;
_global.resp.registerButton(this.button3155, "questiontitle # 57158008-8", "c", 3155);
this.text3156.tabIndex = 3156;
this.text3157.tabIndex = 3157;
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3149" in Symbol 3147 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Ino Yamanaka ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3151" in Symbol 3147 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Asuma Sarutobi ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3153" in Symbol 3147 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Choji Akimichi";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3155" in Symbol 3147 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Shino Aburame ";
}
Symbol 3164 MovieClip Frame 1
this.text3165.tabIndex = 3165;
_global.resp.registerButton(this.button3166, "questiontitle # 57158008-9", "d", 3166);
this.text3167.tabIndex = 3167;
_global.resp.registerButton(this.button3168, "questiontitle # 57158008-9", "a", 3168);
this.text3169.tabIndex = 3169;
_global.resp.registerButton(this.button3170, "questiontitle # 57158008-9", "c", 3170);
this.text3171.tabIndex = 3171;
_global.resp.registerButton(this.button3172, "questiontitle # 57158008-9", "b", 3172);
this.text3173.tabIndex = 3173;
this.text3174.tabIndex = 3174;
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3166" in Symbol 3164 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Masashi";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3168" in Symbol 3164 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Rin";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3170" in Symbol 3164 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Mizuki";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3172" in Symbol 3164 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Haku";
}
Symbol 3181 MovieClip Frame 1
this.text3182.tabIndex = 3182;
_global.resp.registerButton(this.button3183, "questiontitle # 57158008-10", "d", 3183);
this.text3184.tabIndex = 3184;
_global.resp.registerButton(this.button3185, "questiontitle # 57158008-10", "a", 3185);
this.text3186.tabIndex = 3186;
_global.resp.registerButton(this.button3187, "questiontitle # 57158008-10", "c", 3187);
this.text3188.tabIndex = 3188;
_global.resp.registerButton(this.button3189, "questiontitle # 57158008-10", "b", 3189);
this.text3190.tabIndex = 3190;
this.text3191.tabIndex = 3191;
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3183" in Symbol 3181 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Kakashi ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3185" in Symbol 3181 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Tsunade";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3187" in Symbol 3181 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Jiraiya";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3189" in Symbol 3181 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Konohamaru ";
}
Symbol 3198 MovieClip Frame 1
this.text3199.tabIndex = 3199;
_global.resp.registerButton(this.button3200, "questiontitle # 57158008-11", "c", 3200);
this.text3201.tabIndex = 3201;
_global.resp.registerButton(this.button3202, "questiontitle # 57158008-11", "b", 3202);
this.text3203.tabIndex = 3203;
_global.resp.registerButton(this.button3204, "questiontitle # 57158008-11", "a", 3204);
this.text3205.tabIndex = 3205;
_global.resp.registerButton(this.button3206, "questiontitle # 57158008-11", "d", 3206);
this.text3207.tabIndex = 3207;
this.text3208.tabIndex = 3208;
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3200" in Symbol 3198 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Uchiha Tobi ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3202" in Symbol 3198 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Uchiha Obito";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3204" in Symbol 3198 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Tobi is Tobi";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3206" in Symbol 3198 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Uchiha Madara ";
}
Symbol 3215 MovieClip Frame 1
this.text3216.tabIndex = 3216;
_global.resp.registerButton(this.button3217, "questiontitle # 57158008-12", "c", 3217);
this.text3218.tabIndex = 3218;
_global.resp.registerButton(this.button3219, "questiontitle # 57158008-12", "b", 3219);
this.text3220.tabIndex = 3220;
_global.resp.registerButton(this.button3221, "questiontitle # 57158008-12", "a", 3221);
this.text3222.tabIndex = 3222;
_global.resp.registerButton(this.button3223, "questiontitle # 57158008-12", "d", 3223);
this.text3224.tabIndex = 3224;
this.text3225.tabIndex = 3225;
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3217" in Symbol 3215 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Madara Uchiha ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3219" in Symbol 3215 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Sasuke Uchiha";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3221" in Symbol 3215 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Obito Uchiha";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3223" in Symbol 3215 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Itachi Uchiha ";
}
Symbol 3232 MovieClip Frame 1
this.text3233.tabIndex = 3233;
_global.resp.registerButton(this.button3234, "questiontitle # 57158008-13", "b", 3234);
this.text3235.tabIndex = 3235;
_global.resp.registerButton(this.button3236, "questiontitle # 57158008-13", "d", 3236);
this.text3237.tabIndex = 3237;
_global.resp.registerButton(this.button3238, "questiontitle # 57158008-13", "c", 3238);
this.text3239.tabIndex = 3239;
_global.resp.registerButton(this.button3240, "questiontitle # 57158008-13", "a", 3240);
this.text3241.tabIndex = 3241;
this.text3242.tabIndex = 3242;
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3234" in Symbol 3232 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Kazuku and Sasori ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3236" in Symbol 3232 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Sasori and Tobi";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3238" in Symbol 3232 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Hidan and Zetsu";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3240" in Symbol 3232 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Tobi and Hidan ";
}
Symbol 3249 MovieClip Frame 1
this.text3250.tabIndex = 3250;
_global.resp.registerButton(this.button3251, "questiontitle # 57158008-14", "b", 3251);
this.text3252.tabIndex = 3252;
_global.resp.registerButton(this.button3253, "questiontitle # 57158008-14", "d", 3253);
this.text3254.tabIndex = 3254;
_global.resp.registerButton(this.button3255, "questiontitle # 57158008-14", "c", 3255);
this.text3256.tabIndex = 3256;
_global.resp.registerButton(this.button3257, "questiontitle # 57158008-14", "a", 3257);
this.text3258.tabIndex = 3258;
this.text3259.tabIndex = 3259;
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3251" in Symbol 3249 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Ishimata";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3253" in Symbol 3249 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Suki";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3255" in Symbol 3249 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Deidara";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3257" in Symbol 3249 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Konan ";
}
Symbol 3266 MovieClip Frame 1
this.text3267.tabIndex = 3267;
_global.resp.registerButton(this.button3268, "questiontitle # 57158008-15", "a", 3268);
this.text3269.tabIndex = 3269;
_global.resp.registerButton(this.button3270, "questiontitle # 57158008-15", "b", 3270);
this.text3271.tabIndex = 3271;
_global.resp.registerButton(this.button3272, "questiontitle # 57158008-15", "c", 3272);
this.text3273.tabIndex = 3273;
_global.resp.registerButton(this.button3274, "questiontitle # 57158008-15", "d", 3274);
this.text3275.tabIndex = 3275;
this.text3276.tabIndex = 3276;
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3268" in Symbol 3266 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Madara Uchiha ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3270" in Symbol 3266 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " All of Konoha ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3272" in Symbol 3266 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Obito Uchiha";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3274" in Symbol 3266 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Hataka Kakashi ";
}
Symbol 3283 MovieClip Frame 1
this.text3284.tabIndex = 3284;
_global.resp.registerButton(this.button3285, "questiontitle # 57158008-16", "d", 3285);
this.text3286.tabIndex = 3286;
_global.resp.registerButton(this.button3287, "questiontitle # 57158008-16", "b", 3287);
this.text3288.tabIndex = 3288;
_global.resp.registerButton(this.button3289, "questiontitle # 57158008-16", "c", 3289);
this.text3290.tabIndex = 3290;
_global.resp.registerButton(this.button3291, "questiontitle # 57158008-16", "a", 3291);
this.text3292.tabIndex = 3292;
this.text3293.tabIndex = 3293;
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3285" in Symbol 3283 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " All of the above ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3287" in Symbol 3283 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " He transfered Amaterasu to Sasuke ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3289" in Symbol 3283 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " He poked Sasuke's forehead ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3291" in Symbol 3283 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " He made sure Sasuke would be safe ";
}
Symbol 3300 MovieClip Frame 1
this.text3301.tabIndex = 3301;
_global.resp.registerButton(this.button3302, "questiontitle # 57158008-17", "d", 3302);
this.text3303.tabIndex = 3303;
_global.resp.registerButton(this.button3304, "questiontitle # 57158008-17", "c", 3304);
this.text3305.tabIndex = 3305;
_global.resp.registerButton(this.button3306, "questiontitle # 57158008-17", "a", 3306);
this.text3307.tabIndex = 3307;
_global.resp.registerButton(this.button3308, "questiontitle # 57158008-17", "b", 3308);
this.text3309.tabIndex = 3309;
this.text3310.tabIndex = 3310;
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3302" in Symbol 3300 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " October 12, 1992";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3304" in Symbol 3300 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " October 7, 1991";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3306" in Symbol 3300 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " October 10, 1992";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3308" in Symbol 3300 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " October 5, 1991";
}
Symbol 3317 MovieClip Frame 1
this.text3318.tabIndex = 3318;
_global.resp.registerButton(this.button3319, "questiontitle # 57158008-18", "a", 3319);
this.text3320.tabIndex = 3320;
_global.resp.registerButton(this.button3321, "questiontitle # 57158008-18", "d", 3321);
this.text3322.tabIndex = 3322;
_global.resp.registerButton(this.button3323, "questiontitle # 57158008-18", "b", 3323);
this.text3324.tabIndex = 3324;
_global.resp.registerButton(this.button3325, "questiontitle # 57158008-18", "c", 3325);
this.text3326.tabIndex = 3326;
this.text3327.tabIndex = 3327;
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3319" in Symbol 3317 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " July 8, 1991 ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3321" in Symbol 3317 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " July 10, 1992 ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3323" in Symbol 3317 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " July 7, 1992 ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3325" in Symbol 3317 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " July 5, 1991";
}
Symbol 3334 MovieClip Frame 1
this.text3335.tabIndex = 3335;
_global.resp.registerButton(this.button3336, "questiontitle # 57158008-19", "a", 3336);
this.text3337.tabIndex = 3337;
_global.resp.registerButton(this.button3338, "questiontitle # 57158008-19", "d", 3338);
this.text3339.tabIndex = 3339;
_global.resp.registerButton(this.button3340, "questiontitle # 57158008-19", "b", 3340);
this.text3341.tabIndex = 3341;
_global.resp.registerButton(this.button3342, "questiontitle # 57158008-19", "c", 3342);
this.text3343.tabIndex = 3343;
this.text3344.tabIndex = 3344;
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3336" in Symbol 3334 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Jirobo ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3338" in Symbol 3334 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Kimimaro ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3340" in Symbol 3334 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Sakon";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3342" in Symbol 3334 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Kidomaru ";
}
Symbol 3351 MovieClip Frame 1
this.text3352.tabIndex = 3352;
_global.resp.registerButton(this.button3353, "questiontitle # 57158008-20", "b", 3353);
this.text3354.tabIndex = 3354;
_global.resp.registerButton(this.button3355, "questiontitle # 57158008-20", "d", 3355);
this.text3356.tabIndex = 3356;
_global.resp.registerButton(this.button3357, "questiontitle # 57158008-20", "c", 3357);
this.text3358.tabIndex = 3358;
_global.resp.registerButton(this.button3359, "questiontitle # 57158008-20", "a", 3359);
this.text3360.tabIndex = 3360;
this.text3361.tabIndex = 3361;
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3353" in Symbol 3351 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Uzumaki Naruto.";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3355" in Symbol 3351 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Neither Naruto or Sasuke are chunnin.";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3357" in Symbol 3351 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " All team members are chunnin";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3359" in Symbol 3351 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Uchiha Sasuke. ";
}
Symbol 3368 MovieClip Frame 1
this.text3369.tabIndex = 3369;
_global.resp.registerButton(this.button3370, "questiontitle # 57158008-21", "c", 3370);
this.text3371.tabIndex = 3371;
_global.resp.registerButton(this.button3372, "questiontitle # 57158008-21", "b", 3372);
this.text3373.tabIndex = 3373;
_global.resp.registerButton(this.button3374, "questiontitle # 57158008-21", "a", 3374);
this.text3375.tabIndex = 3375;
_global.resp.registerButton(this.button3376, "questiontitle # 57158008-21", "d", 3376);
this.text3377.tabIndex = 3377;
this.text3378.tabIndex = 3378;
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3370" in Symbol 3368 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " He is a clone of the First Hokage. ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3372" in Symbol 3368 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " It is a bloodline limit of his clan. ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3374" in Symbol 3368 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Wood summoning techniques are taught to high level Root members.";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3376" in Symbol 3368 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " It is a forbidden technique because it alters a form of life.";
}
Symbol 3385 MovieClip Frame 1
this.text3386.tabIndex = 3386;
_global.resp.registerButton(this.button3387, "questiontitle # 57158008-22", "c", 3387);
this.text3388.tabIndex = 3388;
_global.resp.registerButton(this.button3389, "questiontitle # 57158008-22", "d", 3389);
this.text3390.tabIndex = 3390;
_global.resp.registerButton(this.button3391, "questiontitle # 57158008-22", "b", 3391);
this.text3392.tabIndex = 3392;
_global.resp.registerButton(this.button3393, "questiontitle # 57158008-22", "a", 3393);
this.text3394.tabIndex = 3394;
this.text3395.tabIndex = 3395;
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3387" in Symbol 3385 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " 6";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3389" in Symbol 3385 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " 32 ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3391" in Symbol 3385 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " 24 ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3393" in Symbol 3385 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " 12";
}
Symbol 3402 MovieClip Frame 1
this.text3403.tabIndex = 3403;
_global.resp.registerButton(this.button3404, "questiontitle # 57158008-23", "d", 3404);
this.text3405.tabIndex = 3405;
_global.resp.registerButton(this.button3406, "questiontitle # 57158008-23", "b", 3406);
this.text3407.tabIndex = 3407;
_global.resp.registerButton(this.button3408, "questiontitle # 57158008-23", "c", 3408);
this.text3409.tabIndex = 3409;
_global.resp.registerButton(this.button3410, "questiontitle # 57158008-23", "a", 3410);
this.text3411.tabIndex = 3411;
this.text3412.tabIndex = 3412;
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3404" in Symbol 3402 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Inakoma ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3406" in Symbol 3402 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Nara";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3408" in Symbol 3402 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Marutsobi ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3410" in Symbol 3402 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Akamichi ";
}
Symbol 3419 MovieClip Frame 1
this.text3420.tabIndex = 3420;
_global.resp.registerButton(this.button3421, "questiontitle # 57158008-24", "a", 3421);
this.text3422.tabIndex = 3422;
_global.resp.registerButton(this.button3423, "questiontitle # 57158008-24", "b", 3423);
this.text3424.tabIndex = 3424;
_global.resp.registerButton(this.button3425, "questiontitle # 57158008-24", "d", 3425);
this.text3426.tabIndex = 3426;
_global.resp.registerButton(this.button3427, "questiontitle # 57158008-24", "c", 3427);
this.text3428.tabIndex = 3428;
this.text3429.tabIndex = 3429;
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3421" in Symbol 3419 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Sand ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3423" in Symbol 3419 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Leaf ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3425" in Symbol 3419 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Mist ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3427" in Symbol 3419 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Sound ";
}
Symbol 3436 MovieClip Frame 1
this.text3437.tabIndex = 3437;
_global.resp.registerButton(this.button3438, "questiontitle # 57158008-25", "a", 3438);
this.text3439.tabIndex = 3439;
_global.resp.registerButton(this.button3440, "questiontitle # 57158008-25", "d", 3440);
this.text3441.tabIndex = 3441;
_global.resp.registerButton(this.button3442, "questiontitle # 57158008-25", "b", 3442);
this.text3443.tabIndex = 3443;
_global.resp.registerButton(this.button3444, "questiontitle # 57158008-25", "c", 3444);
this.text3445.tabIndex = 3445;
this.text3446.tabIndex = 3446;
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3438" in Symbol 3436 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " 3 ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3440" in Symbol 3436 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " 6 ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3442" in Symbol 3436 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " 10 ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3444" in Symbol 3436 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " 7 ";
}
Symbol 3453 MovieClip Frame 1
this.text3454.tabIndex = 3454;
_global.resp.registerButton(this.button3455, "questiontitle # 57158008-26", "c", 3455);
this.text3456.tabIndex = 3456;
_global.resp.registerButton(this.button3457, "questiontitle # 57158008-26", "b", 3457);
this.text3458.tabIndex = 3458;
_global.resp.registerButton(this.button3459, "questiontitle # 57158008-26", "a", 3459);
this.text3460.tabIndex = 3460;
_global.resp.registerButton(this.button3461, "questiontitle # 57158008-26", "d", 3461);
this.text3462.tabIndex = 3462;
this.text3463.tabIndex = 3463;
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3455" in Symbol 3453 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " grass ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3457" in Symbol 3453 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Fire ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3459" in Symbol 3453 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " wind ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3461" in Symbol 3453 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " earth ";
}
Symbol 3470 MovieClip Frame 1
this.text3471.tabIndex = 3471;
_global.resp.registerButton(this.button3472, "questiontitle # 57158008-27", "d", 3472);
this.text3473.tabIndex = 3473;
_global.resp.registerButton(this.button3474, "questiontitle # 57158008-27", "a", 3474);
this.text3475.tabIndex = 3475;
_global.resp.registerButton(this.button3476, "questiontitle # 57158008-27", "b", 3476);
this.text3477.tabIndex = 3477;
_global.resp.registerButton(this.button3478, "questiontitle # 57158008-27", "c", 3478);
this.text3479.tabIndex = 3479;
this.text3480.tabIndex = 3480;
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3472" in Symbol 3470 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Showtaro Morikubo ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3474" in Symbol 3470 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Noriaki Sugiyama";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3476" in Symbol 3470 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Junko Takeuchi ";
}
Instance of Symbol 3024 MovieClip [CQButtonV1_4] "button3478" in Symbol 3470 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3085";
_theUpRoll = "clip3089";
_theDownNormal = "clip3093";
_theDownRoll = "clip3093";
_listener = "_global.resp";
_accessText = " Chie Nakamura";
}
Symbol 3487 MovieClip Frame 1
this.text3488.tabIndex = 3488;
Symbol 3497 MovieClip Frame 1
this.text3498.tabIndex = 3498;
Symbol 3509 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 3509 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 3509 MovieClip Frame 3
printAsBitmap (this._parent._parent._parent, "bmax");
Symbol 3509 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 3505 MovieClip [clip3505] Frame 1
_global.cqRootPointer3506 = this;
Symbol 3502 MovieClip Frame 1
_global.resp.registerFeedback("GeneralReportResponse", this);
Symbol 3502 MovieClip Frame 2
this.text3503.tabIndex = 3503;
this.clip3504._accProps = new Object();
this.clip3504._accProps.forceSimple = true;
this.clip3504._accProps.name = "";
this.clip3504.tabIndex = 3504;
this.clip3504.tabEnabled = false;
this.clip3504.tabChildren = true;
this.text3510.tabIndex = 3510;
this.text3511.tabIndex = 3511;
this.text3512.tabIndex = 3512;
this.text3512.background = false;
this.text3512.backgroundColor = -1;
this.text3512.border = false;
this.text3512.borderColor = -16777216;
this.text3512.maxChars = 10000;
this.text3512.password = false;
_global.resp.populateMatvar(this.text3512, "Naurto Quiz #57158008-1.quizReview.CalculationPage.OVERALLSCORE", 1, false);
this.text3513.tabIndex = 3513;
this.text3514.tabIndex = 3514;
this.text3514.background = false;
this.text3514.backgroundColor = -1;
this.text3514.border = false;
this.text3514.borderColor = -16777216;
this.text3514.maxChars = 10000;
this.text3514.password = false;
_global.resp.populateMatvar(this.text3514, "Naurto Quiz #57158008-1.quizReview.CalculationPage.PERCENTAGESCORE", 1, false);
this.text3515.tabIndex = 3515;
this.text3516.tabIndex = 3516;
this.text3517.tabIndex = 3517;
this.text3517.background = false;
this.text3517.backgroundColor = -1;
this.text3517.border = false;
this.text3517.borderColor = -16777216;
this.text3517.maxChars = 10000;
this.text3517.password = false;
_global.resp.populateMatvar(this.text3517, "Naurto Quiz #57158008-1.quizReview.CalculationPage.TOTALPOSSIBLESCORE", 1, false);
this.text3518.tabIndex = 3518;
this.text3519.tabIndex = 3519;
this.text3519.background = false;
this.text3519.backgroundColor = -1;
this.text3519.border = false;
this.text3519.borderColor = -16777216;
this.text3519.maxChars = 10000;
this.text3519.password = false;
_global.resp.populateMatvar(this.text3519, "Naurto Quiz #57158008-1.quizReview.CalculationPage.PERCENTAGEPASS", 1, false);
this.text3520.tabIndex = 3520;
this.stop();
Symbol 3521 MovieClip Frame 1
_global.resp.registerFeedback("PassFeedbackResponse", this);
Symbol 3521 MovieClip Frame 2
this.text3522.tabIndex = 3522;
this.text3523.tabIndex = 3523;
this.stop();
Symbol 3524 MovieClip Frame 1
_global.resp.registerFeedback("FailFeedbackResponse", this);
Symbol 3524 MovieClip Frame 2
this.text3525.tabIndex = 3525;
this.text3526.tabIndex = 3526;
this.stop();
Symbol 3527 MovieClip Frame 1
_global.resp.registerFeedback("FooterFeedbackResponse", this);
Symbol 3527 MovieClip Frame 2
this.stop();
Symbol 3534 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 57158008-2Response", this);
Symbol 3534 MovieClip Frame 2
this.text3535.tabIndex = 3535;
this.stop();
Symbol 3539 MovieClip [clip3539] Frame 1
_global.cqRootPointer3540 = this;
Symbol 3536 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3536 MovieClip Frame 2
this.text3537.tabIndex = 3537;
this.clip3538._accProps = new Object();
this.clip3538._accProps.forceSimple = true;
this.clip3538._accProps.name = "Cross";
this.clip3538.tabIndex = 3538;
this.clip3538.tabEnabled = false;
this.clip3538.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 = "Unselected Radio Button";
this.clip3547.tabIndex = 3547;
this.clip3547.tabEnabled = false;
this.clip3547.tabChildren = true;
this.stop();
Symbol 3548 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3548 MovieClip Frame 2
this.text3549.tabIndex = 3549;
this.clip3550._accProps = new Object();
this.clip3550._accProps.forceSimple = true;
this.clip3550._accProps.name = "Cross";
this.clip3550.tabIndex = 3550;
this.clip3550.tabEnabled = false;
this.clip3550.tabChildren = true;
this.clip3551._accProps = new Object();
this.clip3551._accProps.forceSimple = true;
this.clip3551._accProps.name = "Unselected Radio Button";
this.clip3551.tabIndex = 3551;
this.clip3551.tabEnabled = false;
this.clip3551.tabChildren = true;
this.stop();
Symbol 3552 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3552 MovieClip Frame 2
this.text3553.tabIndex = 3553;
this.clip3554._accProps = new Object();
this.clip3554._accProps.forceSimple = true;
this.clip3554._accProps.name = "Unselected Radio Button";
this.clip3554.tabIndex = 3554;
this.clip3554.tabEnabled = false;
this.clip3554.tabChildren = true;
this.stop();
Symbol 3558 MovieClip [clip3558] Frame 1
_global.cqRootPointer3559 = this;
Symbol 3555 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3555 MovieClip Frame 2
this.text3556.tabIndex = 3556;
this.clip3557._accProps = new Object();
this.clip3557._accProps.forceSimple = true;
this.clip3557._accProps.name = "Tick";
this.clip3557.tabIndex = 3557;
this.clip3557.tabEnabled = false;
this.clip3557.tabChildren = true;
this.clip3563._accProps = new Object();
this.clip3563._accProps.forceSimple = true;
this.clip3563._accProps.name = "Unselected Radio Button";
this.clip3563.tabIndex = 3563;
this.clip3563.tabEnabled = false;
this.clip3563.tabChildren = true;
this.stop();
Symbol 3567 MovieClip [clip3567] Frame 1
_global.cqRootPointer3568 = this;
Symbol 3564 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3564 MovieClip Frame 2
this.text3565.tabIndex = 3565;
this.clip3566._accProps = new Object();
this.clip3566._accProps.forceSimple = true;
this.clip3566._accProps.name = "Arrow";
this.clip3566.tabIndex = 3566;
this.clip3566.tabEnabled = false;
this.clip3566.tabChildren = true;
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 aResponse", 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 aResponse", 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 3581 MovieClip [clip3581] Frame 1
_global.cqRootPointer3582 = this;
Symbol 3578 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 57158008-2Response", this);
Symbol 3578 MovieClip Frame 2
this.text3579.tabIndex = 3579;
this.clip3580._accProps = new Object();
this.clip3580._accProps.forceSimple = true;
this.clip3580._accProps.name = "Tick";
this.clip3580.tabIndex = 3580;
this.clip3580.tabEnabled = false;
this.clip3580.tabChildren = true;
this.text3586.tabIndex = 3586;
this.stop();
Symbol 3590 MovieClip [clip3590] Frame 1
_global.cqRootPointer3591 = this;
Symbol 3587 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 57158008-2Response", this);
Symbol 3587 MovieClip Frame 2
this.text3588.tabIndex = 3588;
this.clip3589._accProps = new Object();
this.clip3589._accProps.forceSimple = true;
this.clip3589._accProps.name = "Cross";
this.clip3589.tabIndex = 3589;
this.clip3589.tabEnabled = false;
this.clip3589.tabChildren = true;
this.text3595.tabIndex = 3595;
this.stop();
Symbol 3596 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 57158008-2Response", this);
Symbol 3596 MovieClip Frame 2
this.stop();
Symbol 3603 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 57158008-5Response", this);
Symbol 3603 MovieClip Frame 2
this.text3604.tabIndex = 3604;
this.stop();
Symbol 3605 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3605 MovieClip Frame 2
this.text3606.tabIndex = 3606;
this.clip3607._accProps = new Object();
this.clip3607._accProps.forceSimple = true;
this.clip3607._accProps.name = "Cross";
this.clip3607.tabIndex = 3607;
this.clip3607.tabEnabled = false;
this.clip3607.tabChildren = true;
this.clip3608._accProps = new Object();
this.clip3608._accProps.forceSimple = true;
this.clip3608._accProps.name = "Unselected Radio Button";
this.clip3608.tabIndex = 3608;
this.clip3608.tabEnabled = false;
this.clip3608.tabChildren = true;
this.stop();
Symbol 3609 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3609 MovieClip Frame 2
this.text3610.tabIndex = 3610;
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("Selected dResponse", this);
Symbol 3612 MovieClip Frame 2
this.text3613.tabIndex = 3613;
this.clip3614._accProps = new Object();
this.clip3614._accProps.forceSimple = true;
this.clip3614._accProps.name = "Cross";
this.clip3614.tabIndex = 3614;
this.clip3614.tabEnabled = false;
this.clip3614.tabChildren = true;
this.clip3615._accProps = new Object();
this.clip3615._accProps.forceSimple = true;
this.clip3615._accProps.name = "Unselected Radio Button";
this.clip3615.tabIndex = 3615;
this.clip3615.tabEnabled = false;
this.clip3615.tabChildren = true;
this.stop();
Symbol 3616 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3616 MovieClip Frame 2
this.text3617.tabIndex = 3617;
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("Selected aResponse", this);
Symbol 3619 MovieClip Frame 2
this.text3620.tabIndex = 3620;
this.clip3621._accProps = new Object();
this.clip3621._accProps.forceSimple = true;
this.clip3621._accProps.name = "Tick";
this.clip3621.tabIndex = 3621;
this.clip3621.tabEnabled = false;
this.clip3621.tabChildren = true;
this.clip3622._accProps = new Object();
this.clip3622._accProps.forceSimple = true;
this.clip3622._accProps.name = "Unselected Radio Button";
this.clip3622.tabIndex = 3622;
this.clip3622.tabEnabled = false;
this.clip3622.tabChildren = true;
this.stop();
Symbol 3623 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3623 MovieClip Frame 2
this.text3624.tabIndex = 3624;
this.clip3625._accProps = new Object();
this.clip3625._accProps.forceSimple = true;
this.clip3625._accProps.name = "Arrow";
this.clip3625.tabIndex = 3625;
this.clip3625.tabEnabled = false;
this.clip3625.tabChildren = true;
this.clip3626._accProps = new Object();
this.clip3626._accProps.forceSimple = true;
this.clip3626._accProps.name = "Unselected Radio Button";
this.clip3626.tabIndex = 3626;
this.clip3626.tabEnabled = false;
this.clip3626.tabChildren = true;
this.stop();
Symbol 3627 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3627 MovieClip Frame 2
this.text3628.tabIndex = 3628;
this.clip3629._accProps = new Object();
this.clip3629._accProps.forceSimple = true;
this.clip3629._accProps.name = "Cross";
this.clip3629.tabIndex = 3629;
this.clip3629.tabEnabled = false;
this.clip3629.tabChildren = true;
this.clip3630._accProps = new Object();
this.clip3630._accProps.forceSimple = true;
this.clip3630._accProps.name = "Unselected Radio Button";
this.clip3630.tabIndex = 3630;
this.clip3630.tabEnabled = false;
this.clip3630.tabChildren = true;
this.stop();
Symbol 3631 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3631 MovieClip Frame 2
this.text3632.tabIndex = 3632;
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("Correct # 57158008-5Response", this);
Symbol 3634 MovieClip Frame 2
this.text3635.tabIndex = 3635;
this.clip3636._accProps = new Object();
this.clip3636._accProps.forceSimple = true;
this.clip3636._accProps.name = "Tick";
this.clip3636.tabIndex = 3636;
this.clip3636.tabEnabled = false;
this.clip3636.tabChildren = true;
this.text3637.tabIndex = 3637;
this.stop();
Symbol 3638 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 57158008-5Response", this);
Symbol 3638 MovieClip Frame 2
this.text3639.tabIndex = 3639;
this.clip3640._accProps = new Object();
this.clip3640._accProps.forceSimple = true;
this.clip3640._accProps.name = "Cross";
this.clip3640.tabIndex = 3640;
this.clip3640.tabEnabled = false;
this.clip3640.tabChildren = true;
this.text3641.tabIndex = 3641;
this.stop();
Symbol 3642 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 57158008-5Response", this);
Symbol 3642 MovieClip Frame 2
this.stop();
Symbol 3649 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 57158008-7Response", this);
Symbol 3649 MovieClip Frame 2
this.text3650.tabIndex = 3650;
this.stop();
Symbol 3651 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3651 MovieClip Frame 2
this.text3652.tabIndex = 3652;
this.clip3653._accProps = new Object();
this.clip3653._accProps.forceSimple = true;
this.clip3653._accProps.name = "Cross";
this.clip3653.tabIndex = 3653;
this.clip3653.tabEnabled = false;
this.clip3653.tabChildren = true;
this.clip3654._accProps = new Object();
this.clip3654._accProps.forceSimple = true;
this.clip3654._accProps.name = "Unselected Radio Button";
this.clip3654.tabIndex = 3654;
this.clip3654.tabEnabled = false;
this.clip3654.tabChildren = true;
this.stop();
Symbol 3655 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3655 MovieClip Frame 2
this.text3656.tabIndex = 3656;
this.clip3657._accProps = new Object();
this.clip3657._accProps.forceSimple = true;
this.clip3657._accProps.name = "Unselected Radio Button";
this.clip3657.tabIndex = 3657;
this.clip3657.tabEnabled = false;
this.clip3657.tabChildren = true;
this.stop();
Symbol 3658 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3658 MovieClip Frame 2
this.text3659.tabIndex = 3659;
this.clip3660._accProps = new Object();
this.clip3660._accProps.forceSimple = true;
this.clip3660._accProps.name = "Cross";
this.clip3660.tabIndex = 3660;
this.clip3660.tabEnabled = false;
this.clip3660.tabChildren = true;
this.clip3661._accProps = new Object();
this.clip3661._accProps.forceSimple = true;
this.clip3661._accProps.name = "Unselected Radio Button";
this.clip3661.tabIndex = 3661;
this.clip3661.tabEnabled = false;
this.clip3661.tabChildren = true;
this.stop();
Symbol 3662 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3662 MovieClip Frame 2
this.text3663.tabIndex = 3663;
this.clip3664._accProps = new Object();
this.clip3664._accProps.forceSimple = true;
this.clip3664._accProps.name = "Unselected Radio Button";
this.clip3664.tabIndex = 3664;
this.clip3664.tabEnabled = false;
this.clip3664.tabChildren = true;
this.stop();
Symbol 3665 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3665 MovieClip Frame 2
this.text3666.tabIndex = 3666;
this.clip3667._accProps = new Object();
this.clip3667._accProps.forceSimple = true;
this.clip3667._accProps.name = "Cross";
this.clip3667.tabIndex = 3667;
this.clip3667.tabEnabled = false;
this.clip3667.tabChildren = true;
this.clip3668._accProps = new Object();
this.clip3668._accProps.forceSimple = true;
this.clip3668._accProps.name = "Unselected Radio Button";
this.clip3668.tabIndex = 3668;
this.clip3668.tabEnabled = false;
this.clip3668.tabChildren = true;
this.stop();
Symbol 3669 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3669 MovieClip Frame 2
this.text3670.tabIndex = 3670;
this.clip3671._accProps = new Object();
this.clip3671._accProps.forceSimple = true;
this.clip3671._accProps.name = "Unselected Radio Button";
this.clip3671.tabIndex = 3671;
this.clip3671.tabEnabled = false;
this.clip3671.tabChildren = true;
this.stop();
Symbol 3672 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3672 MovieClip Frame 2
this.text3673.tabIndex = 3673;
this.clip3674._accProps = new Object();
this.clip3674._accProps.forceSimple = true;
this.clip3674._accProps.name = "Tick";
this.clip3674.tabIndex = 3674;
this.clip3674.tabEnabled = false;
this.clip3674.tabChildren = true;
this.clip3675._accProps = new Object();
this.clip3675._accProps.forceSimple = true;
this.clip3675._accProps.name = "Unselected Radio Button";
this.clip3675.tabIndex = 3675;
this.clip3675.tabEnabled = false;
this.clip3675.tabChildren = true;
this.stop();
Symbol 3676 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3676 MovieClip Frame 2
this.text3677.tabIndex = 3677;
this.clip3678._accProps = new Object();
this.clip3678._accProps.forceSimple = true;
this.clip3678._accProps.name = "Arrow";
this.clip3678.tabIndex = 3678;
this.clip3678.tabEnabled = false;
this.clip3678.tabChildren = true;
this.clip3679._accProps = new Object();
this.clip3679._accProps.forceSimple = true;
this.clip3679._accProps.name = "Unselected Radio Button";
this.clip3679.tabIndex = 3679;
this.clip3679.tabEnabled = false;
this.clip3679.tabChildren = true;
this.stop();
Symbol 3680 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 57158008-7Response", this);
Symbol 3680 MovieClip Frame 2
this.text3681.tabIndex = 3681;
this.clip3682._accProps = new Object();
this.clip3682._accProps.forceSimple = true;
this.clip3682._accProps.name = "Tick";
this.clip3682.tabIndex = 3682;
this.clip3682.tabEnabled = false;
this.clip3682.tabChildren = true;
this.text3683.tabIndex = 3683;
this.stop();
Symbol 3684 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 57158008-7Response", this);
Symbol 3684 MovieClip Frame 2
this.text3685.tabIndex = 3685;
this.clip3686._accProps = new Object();
this.clip3686._accProps.forceSimple = true;
this.clip3686._accProps.name = "Cross";
this.clip3686.tabIndex = 3686;
this.clip3686.tabEnabled = false;
this.clip3686.tabChildren = true;
this.text3687.tabIndex = 3687;
this.stop();
Symbol 3688 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 57158008-7Response", this);
Symbol 3688 MovieClip Frame 2
this.stop();
Symbol 3695 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 57158008-8Response", this);
Symbol 3695 MovieClip Frame 2
this.text3696.tabIndex = 3696;
this.stop();
Symbol 3697 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3697 MovieClip Frame 2
this.text3698.tabIndex = 3698;
this.clip3699._accProps = new Object();
this.clip3699._accProps.forceSimple = true;
this.clip3699._accProps.name = "Cross";
this.clip3699.tabIndex = 3699;
this.clip3699.tabEnabled = false;
this.clip3699.tabChildren = true;
this.clip3700._accProps = new Object();
this.clip3700._accProps.forceSimple = true;
this.clip3700._accProps.name = "Unselected Radio Button";
this.clip3700.tabIndex = 3700;
this.clip3700.tabEnabled = false;
this.clip3700.tabChildren = true;
this.stop();
Symbol 3701 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3701 MovieClip Frame 2
this.text3702.tabIndex = 3702;
this.clip3703._accProps = new Object();
this.clip3703._accProps.forceSimple = true;
this.clip3703._accProps.name = "Unselected Radio Button";
this.clip3703.tabIndex = 3703;
this.clip3703.tabEnabled = false;
this.clip3703.tabChildren = true;
this.stop();
Symbol 3704 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3704 MovieClip Frame 2
this.text3705.tabIndex = 3705;
this.clip3706._accProps = new Object();
this.clip3706._accProps.forceSimple = true;
this.clip3706._accProps.name = "Cross";
this.clip3706.tabIndex = 3706;
this.clip3706.tabEnabled = false;
this.clip3706.tabChildren = true;
this.clip3707._accProps = new Object();
this.clip3707._accProps.forceSimple = true;
this.clip3707._accProps.name = "Unselected Radio Button";
this.clip3707.tabIndex = 3707;
this.clip3707.tabEnabled = false;
this.clip3707.tabChildren = true;
this.stop();
Symbol 3708 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3708 MovieClip Frame 2
this.text3709.tabIndex = 3709;
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 dResponse", 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 dResponse", 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 cResponse", this);
Symbol 3718 MovieClip Frame 2
this.text3719.tabIndex = 3719;
this.clip3720._accProps = new Object();
this.clip3720._accProps.forceSimple = true;
this.clip3720._accProps.name = "Tick";
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 cResponse", this);
Symbol 3722 MovieClip Frame 2
this.text3723.tabIndex = 3723;
this.clip3724._accProps = new Object();
this.clip3724._accProps.forceSimple = true;
this.clip3724._accProps.name = "Arrow";
this.clip3724.tabIndex = 3724;
this.clip3724.tabEnabled = false;
this.clip3724.tabChildren = true;
this.clip3725._accProps = new Object();
this.clip3725._accProps.forceSimple = true;
this.clip3725._accProps.name = "Unselected Radio Button";
this.clip3725.tabIndex = 3725;
this.clip3725.tabEnabled = false;
this.clip3725.tabChildren = true;
this.stop();
Symbol 3726 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 57158008-8Response", this);
Symbol 3726 MovieClip Frame 2
this.text3727.tabIndex = 3727;
this.clip3728._accProps = new Object();
this.clip3728._accProps.forceSimple = true;
this.clip3728._accProps.name = "Tick";
this.clip3728.tabIndex = 3728;
this.clip3728.tabEnabled = false;
this.clip3728.tabChildren = true;
this.text3729.tabIndex = 3729;
this.stop();
Symbol 3730 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 57158008-8Response", this);
Symbol 3730 MovieClip Frame 2
this.text3731.tabIndex = 3731;
this.clip3732._accProps = new Object();
this.clip3732._accProps.forceSimple = true;
this.clip3732._accProps.name = "Cross";
this.clip3732.tabIndex = 3732;
this.clip3732.tabEnabled = false;
this.clip3732.tabChildren = true;
this.text3733.tabIndex = 3733;
this.stop();
Symbol 3734 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 57158008-8Response", this);
Symbol 3734 MovieClip Frame 2
this.stop();
Symbol 3741 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 57158008-9Response", this);
Symbol 3741 MovieClip Frame 2
this.text3742.tabIndex = 3742;
this.stop();
Symbol 3743 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3743 MovieClip Frame 2
this.text3744.tabIndex = 3744;
this.clip3745._accProps = new Object();
this.clip3745._accProps.forceSimple = true;
this.clip3745._accProps.name = "Cross";
this.clip3745.tabIndex = 3745;
this.clip3745.tabEnabled = false;
this.clip3745.tabChildren = true;
this.clip3746._accProps = new Object();
this.clip3746._accProps.forceSimple = true;
this.clip3746._accProps.name = "Unselected Radio Button";
this.clip3746.tabIndex = 3746;
this.clip3746.tabEnabled = false;
this.clip3746.tabChildren = true;
this.stop();
Symbol 3747 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3747 MovieClip Frame 2
this.text3748.tabIndex = 3748;
this.clip3749._accProps = new Object();
this.clip3749._accProps.forceSimple = true;
this.clip3749._accProps.name = "Unselected Radio Button";
this.clip3749.tabIndex = 3749;
this.clip3749.tabEnabled = false;
this.clip3749.tabChildren = true;
this.stop();
Symbol 3750 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3750 MovieClip Frame 2
this.text3751.tabIndex = 3751;
this.clip3752._accProps = new Object();
this.clip3752._accProps.forceSimple = true;
this.clip3752._accProps.name = "Cross";
this.clip3752.tabIndex = 3752;
this.clip3752.tabEnabled = false;
this.clip3752.tabChildren = true;
this.clip3753._accProps = new Object();
this.clip3753._accProps.forceSimple = true;
this.clip3753._accProps.name = "Unselected Radio Button";
this.clip3753.tabIndex = 3753;
this.clip3753.tabEnabled = false;
this.clip3753.tabChildren = true;
this.stop();
Symbol 3754 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3754 MovieClip Frame 2
this.text3755.tabIndex = 3755;
this.clip3756._accProps = new Object();
this.clip3756._accProps.forceSimple = true;
this.clip3756._accProps.name = "Unselected Radio Button";
this.clip3756.tabIndex = 3756;
this.clip3756.tabEnabled = false;
this.clip3756.tabChildren = true;
this.stop();
Symbol 3757 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3757 MovieClip Frame 2
this.text3758.tabIndex = 3758;
this.clip3759._accProps = new Object();
this.clip3759._accProps.forceSimple = true;
this.clip3759._accProps.name = "Tick";
this.clip3759.tabIndex = 3759;
this.clip3759.tabEnabled = false;
this.clip3759.tabChildren = true;
this.clip3760._accProps = new Object();
this.clip3760._accProps.forceSimple = true;
this.clip3760._accProps.name = "Unselected Radio Button";
this.clip3760.tabIndex = 3760;
this.clip3760.tabEnabled = false;
this.clip3760.tabChildren = true;
this.stop();
Symbol 3761 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3761 MovieClip Frame 2
this.text3762.tabIndex = 3762;
this.clip3763._accProps = new Object();
this.clip3763._accProps.forceSimple = true;
this.clip3763._accProps.name = "Arrow";
this.clip3763.tabIndex = 3763;
this.clip3763.tabEnabled = false;
this.clip3763.tabChildren = true;
this.clip3764._accProps = new Object();
this.clip3764._accProps.forceSimple = true;
this.clip3764._accProps.name = "Unselected Radio Button";
this.clip3764.tabIndex = 3764;
this.clip3764.tabEnabled = false;
this.clip3764.tabChildren = true;
this.stop();
Symbol 3765 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3765 MovieClip Frame 2
this.text3766.tabIndex = 3766;
this.clip3767._accProps = new Object();
this.clip3767._accProps.forceSimple = true;
this.clip3767._accProps.name = "Cross";
this.clip3767.tabIndex = 3767;
this.clip3767.tabEnabled = false;
this.clip3767.tabChildren = true;
this.clip3768._accProps = new Object();
this.clip3768._accProps.forceSimple = true;
this.clip3768._accProps.name = "Unselected Radio Button";
this.clip3768.tabIndex = 3768;
this.clip3768.tabEnabled = false;
this.clip3768.tabChildren = true;
this.stop();
Symbol 3769 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3769 MovieClip Frame 2
this.text3770.tabIndex = 3770;
this.clip3771._accProps = new Object();
this.clip3771._accProps.forceSimple = true;
this.clip3771._accProps.name = "Unselected Radio Button";
this.clip3771.tabIndex = 3771;
this.clip3771.tabEnabled = false;
this.clip3771.tabChildren = true;
this.stop();
Symbol 3772 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 57158008-9Response", this);
Symbol 3772 MovieClip Frame 2
this.text3773.tabIndex = 3773;
this.clip3774._accProps = new Object();
this.clip3774._accProps.forceSimple = true;
this.clip3774._accProps.name = "Tick";
this.clip3774.tabIndex = 3774;
this.clip3774.tabEnabled = false;
this.clip3774.tabChildren = true;
this.text3775.tabIndex = 3775;
this.stop();
Symbol 3776 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 57158008-9Response", this);
Symbol 3776 MovieClip Frame 2
this.text3777.tabIndex = 3777;
this.clip3778._accProps = new Object();
this.clip3778._accProps.forceSimple = true;
this.clip3778._accProps.name = "Cross";
this.clip3778.tabIndex = 3778;
this.clip3778.tabEnabled = false;
this.clip3778.tabChildren = true;
this.text3779.tabIndex = 3779;
this.stop();
Symbol 3780 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 57158008-9Response", this);
Symbol 3780 MovieClip Frame 2
this.stop();
Symbol 3787 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 57158008-10Response", this);
Symbol 3787 MovieClip Frame 2
this.text3788.tabIndex = 3788;
this.stop();
Symbol 3789 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3789 MovieClip Frame 2
this.text3790.tabIndex = 3790;
this.clip3791._accProps = new Object();
this.clip3791._accProps.forceSimple = true;
this.clip3791._accProps.name = "Cross";
this.clip3791.tabIndex = 3791;
this.clip3791.tabEnabled = false;
this.clip3791.tabChildren = true;
this.clip3792._accProps = new Object();
this.clip3792._accProps.forceSimple = true;
this.clip3792._accProps.name = "Unselected Radio Button";
this.clip3792.tabIndex = 3792;
this.clip3792.tabEnabled = false;
this.clip3792.tabChildren = true;
this.stop();
Symbol 3793 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3793 MovieClip Frame 2
this.text3794.tabIndex = 3794;
this.clip3795._accProps = new Object();
this.clip3795._accProps.forceSimple = true;
this.clip3795._accProps.name = "Unselected Radio Button";
this.clip3795.tabIndex = 3795;
this.clip3795.tabEnabled = false;
this.clip3795.tabChildren = true;
this.stop();
Symbol 3796 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3796 MovieClip Frame 2
this.text3797.tabIndex = 3797;
this.clip3798._accProps = new Object();
this.clip3798._accProps.forceSimple = true;
this.clip3798._accProps.name = "Tick";
this.clip3798.tabIndex = 3798;
this.clip3798.tabEnabled = false;
this.clip3798.tabChildren = true;
this.clip3799._accProps = new Object();
this.clip3799._accProps.forceSimple = true;
this.clip3799._accProps.name = "Unselected Radio Button";
this.clip3799.tabIndex = 3799;
this.clip3799.tabEnabled = false;
this.clip3799.tabChildren = true;
this.stop();
Symbol 3800 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3800 MovieClip Frame 2
this.text3801.tabIndex = 3801;
this.clip3802._accProps = new Object();
this.clip3802._accProps.forceSimple = true;
this.clip3802._accProps.name = "Arrow";
this.clip3802.tabIndex = 3802;
this.clip3802.tabEnabled = false;
this.clip3802.tabChildren = true;
this.clip3803._accProps = new Object();
this.clip3803._accProps.forceSimple = true;
this.clip3803._accProps.name = "Unselected Radio Button";
this.clip3803.tabIndex = 3803;
this.clip3803.tabEnabled = false;
this.clip3803.tabChildren = true;
this.stop();
Symbol 3804 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3804 MovieClip Frame 2
this.text3805.tabIndex = 3805;
this.clip3806._accProps = new Object();
this.clip3806._accProps.forceSimple = true;
this.clip3806._accProps.name = "Cross";
this.clip3806.tabIndex = 3806;
this.clip3806.tabEnabled = false;
this.clip3806.tabChildren = true;
this.clip3807._accProps = new Object();
this.clip3807._accProps.forceSimple = true;
this.clip3807._accProps.name = "Unselected Radio Button";
this.clip3807.tabIndex = 3807;
this.clip3807.tabEnabled = false;
this.clip3807.tabChildren = true;
this.stop();
Symbol 3808 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3808 MovieClip Frame 2
this.text3809.tabIndex = 3809;
this.clip3810._accProps = new Object();
this.clip3810._accProps.forceSimple = true;
this.clip3810._accProps.name = "Unselected Radio Button";
this.clip3810.tabIndex = 3810;
this.clip3810.tabEnabled = false;
this.clip3810.tabChildren = true;
this.stop();
Symbol 3811 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3811 MovieClip Frame 2
this.text3812.tabIndex = 3812;
this.clip3813._accProps = new Object();
this.clip3813._accProps.forceSimple = true;
this.clip3813._accProps.name = "Cross";
this.clip3813.tabIndex = 3813;
this.clip3813.tabEnabled = false;
this.clip3813.tabChildren = true;
this.clip3814._accProps = new Object();
this.clip3814._accProps.forceSimple = true;
this.clip3814._accProps.name = "Unselected Radio Button";
this.clip3814.tabIndex = 3814;
this.clip3814.tabEnabled = false;
this.clip3814.tabChildren = true;
this.stop();
Symbol 3815 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3815 MovieClip Frame 2
this.text3816.tabIndex = 3816;
this.clip3817._accProps = new Object();
this.clip3817._accProps.forceSimple = true;
this.clip3817._accProps.name = "Unselected Radio Button";
this.clip3817.tabIndex = 3817;
this.clip3817.tabEnabled = false;
this.clip3817.tabChildren = true;
this.stop();
Symbol 3818 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 57158008-10Response", this);
Symbol 3818 MovieClip Frame 2
this.text3819.tabIndex = 3819;
this.clip3820._accProps = new Object();
this.clip3820._accProps.forceSimple = true;
this.clip3820._accProps.name = "Tick";
this.clip3820.tabIndex = 3820;
this.clip3820.tabEnabled = false;
this.clip3820.tabChildren = true;
this.text3821.tabIndex = 3821;
this.stop();
Symbol 3822 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 57158008-10Response", this);
Symbol 3822 MovieClip Frame 2
this.text3823.tabIndex = 3823;
this.clip3824._accProps = new Object();
this.clip3824._accProps.forceSimple = true;
this.clip3824._accProps.name = "Cross";
this.clip3824.tabIndex = 3824;
this.clip3824.tabEnabled = false;
this.clip3824.tabChildren = true;
this.text3825.tabIndex = 3825;
this.stop();
Symbol 3826 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 57158008-10Response", this);
Symbol 3826 MovieClip Frame 2
this.stop();
Symbol 3833 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 57158008-11Response", this);
Symbol 3833 MovieClip Frame 2
this.text3834.tabIndex = 3834;
this.stop();
Symbol 3835 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3835 MovieClip Frame 2
this.text3836.tabIndex = 3836;
this.clip3837._accProps = new Object();
this.clip3837._accProps.forceSimple = true;
this.clip3837._accProps.name = "Cross";
this.clip3837.tabIndex = 3837;
this.clip3837.tabEnabled = false;
this.clip3837.tabChildren = true;
this.clip3838._accProps = new Object();
this.clip3838._accProps.forceSimple = true;
this.clip3838._accProps.name = "Unselected Radio Button";
this.clip3838.tabIndex = 3838;
this.clip3838.tabEnabled = false;
this.clip3838.tabChildren = true;
this.stop();
Symbol 3839 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3839 MovieClip Frame 2
this.text3840.tabIndex = 3840;
this.clip3841._accProps = new Object();
this.clip3841._accProps.forceSimple = true;
this.clip3841._accProps.name = "Unselected Radio Button";
this.clip3841.tabIndex = 3841;
this.clip3841.tabEnabled = false;
this.clip3841.tabChildren = true;
this.stop();
Symbol 3842 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3842 MovieClip Frame 2
this.text3843.tabIndex = 3843;
this.clip3844._accProps = new Object();
this.clip3844._accProps.forceSimple = true;
this.clip3844._accProps.name = "Cross";
this.clip3844.tabIndex = 3844;
this.clip3844.tabEnabled = false;
this.clip3844.tabChildren = true;
this.clip3845._accProps = new Object();
this.clip3845._accProps.forceSimple = true;
this.clip3845._accProps.name = "Unselected Radio Button";
this.clip3845.tabIndex = 3845;
this.clip3845.tabEnabled = false;
this.clip3845.tabChildren = true;
this.stop();
Symbol 3846 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3846 MovieClip Frame 2
this.text3847.tabIndex = 3847;
this.clip3848._accProps = new Object();
this.clip3848._accProps.forceSimple = true;
this.clip3848._accProps.name = "Unselected Radio Button";
this.clip3848.tabIndex = 3848;
this.clip3848.tabEnabled = false;
this.clip3848.tabChildren = true;
this.stop();
Symbol 3849 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3849 MovieClip Frame 2
this.text3850.tabIndex = 3850;
this.clip3851._accProps = new Object();
this.clip3851._accProps.forceSimple = true;
this.clip3851._accProps.name = "Cross";
this.clip3851.tabIndex = 3851;
this.clip3851.tabEnabled = false;
this.clip3851.tabChildren = true;
this.clip3852._accProps = new Object();
this.clip3852._accProps.forceSimple = true;
this.clip3852._accProps.name = "Unselected Radio Button";
this.clip3852.tabIndex = 3852;
this.clip3852.tabEnabled = false;
this.clip3852.tabChildren = true;
this.stop();
Symbol 3853 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3853 MovieClip Frame 2
this.text3854.tabIndex = 3854;
this.clip3855._accProps = new Object();
this.clip3855._accProps.forceSimple = true;
this.clip3855._accProps.name = "Unselected Radio Button";
this.clip3855.tabIndex = 3855;
this.clip3855.tabEnabled = false;
this.clip3855.tabChildren = true;
this.stop();
Symbol 3856 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3856 MovieClip Frame 2
this.text3857.tabIndex = 3857;
this.clip3858._accProps = new Object();
this.clip3858._accProps.forceSimple = true;
this.clip3858._accProps.name = "Tick";
this.clip3858.tabIndex = 3858;
this.clip3858.tabEnabled = false;
this.clip3858.tabChildren = true;
this.clip3859._accProps = new Object();
this.clip3859._accProps.forceSimple = true;
this.clip3859._accProps.name = "Unselected Radio Button";
this.clip3859.tabIndex = 3859;
this.clip3859.tabEnabled = false;
this.clip3859.tabChildren = true;
this.stop();
Symbol 3860 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3860 MovieClip Frame 2
this.text3861.tabIndex = 3861;
this.clip3862._accProps = new Object();
this.clip3862._accProps.forceSimple = true;
this.clip3862._accProps.name = "Arrow";
this.clip3862.tabIndex = 3862;
this.clip3862.tabEnabled = false;
this.clip3862.tabChildren = true;
this.clip3863._accProps = new Object();
this.clip3863._accProps.forceSimple = true;
this.clip3863._accProps.name = "Unselected Radio Button";
this.clip3863.tabIndex = 3863;
this.clip3863.tabEnabled = false;
this.clip3863.tabChildren = true;
this.stop();
Symbol 3864 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 57158008-11Response", this);
Symbol 3864 MovieClip Frame 2
this.text3865.tabIndex = 3865;
this.clip3866._accProps = new Object();
this.clip3866._accProps.forceSimple = true;
this.clip3866._accProps.name = "Tick";
this.clip3866.tabIndex = 3866;
this.clip3866.tabEnabled = false;
this.clip3866.tabChildren = true;
this.text3867.tabIndex = 3867;
this.stop();
Symbol 3868 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 57158008-11Response", this);
Symbol 3868 MovieClip Frame 2
this.text3869.tabIndex = 3869;
this.clip3870._accProps = new Object();
this.clip3870._accProps.forceSimple = true;
this.clip3870._accProps.name = "Cross";
this.clip3870.tabIndex = 3870;
this.clip3870.tabEnabled = false;
this.clip3870.tabChildren = true;
this.text3871.tabIndex = 3871;
this.stop();
Symbol 3872 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 57158008-11Response", this);
Symbol 3872 MovieClip Frame 2
this.stop();
Symbol 3879 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 57158008-12Response", this);
Symbol 3879 MovieClip Frame 2
this.text3880.tabIndex = 3880;
this.stop();
Symbol 3881 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3881 MovieClip Frame 2
this.text3882.tabIndex = 3882;
this.clip3883._accProps = new Object();
this.clip3883._accProps.forceSimple = true;
this.clip3883._accProps.name = "Tick";
this.clip3883.tabIndex = 3883;
this.clip3883.tabEnabled = false;
this.clip3883.tabChildren = true;
this.clip3884._accProps = new Object();
this.clip3884._accProps.forceSimple = true;
this.clip3884._accProps.name = "Unselected Radio Button";
this.clip3884.tabIndex = 3884;
this.clip3884.tabEnabled = false;
this.clip3884.tabChildren = true;
this.stop();
Symbol 3885 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3885 MovieClip Frame 2
this.text3886.tabIndex = 3886;
this.clip3887._accProps = new Object();
this.clip3887._accProps.forceSimple = true;
this.clip3887._accProps.name = "Arrow";
this.clip3887.tabIndex = 3887;
this.clip3887.tabEnabled = false;
this.clip3887.tabChildren = true;
this.clip3888._accProps = new Object();
this.clip3888._accProps.forceSimple = true;
this.clip3888._accProps.name = "Unselected Radio Button";
this.clip3888.tabIndex = 3888;
this.clip3888.tabEnabled = false;
this.clip3888.tabChildren = true;
this.stop();
Symbol 3889 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3889 MovieClip Frame 2
this.text3890.tabIndex = 3890;
this.clip3891._accProps = new Object();
this.clip3891._accProps.forceSimple = true;
this.clip3891._accProps.name = "Cross";
this.clip3891.tabIndex = 3891;
this.clip3891.tabEnabled = false;
this.clip3891.tabChildren = true;
this.clip3892._accProps = new Object();
this.clip3892._accProps.forceSimple = true;
this.clip3892._accProps.name = "Unselected Radio Button";
this.clip3892.tabIndex = 3892;
this.clip3892.tabEnabled = false;
this.clip3892.tabChildren = true;
this.stop();
Symbol 3893 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3893 MovieClip Frame 2
this.text3894.tabIndex = 3894;
this.clip3895._accProps = new Object();
this.clip3895._accProps.forceSimple = true;
this.clip3895._accProps.name = "Unselected Radio Button";
this.clip3895.tabIndex = 3895;
this.clip3895.tabEnabled = false;
this.clip3895.tabChildren = true;
this.stop();
Symbol 3896 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3896 MovieClip Frame 2
this.text3897.tabIndex = 3897;
this.clip3898._accProps = new Object();
this.clip3898._accProps.forceSimple = true;
this.clip3898._accProps.name = "Cross";
this.clip3898.tabIndex = 3898;
this.clip3898.tabEnabled = false;
this.clip3898.tabChildren = true;
this.clip3899._accProps = new Object();
this.clip3899._accProps.forceSimple = true;
this.clip3899._accProps.name = "Unselected Radio Button";
this.clip3899.tabIndex = 3899;
this.clip3899.tabEnabled = false;
this.clip3899.tabChildren = true;
this.stop();
Symbol 3900 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3900 MovieClip Frame 2
this.text3901.tabIndex = 3901;
this.clip3902._accProps = new Object();
this.clip3902._accProps.forceSimple = true;
this.clip3902._accProps.name = "Unselected Radio Button";
this.clip3902.tabIndex = 3902;
this.clip3902.tabEnabled = false;
this.clip3902.tabChildren = true;
this.stop();
Symbol 3903 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3903 MovieClip Frame 2
this.text3904.tabIndex = 3904;
this.clip3905._accProps = new Object();
this.clip3905._accProps.forceSimple = true;
this.clip3905._accProps.name = "Cross";
this.clip3905.tabIndex = 3905;
this.clip3905.tabEnabled = false;
this.clip3905.tabChildren = true;
this.clip3906._accProps = new Object();
this.clip3906._accProps.forceSimple = true;
this.clip3906._accProps.name = "Unselected Radio Button";
this.clip3906.tabIndex = 3906;
this.clip3906.tabEnabled = false;
this.clip3906.tabChildren = true;
this.stop();
Symbol 3907 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3907 MovieClip Frame 2
this.text3908.tabIndex = 3908;
this.clip3909._accProps = new Object();
this.clip3909._accProps.forceSimple = true;
this.clip3909._accProps.name = "Unselected Radio Button";
this.clip3909.tabIndex = 3909;
this.clip3909.tabEnabled = false;
this.clip3909.tabChildren = true;
this.stop();
Symbol 3910 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 57158008-12Response", this);
Symbol 3910 MovieClip Frame 2
this.text3911.tabIndex = 3911;
this.clip3912._accProps = new Object();
this.clip3912._accProps.forceSimple = true;
this.clip3912._accProps.name = "Tick";
this.clip3912.tabIndex = 3912;
this.clip3912.tabEnabled = false;
this.clip3912.tabChildren = true;
this.text3913.tabIndex = 3913;
this.stop();
Symbol 3914 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 57158008-12Response", this);
Symbol 3914 MovieClip Frame 2
this.text3915.tabIndex = 3915;
this.clip3916._accProps = new Object();
this.clip3916._accProps.forceSimple = true;
this.clip3916._accProps.name = "Cross";
this.clip3916.tabIndex = 3916;
this.clip3916.tabEnabled = false;
this.clip3916.tabChildren = true;
this.text3917.tabIndex = 3917;
this.stop();
Symbol 3918 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 57158008-12Response", this);
Symbol 3918 MovieClip Frame 2
this.stop();
Symbol 3925 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 57158008-13Response", this);
Symbol 3925 MovieClip Frame 2
this.text3926.tabIndex = 3926;
this.stop();
Symbol 3927 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3927 MovieClip Frame 2
this.text3928.tabIndex = 3928;
this.clip3929._accProps = new Object();
this.clip3929._accProps.forceSimple = true;
this.clip3929._accProps.name = "Cross";
this.clip3929.tabIndex = 3929;
this.clip3929.tabEnabled = false;
this.clip3929.tabChildren = true;
this.clip3930._accProps = new Object();
this.clip3930._accProps.forceSimple = true;
this.clip3930._accProps.name = "Unselected Radio Button";
this.clip3930.tabIndex = 3930;
this.clip3930.tabEnabled = false;
this.clip3930.tabChildren = true;
this.stop();
Symbol 3931 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3931 MovieClip Frame 2
this.text3932.tabIndex = 3932;
this.clip3933._accProps = new Object();
this.clip3933._accProps.forceSimple = true;
this.clip3933._accProps.name = "Unselected Radio Button";
this.clip3933.tabIndex = 3933;
this.clip3933.tabEnabled = false;
this.clip3933.tabChildren = true;
this.stop();
Symbol 3934 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3934 MovieClip Frame 2
this.text3935.tabIndex = 3935;
this.clip3936._accProps = new Object();
this.clip3936._accProps.forceSimple = true;
this.clip3936._accProps.name = "Tick";
this.clip3936.tabIndex = 3936;
this.clip3936.tabEnabled = false;
this.clip3936.tabChildren = true;
this.clip3937._accProps = new Object();
this.clip3937._accProps.forceSimple = true;
this.clip3937._accProps.name = "Unselected Radio Button";
this.clip3937.tabIndex = 3937;
this.clip3937.tabEnabled = false;
this.clip3937.tabChildren = true;
this.stop();
Symbol 3938 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3938 MovieClip Frame 2
this.text3939.tabIndex = 3939;
this.clip3940._accProps = new Object();
this.clip3940._accProps.forceSimple = true;
this.clip3940._accProps.name = "Arrow";
this.clip3940.tabIndex = 3940;
this.clip3940.tabEnabled = false;
this.clip3940.tabChildren = true;
this.clip3941._accProps = new Object();
this.clip3941._accProps.forceSimple = true;
this.clip3941._accProps.name = "Unselected Radio Button";
this.clip3941.tabIndex = 3941;
this.clip3941.tabEnabled = false;
this.clip3941.tabChildren = true;
this.stop();
Symbol 3942 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3942 MovieClip Frame 2
this.text3943.tabIndex = 3943;
this.clip3944._accProps = new Object();
this.clip3944._accProps.forceSimple = true;
this.clip3944._accProps.name = "Cross";
this.clip3944.tabIndex = 3944;
this.clip3944.tabEnabled = false;
this.clip3944.tabChildren = true;
this.clip3945._accProps = new Object();
this.clip3945._accProps.forceSimple = true;
this.clip3945._accProps.name = "Unselected Radio Button";
this.clip3945.tabIndex = 3945;
this.clip3945.tabEnabled = false;
this.clip3945.tabChildren = true;
this.stop();
Symbol 3946 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3946 MovieClip Frame 2
this.text3947.tabIndex = 3947;
this.clip3948._accProps = new Object();
this.clip3948._accProps.forceSimple = true;
this.clip3948._accProps.name = "Unselected Radio Button";
this.clip3948.tabIndex = 3948;
this.clip3948.tabEnabled = false;
this.clip3948.tabChildren = true;
this.stop();
Symbol 3949 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3949 MovieClip Frame 2
this.text3950.tabIndex = 3950;
this.clip3951._accProps = new Object();
this.clip3951._accProps.forceSimple = true;
this.clip3951._accProps.name = "Cross";
this.clip3951.tabIndex = 3951;
this.clip3951.tabEnabled = false;
this.clip3951.tabChildren = true;
this.clip3952._accProps = new Object();
this.clip3952._accProps.forceSimple = true;
this.clip3952._accProps.name = "Unselected Radio Button";
this.clip3952.tabIndex = 3952;
this.clip3952.tabEnabled = false;
this.clip3952.tabChildren = true;
this.stop();
Symbol 3953 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3953 MovieClip Frame 2
this.text3954.tabIndex = 3954;
this.clip3955._accProps = new Object();
this.clip3955._accProps.forceSimple = true;
this.clip3955._accProps.name = "Unselected Radio Button";
this.clip3955.tabIndex = 3955;
this.clip3955.tabEnabled = false;
this.clip3955.tabChildren = true;
this.stop();
Symbol 3956 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 57158008-13Response", this);
Symbol 3956 MovieClip Frame 2
this.text3957.tabIndex = 3957;
this.clip3958._accProps = new Object();
this.clip3958._accProps.forceSimple = true;
this.clip3958._accProps.name = "Tick";
this.clip3958.tabIndex = 3958;
this.clip3958.tabEnabled = false;
this.clip3958.tabChildren = true;
this.text3959.tabIndex = 3959;
this.stop();
Symbol 3960 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 57158008-13Response", this);
Symbol 3960 MovieClip Frame 2
this.text3961.tabIndex = 3961;
this.clip3962._accProps = new Object();
this.clip3962._accProps.forceSimple = true;
this.clip3962._accProps.name = "Cross";
this.clip3962.tabIndex = 3962;
this.clip3962.tabEnabled = false;
this.clip3962.tabChildren = true;
this.text3963.tabIndex = 3963;
this.stop();
Symbol 3964 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 57158008-13Response", this);
Symbol 3964 MovieClip Frame 2
this.stop();
Symbol 3971 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 57158008-14Response", this);
Symbol 3971 MovieClip Frame 2
this.text3972.tabIndex = 3972;
this.stop();
Symbol 3973 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3973 MovieClip Frame 2
this.text3974.tabIndex = 3974;
this.clip3975._accProps = new Object();
this.clip3975._accProps.forceSimple = true;
this.clip3975._accProps.name = "Cross";
this.clip3975.tabIndex = 3975;
this.clip3975.tabEnabled = false;
this.clip3975.tabChildren = true;
this.clip3976._accProps = new Object();
this.clip3976._accProps.forceSimple = true;
this.clip3976._accProps.name = "Unselected Radio Button";
this.clip3976.tabIndex = 3976;
this.clip3976.tabEnabled = false;
this.clip3976.tabChildren = true;
this.stop();
Symbol 3977 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3977 MovieClip Frame 2
this.text3978.tabIndex = 3978;
this.clip3979._accProps = new Object();
this.clip3979._accProps.forceSimple = true;
this.clip3979._accProps.name = "Unselected Radio Button";
this.clip3979.tabIndex = 3979;
this.clip3979.tabEnabled = false;
this.clip3979.tabChildren = true;
this.stop();
Symbol 3980 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3980 MovieClip Frame 2
this.text3981.tabIndex = 3981;
this.clip3982._accProps = new Object();
this.clip3982._accProps.forceSimple = true;
this.clip3982._accProps.name = "Cross";
this.clip3982.tabIndex = 3982;
this.clip3982.tabEnabled = false;
this.clip3982.tabChildren = true;
this.clip3983._accProps = new Object();
this.clip3983._accProps.forceSimple = true;
this.clip3983._accProps.name = "Unselected Radio Button";
this.clip3983.tabIndex = 3983;
this.clip3983.tabEnabled = false;
this.clip3983.tabChildren = true;
this.stop();
Symbol 3984 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3984 MovieClip Frame 2
this.text3985.tabIndex = 3985;
this.clip3986._accProps = new Object();
this.clip3986._accProps.forceSimple = true;
this.clip3986._accProps.name = "Unselected Radio Button";
this.clip3986.tabIndex = 3986;
this.clip3986.tabEnabled = false;
this.clip3986.tabChildren = true;
this.stop();
Symbol 3987 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3987 MovieClip Frame 2
this.text3988.tabIndex = 3988;
this.clip3989._accProps = new Object();
this.clip3989._accProps.forceSimple = true;
this.clip3989._accProps.name = "Cross";
this.clip3989.tabIndex = 3989;
this.clip3989.tabEnabled = false;
this.clip3989.tabChildren = true;
this.clip3990._accProps = new Object();
this.clip3990._accProps.forceSimple = true;
this.clip3990._accProps.name = "Unselected Radio Button";
this.clip3990.tabIndex = 3990;
this.clip3990.tabEnabled = false;
this.clip3990.tabChildren = true;
this.stop();
Symbol 3991 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3991 MovieClip Frame 2
this.text3992.tabIndex = 3992;
this.clip3993._accProps = new Object();
this.clip3993._accProps.forceSimple = true;
this.clip3993._accProps.name = "Unselected Radio Button";
this.clip3993.tabIndex = 3993;
this.clip3993.tabEnabled = false;
this.clip3993.tabChildren = true;
this.stop();
Symbol 3994 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3994 MovieClip Frame 2
this.text3995.tabIndex = 3995;
this.clip3996._accProps = new Object();
this.clip3996._accProps.forceSimple = true;
this.clip3996._accProps.name = "Tick";
this.clip3996.tabIndex = 3996;
this.clip3996.tabEnabled = false;
this.clip3996.tabChildren = true;
this.clip3997._accProps = new Object();
this.clip3997._accProps.forceSimple = true;
this.clip3997._accProps.name = "Unselected Radio Button";
this.clip3997.tabIndex = 3997;
this.clip3997.tabEnabled = false;
this.clip3997.tabChildren = true;
this.stop();
Symbol 3998 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3998 MovieClip Frame 2
this.text3999.tabIndex = 3999;
this.clip4000._accProps = new Object();
this.clip4000._accProps.forceSimple = true;
this.clip4000._accProps.name = "Arrow";
this.clip4000.tabIndex = 4000;
this.clip4000.tabEnabled = false;
this.clip4000.tabChildren = true;
this.clip4001._accProps = new Object();
this.clip4001._accProps.forceSimple = true;
this.clip4001._accProps.name = "Unselected Radio Button";
this.clip4001.tabIndex = 4001;
this.clip4001.tabEnabled = false;
this.clip4001.tabChildren = true;
this.stop();
Symbol 4002 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 57158008-14Response", this);
Symbol 4002 MovieClip Frame 2
this.text4003.tabIndex = 4003;
this.clip4004._accProps = new Object();
this.clip4004._accProps.forceSimple = true;
this.clip4004._accProps.name = "Tick";
this.clip4004.tabIndex = 4004;
this.clip4004.tabEnabled = false;
this.clip4004.tabChildren = true;
this.text4005.tabIndex = 4005;
this.stop();
Symbol 4006 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 57158008-14Response", this);
Symbol 4006 MovieClip Frame 2
this.text4007.tabIndex = 4007;
this.clip4008._accProps = new Object();
this.clip4008._accProps.forceSimple = true;
this.clip4008._accProps.name = "Cross";
this.clip4008.tabIndex = 4008;
this.clip4008.tabEnabled = false;
this.clip4008.tabChildren = true;
this.text4009.tabIndex = 4009;
this.stop();
Symbol 4010 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 57158008-14Response", this);
Symbol 4010 MovieClip Frame 2
this.stop();
Symbol 4017 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 57158008-15Response", this);
Symbol 4017 MovieClip Frame 2
this.text4018.tabIndex = 4018;
this.stop();
Symbol 4019 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 4019 MovieClip Frame 2
this.text4020.tabIndex = 4020;
this.clip4021._accProps = new Object();
this.clip4021._accProps.forceSimple = true;
this.clip4021._accProps.name = "Tick";
this.clip4021.tabIndex = 4021;
this.clip4021.tabEnabled = false;
this.clip4021.tabChildren = true;
this.clip4022._accProps = new Object();
this.clip4022._accProps.forceSimple = true;
this.clip4022._accProps.name = "Unselected Radio Button";
this.clip4022.tabIndex = 4022;
this.clip4022.tabEnabled = false;
this.clip4022.tabChildren = true;
this.stop();
Symbol 4023 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 4023 MovieClip Frame 2
this.text4024.tabIndex = 4024;
this.clip4025._accProps = new Object();
this.clip4025._accProps.forceSimple = true;
this.clip4025._accProps.name = "Arrow";
this.clip4025.tabIndex = 4025;
this.clip4025.tabEnabled = false;
this.clip4025.tabChildren = true;
this.clip4026._accProps = new Object();
this.clip4026._accProps.forceSimple = true;
this.clip4026._accProps.name = "Unselected Radio Button";
this.clip4026.tabIndex = 4026;
this.clip4026.tabEnabled = false;
this.clip4026.tabChildren = true;
this.stop();
Symbol 4027 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 4027 MovieClip Frame 2
this.text4028.tabIndex = 4028;
this.clip4029._accProps = new Object();
this.clip4029._accProps.forceSimple = true;
this.clip4029._accProps.name = "Cross";
this.clip4029.tabIndex = 4029;
this.clip4029.tabEnabled = false;
this.clip4029.tabChildren = true;
this.clip4030._accProps = new Object();
this.clip4030._accProps.forceSimple = true;
this.clip4030._accProps.name = "Unselected Radio Button";
this.clip4030.tabIndex = 4030;
this.clip4030.tabEnabled = false;
this.clip4030.tabChildren = true;
this.stop();
Symbol 4031 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 4031 MovieClip Frame 2
this.text4032.tabIndex = 4032;
this.clip4033._accProps = new Object();
this.clip4033._accProps.forceSimple = true;
this.clip4033._accProps.name = "Unselected Radio Button";
this.clip4033.tabIndex = 4033;
this.clip4033.tabEnabled = false;
this.clip4033.tabChildren = true;
this.stop();
Symbol 4034 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 4034 MovieClip Frame 2
this.text4035.tabIndex = 4035;
this.clip4036._accProps = new Object();
this.clip4036._accProps.forceSimple = true;
this.clip4036._accProps.name = "Cross";
this.clip4036.tabIndex = 4036;
this.clip4036.tabEnabled = false;
this.clip4036.tabChildren = true;
this.clip4037._accProps = new Object();
this.clip4037._accProps.forceSimple = true;
this.clip4037._accProps.name = "Unselected Radio Button";
this.clip4037.tabIndex = 4037;
this.clip4037.tabEnabled = false;
this.clip4037.tabChildren = true;
this.stop();
Symbol 4038 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 4038 MovieClip Frame 2
this.text4039.tabIndex = 4039;
this.clip4040._accProps = new Object();
this.clip4040._accProps.forceSimple = true;
this.clip4040._accProps.name = "Unselected Radio Button";
this.clip4040.tabIndex = 4040;
this.clip4040.tabEnabled = false;
this.clip4040.tabChildren = true;
this.stop();
Symbol 4041 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 4041 MovieClip Frame 2
this.text4042.tabIndex = 4042;
this.clip4043._accProps = new Object();
this.clip4043._accProps.forceSimple = true;
this.clip4043._accProps.name = "Cross";
this.clip4043.tabIndex = 4043;
this.clip4043.tabEnabled = false;
this.clip4043.tabChildren = true;
this.clip4044._accProps = new Object();
this.clip4044._accProps.forceSimple = true;
this.clip4044._accProps.name = "Unselected Radio Button";
this.clip4044.tabIndex = 4044;
this.clip4044.tabEnabled = false;
this.clip4044.tabChildren = true;
this.stop();
Symbol 4045 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 4045 MovieClip Frame 2
this.text4046.tabIndex = 4046;
this.clip4047._accProps = new Object();
this.clip4047._accProps.forceSimple = true;
this.clip4047._accProps.name = "Unselected Radio Button";
this.clip4047.tabIndex = 4047;
this.clip4047.tabEnabled = false;
this.clip4047.tabChildren = true;
this.stop();
Symbol 4048 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 57158008-15Response", this);
Symbol 4048 MovieClip Frame 2
this.text4049.tabIndex = 4049;
this.clip4050._accProps = new Object();
this.clip4050._accProps.forceSimple = true;
this.clip4050._accProps.name = "Tick";
this.clip4050.tabIndex = 4050;
this.clip4050.tabEnabled = false;
this.clip4050.tabChildren = true;
this.text4051.tabIndex = 4051;
this.stop();
Symbol 4052 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 57158008-15Response", this);
Symbol 4052 MovieClip Frame 2
this.text4053.tabIndex = 4053;
this.clip4054._accProps = new Object();
this.clip4054._accProps.forceSimple = true;
this.clip4054._accProps.name = "Cross";
this.clip4054.tabIndex = 4054;
this.clip4054.tabEnabled = false;
this.clip4054.tabChildren = true;
this.text4055.tabIndex = 4055;
this.stop();
Symbol 4056 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 57158008-15Response", this);
Symbol 4056 MovieClip Frame 2
this.stop();
Symbol 4063 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 57158008-16Response", this);
Symbol 4063 MovieClip Frame 2
this.text4064.tabIndex = 4064;
this.stop();
Symbol 4065 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 4065 MovieClip Frame 2
this.text4066.tabIndex = 4066;
this.clip4067._accProps = new Object();
this.clip4067._accProps.forceSimple = true;
this.clip4067._accProps.name = "Tick";
this.clip4067.tabIndex = 4067;
this.clip4067.tabEnabled = false;
this.clip4067.tabChildren = true;
this.clip4068._accProps = new Object();
this.clip4068._accProps.forceSimple = true;
this.clip4068._accProps.name = "Unselected Radio Button";
this.clip4068.tabIndex = 4068;
this.clip4068.tabEnabled = false;
this.clip4068.tabChildren = true;
this.stop();
Symbol 4069 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 4069 MovieClip Frame 2
this.text4070.tabIndex = 4070;
this.clip4071._accProps = new Object();
this.clip4071._accProps.forceSimple = true;
this.clip4071._accProps.name = "Arrow";
this.clip4071.tabIndex = 4071;
this.clip4071.tabEnabled = false;
this.clip4071.tabChildren = true;
this.clip4072._accProps = new Object();
this.clip4072._accProps.forceSimple = true;
this.clip4072._accProps.name = "Unselected Radio Button";
this.clip4072.tabIndex = 4072;
this.clip4072.tabEnabled = false;
this.clip4072.tabChildren = true;
this.stop();
Symbol 4073 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 4073 MovieClip Frame 2
this.text4074.tabIndex = 4074;
this.clip4075._accProps = new Object();
this.clip4075._accProps.forceSimple = true;
this.clip4075._accProps.name = "Cross";
this.clip4075.tabIndex = 4075;
this.clip4075.tabEnabled = false;
this.clip4075.tabChildren = true;
this.clip4076._accProps = new Object();
this.clip4076._accProps.forceSimple = true;
this.clip4076._accProps.name = "Unselected Radio Button";
this.clip4076.tabIndex = 4076;
this.clip4076.tabEnabled = false;
this.clip4076.tabChildren = true;
this.stop();
Symbol 4077 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 4077 MovieClip Frame 2
this.text4078.tabIndex = 4078;
this.clip4079._accProps = new Object();
this.clip4079._accProps.forceSimple = true;
this.clip4079._accProps.name = "Unselected Radio Button";
this.clip4079.tabIndex = 4079;
this.clip4079.tabEnabled = false;
this.clip4079.tabChildren = true;
this.stop();
Symbol 4080 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 4080 MovieClip Frame 2
this.text4081.tabIndex = 4081;
this.clip4082._accProps = new Object();
this.clip4082._accProps.forceSimple = true;
this.clip4082._accProps.name = "Cross";
this.clip4082.tabIndex = 4082;
this.clip4082.tabEnabled = false;
this.clip4082.tabChildren = true;
this.clip4083._accProps = new Object();
this.clip4083._accProps.forceSimple = true;
this.clip4083._accProps.name = "Unselected Radio Button";
this.clip4083.tabIndex = 4083;
this.clip4083.tabEnabled = false;
this.clip4083.tabChildren = true;
this.stop();
Symbol 4084 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 4084 MovieClip Frame 2
this.text4085.tabIndex = 4085;
this.clip4086._accProps = new Object();
this.clip4086._accProps.forceSimple = true;
this.clip4086._accProps.name = "Unselected Radio Button";
this.clip4086.tabIndex = 4086;
this.clip4086.tabEnabled = false;
this.clip4086.tabChildren = true;
this.stop();
Symbol 4087 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 4087 MovieClip Frame 2
this.text4088.tabIndex = 4088;
this.clip4089._accProps = new Object();
this.clip4089._accProps.forceSimple = true;
this.clip4089._accProps.name = "Cross";
this.clip4089.tabIndex = 4089;
this.clip4089.tabEnabled = false;
this.clip4089.tabChildren = true;
this.clip4090._accProps = new Object();
this.clip4090._accProps.forceSimple = true;
this.clip4090._accProps.name = "Unselected Radio Button";
this.clip4090.tabIndex = 4090;
this.clip4090.tabEnabled = false;
this.clip4090.tabChildren = true;
this.stop();
Symbol 4091 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 4091 MovieClip Frame 2
this.text4092.tabIndex = 4092;
this.clip4093._accProps = new Object();
this.clip4093._accProps.forceSimple = true;
this.clip4093._accProps.name = "Unselected Radio Button";
this.clip4093.tabIndex = 4093;
this.clip4093.tabEnabled = false;
this.clip4093.tabChildren = true;
this.stop();
Symbol 4094 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 57158008-16Response", this);
Symbol 4094 MovieClip Frame 2
this.text4095.tabIndex = 4095;
this.clip4096._accProps = new Object();
this.clip4096._accProps.forceSimple = true;
this.clip4096._accProps.name = "Tick";
this.clip4096.tabIndex = 4096;
this.clip4096.tabEnabled = false;
this.clip4096.tabChildren = true;
this.text4097.tabIndex = 4097;
this.stop();
Symbol 4098 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 57158008-16Response", this);
Symbol 4098 MovieClip Frame 2
this.text4099.tabIndex = 4099;
this.clip4100._accProps = new Object();
this.clip4100._accProps.forceSimple = true;
this.clip4100._accProps.name = "Cross";
this.clip4100.tabIndex = 4100;
this.clip4100.tabEnabled = false;
this.clip4100.tabChildren = true;
this.text4101.tabIndex = 4101;
this.stop();
Symbol 4102 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 57158008-16Response", this);
Symbol 4102 MovieClip Frame 2
this.stop();
Symbol 4109 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 57158008-17Response", this);
Symbol 4109 MovieClip Frame 2
this.text4110.tabIndex = 4110;
this.stop();
Symbol 4111 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 4111 MovieClip Frame 2
this.text4112.tabIndex = 4112;
this.clip4113._accProps = new Object();
this.clip4113._accProps.forceSimple = true;
this.clip4113._accProps.name = "Cross";
this.clip4113.tabIndex = 4113;
this.clip4113.tabEnabled = false;
this.clip4113.tabChildren = true;
this.clip4114._accProps = new Object();
this.clip4114._accProps.forceSimple = true;
this.clip4114._accProps.name = "Unselected Radio Button";
this.clip4114.tabIndex = 4114;
this.clip4114.tabEnabled = false;
this.clip4114.tabChildren = true;
this.stop();
Symbol 4115 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 4115 MovieClip Frame 2
this.text4116.tabIndex = 4116;
this.clip4117._accProps = new Object();
this.clip4117._accProps.forceSimple = true;
this.clip4117._accProps.name = "Unselected Radio Button";
this.clip4117.tabIndex = 4117;
this.clip4117.tabEnabled = false;
this.clip4117.tabChildren = true;
this.stop();
Symbol 4118 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 4118 MovieClip Frame 2
this.text4119.tabIndex = 4119;
this.clip4120._accProps = new Object();
this.clip4120._accProps.forceSimple = true;
this.clip4120._accProps.name = "Cross";
this.clip4120.tabIndex = 4120;
this.clip4120.tabEnabled = false;
this.clip4120.tabChildren = true;
this.clip4121._accProps = new Object();
this.clip4121._accProps.forceSimple = true;
this.clip4121._accProps.name = "Unselected Radio Button";
this.clip4121.tabIndex = 4121;
this.clip4121.tabEnabled = false;
this.clip4121.tabChildren = true;
this.stop();
Symbol 4122 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 4122 MovieClip Frame 2
this.text4123.tabIndex = 4123;
this.clip4124._accProps = new Object();
this.clip4124._accProps.forceSimple = true;
this.clip4124._accProps.name = "Unselected Radio Button";
this.clip4124.tabIndex = 4124;
this.clip4124.tabEnabled = false;
this.clip4124.tabChildren = true;
this.stop();
Symbol 4125 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 4125 MovieClip Frame 2
this.text4126.tabIndex = 4126;
this.clip4127._accProps = new Object();
this.clip4127._accProps.forceSimple = true;
this.clip4127._accProps.name = "Tick";
this.clip4127.tabIndex = 4127;
this.clip4127.tabEnabled = false;
this.clip4127.tabChildren = true;
this.clip4128._accProps = new Object();
this.clip4128._accProps.forceSimple = true;
this.clip4128._accProps.name = "Unselected Radio Button";
this.clip4128.tabIndex = 4128;
this.clip4128.tabEnabled = false;
this.clip4128.tabChildren = true;
this.stop();
Symbol 4129 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 4129 MovieClip Frame 2
this.text4130.tabIndex = 4130;
this.clip4131._accProps = new Object();
this.clip4131._accProps.forceSimple = true;
this.clip4131._accProps.name = "Arrow";
this.clip4131.tabIndex = 4131;
this.clip4131.tabEnabled = false;
this.clip4131.tabChildren = true;
this.clip4132._accProps = new Object();
this.clip4132._accProps.forceSimple = true;
this.clip4132._accProps.name = "Unselected Radio Button";
this.clip4132.tabIndex = 4132;
this.clip4132.tabEnabled = false;
this.clip4132.tabChildren = true;
this.stop();
Symbol 4133 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 4133 MovieClip Frame 2
this.text4134.tabIndex = 4134;
this.clip4135._accProps = new Object();
this.clip4135._accProps.forceSimple = true;
this.clip4135._accProps.name = "Cross";
this.clip4135.tabIndex = 4135;
this.clip4135.tabEnabled = false;
this.clip4135.tabChildren = true;
this.clip4136._accProps = new Object();
this.clip4136._accProps.forceSimple = true;
this.clip4136._accProps.name = "Unselected Radio Button";
this.clip4136.tabIndex = 4136;
this.clip4136.tabEnabled = false;
this.clip4136.tabChildren = true;
this.stop();
Symbol 4137 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 4137 MovieClip Frame 2
this.text4138.tabIndex = 4138;
this.clip4139._accProps = new Object();
this.clip4139._accProps.forceSimple = true;
this.clip4139._accProps.name = "Unselected Radio Button";
this.clip4139.tabIndex = 4139;
this.clip4139.tabEnabled = false;
this.clip4139.tabChildren = true;
this.stop();
Symbol 4140 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 57158008-17Response", this);
Symbol 4140 MovieClip Frame 2
this.text4141.tabIndex = 4141;
this.clip4142._accProps = new Object();
this.clip4142._accProps.forceSimple = true;
this.clip4142._accProps.name = "Tick";
this.clip4142.tabIndex = 4142;
this.clip4142.tabEnabled = false;
this.clip4142.tabChildren = true;
this.text4143.tabIndex = 4143;
this.stop();
Symbol 4144 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 57158008-17Response", this);
Symbol 4144 MovieClip Frame 2
this.text4145.tabIndex = 4145;
this.clip4146._accProps = new Object();
this.clip4146._accProps.forceSimple = true;
this.clip4146._accProps.name = "Cross";
this.clip4146.tabIndex = 4146;
this.clip4146.tabEnabled = false;
this.clip4146.tabChildren = true;
this.text4147.tabIndex = 4147;
this.stop();
Symbol 4148 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 57158008-17Response", this);
Symbol 4148 MovieClip Frame 2
this.stop();
Symbol 4155 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 57158008-18Response", this);
Symbol 4155 MovieClip Frame 2
this.text4156.tabIndex = 4156;
this.stop();
Symbol 4157 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 4157 MovieClip Frame 2
this.text4158.tabIndex = 4158;
this.clip4159._accProps = new Object();
this.clip4159._accProps.forceSimple = true;
this.clip4159._accProps.name = "Cross";
this.clip4159.tabIndex = 4159;
this.clip4159.tabEnabled = false;
this.clip4159.tabChildren = true;
this.clip4160._accProps = new Object();
this.clip4160._accProps.forceSimple = true;
this.clip4160._accProps.name = "Unselected Radio Button";
this.clip4160.tabIndex = 4160;
this.clip4160.tabEnabled = false;
this.clip4160.tabChildren = true;
this.stop();
Symbol 4161 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 4161 MovieClip Frame 2
this.text4162.tabIndex = 4162;
this.clip4163._accProps = new Object();
this.clip4163._accProps.forceSimple = true;
this.clip4163._accProps.name = "Unselected Radio Button";
this.clip4163.tabIndex = 4163;
this.clip4163.tabEnabled = false;
this.clip4163.tabChildren = true;
this.stop();
Symbol 4164 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 4164 MovieClip Frame 2
this.text4165.tabIndex = 4165;
this.clip4166._accProps = new Object();
this.clip4166._accProps.forceSimple = true;
this.clip4166._accProps.name = "Cross";
this.clip4166.tabIndex = 4166;
this.clip4166.tabEnabled = false;
this.clip4166.tabChildren = true;
this.clip4167._accProps = new Object();
this.clip4167._accProps.forceSimple = true;
this.clip4167._accProps.name = "Unselected Radio Button";
this.clip4167.tabIndex = 4167;
this.clip4167.tabEnabled = false;
this.clip4167.tabChildren = true;
this.stop();
Symbol 4168 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 4168 MovieClip Frame 2
this.text4169.tabIndex = 4169;
this.clip4170._accProps = new Object();
this.clip4170._accProps.forceSimple = true;
this.clip4170._accProps.name = "Unselected Radio Button";
this.clip4170.tabIndex = 4170;
this.clip4170.tabEnabled = false;
this.clip4170.tabChildren = true;
this.stop();
Symbol 4171 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 4171 MovieClip Frame 2
this.text4172.tabIndex = 4172;
this.clip4173._accProps = new Object();
this.clip4173._accProps.forceSimple = true;
this.clip4173._accProps.name = "Tick";
this.clip4173.tabIndex = 4173;
this.clip4173.tabEnabled = false;
this.clip4173.tabChildren = true;
this.clip4174._accProps = new Object();
this.clip4174._accProps.forceSimple = true;
this.clip4174._accProps.name = "Unselected Radio Button";
this.clip4174.tabIndex = 4174;
this.clip4174.tabEnabled = false;
this.clip4174.tabChildren = true;
this.stop();
Symbol 4175 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 4175 MovieClip Frame 2
this.text4176.tabIndex = 4176;
this.clip4177._accProps = new Object();
this.clip4177._accProps.forceSimple = true;
this.clip4177._accProps.name = "Arrow";
this.clip4177.tabIndex = 4177;
this.clip4177.tabEnabled = false;
this.clip4177.tabChildren = true;
this.clip4178._accProps = new Object();
this.clip4178._accProps.forceSimple = true;
this.clip4178._accProps.name = "Unselected Radio Button";
this.clip4178.tabIndex = 4178;
this.clip4178.tabEnabled = false;
this.clip4178.tabChildren = true;
this.stop();
Symbol 4179 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 4179 MovieClip Frame 2
this.text4180.tabIndex = 4180;
this.clip4181._accProps = new Object();
this.clip4181._accProps.forceSimple = true;
this.clip4181._accProps.name = "Cross";
this.clip4181.tabIndex = 4181;
this.clip4181.tabEnabled = false;
this.clip4181.tabChildren = true;
this.clip4182._accProps = new Object();
this.clip4182._accProps.forceSimple = true;
this.clip4182._accProps.name = "Unselected Radio Button";
this.clip4182.tabIndex = 4182;
this.clip4182.tabEnabled = false;
this.clip4182.tabChildren = true;
this.stop();
Symbol 4183 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 4183 MovieClip Frame 2
this.text4184.tabIndex = 4184;
this.clip4185._accProps = new Object();
this.clip4185._accProps.forceSimple = true;
this.clip4185._accProps.name = "Unselected Radio Button";
this.clip4185.tabIndex = 4185;
this.clip4185.tabEnabled = false;
this.clip4185.tabChildren = true;
this.stop();
Symbol 4186 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 57158008-18Response", this);
Symbol 4186 MovieClip Frame 2
this.text4187.tabIndex = 4187;
this.clip4188._accProps = new Object();
this.clip4188._accProps.forceSimple = true;
this.clip4188._accProps.name = "Tick";
this.clip4188.tabIndex = 4188;
this.clip4188.tabEnabled = false;
this.clip4188.tabChildren = true;
this.text4189.tabIndex = 4189;
this.stop();
Symbol 4190 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 57158008-18Response", this);
Symbol 4190 MovieClip Frame 2
this.text4191.tabIndex = 4191;
this.clip4192._accProps = new Object();
this.clip4192._accProps.forceSimple = true;
this.clip4192._accProps.name = "Cross";
this.clip4192.tabIndex = 4192;
this.clip4192.tabEnabled = false;
this.clip4192.tabChildren = true;
this.text4193.tabIndex = 4193;
this.stop();
Symbol 4194 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 57158008-18Response", this);
Symbol 4194 MovieClip Frame 2
this.stop();
Symbol 4201 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 57158008-19Response", this);
Symbol 4201 MovieClip Frame 2
this.text4202.tabIndex = 4202;
this.stop();
Symbol 4203 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 4203 MovieClip Frame 2
this.text4204.tabIndex = 4204;
this.clip4205._accProps = new Object();
this.clip4205._accProps.forceSimple = true;
this.clip4205._accProps.name = "Cross";
this.clip4205.tabIndex = 4205;
this.clip4205.tabEnabled = false;
this.clip4205.tabChildren = true;
this.clip4206._accProps = new Object();
this.clip4206._accProps.forceSimple = true;
this.clip4206._accProps.name = "Unselected Radio Button";
this.clip4206.tabIndex = 4206;
this.clip4206.tabEnabled = false;
this.clip4206.tabChildren = true;
this.stop();
Symbol 4207 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 4207 MovieClip Frame 2
this.text4208.tabIndex = 4208;
this.clip4209._accProps = new Object();
this.clip4209._accProps.forceSimple = true;
this.clip4209._accProps.name = "Unselected Radio Button";
this.clip4209.tabIndex = 4209;
this.clip4209.tabEnabled = false;
this.clip4209.tabChildren = true;
this.stop();
Symbol 4210 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 4210 MovieClip Frame 2
this.text4211.tabIndex = 4211;
this.clip4212._accProps = new Object();
this.clip4212._accProps.forceSimple = true;
this.clip4212._accProps.name = "Tick";
this.clip4212.tabIndex = 4212;
this.clip4212.tabEnabled = false;
this.clip4212.tabChildren = true;
this.clip4213._accProps = new Object();
this.clip4213._accProps.forceSimple = true;
this.clip4213._accProps.name = "Unselected Radio Button";
this.clip4213.tabIndex = 4213;
this.clip4213.tabEnabled = false;
this.clip4213.tabChildren = true;
this.stop();
Symbol 4214 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 4214 MovieClip Frame 2
this.text4215.tabIndex = 4215;
this.clip4216._accProps = new Object();
this.clip4216._accProps.forceSimple = true;
this.clip4216._accProps.name = "Arrow";
this.clip4216.tabIndex = 4216;
this.clip4216.tabEnabled = false;
this.clip4216.tabChildren = true;
this.clip4217._accProps = new Object();
this.clip4217._accProps.forceSimple = true;
this.clip4217._accProps.name = "Unselected Radio Button";
this.clip4217.tabIndex = 4217;
this.clip4217.tabEnabled = false;
this.clip4217.tabChildren = true;
this.stop();
Symbol 4218 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 4218 MovieClip Frame 2
this.text4219.tabIndex = 4219;
this.clip4220._accProps = new Object();
this.clip4220._accProps.forceSimple = true;
this.clip4220._accProps.name = "Cross";
this.clip4220.tabIndex = 4220;
this.clip4220.tabEnabled = false;
this.clip4220.tabChildren = true;
this.clip4221._accProps = new Object();
this.clip4221._accProps.forceSimple = true;
this.clip4221._accProps.name = "Unselected Radio Button";
this.clip4221.tabIndex = 4221;
this.clip4221.tabEnabled = false;
this.clip4221.tabChildren = true;
this.stop();
Symbol 4222 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 4222 MovieClip Frame 2
this.text4223.tabIndex = 4223;
this.clip4224._accProps = new Object();
this.clip4224._accProps.forceSimple = true;
this.clip4224._accProps.name = "Unselected Radio Button";
this.clip4224.tabIndex = 4224;
this.clip4224.tabEnabled = false;
this.clip4224.tabChildren = true;
this.stop();
Symbol 4225 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 4225 MovieClip Frame 2
this.text4226.tabIndex = 4226;
this.clip4227._accProps = new Object();
this.clip4227._accProps.forceSimple = true;
this.clip4227._accProps.name = "Cross";
this.clip4227.tabIndex = 4227;
this.clip4227.tabEnabled = false;
this.clip4227.tabChildren = true;
this.clip4228._accProps = new Object();
this.clip4228._accProps.forceSimple = true;
this.clip4228._accProps.name = "Unselected Radio Button";
this.clip4228.tabIndex = 4228;
this.clip4228.tabEnabled = false;
this.clip4228.tabChildren = true;
this.stop();
Symbol 4229 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 4229 MovieClip Frame 2
this.text4230.tabIndex = 4230;
this.clip4231._accProps = new Object();
this.clip4231._accProps.forceSimple = true;
this.clip4231._accProps.name = "Unselected Radio Button";
this.clip4231.tabIndex = 4231;
this.clip4231.tabEnabled = false;
this.clip4231.tabChildren = true;
this.stop();
Symbol 4232 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 57158008-19Response", this);
Symbol 4232 MovieClip Frame 2
this.text4233.tabIndex = 4233;
this.clip4234._accProps = new Object();
this.clip4234._accProps.forceSimple = true;
this.clip4234._accProps.name = "Tick";
this.clip4234.tabIndex = 4234;
this.clip4234.tabEnabled = false;
this.clip4234.tabChildren = true;
this.text4235.tabIndex = 4235;
this.stop();
Symbol 4236 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 57158008-19Response", this);
Symbol 4236 MovieClip Frame 2
this.text4237.tabIndex = 4237;
this.clip4238._accProps = new Object();
this.clip4238._accProps.forceSimple = true;
this.clip4238._accProps.name = "Cross";
this.clip4238.tabIndex = 4238;
this.clip4238.tabEnabled = false;
this.clip4238.tabChildren = true;
this.text4239.tabIndex = 4239;
this.stop();
Symbol 4240 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 57158008-19Response", this);
Symbol 4240 MovieClip Frame 2
this.stop();
Symbol 4247 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 57158008-20Response", this);
Symbol 4247 MovieClip Frame 2
this.text4248.tabIndex = 4248;
this.stop();
Symbol 4249 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 4249 MovieClip Frame 2
this.text4250.tabIndex = 4250;
this.clip4251._accProps = new Object();
this.clip4251._accProps.forceSimple = true;
this.clip4251._accProps.name = "Cross";
this.clip4251.tabIndex = 4251;
this.clip4251.tabEnabled = false;
this.clip4251.tabChildren = true;
this.clip4252._accProps = new Object();
this.clip4252._accProps.forceSimple = true;
this.clip4252._accProps.name = "Unselected Radio Button";
this.clip4252.tabIndex = 4252;
this.clip4252.tabEnabled = false;
this.clip4252.tabChildren = true;
this.stop();
Symbol 4253 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 4253 MovieClip Frame 2
this.text4254.tabIndex = 4254;
this.clip4255._accProps = new Object();
this.clip4255._accProps.forceSimple = true;
this.clip4255._accProps.name = "Unselected Radio Button";
this.clip4255.tabIndex = 4255;
this.clip4255.tabEnabled = false;
this.clip4255.tabChildren = true;
this.stop();
Symbol 4256 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 4256 MovieClip Frame 2
this.text4257.tabIndex = 4257;
this.clip4258._accProps = new Object();
this.clip4258._accProps.forceSimple = true;
this.clip4258._accProps.name = "Tick";
this.clip4258.tabIndex = 4258;
this.clip4258.tabEnabled = false;
this.clip4258.tabChildren = true;
this.clip4259._accProps = new Object();
this.clip4259._accProps.forceSimple = true;
this.clip4259._accProps.name = "Unselected Radio Button";
this.clip4259.tabIndex = 4259;
this.clip4259.tabEnabled = false;
this.clip4259.tabChildren = true;
this.stop();
Symbol 4260 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 4260 MovieClip Frame 2
this.text4261.tabIndex = 4261;
this.clip4262._accProps = new Object();
this.clip4262._accProps.forceSimple = true;
this.clip4262._accProps.name = "Arrow";
this.clip4262.tabIndex = 4262;
this.clip4262.tabEnabled = false;
this.clip4262.tabChildren = true;
this.clip4263._accProps = new Object();
this.clip4263._accProps.forceSimple = true;
this.clip4263._accProps.name = "Unselected Radio Button";
this.clip4263.tabIndex = 4263;
this.clip4263.tabEnabled = false;
this.clip4263.tabChildren = true;
this.stop();
Symbol 4264 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 4264 MovieClip Frame 2
this.text4265.tabIndex = 4265;
this.clip4266._accProps = new Object();
this.clip4266._accProps.forceSimple = true;
this.clip4266._accProps.name = "Cross";
this.clip4266.tabIndex = 4266;
this.clip4266.tabEnabled = false;
this.clip4266.tabChildren = true;
this.clip4267._accProps = new Object();
this.clip4267._accProps.forceSimple = true;
this.clip4267._accProps.name = "Unselected Radio Button";
this.clip4267.tabIndex = 4267;
this.clip4267.tabEnabled = false;
this.clip4267.tabChildren = true;
this.stop();
Symbol 4268 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 4268 MovieClip Frame 2
this.text4269.tabIndex = 4269;
this.clip4270._accProps = new Object();
this.clip4270._accProps.forceSimple = true;
this.clip4270._accProps.name = "Unselected Radio Button";
this.clip4270.tabIndex = 4270;
this.clip4270.tabEnabled = false;
this.clip4270.tabChildren = true;
this.stop();
Symbol 4271 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 4271 MovieClip Frame 2
this.text4272.tabIndex = 4272;
this.clip4273._accProps = new Object();
this.clip4273._accProps.forceSimple = true;
this.clip4273._accProps.name = "Cross";
this.clip4273.tabIndex = 4273;
this.clip4273.tabEnabled = false;
this.clip4273.tabChildren = true;
this.clip4274._accProps = new Object();
this.clip4274._accProps.forceSimple = true;
this.clip4274._accProps.name = "Unselected Radio Button";
this.clip4274.tabIndex = 4274;
this.clip4274.tabEnabled = false;
this.clip4274.tabChildren = true;
this.stop();
Symbol 4275 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 4275 MovieClip Frame 2
this.text4276.tabIndex = 4276;
this.clip4277._accProps = new Object();
this.clip4277._accProps.forceSimple = true;
this.clip4277._accProps.name = "Unselected Radio Button";
this.clip4277.tabIndex = 4277;
this.clip4277.tabEnabled = false;
this.clip4277.tabChildren = true;
this.stop();
Symbol 4278 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 57158008-20Response", this);
Symbol 4278 MovieClip Frame 2
this.text4279.tabIndex = 4279;
this.clip4280._accProps = new Object();
this.clip4280._accProps.forceSimple = true;
this.clip4280._accProps.name = "Tick";
this.clip4280.tabIndex = 4280;
this.clip4280.tabEnabled = false;
this.clip4280.tabChildren = true;
this.text4281.tabIndex = 4281;
this.stop();
Symbol 4282 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 57158008-20Response", this);
Symbol 4282 MovieClip Frame 2
this.text4283.tabIndex = 4283;
this.clip4284._accProps = new Object();
this.clip4284._accProps.forceSimple = true;
this.clip4284._accProps.name = "Cross";
this.clip4284.tabIndex = 4284;
this.clip4284.tabEnabled = false;
this.clip4284.tabChildren = true;
this.text4285.tabIndex = 4285;
this.stop();
Symbol 4286 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 57158008-20Response", this);
Symbol 4286 MovieClip Frame 2
this.stop();
Symbol 4293 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 57158008-21Response", this);
Symbol 4293 MovieClip Frame 2
this.text4294.tabIndex = 4294;
this.stop();
Symbol 4295 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 4295 MovieClip Frame 2
this.text4296.tabIndex = 4296;
this.clip4297._accProps = new Object();
this.clip4297._accProps.forceSimple = true;
this.clip4297._accProps.name = "Tick";
this.clip4297.tabIndex = 4297;
this.clip4297.tabEnabled = false;
this.clip4297.tabChildren = true;
this.clip4298._accProps = new Object();
this.clip4298._accProps.forceSimple = true;
this.clip4298._accProps.name = "Unselected Radio Button";
this.clip4298.tabIndex = 4298;
this.clip4298.tabEnabled = false;
this.clip4298.tabChildren = true;
this.stop();
Symbol 4299 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 4299 MovieClip Frame 2
this.text4300.tabIndex = 4300;
this.clip4301._accProps = new Object();
this.clip4301._accProps.forceSimple = true;
this.clip4301._accProps.name = "Arrow";
this.clip4301.tabIndex = 4301;
this.clip4301.tabEnabled = false;
this.clip4301.tabChildren = true;
this.clip4302._accProps = new Object();
this.clip4302._accProps.forceSimple = true;
this.clip4302._accProps.name = "Unselected Radio Button";
this.clip4302.tabIndex = 4302;
this.clip4302.tabEnabled = false;
this.clip4302.tabChildren = true;
this.stop();
Symbol 4303 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 4303 MovieClip Frame 2
this.text4304.tabIndex = 4304;
this.clip4305._accProps = new Object();
this.clip4305._accProps.forceSimple = true;
this.clip4305._accProps.name = "Cross";
this.clip4305.tabIndex = 4305;
this.clip4305.tabEnabled = false;
this.clip4305.tabChildren = true;
this.clip4306._accProps = new Object();
this.clip4306._accProps.forceSimple = true;
this.clip4306._accProps.name = "Unselected Radio Button";
this.clip4306.tabIndex = 4306;
this.clip4306.tabEnabled = false;
this.clip4306.tabChildren = true;
this.stop();
Symbol 4307 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 4307 MovieClip Frame 2
this.text4308.tabIndex = 4308;
this.clip4309._accProps = new Object();
this.clip4309._accProps.forceSimple = true;
this.clip4309._accProps.name = "Unselected Radio Button";
this.clip4309.tabIndex = 4309;
this.clip4309.tabEnabled = false;
this.clip4309.tabChildren = true;
this.stop();
Symbol 4310 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 4310 MovieClip Frame 2
this.text4311.tabIndex = 4311;
this.clip4312._accProps = new Object();
this.clip4312._accProps.forceSimple = true;
this.clip4312._accProps.name = "Cross";
this.clip4312.tabIndex = 4312;
this.clip4312.tabEnabled = false;
this.clip4312.tabChildren = true;
this.clip4313._accProps = new Object();
this.clip4313._accProps.forceSimple = true;
this.clip4313._accProps.name = "Unselected Radio Button";
this.clip4313.tabIndex = 4313;
this.clip4313.tabEnabled = false;
this.clip4313.tabChildren = true;
this.stop();
Symbol 4314 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 4314 MovieClip Frame 2
this.text4315.tabIndex = 4315;
this.clip4316._accProps = new Object();
this.clip4316._accProps.forceSimple = true;
this.clip4316._accProps.name = "Unselected Radio Button";
this.clip4316.tabIndex = 4316;
this.clip4316.tabEnabled = false;
this.clip4316.tabChildren = true;
this.stop();
Symbol 4317 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 4317 MovieClip Frame 2
this.text4318.tabIndex = 4318;
this.clip4319._accProps = new Object();
this.clip4319._accProps.forceSimple = true;
this.clip4319._accProps.name = "Cross";
this.clip4319.tabIndex = 4319;
this.clip4319.tabEnabled = false;
this.clip4319.tabChildren = true;
this.clip4320._accProps = new Object();
this.clip4320._accProps.forceSimple = true;
this.clip4320._accProps.name = "Unselected Radio Button";
this.clip4320.tabIndex = 4320;
this.clip4320.tabEnabled = false;
this.clip4320.tabChildren = true;
this.stop();
Symbol 4321 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 4321 MovieClip Frame 2
this.text4322.tabIndex = 4322;
this.clip4323._accProps = new Object();
this.clip4323._accProps.forceSimple = true;
this.clip4323._accProps.name = "Unselected Radio Button";
this.clip4323.tabIndex = 4323;
this.clip4323.tabEnabled = false;
this.clip4323.tabChildren = true;
this.stop();
Symbol 4324 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 57158008-21Response", this);
Symbol 4324 MovieClip Frame 2
this.text4325.tabIndex = 4325;
this.clip4326._accProps = new Object();
this.clip4326._accProps.forceSimple = true;
this.clip4326._accProps.name = "Tick";
this.clip4326.tabIndex = 4326;
this.clip4326.tabEnabled = false;
this.clip4326.tabChildren = true;
this.text4327.tabIndex = 4327;
this.stop();
Symbol 4328 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 57158008-21Response", this);
Symbol 4328 MovieClip Frame 2
this.text4329.tabIndex = 4329;
this.clip4330._accProps = new Object();
this.clip4330._accProps.forceSimple = true;
this.clip4330._accProps.name = "Cross";
this.clip4330.tabIndex = 4330;
this.clip4330.tabEnabled = false;
this.clip4330.tabChildren = true;
this.text4331.tabIndex = 4331;
this.stop();
Symbol 4332 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 57158008-21Response", this);
Symbol 4332 MovieClip Frame 2
this.stop();
Symbol 4339 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 57158008-22Response", this);
Symbol 4339 MovieClip Frame 2
this.text4340.tabIndex = 4340;
this.stop();
Symbol 4341 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 4341 MovieClip Frame 2
this.text4342.tabIndex = 4342;
this.clip4343._accProps = new Object();
this.clip4343._accProps.forceSimple = true;
this.clip4343._accProps.name = "Cross";
this.clip4343.tabIndex = 4343;
this.clip4343.tabEnabled = false;
this.clip4343.tabChildren = true;
this.clip4344._accProps = new Object();
this.clip4344._accProps.forceSimple = true;
this.clip4344._accProps.name = "Unselected Radio Button";
this.clip4344.tabIndex = 4344;
this.clip4344.tabEnabled = false;
this.clip4344.tabChildren = true;
this.stop();
Symbol 4345 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 4345 MovieClip Frame 2
this.text4346.tabIndex = 4346;
this.clip4347._accProps = new Object();
this.clip4347._accProps.forceSimple = true;
this.clip4347._accProps.name = "Unselected Radio Button";
this.clip4347.tabIndex = 4347;
this.clip4347.tabEnabled = false;
this.clip4347.tabChildren = true;
this.stop();
Symbol 4348 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 4348 MovieClip Frame 2
this.text4349.tabIndex = 4349;
this.clip4350._accProps = new Object();
this.clip4350._accProps.forceSimple = true;
this.clip4350._accProps.name = "Cross";
this.clip4350.tabIndex = 4350;
this.clip4350.tabEnabled = false;
this.clip4350.tabChildren = true;
this.clip4351._accProps = new Object();
this.clip4351._accProps.forceSimple = true;
this.clip4351._accProps.name = "Unselected Radio Button";
this.clip4351.tabIndex = 4351;
this.clip4351.tabEnabled = false;
this.clip4351.tabChildren = true;
this.stop();
Symbol 4352 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 4352 MovieClip Frame 2
this.text4353.tabIndex = 4353;
this.clip4354._accProps = new Object();
this.clip4354._accProps.forceSimple = true;
this.clip4354._accProps.name = "Unselected Radio Button";
this.clip4354.tabIndex = 4354;
this.clip4354.tabEnabled = false;
this.clip4354.tabChildren = true;
this.stop();
Symbol 4355 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 4355 MovieClip Frame 2
this.text4356.tabIndex = 4356;
this.clip4357._accProps = new Object();
this.clip4357._accProps.forceSimple = true;
this.clip4357._accProps.name = "Cross";
this.clip4357.tabIndex = 4357;
this.clip4357.tabEnabled = false;
this.clip4357.tabChildren = true;
this.clip4358._accProps = new Object();
this.clip4358._accProps.forceSimple = true;
this.clip4358._accProps.name = "Unselected Radio Button";
this.clip4358.tabIndex = 4358;
this.clip4358.tabEnabled = false;
this.clip4358.tabChildren = true;
this.stop();
Symbol 4359 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 4359 MovieClip Frame 2
this.text4360.tabIndex = 4360;
this.clip4361._accProps = new Object();
this.clip4361._accProps.forceSimple = true;
this.clip4361._accProps.name = "Unselected Radio Button";
this.clip4361.tabIndex = 4361;
this.clip4361.tabEnabled = false;
this.clip4361.tabChildren = true;
this.stop();
Symbol 4362 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 4362 MovieClip Frame 2
this.text4363.tabIndex = 4363;
this.clip4364._accProps = new Object();
this.clip4364._accProps.forceSimple = true;
this.clip4364._accProps.name = "Tick";
this.clip4364.tabIndex = 4364;
this.clip4364.tabEnabled = false;
this.clip4364.tabChildren = true;
this.clip4365._accProps = new Object();
this.clip4365._accProps.forceSimple = true;
this.clip4365._accProps.name = "Unselected Radio Button";
this.clip4365.tabIndex = 4365;
this.clip4365.tabEnabled = false;
this.clip4365.tabChildren = true;
this.stop();
Symbol 4366 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 4366 MovieClip Frame 2
this.text4367.tabIndex = 4367;
this.clip4368._accProps = new Object();
this.clip4368._accProps.forceSimple = true;
this.clip4368._accProps.name = "Arrow";
this.clip4368.tabIndex = 4368;
this.clip4368.tabEnabled = false;
this.clip4368.tabChildren = true;
this.clip4369._accProps = new Object();
this.clip4369._accProps.forceSimple = true;
this.clip4369._accProps.name = "Unselected Radio Button";
this.clip4369.tabIndex = 4369;
this.clip4369.tabEnabled = false;
this.clip4369.tabChildren = true;
this.stop();
Symbol 4370 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 57158008-22Response", this);
Symbol 4370 MovieClip Frame 2
this.text4371.tabIndex = 4371;
this.clip4372._accProps = new Object();
this.clip4372._accProps.forceSimple = true;
this.clip4372._accProps.name = "Tick";
this.clip4372.tabIndex = 4372;
this.clip4372.tabEnabled = false;
this.clip4372.tabChildren = true;
this.text4373.tabIndex = 4373;
this.stop();
Symbol 4374 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 57158008-22Response", this);
Symbol 4374 MovieClip Frame 2
this.text4375.tabIndex = 4375;
this.clip4376._accProps = new Object();
this.clip4376._accProps.forceSimple = true;
this.clip4376._accProps.name = "Cross";
this.clip4376.tabIndex = 4376;
this.clip4376.tabEnabled = false;
this.clip4376.tabChildren = true;
this.text4377.tabIndex = 4377;
this.stop();
Symbol 4378 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 57158008-22Response", this);
Symbol 4378 MovieClip Frame 2
this.stop();
Symbol 4385 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 57158008-23Response", this);
Symbol 4385 MovieClip Frame 2
this.text4386.tabIndex = 4386;
this.stop();
Symbol 4387 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 4387 MovieClip Frame 2
this.text4388.tabIndex = 4388;
this.clip4389._accProps = new Object();
this.clip4389._accProps.forceSimple = true;
this.clip4389._accProps.name = "Cross";
this.clip4389.tabIndex = 4389;
this.clip4389.tabEnabled = false;
this.clip4389.tabChildren = true;
this.clip4390._accProps = new Object();
this.clip4390._accProps.forceSimple = true;
this.clip4390._accProps.name = "Unselected Radio Button";
this.clip4390.tabIndex = 4390;
this.clip4390.tabEnabled = false;
this.clip4390.tabChildren = true;
this.stop();
Symbol 4391 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 4391 MovieClip Frame 2
this.text4392.tabIndex = 4392;
this.clip4393._accProps = new Object();
this.clip4393._accProps.forceSimple = true;
this.clip4393._accProps.name = "Unselected Radio Button";
this.clip4393.tabIndex = 4393;
this.clip4393.tabEnabled = false;
this.clip4393.tabChildren = true;
this.stop();
Symbol 4394 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 4394 MovieClip Frame 2
this.text4395.tabIndex = 4395;
this.clip4396._accProps = new Object();
this.clip4396._accProps.forceSimple = true;
this.clip4396._accProps.name = "Tick";
this.clip4396.tabIndex = 4396;
this.clip4396.tabEnabled = false;
this.clip4396.tabChildren = true;
this.clip4397._accProps = new Object();
this.clip4397._accProps.forceSimple = true;
this.clip4397._accProps.name = "Unselected Radio Button";
this.clip4397.tabIndex = 4397;
this.clip4397.tabEnabled = false;
this.clip4397.tabChildren = true;
this.stop();
Symbol 4398 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 4398 MovieClip Frame 2
this.text4399.tabIndex = 4399;
this.clip4400._accProps = new Object();
this.clip4400._accProps.forceSimple = true;
this.clip4400._accProps.name = "Arrow";
this.clip4400.tabIndex = 4400;
this.clip4400.tabEnabled = false;
this.clip4400.tabChildren = true;
this.clip4401._accProps = new Object();
this.clip4401._accProps.forceSimple = true;
this.clip4401._accProps.name = "Unselected Radio Button";
this.clip4401.tabIndex = 4401;
this.clip4401.tabEnabled = false;
this.clip4401.tabChildren = true;
this.stop();
Symbol 4402 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 4402 MovieClip Frame 2
this.text4403.tabIndex = 4403;
this.clip4404._accProps = new Object();
this.clip4404._accProps.forceSimple = true;
this.clip4404._accProps.name = "Cross";
this.clip4404.tabIndex = 4404;
this.clip4404.tabEnabled = false;
this.clip4404.tabChildren = true;
this.clip4405._accProps = new Object();
this.clip4405._accProps.forceSimple = true;
this.clip4405._accProps.name = "Unselected Radio Button";
this.clip4405.tabIndex = 4405;
this.clip4405.tabEnabled = false;
this.clip4405.tabChildren = true;
this.stop();
Symbol 4406 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 4406 MovieClip Frame 2
this.text4407.tabIndex = 4407;
this.clip4408._accProps = new Object();
this.clip4408._accProps.forceSimple = true;
this.clip4408._accProps.name = "Unselected Radio Button";
this.clip4408.tabIndex = 4408;
this.clip4408.tabEnabled = false;
this.clip4408.tabChildren = true;
this.stop();
Symbol 4409 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 4409 MovieClip Frame 2
this.text4410.tabIndex = 4410;
this.clip4411._accProps = new Object();
this.clip4411._accProps.forceSimple = true;
this.clip4411._accProps.name = "Cross";
this.clip4411.tabIndex = 4411;
this.clip4411.tabEnabled = false;
this.clip4411.tabChildren = true;
this.clip4412._accProps = new Object();
this.clip4412._accProps.forceSimple = true;
this.clip4412._accProps.name = "Unselected Radio Button";
this.clip4412.tabIndex = 4412;
this.clip4412.tabEnabled = false;
this.clip4412.tabChildren = true;
this.stop();
Symbol 4413 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 4413 MovieClip Frame 2
this.text4414.tabIndex = 4414;
this.clip4415._accProps = new Object();
this.clip4415._accProps.forceSimple = true;
this.clip4415._accProps.name = "Unselected Radio Button";
this.clip4415.tabIndex = 4415;
this.clip4415.tabEnabled = false;
this.clip4415.tabChildren = true;
this.stop();
Symbol 4416 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 57158008-23Response", this);
Symbol 4416 MovieClip Frame 2
this.text4417.tabIndex = 4417;
this.clip4418._accProps = new Object();
this.clip4418._accProps.forceSimple = true;
this.clip4418._accProps.name = "Tick";
this.clip4418.tabIndex = 4418;
this.clip4418.tabEnabled = false;
this.clip4418.tabChildren = true;
this.text4419.tabIndex = 4419;
this.stop();
Symbol 4420 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 57158008-23Response", this);
Symbol 4420 MovieClip Frame 2
this.text4421.tabIndex = 4421;
this.clip4422._accProps = new Object();
this.clip4422._accProps.forceSimple = true;
this.clip4422._accProps.name = "Cross";
this.clip4422.tabIndex = 4422;
this.clip4422.tabEnabled = false;
this.clip4422.tabChildren = true;
this.text4423.tabIndex = 4423;
this.stop();
Symbol 4424 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 57158008-23Response", this);
Symbol 4424 MovieClip Frame 2
this.stop();
Symbol 4431 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 57158008-24Response", this);
Symbol 4431 MovieClip Frame 2
this.text4432.tabIndex = 4432;
this.stop();
Symbol 4433 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 4433 MovieClip Frame 2
this.text4434.tabIndex = 4434;
this.clip4435._accProps = new Object();
this.clip4435._accProps.forceSimple = true;
this.clip4435._accProps.name = "Cross";
this.clip4435.tabIndex = 4435;
this.clip4435.tabEnabled = false;
this.clip4435.tabChildren = true;
this.clip4436._accProps = new Object();
this.clip4436._accProps.forceSimple = true;
this.clip4436._accProps.name = "Unselected Radio Button";
this.clip4436.tabIndex = 4436;
this.clip4436.tabEnabled = false;
this.clip4436.tabChildren = true;
this.stop();
Symbol 4437 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 4437 MovieClip Frame 2
this.text4438.tabIndex = 4438;
this.clip4439._accProps = new Object();
this.clip4439._accProps.forceSimple = true;
this.clip4439._accProps.name = "Unselected Radio Button";
this.clip4439.tabIndex = 4439;
this.clip4439.tabEnabled = false;
this.clip4439.tabChildren = true;
this.stop();
Symbol 4440 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 4440 MovieClip Frame 2
this.text4441.tabIndex = 4441;
this.clip4442._accProps = new Object();
this.clip4442._accProps.forceSimple = true;
this.clip4442._accProps.name = "Cross";
this.clip4442.tabIndex = 4442;
this.clip4442.tabEnabled = false;
this.clip4442.tabChildren = true;
this.clip4443._accProps = new Object();
this.clip4443._accProps.forceSimple = true;
this.clip4443._accProps.name = "Unselected Radio Button";
this.clip4443.tabIndex = 4443;
this.clip4443.tabEnabled = false;
this.clip4443.tabChildren = true;
this.stop();
Symbol 4444 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 4444 MovieClip Frame 2
this.text4445.tabIndex = 4445;
this.clip4446._accProps = new Object();
this.clip4446._accProps.forceSimple = true;
this.clip4446._accProps.name = "Unselected Radio Button";
this.clip4446.tabIndex = 4446;
this.clip4446.tabEnabled = false;
this.clip4446.tabChildren = true;
this.stop();
Symbol 4447 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 4447 MovieClip Frame 2
this.text4448.tabIndex = 4448;
this.clip4449._accProps = new Object();
this.clip4449._accProps.forceSimple = true;
this.clip4449._accProps.name = "Cross";
this.clip4449.tabIndex = 4449;
this.clip4449.tabEnabled = false;
this.clip4449.tabChildren = true;
this.clip4450._accProps = new Object();
this.clip4450._accProps.forceSimple = true;
this.clip4450._accProps.name = "Unselected Radio Button";
this.clip4450.tabIndex = 4450;
this.clip4450.tabEnabled = false;
this.clip4450.tabChildren = true;
this.stop();
Symbol 4451 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 4451 MovieClip Frame 2
this.text4452.tabIndex = 4452;
this.clip4453._accProps = new Object();
this.clip4453._accProps.forceSimple = true;
this.clip4453._accProps.name = "Unselected Radio Button";
this.clip4453.tabIndex = 4453;
this.clip4453.tabEnabled = false;
this.clip4453.tabChildren = true;
this.stop();
Symbol 4454 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 4454 MovieClip Frame 2
this.text4455.tabIndex = 4455;
this.clip4456._accProps = new Object();
this.clip4456._accProps.forceSimple = true;
this.clip4456._accProps.name = "Tick";
this.clip4456.tabIndex = 4456;
this.clip4456.tabEnabled = false;
this.clip4456.tabChildren = true;
this.clip4457._accProps = new Object();
this.clip4457._accProps.forceSimple = true;
this.clip4457._accProps.name = "Unselected Radio Button";
this.clip4457.tabIndex = 4457;
this.clip4457.tabEnabled = false;
this.clip4457.tabChildren = true;
this.stop();
Symbol 4458 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 4458 MovieClip Frame 2
this.text4459.tabIndex = 4459;
this.clip4460._accProps = new Object();
this.clip4460._accProps.forceSimple = true;
this.clip4460._accProps.name = "Arrow";
this.clip4460.tabIndex = 4460;
this.clip4460.tabEnabled = false;
this.clip4460.tabChildren = true;
this.clip4461._accProps = new Object();
this.clip4461._accProps.forceSimple = true;
this.clip4461._accProps.name = "Unselected Radio Button";
this.clip4461.tabIndex = 4461;
this.clip4461.tabEnabled = false;
this.clip4461.tabChildren = true;
this.stop();
Symbol 4462 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 57158008-24Response", this);
Symbol 4462 MovieClip Frame 2
this.text4463.tabIndex = 4463;
this.clip4464._accProps = new Object();
this.clip4464._accProps.forceSimple = true;
this.clip4464._accProps.name = "Tick";
this.clip4464.tabIndex = 4464;
this.clip4464.tabEnabled = false;
this.clip4464.tabChildren = true;
this.text4465.tabIndex = 4465;
this.stop();
Symbol 4466 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 57158008-24Response", this);
Symbol 4466 MovieClip Frame 2
this.text4467.tabIndex = 4467;
this.clip4468._accProps = new Object();
this.clip4468._accProps.forceSimple = true;
this.clip4468._accProps.name = "Cross";
this.clip4468.tabIndex = 4468;
this.clip4468.tabEnabled = false;
this.clip4468.tabChildren = true;
this.text4469.tabIndex = 4469;
this.stop();
Symbol 4470 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 57158008-24Response", this);
Symbol 4470 MovieClip Frame 2
this.stop();
Symbol 4477 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 57158008-25Response", this);
Symbol 4477 MovieClip Frame 2
this.text4478.tabIndex = 4478;
this.stop();
Symbol 4479 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 4479 MovieClip Frame 2
this.text4480.tabIndex = 4480;
this.clip4481._accProps = new Object();
this.clip4481._accProps.forceSimple = true;
this.clip4481._accProps.name = "Cross";
this.clip4481.tabIndex = 4481;
this.clip4481.tabEnabled = false;
this.clip4481.tabChildren = true;
this.clip4482._accProps = new Object();
this.clip4482._accProps.forceSimple = true;
this.clip4482._accProps.name = "Unselected Radio Button";
this.clip4482.tabIndex = 4482;
this.clip4482.tabEnabled = false;
this.clip4482.tabChildren = true;
this.stop();
Symbol 4483 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 4483 MovieClip Frame 2
this.text4484.tabIndex = 4484;
this.clip4485._accProps = new Object();
this.clip4485._accProps.forceSimple = true;
this.clip4485._accProps.name = "Unselected Radio Button";
this.clip4485.tabIndex = 4485;
this.clip4485.tabEnabled = false;
this.clip4485.tabChildren = true;
this.stop();
Symbol 4486 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 4486 MovieClip Frame 2
this.text4487.tabIndex = 4487;
this.clip4488._accProps = new Object();
this.clip4488._accProps.forceSimple = true;
this.clip4488._accProps.name = "Cross";
this.clip4488.tabIndex = 4488;
this.clip4488.tabEnabled = false;
this.clip4488.tabChildren = true;
this.clip4489._accProps = new Object();
this.clip4489._accProps.forceSimple = true;
this.clip4489._accProps.name = "Unselected Radio Button";
this.clip4489.tabIndex = 4489;
this.clip4489.tabEnabled = false;
this.clip4489.tabChildren = true;
this.stop();
Symbol 4490 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 4490 MovieClip Frame 2
this.text4491.tabIndex = 4491;
this.clip4492._accProps = new Object();
this.clip4492._accProps.forceSimple = true;
this.clip4492._accProps.name = "Unselected Radio Button";
this.clip4492.tabIndex = 4492;
this.clip4492.tabEnabled = false;
this.clip4492.tabChildren = true;
this.stop();
Symbol 4493 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 4493 MovieClip Frame 2
this.text4494.tabIndex = 4494;
this.clip4495._accProps = new Object();
this.clip4495._accProps.forceSimple = true;
this.clip4495._accProps.name = "Cross";
this.clip4495.tabIndex = 4495;
this.clip4495.tabEnabled = false;
this.clip4495.tabChildren = true;
this.clip4496._accProps = new Object();
this.clip4496._accProps.forceSimple = true;
this.clip4496._accProps.name = "Unselected Radio Button";
this.clip4496.tabIndex = 4496;
this.clip4496.tabEnabled = false;
this.clip4496.tabChildren = true;
this.stop();
Symbol 4497 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 4497 MovieClip Frame 2
this.text4498.tabIndex = 4498;
this.clip4499._accProps = new Object();
this.clip4499._accProps.forceSimple = true;
this.clip4499._accProps.name = "Unselected Radio Button";
this.clip4499.tabIndex = 4499;
this.clip4499.tabEnabled = false;
this.clip4499.tabChildren = true;
this.stop();
Symbol 4500 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 4500 MovieClip Frame 2
this.text4501.tabIndex = 4501;
this.clip4502._accProps = new Object();
this.clip4502._accProps.forceSimple = true;
this.clip4502._accProps.name = "Tick";
this.clip4502.tabIndex = 4502;
this.clip4502.tabEnabled = false;
this.clip4502.tabChildren = true;
this.clip4503._accProps = new Object();
this.clip4503._accProps.forceSimple = true;
this.clip4503._accProps.name = "Unselected Radio Button";
this.clip4503.tabIndex = 4503;
this.clip4503.tabEnabled = false;
this.clip4503.tabChildren = true;
this.stop();
Symbol 4504 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 4504 MovieClip Frame 2
this.text4505.tabIndex = 4505;
this.clip4506._accProps = new Object();
this.clip4506._accProps.forceSimple = true;
this.clip4506._accProps.name = "Arrow";
this.clip4506.tabIndex = 4506;
this.clip4506.tabEnabled = false;
this.clip4506.tabChildren = true;
this.clip4507._accProps = new Object();
this.clip4507._accProps.forceSimple = true;
this.clip4507._accProps.name = "Unselected Radio Button";
this.clip4507.tabIndex = 4507;
this.clip4507.tabEnabled = false;
this.clip4507.tabChildren = true;
this.stop();
Symbol 4508 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 57158008-25Response", this);
Symbol 4508 MovieClip Frame 2
this.text4509.tabIndex = 4509;
this.clip4510._accProps = new Object();
this.clip4510._accProps.forceSimple = true;
this.clip4510._accProps.name = "Tick";
this.clip4510.tabIndex = 4510;
this.clip4510.tabEnabled = false;
this.clip4510.tabChildren = true;
this.text4511.tabIndex = 4511;
this.stop();
Symbol 4512 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 57158008-25Response", this);
Symbol 4512 MovieClip Frame 2
this.text4513.tabIndex = 4513;
this.clip4514._accProps = new Object();
this.clip4514._accProps.forceSimple = true;
this.clip4514._accProps.name = "Cross";
this.clip4514.tabIndex = 4514;
this.clip4514.tabEnabled = false;
this.clip4514.tabChildren = true;
this.text4515.tabIndex = 4515;
this.stop();
Symbol 4516 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 57158008-25Response", this);
Symbol 4516 MovieClip Frame 2
this.stop();
Symbol 4523 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 57158008-26Response", this);
Symbol 4523 MovieClip Frame 2
this.text4524.tabIndex = 4524;
this.stop();
Symbol 4525 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 4525 MovieClip Frame 2
this.text4526.tabIndex = 4526;
this.clip4527._accProps = new Object();
this.clip4527._accProps.forceSimple = true;
this.clip4527._accProps.name = "Cross";
this.clip4527.tabIndex = 4527;
this.clip4527.tabEnabled = false;
this.clip4527.tabChildren = true;
this.clip4528._accProps = new Object();
this.clip4528._accProps.forceSimple = true;
this.clip4528._accProps.name = "Unselected Radio Button";
this.clip4528.tabIndex = 4528;
this.clip4528.tabEnabled = false;
this.clip4528.tabChildren = true;
this.stop();
Symbol 4529 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 4529 MovieClip Frame 2
this.text4530.tabIndex = 4530;
this.clip4531._accProps = new Object();
this.clip4531._accProps.forceSimple = true;
this.clip4531._accProps.name = "Unselected Radio Button";
this.clip4531.tabIndex = 4531;
this.clip4531.tabEnabled = false;
this.clip4531.tabChildren = true;
this.stop();
Symbol 4532 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 4532 MovieClip Frame 2
this.text4533.tabIndex = 4533;
this.clip4534._accProps = new Object();
this.clip4534._accProps.forceSimple = true;
this.clip4534._accProps.name = "Cross";
this.clip4534.tabIndex = 4534;
this.clip4534.tabEnabled = false;
this.clip4534.tabChildren = true;
this.clip4535._accProps = new Object();
this.clip4535._accProps.forceSimple = true;
this.clip4535._accProps.name = "Unselected Radio Button";
this.clip4535.tabIndex = 4535;
this.clip4535.tabEnabled = false;
this.clip4535.tabChildren = true;
this.stop();
Symbol 4536 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 4536 MovieClip Frame 2
this.text4537.tabIndex = 4537;
this.clip4538._accProps = new Object();
this.clip4538._accProps.forceSimple = true;
this.clip4538._accProps.name = "Unselected Radio Button";
this.clip4538.tabIndex = 4538;
this.clip4538.tabEnabled = false;
this.clip4538.tabChildren = true;
this.stop();
Symbol 4539 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 4539 MovieClip Frame 2
this.text4540.tabIndex = 4540;
this.clip4541._accProps = new Object();
this.clip4541._accProps.forceSimple = true;
this.clip4541._accProps.name = "Tick";
this.clip4541.tabIndex = 4541;
this.clip4541.tabEnabled = false;
this.clip4541.tabChildren = true;
this.clip4542._accProps = new Object();
this.clip4542._accProps.forceSimple = true;
this.clip4542._accProps.name = "Unselected Radio Button";
this.clip4542.tabIndex = 4542;
this.clip4542.tabEnabled = false;
this.clip4542.tabChildren = true;
this.stop();
Symbol 4543 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 4543 MovieClip Frame 2
this.text4544.tabIndex = 4544;
this.clip4545._accProps = new Object();
this.clip4545._accProps.forceSimple = true;
this.clip4545._accProps.name = "Arrow";
this.clip4545.tabIndex = 4545;
this.clip4545.tabEnabled = false;
this.clip4545.tabChildren = true;
this.clip4546._accProps = new Object();
this.clip4546._accProps.forceSimple = true;
this.clip4546._accProps.name = "Unselected Radio Button";
this.clip4546.tabIndex = 4546;
this.clip4546.tabEnabled = false;
this.clip4546.tabChildren = true;
this.stop();
Symbol 4547 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 4547 MovieClip Frame 2
this.text4548.tabIndex = 4548;
this.clip4549._accProps = new Object();
this.clip4549._accProps.forceSimple = true;
this.clip4549._accProps.name = "Cross";
this.clip4549.tabIndex = 4549;
this.clip4549.tabEnabled = false;
this.clip4549.tabChildren = true;
this.clip4550._accProps = new Object();
this.clip4550._accProps.forceSimple = true;
this.clip4550._accProps.name = "Unselected Radio Button";
this.clip4550.tabIndex = 4550;
this.clip4550.tabEnabled = false;
this.clip4550.tabChildren = true;
this.stop();
Symbol 4551 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 4551 MovieClip Frame 2
this.text4552.tabIndex = 4552;
this.clip4553._accProps = new Object();
this.clip4553._accProps.forceSimple = true;
this.clip4553._accProps.name = "Unselected Radio Button";
this.clip4553.tabIndex = 4553;
this.clip4553.tabEnabled = false;
this.clip4553.tabChildren = true;
this.stop();
Symbol 4554 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 57158008-26Response", this);
Symbol 4554 MovieClip Frame 2
this.text4555.tabIndex = 4555;
this.clip4556._accProps = new Object();
this.clip4556._accProps.forceSimple = true;
this.clip4556._accProps.name = "Tick";
this.clip4556.tabIndex = 4556;
this.clip4556.tabEnabled = false;
this.clip4556.tabChildren = true;
this.text4557.tabIndex = 4557;
this.stop();
Symbol 4558 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 57158008-26Response", this);
Symbol 4558 MovieClip Frame 2
this.text4559.tabIndex = 4559;
this.clip4560._accProps = new Object();
this.clip4560._accProps.forceSimple = true;
this.clip4560._accProps.name = "Cross";
this.clip4560.tabIndex = 4560;
this.clip4560.tabEnabled = false;
this.clip4560.tabChildren = true;
this.text4561.tabIndex = 4561;
this.stop();
Symbol 4562 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 57158008-26Response", this);
Symbol 4562 MovieClip Frame 2
this.stop();
Symbol 4569 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 57158008-27Response", this);
Symbol 4569 MovieClip Frame 2
this.text4570.tabIndex = 4570;
this.stop();
Symbol 4571 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 4571 MovieClip Frame 2
this.text4572.tabIndex = 4572;
this.clip4573._accProps = new Object();
this.clip4573._accProps.forceSimple = true;
this.clip4573._accProps.name = "Cross";
this.clip4573.tabIndex = 4573;
this.clip4573.tabEnabled = false;
this.clip4573.tabChildren = true;
this.clip4574._accProps = new Object();
this.clip4574._accProps.forceSimple = true;
this.clip4574._accProps.name = "Unselected Radio Button";
this.clip4574.tabIndex = 4574;
this.clip4574.tabEnabled = false;
this.clip4574.tabChildren = true;
this.stop();
Symbol 4575 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 4575 MovieClip Frame 2
this.text4576.tabIndex = 4576;
this.clip4577._accProps = new Object();
this.clip4577._accProps.forceSimple = true;
this.clip4577._accProps.name = "Unselected Radio Button";
this.clip4577.tabIndex = 4577;
this.clip4577.tabEnabled = false;
this.clip4577.tabChildren = true;
this.stop();
Symbol 4578 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 4578 MovieClip Frame 2
this.text4579.tabIndex = 4579;
this.clip4580._accProps = new Object();
this.clip4580._accProps.forceSimple = true;
this.clip4580._accProps.name = "Cross";
this.clip4580.tabIndex = 4580;
this.clip4580.tabEnabled = false;
this.clip4580.tabChildren = true;
this.clip4581._accProps = new Object();
this.clip4581._accProps.forceSimple = true;
this.clip4581._accProps.name = "Unselected Radio Button";
this.clip4581.tabIndex = 4581;
this.clip4581.tabEnabled = false;
this.clip4581.tabChildren = true;
this.stop();
Symbol 4582 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 4582 MovieClip Frame 2
this.text4583.tabIndex = 4583;
this.clip4584._accProps = new Object();
this.clip4584._accProps.forceSimple = true;
this.clip4584._accProps.name = "Unselected Radio Button";
this.clip4584.tabIndex = 4584;
this.clip4584.tabEnabled = false;
this.clip4584.tabChildren = true;
this.stop();
Symbol 4585 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 4585 MovieClip Frame 2
this.text4586.tabIndex = 4586;
this.clip4587._accProps = new Object();
this.clip4587._accProps.forceSimple = true;
this.clip4587._accProps.name = "Tick";
this.clip4587.tabIndex = 4587;
this.clip4587.tabEnabled = false;
this.clip4587.tabChildren = true;
this.clip4588._accProps = new Object();
this.clip4588._accProps.forceSimple = true;
this.clip4588._accProps.name = "Unselected Radio Button";
this.clip4588.tabIndex = 4588;
this.clip4588.tabEnabled = false;
this.clip4588.tabChildren = true;
this.stop();
Symbol 4589 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 4589 MovieClip Frame 2
this.text4590.tabIndex = 4590;
this.clip4591._accProps = new Object();
this.clip4591._accProps.forceSimple = true;
this.clip4591._accProps.name = "Arrow";
this.clip4591.tabIndex = 4591;
this.clip4591.tabEnabled = false;
this.clip4591.tabChildren = true;
this.clip4592._accProps = new Object();
this.clip4592._accProps.forceSimple = true;
this.clip4592._accProps.name = "Unselected Radio Button";
this.clip4592.tabIndex = 4592;
this.clip4592.tabEnabled = false;
this.clip4592.tabChildren = true;
this.stop();
Symbol 4593 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 4593 MovieClip Frame 2
this.text4594.tabIndex = 4594;
this.clip4595._accProps = new Object();
this.clip4595._accProps.forceSimple = true;
this.clip4595._accProps.name = "Cross";
this.clip4595.tabIndex = 4595;
this.clip4595.tabEnabled = false;
this.clip4595.tabChildren = true;
this.clip4596._accProps = new Object();
this.clip4596._accProps.forceSimple = true;
this.clip4596._accProps.name = "Unselected Radio Button";
this.clip4596.tabIndex = 4596;
this.clip4596.tabEnabled = false;
this.clip4596.tabChildren = true;
this.stop();
Symbol 4597 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 4597 MovieClip Frame 2
this.text4598.tabIndex = 4598;
this.clip4599._accProps = new Object();
this.clip4599._accProps.forceSimple = true;
this.clip4599._accProps.name = "Unselected Radio Button";
this.clip4599.tabIndex = 4599;
this.clip4599.tabEnabled = false;
this.clip4599.tabChildren = true;
this.stop();
Symbol 4600 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 57158008-27Response", this);
Symbol 4600 MovieClip Frame 2
this.text4601.tabIndex = 4601;
this.clip4602._accProps = new Object();
this.clip4602._accProps.forceSimple = true;
this.clip4602._accProps.name = "Tick";
this.clip4602.tabIndex = 4602;
this.clip4602.tabEnabled = false;
this.clip4602.tabChildren = true;
this.text4603.tabIndex = 4603;
this.stop();
Symbol 4604 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 57158008-27Response", this);
Symbol 4604 MovieClip Frame 2
this.text4605.tabIndex = 4605;
this.clip4606._accProps = new Object();
this.clip4606._accProps.forceSimple = true;
this.clip4606._accProps.name = "Cross";
this.clip4606.tabIndex = 4606;
this.clip4606.tabEnabled = false;
this.clip4606.tabChildren = true;
this.text4607.tabIndex = 4607;
this.stop();
Symbol 4608 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 57158008-27Response", this);
Symbol 4608 MovieClip Frame 2
this.stop();