Frame 1
_accProps = new Object();
_accProps.silent = false;
_accProps.name = "";
Stage.showMenu = false;
function APIQW() {
this.loading = true;
this.sending = false;
this.finished = false;
this.preloaders = new Array();
}
APIQW.prototype.isLoading = function () {
return(this.loading);
};
APIQW.prototype.isSending = function () {
return(this.sending);
};
APIQW.prototype.isFinished = function () {
return(this.finished);
};
APIQW.prototype.registerPreloader = function (preloader) {
this.preloaders.push(preloader);
};
APIQW.prototype.isPreloadCompleted = function () {
var i = 0;
while (i < this.preloaders.length) {
if (this.preloaders[i].isLoaded() == false) {
return(false);
}
i++;
}
return(true);
};
this.theAPI = new APIQW();
this.getAPIQWObject = function () {
return(this.theAPI);
};
function Debug() {
}
Debug.prototype.alert = function (alertString) {
};
_global.debugger = new Debug();
imageRatio = li._width / li._height;
maxRectangleWidth = Stage.width;
maxRectangleHeight = Stage.height;
rectangleRatio = maxRectangleWidth / maxRectangleHeight;
widthRatio = li._width / maxRectangleWidth;
heightRatio = li._height / maxRectangleHeight;
if (heightRatio > widthRatio) {
li._height = maxRectangleHeight;
li._width = li._width / heightRatio;
} else {
li._width = maxRectangleWidth;
li._height = li._height / widthRatio;
}
li._x = Stage.width / 2;
li._y = Stage.height / 2;
var aStartTime = new Date().getTime();
Frame 3
if ((new Date().getTime() > (aStartTime + 1000)) && (this._framesloaded > this._currentframe)) {
this.gotoAndPlay(this._currentframe + 1);
} else {
this.gotoAndPlay(this._currentframe - 1);
}
Frame 4
this.clip3002._accProps = new Object();
this.clip3002._accProps.forceSimple = true;
this.clip3002._accProps.name = "";
this.clip3002.tabIndex = 3002;
this.clip3002.tabEnabled = false;
this.clip3002.tabChildren = true;
this.text3006.tabIndex = 3006;
Frame 5
this.waitForFrame = 0;
Frame 6
this.waitForFrame = 0;
if (this.waitForFrame == 0) {
this.waitForFrame = this._totalframes;
} else {
this.waitForFrame = this.waitForFrame + this._currentFrame;
}
if (((this.waitMillis == undefined) || (this.waitMillis == 0)) || (this.waitMillis == null)) {
this.waitMillis = getTimer();
}
if ((this._framesloaded >= this.waitForFrame) && (getTimer() > (this.waitMillis + 1000))) {
this.gotoAndPlay((this._currentframe+1));
} else {
this.gotoAndPlay((this._currentframe-1));
}
Frame 7
function ResponseObject(theTimeLine, resMech) {
if ((System.capabilities.os.toLowerCase().substring(0, 7) == "symbian") || (System.capabilities.os.toLowerCase().substring(0, 7) == "netfront")) {
FSCommand2("fullscreen", true);
FSCommand2("SetQuality", "low");
_quality = "LOW";
}
this.timeLine = theTimeLine;
this.pXMLTree = new XML();
this.pCurrentNode = this.pXMLTree;
this.navForwardDirection = true;
this.nameValuePairs = new Array();
this.responseMechanism = resMech;
if (this.responseMechanism.toLowerCase() == "questionmark") {
this.theSCORMCOMM = new SCORMcomms();
var scormObjects = new Array();
scormObjects.push("QMPDisableSubmit");
this.theSCORMCOMM.queueFS(scormObjects);
scormObjects = new Array();
scormObjects.push("CMIInitialize");
this.theSCORMCOMM.queueFS(scormObjects);
} else if (this.responseMechanism.toLowerCase() == "scorm") {
this.theSCORMCOMM = new SCORMcomms();
this.theSCORMCOMM.init();
}
this.makeAccessible = Accessibility.isActive();
this.isFeedback = false;
setInterval(this, "checkTimeAllowedTask", 100);
}
function Timer() {
this.totaltime = 0;
this.timerOn = false;
}
function SCORMcomms() {
this.fsqueue = new Array();
setInterval(this, "sendComm", 500);
}
function Branch(xmlNode) {
this.newTarget = xmlNode.attributes.target;
}
this.theAPI.loading = false;
ResponseObject.prototype.doAccessibilityUpdate = function () {
if (this.makeAccessible) {
Accessibility.updateProperties();
}
};
ResponseObject.prototype.findNode = function (theName, ident) {
var i = 0;
while (i < this.pCurrentNode.childNodes.length) {
if ((this.pCurrentNode.childNodes[i].attributes.ident_ref == ident) && (this.pCurrentNode.childNodes[i].nodeName == theName)) {
this.pCurrentNode = this.pCurrentNode.childNodes[i];
return(true);
}
i++;
}
return(false);
};
ResponseObject.prototype.makeNode = function (theName, ident) {
var newNode = this.pXMLTree.createElement(theName);
newNode.attributes.ident_ref = ident;
this.pCurrentNode.appendChild(newNode);
this.pCurrentNode = newNode;
};
ResponseObject.prototype.enterMajorElement = function (theName, ident) {
debugger.alert((("Enter " + theName) + " ") + ident);
if (!this.findNode(theName, ident)) {
this.makeNode(theName, ident);
this.pCurrentNode.timer = new Timer();
if (theName == "item_result") {
this.pCurrentNode.allowForward = true;
this.pCurrentNode.allowUnansweredForward = true;
this.pCurrentNode.autoForward = false;
}
}
};
ResponseObject.prototype.enterResponse = function (ident) {
if (!this.findNode("response", ident)) {
this.makeNode("response", ident);
}
};
ResponseObject.prototype.exit = function () {
if (this.pCurrentNode.nodeName != "response") {
debugger.alert((("Exit from " + this.pCurrentNode.nodeName) + ",") + this.timeLine._currentFrame);
}
this.pCurrentNode = this.pCurrentNode.parentNode;
};
ResponseObject.prototype.startTimer = function (timePermitted) {
this.pCurrentNode.timer.startTimer(timePermitted);
};
ResponseObject.prototype.stopTimer = function () {
if (this.pCurrentNode.timer != null) {
this.pCurrentNode.timer.stopTimer();
var i = 0;
while (i < this.pCurrentNode.childNodes.length) {
if (this.pCurrentNode.childNodes[i].nodeName == "duration") {
this.pCurrentNode.childNodes[i].removeNode();
}
i++;
}
var newNode = this.pXMLTree.createElement("duration");
var textNode = this.pXMLTree.createTextNode(this.pCurrentNode.timer.getTimeElapsedString());
newNode.appendChild(textNode);
this.pCurrentNode.appendChild(newNode);
}
};
ResponseObject.prototype.toString = function () {
return(this.pCurrentNode.toString());
};
ResponseObject.prototype.moveHead = function (numberFrames) {
this.timeLine.gotoAndPlay(this.timeLine._currentFrame + numberFrames);
};
ResponseObject.prototype.startStopTimer = function (timePermitted) {
if (this.navForwardDirection) {
this.startTimer(timePermitted);
} else {
this.stopTimer();
}
this.jumpToNextDestination();
};
ResponseObject.prototype.stopStartTimer = function (timePermitted) {
if (this.navForwardDirection) {
this.stopTimer();
} else {
this.startTimer(timePermitted);
}
this.jumpToNextDestination();
};
ResponseObject.prototype.checkTimeAllowed = function (skipThisNode) {
this.isFeedback = skipThisNode;
this.checkTimeAllowedTask();
};
ResponseObject.prototype.checkTimeAllowedTask = function () {
var targetNode = this.pCurrentNode;
if (this.isFeedback) {
targetNode = targetNode.parentNode;
}
while (targetNode != null) {
if (targetNode.timer.isTimeExpired()) {
this.moveHead(2);
return(undefined);
}
this.setForwardDirection(true);
targetNode = targetNode.parentNode;
}
};
ResponseObject.prototype.getTimeElapsed = function () {
return(this.pCurrentNode.timer.getTimeElapsed());
};
ResponseObject.prototype.getTimeRemaining = function () {
return(this.pCurrentNode.timer.getTimeRemaining());
};
ResponseObject.prototype.getTimeLine = function () {
return(this.timeLine);
};
ResponseObject.prototype.getCurrentIdent = function () {
return(this.pCurrentNode.attributes.ident_ref);
};
ResponseObject.prototype.getRootNode = function () {
return(this.pXMLTree);
};
ResponseObject.prototype.getResponseMechanism = function () {
return(this.responseMechanism);
};
Timer.prototype.startTimer = function (timePermitted) {
this.timeAllowed = timePermitted;
if (this.timerOn) {
} else {
this.startTime = getTimer();
this.timerOn = true;
}
};
Timer.prototype.stopTimer = function () {
if (this.timerOn) {
this.totaltime = (this.totaltime + getTimer()) - this.startTime;
this.startTime = 0;
this.timerOn = false;
}
};
Timer.prototype.getTimeElapsedString = function () {
if (this.timerOn) {
return(("P" + (((this.totaltime + getTimer()) - this.startTime) / 1000)) + "S");
}
return(("P" + (this.totaltime / 1000)) + "S");
};
Timer.prototype.getTimeElapsed = function () {
if (this.timerOn) {
return(((this.totaltime + getTimer()) - this.startTime) / 1000);
}
return(this.totaltime / 1000);
};
Timer.prototype.isTimeExpired = function () {
if ((this.timeAllowed >= 0) && ((((this.totaltime + getTimer()) - this.startTime) / 1000) >= this.timeAllowed)) {
return(true);
}
return(false);
};
Timer.prototype.getTimeRemaining = function () {
return(this.timeAllowed - (((this.totaltime + getTimer()) - this.startTime) / 1000));
};
SCORMcomms.prototype.init = function () {
var setStatus = new Array();
setStatus.push("LMSSetValue");
setStatus.push("cmi.core.lesson_status");
setStatus.push("incomplete");
this.queueFS(setStatus);
};
SCORMcomms.prototype.queueFS = function (newComm) {
this.fsqueue.push(newComm);
};
SCORMcomms.prototype.sendComm = function () {
if (this.fsqueue.length > 0) {
var comm = this.fsqueue.shift();
var command = comm.shift();
var varsString = "";
var theLength = comm.length;
var i = 0;
while (i < theLength) {
if (command == "MM_cmiSendInteractionInfo") {
varsString = varsString + comm.shift().split(";").join(":");
if (i < (theLength-1)) {
varsString = varsString + ";";
}
} else {
varsString = varsString + escape(comm.shift());
if (i < (theLength-1)) {
varsString = varsString + "&";
}
}
i++;
}
if (command == "QMPDisableSubmit") {
getURL ("javascript:void(document.forms[0].qm_SUBMIT.disabled=true)");
} else if (command == "QMPEnableSubmit") {
getURL ("javascript:void(document.forms[0].qm_SUBMIT.disabled=false)");
} else {
fscommand (command, varsString);
}
}
};
ResponseObject.prototype.queueFSCommand = function (stringArray) {
this.theSCORMCOMM.queueFS(stringArray);
};
ResponseObject.prototype.createRandomization = function (sectionID, numberOfChildren, numberToSelect) {
if (this.getPairValue(sectionID + "-randomizer") == null) {
var randomSelections = new Array();
if (Number(numberToSelect) >= Number(numberOfChildren)) {
return(undefined);
}
var i = 0;
while (i < Number(numberOfChildren)) {
randomSelections[i] = "0";
i++;
}
var i = 0;
while (i < Number(numberToSelect)) {
var theIndex;
do {
theIndex = Math.floor(Math.random() * Number(numberOfChildren));
} while (randomSelections[theIndex] == "1");
randomSelections[theIndex] = "1";
i++;
}
this.setPair(sectionID + "-randomizer", randomSelections);
}
};
ResponseObject.prototype.isRandomlyChosen = function (parentID, theIndex) {
var randomSelections = this.getPairValue(parentID + "-randomizer");
if (randomSelections == null) {
return(true);
}
if (randomSelections[Number(theIndex)] == "1") {
return(true);
}
return(false);
};
Branch.prototype.activate = function () {
_global.resp.branch(this.newTarget);
};
ResponseObject.prototype.branch = function (newID) {
if (this.navForwardDirection) {
this.setPair(this.getCurrentIdent() + "-forwardbranch", newID);
}
};
ResponseObject.prototype.checkExitBranching = function (itemID, frames, parentID, theIndex, theType) {
if (!this.isRandomlyChosen(parentID, theIndex)) {
if (!this.navForwardDirection) {
this.moveHead(frames * -1);
return(undefined);
}
}
if ((theType == "section") || (theType == "assessment")) {
this.moveHead(3);
return(undefined);
}
if (this.navForwardDirection && (this.getPairValue(itemID + "-forwardbranch") != null)) {
this.setPair("originBranch", itemID);
this.setPair("seekBranch", this.removePair(itemID + "-forwardbranch"));
this.moveHead(3);
} else if ((!this.navForwardDirection) && (this.getPairValue("seekBranch") != null)) {
if (itemID == this.getPairValue("seekBranch")) {
this.removePair("seekBranch");
this.moveHead(3);
} else {
this.moveHead(frames * -1);
}
} else {
this.moveHead(3);
}
};
ResponseObject.prototype.checkEntryBranching = function (itemID, frames, parentID, theIndex, theType) {
if (!this.isRandomlyChosen(parentID, theIndex)) {
if (this.navForwardDirection) {
this.moveHead(frames);
return(undefined);
}
}
if ((theType == "section") || (theType == "assessment")) {
this.moveHead(3);
return(undefined);
}
if (this.navForwardDirection && (this.getPairValue("seekBranch") != null)) {
if (itemID == this.getPairValue("seekBranch")) {
this.removePair("seekBranch");
this.setPair(itemID + "-backbranch", this.removePair("originBranch"));
this.moveHead(3);
} else {
this.moveHead(frames);
}
} else if ((!this.navForwardDirection) && (this.getPairValue(itemID + "-backbranch") != null)) {
this.setPair("seekbranch", this.removePair(itemID + "-backbranch"));
this.moveHead(3);
} else {
this.moveHead(3);
}
};
ResponseObject.prototype.setPair = function (theName, theValue) {
this.nameValuePairs[theName] = theValue;
};
ResponseObject.prototype.getPairValue = function (theName) {
return(this.nameValuePairs[theName]);
};
ResponseObject.prototype.removePair = function (theName) {
var tempVal = this.nameValuePairs[theName];
this.nameValuePairs[theName] = null;
return(tempVal);
};
ResponseObject.prototype.getParameter = function (theVariableName) {
if (((theVariableName.substring(0, 1) == "$") && (this.getScore != null)) && (this.getScore != undefined)) {
return(this.getScore(theVariableName.substring(1, (theVariableName.length-1))));
}
return(theVariableName);
};
ResponseObject.prototype.setRandomLocations = function (theMovieClip, theSpaceInterval, isHorizontal) {
var movieClips = new Array();
for (name in theMovieClip) {
movieClips.push(name);
}
var i = 0;
while (i < movieClips.length) {
var name = movieClips[i];
if (isHorizontal) {
theMovieClip[name]._x = theMovieClip[name]._x - (theSpaceInterval * ((movieClips.length-1) - i));
} else {
theMovieClip[name]._y = theMovieClip[name]._y - (theSpaceInterval * ((movieClips.length-1) - i));
}
i++;
}
if (this.getPairValue(movieClips[0]) == null) {
var theCount = 0;
while (movieClips.length > 0) {
var chooseRandom = Math.floor(Math.random() * movieClips.length);
this.setPair(movieClips[chooseRandom], theSpaceInterval * theCount);
movieClips.splice(chooseRandom, 1);
theCount++;
}
}
for (name in theMovieClip) {
if (isHorizontal) {
theMovieClip[name]._x = theMovieClip[name]._x + this.getPairValue(name);
} else {
theMovieClip[name]._y = theMovieClip[name]._y + this.getPairValue(name);
}
}
return(false);
};
ResponseObject.prototype.randomizeClipOrderHorizontally = function (theMovieClip, theWidth) {
this.setRandomLocations(theMovieClip, theWidth, true);
return(false);
};
ResponseObject.prototype.randomizeClipOrderVertically = function (theMovieClip, theHeight) {
this.setRandomLocations(theMovieClip, theHeight, false);
return(false);
};
ResponseObject.prototype.completeAnswersXML = function (xmlNode) {
var i = 0;
while (i < xmlNode.childNodes.length) {
if (xmlNode.childNodes[i].nodeName == "response") {
var answerArray = xmlNode.childNodes[i].responseDetails.getResponses();
var j = 1;
while (j < answerArray.length) {
var newNode = this.pXMLTree.createElement("response_value");
var textNode = this.pXMLTree.createTextNode(answerArray[j]);
newNode.appendChild(textNode);
xmlNode.childNodes[i].appendChild(newNode);
j++;
}
} else {
this.completeAnswersXML(xmlNode.childNodes[i]);
}
i++;
}
};
ResponseObject.prototype.createContext = function () {
var str1 = "<generic_identifier><type_label>";
var str2 = "</type_label><identifier_string>";
var str3 = "</identifier_string></generic_identifier>";
var gi1 = "";
if (ipadd != null) {
gi1 = (((str1 + "IP") + str2) + ipadd) + str3;
}
var gi2 = "";
if (browserstring != null) {
gi2 = (((str1 + "Browser") + str2) + browserstring) + str3;
}
var gi3 = "";
if (serverdate != null) {
gi3 = (((str1 + "Server Date") + str2) + serverdate) + str3;
}
var gi4 = "";
if (servertime != null) {
gi4 = (((str1 + "Server Time") + str2) + servertime) + str3;
}
var gi5 = "";
if (countryguess != null) {
gi5 = (((str1 + "Country Guess") + str2) + countryguess) + str3;
}
var gi6 = "";
if (sourceid != null) {
gi6 = (((str1 + "Source ID") + str2) + sourceid) + str3;
}
var gi7 = ((((str1 + "System Language") + str2) + System.capabilities.language) + str3);
var gi8 = ((((str1 + "OS") + str2) + System.capabilities.os) + str3);
var gi9 = ((((((str1 + "Scale") + str2) + theMainTimeline._xscale) + "x") + theMainTimeline._yscale) + str3);
var gi10 = ((((((str1 + "Screen Res") + str2) + System.capabilities.screenResolutionX) + "x") + System.capabilities.screenResolutionY) + str3);
var gi11 = ((((str1 + "Version") + str2) + System.capabilities.version) + str3);
var gi12 = ((((str1 + "Client Time") + str2) + new Date().toString()) + str3);
var gi13 = ((((str1 + "Source URL ") + str2) + _root._url) + str3);
return(((((((((((((("<context>" + gi1) + gi2) + gi3) + gi4) + gi5) + gi6) + gi7) + gi8) + gi9) + gi10) + gi11) + gi12) + gi13) + "</context>");
};
ResponseObject.prototype.setupResponseSending = function () {
this.serverResponse = new XML();
this.attempts = 0;
this.newLineString = "<br/>";
if (this.timeLine.tfNewfield == null) {
this.timeLine.createTextField("tfNewfield", 1, 0, 0, this.timeLine._width / 2, this.timeLine._height);
this.timeLine.tfNewfield.html = true;
this.timeLine.tfNewfield.multiline = true;
this.timeLine.tfNewfield.selectable = true;
this.timeLine.tfNewfield.wordWrap = true;
this.timeLine.tfNewfield.background = true;
this.timeLine.tfNewfield.backgroundColor = 16777215 /* 0xFFFFFF */;
this.timeLine.tfNewfield.border = true;
this.timeLine.tfNewfiled.borderColor = 0;
this.timeLine.tfNewfield.htmlText = "Sending Results To Server Status: " + this.newLineString;
this.timeLine.tfNewfield._visible = false;
}
this.completeAnswersXML(this.getRootNode());
this.xmlsend = new XML((("<result>" + this.pXMLTree.toString()) + this.createContext()) + "</result>");
this.timeLine.tfNewfield.htmlText = (("Attempt " + this.attempts) + this.newLineString) + this.timeLine.tfNewfield.htmlText;
this.timeLine.stop();
if ((this.timeLine.sendURL == null) || (this.timeLine.sendURL == "")) {
this.timeLine.tfNewfield._visible = true;
this.timeLine.tfNewfield.htmlText = ("The sendURL variable was empty - there was nowhere to send your responses. Your responses have not been saved. " + this.newLineString) + this.timeLine.tfNewfield.htmlText;
return(false);
}
this.theAPI.sending = true;
this.resendInterval = setInterval(this, "resend", 1 * 1000);
return(true);
};
ResponseObject.prototype.resend = function () {
clearInterval(_global.resp.resendInterval);
if (this.timeLine.tfNewfield.htmlText.length > 3000) {
this.timeLine.tfNewfield.htmlText = "";
}
this.timeLine.tfNewfield.htmlText = ("Problem sending results. Will continue trying indefinitely. Please check the internet connection and the availabilty of the server. " + this.newLineString) + this.timeLine.tfNewfield.htmlText;
this.attempts++;
if (this.attempts == 3) {
this.timeLine.tfNewfield._visible = true;
}
this.timeLine.tfNewfield.htmlText = (("Attempt " + this.attempts) + this.newLineString) + this.timeLine.tfNewfield.htmlText;
var randTimeString = ("&r=" + getTimer());
if (((this.attempts % 2) == 0) && (this.timeLine.altSendURL != null)) {
this.timeLine.tfNewfield.htmlText = (((("Sending results to " + this.timeLine.altSendURL) + randTimeString) + " ") + this.newLineString) + this.timeLine.tfNewfield.htmlText;
this.xmlsend.sendAndLoad(this.timeLine.altSendURL + randTimeString, this.serverResponse, "POST");
} else {
this.timeLine.tfNewfield.htmlText = (((("Sending results to " + this.timeLine.sendURL) + randTimeString) + " ") + this.newLineString) + this.timeLine.tfNewfield.htmlText;
this.xmlsend.sendAndLoad(this.timeLine.sendURL + randTimeString, this.serverResponse, "POST");
}
this.serverResponse.onLoad = function (isSuccess) {
clearInterval(_global.resp.timeOutID);
if (isSuccess) {
_global.resp.timeLine.tfNewfield.htmlText = ("OnLoad Success " + this.newLineString) + this.timeLine.tfNewfield.htmlText;
_global.resp.timeLine.tfNewfield._visible = false;
_global.resp.theAPI.sending = false;
_global.resp.timeLine.play();
_global.resp.serverResponse.onLoad = null;
} else {
_global.resp.timeLine.tfNewfield.htmlText = ("OnLoad Failure " + this.newLineString) + this.timeLine.tfNewfield.htmlText;
_global.resp.resendInterval = setInterval(_global.resp, "resend", 5 * 1000);
}
};
this.setSendLoadTimeout();
};
ResponseObject.prototype.setSendLoadTimeout = function () {
this.timeOutID = setInterval(this, "timeOut", 30 * 1000);
};
ResponseObject.prototype.timeOut = function () {
clearInterval(this.timeOutID);
this.serverResponse.onLoad = null;
this.timeLine.tfNewfield.htmlText = ("Timeout (30 Seconds) " + this.newLineString) + this.timeLine.tfNewfield.htmlText;
this.resendInterval = setInterval(this, "resend", 5 * 1000);
};
function ButtonController(theNode, groupName, maxNumber, minNumber) {
this.responseNode = theNode;
this.pGroupName = groupName;
this.pMaxNumber = maxNumber;
this.pMinNumber = minNumber;
this.pButtonIDList = new Array();
this.currentAnswers = new Array();
}
function FibController(theNode, groupName) {
this.responseNode = theNode;
this.pGroupName = groupName;
this.textObjs = new Array();
this.minChars = new Array();
this.currentAnswers = new Array();
}
function FlashController(theNode, groupName, theFlashObj) {
this.responseNode = theNode;
this.pGroupName = groupName;
this.flashObj = theFlashObj;
this.currentAnswers = new Array();
}
ResponseObject.prototype.handleItemNav = function (i) {
if (this.pCurrentNode.buttonArray[i][2] == "nextQuestion") {
this.jumpToNextQuestion();
return(true);
}
if (this.pCurrentNode.buttonArray[i][2] == "prevQuestion") {
this.jumpToPrevQuestion();
return(true);
}
return(false);
};
ResponseObject.prototype.jumpToNextQuestion = function () {
this.setForwardDirection(true);
this.exitQuestion();
};
ResponseObject.prototype.jumpToPrevQuestion = function () {
this.setForwardDirection(false);
this.exitQuestion();
};
ResponseObject.prototype.exitQuestion = function () {
this.moveHead(2);
};
ResponseObject.prototype.bypassQuestion = function () {
this.moveHead(3);
};
ResponseObject.prototype.jumpToNextDestination = function () {
if (this.navForwardDirection) {
this.moveHead(1);
} else {
this.moveHead(-7);
}
};
ResponseObject.prototype.majorElementEnter = function (theName, theID) {
if (this.navForwardDirection) {
this.enterMajorElement(theName, theID);
} else {
this.exit();
}
};
ResponseObject.prototype.majorElementExit = function (theName, theID) {
if (this.navForwardDirection) {
this.exit();
} else {
this.enterMajorElement(theName, theID);
}
};
ResponseObject.prototype.setAllowForward = function (booleanVal) {
this.pCurrentNode.allowForward = booleanVal;
};
ResponseObject.prototype.setAllowUnansweredForward = function (booleanVal) {
this.pCurrentNode.allowUnansweredForward = booleanVal;
};
ResponseObject.prototype.setAutoForward = function (booleanVal) {
this.pCurrentNode.autoForward = booleanVal;
};
ResponseObject.prototype.processFullyAnswered = function () {
if (this.pCurrentNode.autoForward) {
if (this.isFullyAnswered()) {
this.jumpToNextQuestion();
return(true);
}
}
this.showHideNextButton();
return(true);
};
ResponseObject.prototype.showHideNextButton = function () {
if (this.pCurrentNode.allowForward) {
if (!this.pCurrentNode.allowUnansweredForward) {
if (this.isFullyAnswered()) {
this.setNextButtonVisible(true);
return(true);
}
this.setNextButtonVisible(false);
return(true);
}
}
};
ResponseObject.prototype.setNextButtonVisible = function (theVisibility) {
var i = 0;
while (i < this.pCurrentNode.buttonArray.length) {
if (this.pCurrentNode.buttonArray[i][1] == "itemnav") {
if (this.pCurrentNode.buttonArray[i][2] == "nextQuestion") {
this.pCurrentNode.buttonArray[i][0].setVisible(theVisibility);
this.timeline[this.pCurrentNode.buttonArray[i][0]._name + "text"]._visible = theVisibility;
return(true);
}
}
i++;
}
};
ResponseObject.prototype.enterVisible = function (thePageName) {
if (myBackground != null) {
myBackground.refreshColors();
}
if ((flashtrack != null) && (flashtrack != "")) {
new XML().load((((flashtrack + "?cPg=") + thePageName) + "&sa=true&rnd=") + random(10000));
}
this.moveHead(1);
this.doAccessibilityUpdate();
};
ResponseObject.prototype.isFullyAnswered = function () {
var i = 0;
while (i < this.pCurrentNode.childNodes.length) {
if (this.pCurrentNode.childNodes[i].nodeName == "response") {
if (this.pCurrentNode.childNodes[i].responseDetails != null) {
if (!this.pCurrentNode.childNodes[i].responseDetails.isFullyAnswered()) {
return(false);
}
}
}
i++;
}
return(true);
};
ResponseObject.prototype.setForwardDirection = function (booleanVal) {
this.navForwardDirection = booleanVal;
};
ResponseObject.prototype.isForwardDirection = function () {
return(this.navForwardDirection);
};
ResponseObject.prototype.registerButton = function (theButton, theGroup, theID, theTabOrder) {
theButton.tabIndex = theTabOrder;
if (theGroup == "itemnav") {
} else {
this.addButtonToResponse(theButton, theGroup, theID);
}
this.addButtonToItem(theButton, theGroup, theID);
};
ResponseObject.prototype.addButtonToItem = function (theButton, theGroup, theID) {
if (this.pCurrentNode.buttonArray == null) {
this.testArray = new Array();
this.pCurrentNode.buttonArray = new Array();
}
var makenewarray = false;
var i = 0;
while (i < this.pCurrentNode.buttonArray.length) {
if (this.pCurrentNode.buttonArray[i][0] == theButton) {
return(true);
}
if (this.pCurrentNode.buttonArray[i] == null) {
makenewarray = true;
}
i++;
}
this.pCurrentNode.buttonArray.push([theButton, theGroup, theID]);
};
ResponseObject.prototype.beenHit = function (theButton) {
var i = 0;
while (i < this.pCurrentNode.buttonArray.length) {
if (this.pCurrentNode.buttonArray[i][0] == theButton) {
if (this.pCurrentNode.buttonArray[i][1] == "itemnav") {
if (this.handleItemNav(i)) {
return(true);
}
} else {
this.recordResponse(this.pCurrentNode.buttonArray[i]);
this.processFullyAnswered();
return(true);
}
}
i++;
}
};
ResponseObject.prototype.registerResponseLabelRenderChoice = function (theGroup, maxChoice, minChoice) {
this.enterResponse(theGroup);
if (this.pCurrentNode.responseDetails == null) {
this.pCurrentNode.responseDetails = new ButtonController(this.pCurrentNode, theGroup, maxChoice, minChoice);
} else {
this.pCurrentNode.responseDetails.pButtonIDList = new Array();
}
this.exit();
};
ResponseObject.prototype.addButtonToResponse = function (theButton, theGroup, theID) {
this.enterResponse(theGroup);
this.pCurrentNode.responseDetails.registerButton(theButton, theID);
this.exit();
};
ResponseObject.prototype.recordResponse = function (buttonInfoArray) {
this.enterResponse(buttonInfoArray[1]);
this.pCurrentNode.responseDetails.beenHit(buttonInfoArray[0], buttonInfoArray[2]);
this.exit();
};
ButtonController.prototype.registerButton = function (theButton, theID) {
if (!this.containsButton(theID)) {
this.pButtonIDList.push([theButton, theID]);
}
if (this.isOn(theID)) {
this.switchOn(theID);
}
};
ButtonController.prototype.containsButton = function (theID) {
var k = 0;
while (k < this.pButtonIDList.length) {
if (this.pButtonIDList[k][1] == theID) {
return(true);
}
k++;
}
return(false);
};
ButtonController.prototype.beenHit = function (theButton, theID) {
if (this.isOn(theID)) {
this.switchOff(theID);
} else if ((this.currentAnswers.length < this.pMaxNumber) | (this.pMaxNumber < 2)) {
var k = 0;
while (k < this.pButtonIDList.length) {
if (this.pButtonIDList[k][1] == theID) {
this.switchOn(this.pButtonIDList[k][1]);
} else if (this.pMaxNumber < 2) {
this.switchOff(this.pButtonIDList[k][1]);
}
k++;
}
}
_global.resp.doAccessibilityUpdate();
};
ButtonController.prototype.isFullyAnswered = function () {
if (this.currentAnswers.length >= this.pMinNumber) {
return(true);
}
return(false);
};
ButtonController.prototype.getResponses = function () {
var returnList = new Array();
returnList.push(this.pGroupName);
var i = 0;
while (i < this.currentAnswers.length) {
returnList.push(this.currentAnswers[i]);
i++;
}
return(returnList);
};
ButtonController.prototype.isOn = function (theID) {
var i = 0;
while (i < this.currentAnswers.length) {
if (this.currentAnswers[i] == theID) {
return(true);
}
i++;
}
return(false);
};
ButtonController.prototype.switchOn = function (theID) {
this.getButton(theID).switchOn();
var i = 0;
while (i < this.currentAnswers.length) {
if (this.currentAnswers[i] == theID) {
return(true);
}
i++;
}
this.currentAnswers.push(theID);
return(true);
};
ButtonController.prototype.switchOff = function (theID) {
this.getButton(theID).switchOff();
var i = 0;
while (i < this.currentAnswers.length) {
if (this.currentAnswers[i] == theID) {
this.currentAnswers.splice(i, 1);
}
i++;
}
};
ButtonController.prototype.getButton = function (theID) {
var k = 0;
while (k < this.pButtonIDList.length) {
if (this.pButtonIDList[k][1] == theID) {
return(this.pButtonIDList[k][0]);
}
k++;
}
return(false);
};
ResponseObject.prototype.registerResponseStrRenderFib = function (theGroup, theTextObj, theMinChars, numbersOnly) {
this.enterResponse(theGroup);
if (this.pCurrentNode.responseDetails == null) {
this.pCurrentNode.responseDetails = new FibController(this.pCurrentNode, theGroup);
} else {
this.pCurrentNode.responseDetails.textObjs = new Array();
}
var responseIndex = this.pCurrentNode.responseDetails.addTextObject(theTextObj, theMinChars);
theTextObj.localGroup = theGroup;
theTextObj.onChanged = function () {
_global.resp.updateFIB(this.localGroup);
};
if (numbersOnly) {
theTextObj.restrict = "0-9\\-.";
}
this.pCurrentNode.responseDetails.updateFIB(responseIndex);
this.exit();
};
ResponseObject.prototype.updateFIB = function (theGroup) {
this.enterResponse(theGroup);
this.pCurrentNode.responseDetails.updateXML();
this.exit();
this.processFullyAnswered();
};
FibController.prototype.addTextObject = function (theTextObj, theMinChars) {
var i = 0;
while (i < this.textObjs.length) {
if (this.textObjs[i] == theTextObj) {
return(i);
}
i++;
}
this.textObjs.push(theTextObj);
if (this.textObjs.length > this.currentAnswers.length) {
this.currentAnswers.push("");
this.minChars.push(theMinChars);
}
return((this.textObjs.length-1));
};
FibController.prototype.updateXML = function () {
var i = 0;
while (i < this.textObjs.length) {
this.currentAnswers[i] = this.textObjs[i].text;
i++;
}
};
FibController.prototype.updateFIB = function () {
var i = 0;
while (i < this.textObjs.length) {
var theValue = this.currentAnswers[i];
if (theValue == null) {
this.textObjs[i].text = "";
} else {
this.textObjs[i].text = theValue;
}
i++;
}
};
FibController.prototype.isFullyAnswered = function () {
var i = 0;
while (i < this.currentAnswers.length) {
if (this.currentAnswers[i].length < this.minChars[i]) {
return(false);
}
i++;
}
return(true);
};
FibController.prototype.getResponses = ButtonController.prototype.getResponses;
ResponseObject.prototype.registerResponseStrRenderFlash = function (theGroup, theFlashObj) {
this.enterResponse(theGroup);
if (this.pCurrentNode.responseDetails == null) {
this.pCurrentNode.responseDetails = new FlashController(this.pCurrentNode, theGroup, theFlashObj);
}
this.pCurrentNode.responseDetails.updateFlash();
this.exit();
};
ResponseObject.prototype.updateFlash = ResponseObject.prototype.updateFIB;
FlashController.prototype.updateXML = function () {
var returnAnswers = this.flashObj.getAnswers();
this.currentAnswers = new Array();
var i = 0;
while (i < returnAnswers.length) {
this.currentAnswers.push(String(returnAnswers[i]));
i++;
}
};
FlashController.prototype.updateFlash = function () {
var returnAnswers = new Array();
var i = 0;
while (i < this.currentAnswers.length) {
returnAnswers.push(this.currentAnswers[i]);
i++;
}
this.flashObj.setAnswers(returnAnswers);
};
FlashController.prototype.isFullyAnswered = function () {
return(this.flashObj.isFullyAnswered());
};
FlashController.prototype.getResponses = ButtonController.prototype.getResponses;
function RPS() {
this.outcomes = new Outcomes();
this.feedbackDisplay = new Array();
}
function qmCleanString(inputString) {
var newString = "";
var i = 0;
while (i < inputString.length) {
var charCode = inputString.charCodeAt(i);
if (((((charCode > 47) && (charCode < 58)) || ((charCode > 64) && (charCode < 91))) || ((charCode > 93) && (charCode < 123))) || (charCode == 45)) {
newString = newString + inputString.charAt(i);
}
i++;
}
if (newString.length > 48) {
newString = newString.substr(-48);
}
return(newString);
}
function getTimeString() {
var mydate_ist = new Date();
var hrs_ist = mydate_ist.getHours();
var mins_ist = mydate_ist.getMinutes();
var seconds = mydate_ist.getSeconds();
if (hrs_ist < 10) {
hrs_ist = "0" + hrs_ist;
}
if (mins_ist < 10) {
mins_ist = "0" + mins_ist;
}
if (seconds < 10) {
seconds = "0" + seconds;
}
return((((hrs_ist + ":") + mins_ist) + ":") + seconds);
}
function ResponseProcessing(xmlNode, responseLists, theDuration, theGlobalResp, theOutcomes) {
this.respconditionArray = new Array();
this.feedbackDisplay = new Array();
var i = 0;
while (i < xmlNode.childNodes.length) {
if (xmlNode.childNodes[i].nodeName == "outcomes") {
theOutcomes.addOutcomes(new Outcomes(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "respcondition") {
this.respconditionArray.push(new Respcondition(xmlNode.childNodes[i]));
}
i++;
}
var i = 0;
while (i < this.respconditionArray.length) {
var possibleArray = this.respconditionArray[i].evaluate(responseLists, theDuration, theOutcomes, theGlobalResp);
this.feedbackDisplay = this.feedbackDisplay.concat(possibleArray);
if (!this.respconditionArray[i].getShouldContinue()) {
break;
}
i++;
}
theOutcomes.truncate();
}
function Respcondition(xmlNode) {
this.setvars = new Array();
this.displays = new Array();
this.branches = new Array();
this.theContinue = false;
this.shouldContinue = false;
if ((xmlNode.attributes.continue.toLowerCase() == "yes") || (xmlNode.attributes.continue.toLowerCase() == "true")) {
this.theContinue = true;
}
var i = 0;
while (i < xmlNode.childNodes.length) {
if (xmlNode.childNodes[i].nodeName == "conditionvar") {
this.condition = new LAand(xmlNode.childNodes[i]);
}
if (xmlNode.childNodes[i].nodeName == "setvar") {
this.setvars.push(new Setvar(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "displayfeedback") {
if (xmlNode.childNodes[i].attributes.feedbacktype == null) {
this.displays.push(xmlNode.childNodes[i].attributes.linkrefid + "Response");
} else {
this.displays.push(xmlNode.childNodes[i].attributes.linkrefid + xmlNode.childNodes[i].attributes.feedbacktype);
}
}
if (xmlNode.childNodes[i].nodeName == "branch") {
this.branches.push(new Branch(xmlNode.childNodes[i]));
}
i++;
}
}
function SuperConstruct(theInstance, xmlNode) {
theInstance.respident = xmlNode.attributes.respident;
if ((xmlNode.attributes.index != null) && (xmlNode.attributes.index != "")) {
theInstance.index = Number(xmlNode.attributes.index);
}
theInstance.textVal = xmlNode.childNodes[0].nodeValue;
if (theInstance.textVal == null) {
theInstance.textVal = "";
}
theInstance.varname = xmlNode.attributes.varname;
}
function TokenAncestor(xmlNode) {
SuperConstruct(this, xmlNode);
}
function TAvarequal(xmlNode) {
SuperConstruct(this, xmlNode);
if ((((xmlNode.attributes.case == "Nocase") || (xmlNode.attributes.case == "nocase")) || (xmlNode.attributes.case == "no")) || (xmlNode.attributes.case == "No")) {
this.caseInsensitive = true;
} else {
this.caseInsensitive = false;
}
}
function TAvarlt(xmlNode) {
SuperConstruct(this, xmlNode);
}
function TAvarlte(xmlNode) {
SuperConstruct(this, xmlNode);
}
function TAvargt(xmlNode) {
SuperConstruct(this, xmlNode);
}
function TAvargte(xmlNode) {
SuperConstruct(this, xmlNode);
}
function TAdurequal(xmlNode) {
SuperConstruct(this, xmlNode);
}
function TAdurlt(xmlNode) {
SuperConstruct(this, xmlNode);
}
function TAdurlte(xmlNode) {
SuperConstruct(this, xmlNode);
}
function TAdurgt(xmlNode) {
SuperConstruct(this, xmlNode);
}
function TAdurgte(xmlNode) {
SuperConstruct(this, xmlNode);
}
function TAvarsubstring(xmlNode) {
SuperConstruct(this, xmlNode);
if ((xmlNode.attributes.case == "Yes") || (xmlNode.attributes.case == "yes")) {
this.caseInsensitive = false;
} else {
this.caseInsensitive = true;
}
}
function TAvarsubset(xmlNode) {
SuperConstruct(this, xmlNode);
if ((xmlNode.attributes.setmatch == "Partial") || (xmlNode.attributes.setmatch == "Partial")) {
this.caseInsensitive = true;
} else {
this.caseInsensitive = false;
}
}
function TAunanswered(xmlNode) {
SuperConstruct(this, xmlNode);
}
function TAother(xmlNode) {
}
function Decvar(xmlNode, theName, theVarType, theMembers) {
if (xmlNode == null) {
this.name = theName;
this.vartype = theVarType;
this.members = theMembers;
} else {
this.name = xmlNode.attributes.varname.toLowerCase();
this.value = xmlNode.attributes.defaultval;
this.members = xmlNode.attributes.members.split(",");
this.cutvalue = xmlNode.attributes.cutvalue;
this.minvalue = xmlNode.attributes.minvalue;
this.maxvalue = xmlNode.attributes.maxvalue;
this.vartype = xmlNode.attributes.vartype;
}
this.ensureValueExists();
}
function Setvar(xmlNode) {
this.varname = xmlNode.attributes.varname.toLowerCase();
this.action = xmlNode.attributes.action;
this.textVal = xmlNode.childNodes[0].nodeValue;
this.respident = xmlNode.attributes.respident;
this.index = xmlNode.attributes.index;
this.sourcevarname = xmlNode.attributes.sourcevarname;
this.correctanswer = xmlNode.attributes.correctanswer;
if ((this.index == null) || (this.index == "")) {
this.index = 0;
}
if (this.varname == null) {
this.varname = "score";
}
if (this.action == null) {
this.action = "Set";
}
}
function Outcomes(xmlNode) {
this.decvars = new Array();
var i = 0;
while (i < xmlNode.childNodes.length) {
if (xmlNode.childNodes[i].nodeName == "decvar") {
this.overwriteDecvar(new Decvar(xmlNode.childNodes[i]));
}
i++;
}
}
function SASuperConstruct(theInstance, xmlNode) {
theInstance.listOfBools = new Array();
var i = 0;
while (i < xmlNode.childNodes.length) {
if ((xmlNode.childNodes[i].nodeName == "not") || (xmlNode.childNodes[i].nodeName == "not_test")) {
theInstance.listOfBools.push(new LAnot(xmlNode.childNodes[i]));
}
if ((xmlNode.childNodes[i].nodeName == "and") || (xmlNode.childNodes[i].nodeName == "and_test")) {
theInstance.listOfBools.push(new LAand(xmlNode.childNodes[i]));
}
if ((xmlNode.childNodes[i].nodeName == "or") || (xmlNode.childNodes[i].nodeName == "or_test")) {
theInstance.listOfBools.push(new LAor(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "varequal") {
theInstance.listOfBools.push(new TAvarequal(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "varlt") {
theInstance.listOfBools.push(new TAvarlt(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "varlte") {
theInstance.listOfBools.push(new TAvarlte(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "vargt") {
theInstance.listOfBools.push(new TAvargt(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "vargte") {
theInstance.listOfBools.push(new TAvargte(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "durequal") {
theInstance.listOfBools.push(new TAdurequal(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "durlt") {
theInstance.listOfBools.push(new TAdurlt(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "durlte") {
theInstance.listOfBools.push(new TAdurlte(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "durgt") {
theInstance.listOfBools.push(new TAdurgt(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "durgte") {
theInstance.listOfBools.push(new TAdurgte(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "varsubstring") {
theInstance.listOfBools.push(new TAvarsubstring(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "varsubset") {
theInstance.listOfBools.push(new TAvarsubset(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "other") {
theInstance.listOfBools.push(new TAother(xmlNode.childNodes[i]));
}
if (xmlNode.childNodes[i].nodeName == "unanswered") {
theInstance.listOfBools.push(new TAunanswered(xmlNode.childNodes[i]));
}
i++;
}
}
function LogicAncestor(xmlNode) {
SASuperConstruct(this, xmlNode);
}
function removeHash(hashString) {
var arrayString = hashString.split(" #");
if (arrayString.length == 1) {
return(hashString);
}
if (arrayString.length > 1) {
var arrayString2 = arrayString[(arrayString.length-1)].split("-");
if (arrayString2.length == 2) {
return(arrayString[0]);
}
return(hashString);
}
}
RPS.prototype.evaluateRPS = function (xmlNode, responseLists, theDuration, theGlobalResp) {
this.outcomes = new Outcomes();
this.feedbackDisplay = new Array();
this.pageid = xmlNode.attributes.pageid;
var i = 0;
while (i < xmlNode.childNodes.length) {
if (xmlNode.childNodes[i].nodeName == "resprocessing") {
this.rp = new ResponseProcessing(xmlNode.childNodes[i], responseLists, theDuration, theGlobalResp, this.outcomes);
this.feedbackDisplay = this.feedbackDisplay.concat(this.rp.getFeedbackDisplay());
}
i++;
}
_global.resp.makeResponsesXML(this.outcomes);
var i = 0;
while (i < this.outcomes.size()) {
if (theGlobalResp.getResponseMechanism().toLowerCase() == "questionmark") {
var scormObjects = new Array();
scormObjects.push("MM_cmiSendInteractionInfo");
scormObjects.push("null");
scormObjects.push("" + getTimeString());
var theID = qmCleanString("" + this.outcomes.getAt(i).getName());
scormObjects.push(theID);
scormObjects.push(theID);
scormObjects.push("performance");
scormObjects.push("null");
scormObjects.push("null");
scormObjects.push("" + this.outcomes.getAt(i).getValue());
scormObjects.push("null");
scormObjects.push("null");
_global.resp.queueFSCommand(scormObjects);
} else if (theGlobalResp.getResponseMechanism().toLowerCase() == "scorm") {
var scormObjects = new Array();
scormObjects.push("LMSSetObjective");
scormObjects.push("" + (Number(this.pageid) + i));
scormObjects.push((("" + _global.resp.getCurrentIdent()) + "-") + this.outcomes.getAt(i).getName());
scormObjects.push("" + this.outcomes.getAt(i).getValue());
_global.resp.queueFSCommand(scormObjects);
scormObjects = new Array();
scormObjects.push("LMSSetInteraction");
scormObjects.push("" + (Number(this.pageid) + i));
scormObjects.push((("" + _global.resp.getCurrentIdent()) + "-") + this.outcomes.getAt(i).getName());
scormObjects.push("" + this.outcomes.getAt(i).getValue());
scormObjects.push("performance");
scormObjects.push("" + getTimeString());
_global.resp.queueFSCommand(scormObjects);
}
i++;
}
};
RPS.prototype.showFeedback = function () {
var skipFeedback = true;
var i = 0;
while (i < this.feedbackDisplay.length) {
_global.debugger.alert("id:" + this.feedbackDisplay[i]);
if (_global.resp.getClipName(this.feedbackDisplay[i]) != null) {
_global.debugger.alert("clip name2:" + _global.resp.getClipName(this.feedbackDisplay[i])._visible);
_global.resp.getClipName(this.feedbackDisplay[i])._visible = true;
_global.resp.getClipName(this.feedbackDisplay[i]).gotoAndPlay(2);
skipFeedback = false;
}
i++;
}
if (skipFeedback) {
_global.resp.moveHead(3);
} else {
_global.resp.enterVisible(_global.resp.getCurrentIdent() + "-feedback");
}
};
RPS.prototype.getOutcomes = function () {
return(this.outcomes);
};
ResponseProcessing.prototype.getFeedbackDisplay = function () {
return(this.feedbackDisplay);
};
Respcondition.prototype.evaluate = function (responseLists, theDuration, theOutcomes, theGlobalResp) {
var evalVal = false;
if (this.condition != null) {
evalVal = this.condition.evaluate(responseLists, theDuration, theGlobalResp);
} else {
evalVal = true;
}
if (evalVal) {
_global.debugger.alert("Evaluates As True:");
theOutcomes.processSetvars(this.setvars, responseLists);
var i = 0;
while (i < this.branches.length) {
this.branches[i].activate();
i++;
}
this.shouldContinue = this.theContinue;
return(this.displays);
}
_global.debugger.alert("Evaluates As False:");
this.shouldContinue = true;
return(new Array());
};
Respcondition.prototype.getShouldContinue = function () {
return(this.shouldContinue);
};
TokenAncestor.prototype.evaluate = function (listOfResps, theDuration, theGlobalResp) {
if ((this.varname != null) && (this.varname != "")) {
return(this.testCondition(this.textVal, theGlobalResp.getScore(this.varname), theDuration));
}
var targetResp = theGlobalResp.getRespList(this.respident);
if (this.index != null) {
if (targetResp.length >= (this.index+1)) {
if (this.testCondition(this.textVal, targetResp[this.index], theDuration)) {
return(true);
}
return(false);
}
} else {
var j = 1;
while (j < targetResp.length) {
if (this.testCondition(this.textVal, targetResp[j], theDuration)) {
return(true);
}
j++;
}
return(false);
}
};
TAvarequal.prototype = new TokenAncestor();
TAvarequal.prototype.testCondition = function (theAnswer, theUserResponse, theDuration) {
return((theUserResponse == theAnswer) || (this.caseInsensitive && (theUserResponse.toLowerCase() == theAnswer.toLowerCase())));
};
TAvarlt.prototype = new TokenAncestor();
TAvarlt.prototype.testCondition = function (theAnswer, theUserResponse, theDuration) {
return(Number(theUserResponse) < Number(theAnswer));
};
TAvarlte.prototype = new TokenAncestor();
TAvarlte.prototype.testCondition = function (theAnswer, theUserResponse, theDuration) {
if ((theUserResponse == null) || (theUserResponse == "")) {
return(false);
}
_global.debugger.alert((("answer=" + Number(theAnswer)) + " userResp=") + Number(theUserResponse));
return(Number(theAnswer) >= Number(theUserResponse));
};
TAvargt.prototype = new TokenAncestor();
TAvargt.prototype.testCondition = function (theAnswer, theUserResponse, theDuration) {
return(Number(theAnswer) < Number(theUserResponse));
};
TAvargte.prototype = new TokenAncestor();
TAvargte.prototype.testCondition = function (theAnswer, theUserResponse, theDuration) {
if ((theUserResponse == null) || (theUserResponse == "")) {
return(false);
}
return(Number(theUserResponse) >= Number(theAnswer));
};
TAdurequal.prototype = new TokenAncestor();
TAdurequal.prototype.testCondition = function (theAnswer, theUserResponse, theDuration) {
return(Number(theDuration) == Number(theAnswer));
};
TAdurlt.prototype = new TokenAncestor();
TAdurlt.prototype.testCondition = function (theAnswer, theUserResponse, theDuration) {
return(Number(theDuration) < Number(theAnswer));
};
TAdurlte.prototype = new TokenAncestor();
TAdurlte.prototype.testCondition = function (theAnswer, theUserResponse, theDuration) {
return(Number(theAnswer) >= Number(theDuration));
};
TAdurgt.prototype = new TokenAncestor();
TAdurgt.prototype.testCondition = function (theAnswer, theUserResponse, theDuration) {
return(Number(theAnswer) < Number(theDuration));
};
TAdurgte.prototype = new TokenAncestor();
TAdurgte.prototype.testCondition = function (theAnswer, theUserResponse, theDuration) {
return(Number(theDuration) >= Number(theAnswer));
};
TAvarsubstring.prototype = new TokenAncestor();
TAvarsubstring.prototype.testCondition = function (theAnswer, theUserResponse, theDuration) {
if ((theUserResponse.indexOf(theAnswer) != -1) || (this.caseInsensitive && (theUserResponse.toLowerCase().indexOf(theAnswer.toLowerCase()) != -1))) {
return(true);
}
return(false);
};
TAvarsubset.prototype = new TokenAncestor();
TAvarsubset.prototype.testCondition = function (theAnswer, theUserResponse, theDuration) {
var arrayOfChoices = theAnswer.split(",");
var i = 0;
while (i < arrayOfChoices.length) {
if ((theUserResponse == arrayOfChoices[i]) || (this.caseInsensitive && (theUserResponse.toLowerCase() == arrayOfChoices[i].toLowerCase()))) {
return(true);
}
i++;
}
return(false);
};
TAunanswered.prototype = new TokenAncestor();
TAunanswered.prototype.evaluate = function (listOfResps, theDuration, theGlobalResp) {
var i = 0;
while (i < listOfResps.length) {
if (listOfResps[i][0] == this.respident) {
if ((listOfResps[i].length < 2) || (listOfResps[i][1] == "")) {
return(true);
}
return(false);
}
i++;
}
};
TAother.prototype.evaluate = function (listOfResps, theDuration, theGlobalResp) {
return(true);
};
Decvar.prototype.ensureValueExists = function () {
if (this.name == null) {
this.name = "score";
}
if (this.vartype == null) {
this.vartype = "Integer";
}
if (this.value == null) {
if (this.vartype == "String") {
this.value = "";
} else if (((this.vartype == "Decimal") || (this.vartype == "Scientific")) || (this.vartype == "Number")) {
this.value = 0;
} else if (this.vartype == "Boolean") {
this.value = false;
} else if (this.vartype == "Enumerated") {
if (this.members.length >= 1) {
this.value = this.members[i];
} else {
this.value = "";
}
} else {
this.value = 0;
this.vartype = "Integer";
}
}
};
Decvar.prototype.cloneLite = function () {
var retDV = new Decvar(null, this.name, this.vartype, this.members);
retDV.setValue(this.value);
return(retDV);
};
Decvar.prototype.getName = function () {
return(this.name);
};
Decvar.prototype.setVarOp = function (numberToAdd, theOperation) {
if ((((this.vartype == "Integer") || (this.vartype == "Scientific")) || (this.vartype == "Decimal")) || (this.vartype == "Number")) {
if (theOperation == "Add") {
this.setValue(Number(this.value) + Number(numberToAdd));
} else if (theOperation == "Subtract") {
this.setValue(Number(this.value) - Number(numberToAdd));
} else if (theOperation == "Multiply") {
this.setValue(Number(this.value) * Number(numberToAdd));
} else if (theOperation == "Divide") {
this.setValue(Number(this.value) / Number(numberToAdd));
}
} else if (this.vartype == "Boolean") {
if ((((numberToAdd == "true") || (numberToAdd == "True")) || (numberToAdd == "TRUE")) || (numberToAdd == true)) {
this.tempBool = true;
} else {
this.tempBool = false;
}
if (theOperation == "Add") {
this.setValue((this.value + tempBool) % 2);
} else if (theOperation == "Subtract") {
this.setValue((this.value - tempBool) % 2);
} else if (theOperation == "Multiply") {
this.setValue((this.value * tempBool) % 2);
} else if (theOperation == "Divide") {
this.setValue((this.value / tempBool) % 2);
}
} else if (this.vartype == "String") {
if (theOperation == "Add") {
this.setValue(("" + this.value) + numberToAdd);
}
}
};
Decvar.prototype.setValue = function (theValue) {
if ((((this.vartype == "Integer") || (this.vartype == "Scientific")) || (this.vartype == "Decimal")) || (this.vartype == "Number")) {
this.value = Number(theValue);
} else if (this.vartype == "Boolean") {
if ((((theValue == "true") || (theValue == "True")) || (theValue == "TRUE")) || (theValue == true)) {
this.value = true;
} else if ((((theValue == "false") || (theValue == "False")) || (theValue == "FALSE")) || (theValue == false)) {
this.value = false;
}
} else if (this.vartype == "Enumerated") {
var i = 0;
while (i < this.members.length) {
if (this.members[i] == theValue) {
this.value = theValue;
}
i++;
}
} else {
this.value = theValue;
}
};
Decvar.prototype.truncate = function () {
if (((this.vartype == "Integer") || (this.vartype == "Scientific")) || (this.vartype == "Decimal")) {
if (this.vartype == "Integer") {
this.value = Math.floor(this.value);
}
if ((this.minvalue != null) && (this.value < this.minvalue)) {
this.value = this.minvalue;
}
if ((this.maxvalue != null) && (this.value > this.maxvalue)) {
this.value = this.maxvalue;
}
}
};
Decvar.prototype.getValue = function () {
return(this.value);
};
Decvar.prototype.getAsNode = function (treeToUse) {
var newNode = treeToUse.createElement("score");
newNode.attributes.varname = this.name;
newNode.attributes.vartype = this.vartype;
var textNode = treeToUse.createTextNode(this.value);
newNode.appendChild(textNode);
return(newNode);
};
Setvar.prototype.getVarname = function () {
return(this.varname);
};
Setvar.prototype.getVarValue = function () {
if ((this.respident != null) && (this.respident != "")) {
if (((this.index == null) || (this.index == "")) || (this.index == 0)) {
this.index = 1;
}
return(removeHash(_global.resp.getRespList(this.respident)[this.index]));
}
if ((this.sourcevarname != null) && (this.sourcevarname != "")) {
return(_global.resp.getScore(this.sourcevarname));
}
return(this.textVal);
};
Setvar.prototype.process = function (aDecvar, responseLists) {
if (this.action == "ScoreSequence") {
aDecvar.setValue(this.scoreSequenceQuestion(false));
}
if (this.action == "ScoreSequencePartialCredit") {
aDecvar.setValue(this.scoreSequenceQuestion(true));
}
if (this.action == "ScoreMatching") {
aDecvar.setValue(this.scoreMatchingQuestion(false));
}
if (this.action == "ScoreMatchingPartialCredit") {
aDecvar.setValue(this.scoreMatchingQuestion(true));
} else if (this.action == "Set") {
aDecvar.setValue(this.getVarValue());
} else {
aDecvar.setVarOp(this.getVarValue(), this.action);
}
};
Setvar.prototype.scoreSequenceQuestion = function (allowPartialCredit) {
var maxPoints = Number(this.textVal);
var answersArrayAndResp = _global.resp.getRespList(this.respident);
var answersArray = new Array();
var i = 1;
while (i < answersArrayAndResp.length) {
answersArray.push(answersArrayAndResp[i]);
i++;
}
var correctAnswersArray = this.correctanswer.split(",");
if (!allowPartialCredit) {
var i = 0;
while (i < correctAnswersArray.length) {
if (answersArray[i] != correctAnswersArray[i]) {
return(0);
}
i++;
}
return(maxPoints);
}
var goodScore = 0;
var badScore = 0;
var totalPoss = 0;
var i = 0;
while (i < (correctAnswersArray.length-1)) {
var j = (i+1);
while (j < correctAnswersArray.length) {
totalPoss++;
if (answersArray.Contains(correctAnswersArray[i]) && (answersArray.Contains(correctAnswersArray[j]))) {
var k = 0;
while (k < answersArray.length) {
if (answersArray[k] == correctAnswersArray[i]) {
goodScore++;
break;
}
if (answersArray[k] == correctAnswersArray[j]) {
badScore++;
break;
}
k++;
}
}
j++;
}
i++;
}
var score = (((goodScore - badScore) / totalPoss) * maxPoints);
if (score < 0) {
score = 0;
} else {
score = Math.round(score);
}
return(score);
};
Setvar.prototype.scoreMatchingQuestion = function (allowPartialCredit) {
var maxPoints = Number(this.textVal);
var answersArrayAndResp = _global.resp.getRespList(this.respident);
var answersArray = new Array();
var i = 1;
while (i < answersArrayAndResp.length) {
answersArray.push(answersArrayAndResp[i]);
i++;
}
var correctAnswersArray = this.correctanswer.split(",");
if (!allowPartialCredit) {
var i = 0;
while (i < correctAnswersArray.length) {
if (answersArray[i] != correctAnswersArray[i]) {
return(0);
}
i++;
}
return(maxPoints);
}
var goodScore = 0;
var badScore = 0;
var i = 0;
while (i < correctAnswersArray.length) {
if (answersArray[i] == correctAnswersArray[i]) {
goodScore++;
} else {
badScore++;
}
i++;
}
var totalPoss = (goodScore + badScore);
var score = ((goodScore / totalPoss) * maxPoints);
if (score < 0) {
score = 0;
} else {
score = Math.round(score);
}
return(score);
};
Array.prototype.Contains = function (value) {
var i = 0;
while (i < this.length) {
if (this[i] == value) {
return(true);
}
i++;
}
return(false);
};
Outcomes.prototype.getValue = function (theName) {
var forceLowerCase = theName.toLowerCase();
var i = 0;
while (i < this.decvars.length) {
if (this.decvars[i].getName() == forceLowerCase) {
return(this.decvars[i].getValue());
}
i++;
}
};
Outcomes.prototype.processSetvars = function (someSetvars, responseLists) {
var i = 0;
while (i < this.decvars.length) {
var j = 0;
while (j < someSetvars.length) {
if (this.decvars[i].getName() == someSetvars[j].getVarname()) {
someSetvars[j].process(this.decvars[i], responseLists);
}
j++;
}
i++;
}
};
Outcomes.prototype.truncate = function () {
var i = 0;
while (i < this.decvars.length) {
this.decvars[i].truncate();
i++;
}
};
Outcomes.prototype.overwriteDecvar = function (newDecvar) {
var i = 0;
while (i < this.decvars.length) {
if (this.decvars[i].getName() == newDecvar.getName()) {
this.decvars[i] = newDecvar;
return(true);
}
i++;
}
this.decvars.push(newDecvar);
return(true);
};
Outcomes.prototype.addOutcomes = function (anotherOutcomes) {
var j = 0;
while (j < anotherOutcomes.decvars.length) {
this.incorporateDecvar(anotherOutcomes.decvars[j]);
j++;
}
};
Outcomes.prototype.incorporateDecvar = function (theDecvar) {
var i = 0;
while (i < this.decvars.length) {
if (this.decvars[i].getName() == theDecvar.getName()) {
this.decvars[i].setVarOp(theDecvar.getValue(), "Add");
return(true);
}
i++;
}
this.decvars.push(theDecvar.cloneLite());
return(false);
};
Outcomes.prototype.size = function () {
return(this.decvars.length);
};
Outcomes.prototype.getAt = function (theIndex) {
return(this.decvars[theIndex]);
};
ResponseObject.prototype.makeResponsesXML = function (someOutcomes) {
var i = 0;
while (i < this.pCurrentNode.childNodes.length) {
if (this.pCurrentNode.childNodes[i].nodeName == "outcomes") {
this.pCurrentNode.childNodes[i].removeNode();
}
i++;
}
var newNode = this.pXMLTree.createElement("outcomes");
var i = 0;
while (i < someOutcomes.decvars.length) {
newNode.appendChild(someOutcomes.decvars[i].getAsNode(this.pXMLTree));
i++;
}
this.pCurrentNode.appendChild(newNode);
};
LogicAncestor.prototype.evaluate = function (responseLists, theDuration, theGlobalResp) {
return(true);
};
LAnot = function (xmlNode) {
SASuperConstruct(this, xmlNode);
};
LAnot.prototype = new LogicAncestor();
LAnot.prototype.evaluate = function (responseLists, theDuration, theGlobalResp) {
var i = 0;
while (i < this.listOfBools.length) {
if (this.listOfBools[i].evaluate(responseLists, theDuration, theGlobalResp)) {
return(false);
}
i++;
}
return(true);
};
LAor = function (xmlNode) {
SASuperConstruct(this, xmlNode);
};
LAor.prototype = new LogicAncestor();
LAor.prototype.evaluate = function (responseLists, theDuration, theGlobalResp) {
var i = 0;
while (i < this.listOfBools.length) {
if (this.listOfBools[i].evaluate(responseLists, theDuration, theGlobalResp)) {
return(true);
}
i++;
}
return(false);
};
LAand = function (xmlNode) {
SASuperConstruct(this, xmlNode);
};
LAand.prototype = new LogicAncestor();
LAand.prototype.evaluate = function (responseLists, theDuration, theGlobalResp) {
var i = 0;
while (i < this.listOfBools.length) {
if (this.listOfBools[i].evaluate(responseLists, theDuration, theGlobalResp)) {
} else {
return(false);
}
i++;
}
return(true);
};
ResponseObject.prototype.getSectionItemOutcomes = function (theNode) {
if (theNode.nodeName == "item_result") {
return(theNode.resProcessing.getOutcomes());
}
theNode.outcomes = new Outcomes();
var myChildNodes = theNode.childNodes;
var i = 0;
while (i < myChildNodes.length) {
if (((myChildNodes[i].nodeName == "item_result") || (myChildNodes[i].nodeName == "section_result")) || (myChildNodes[i].nodeName == "assessment_result")) {
theNode.outcomes.addOutcomes(this.getSectionItemOutcomes(myChildNodes[i]));
}
i++;
}
return(theNode.outcomes);
};
ResponseObject.prototype.getScore = function (theVarname) {
var pTempNode = this.getRootNode();
var respCompareArray = theVarname.split(".");
var j = 0;
while (j < (respCompareArray.length-1)) {
var i = 0;
while (i < pTempNode.childNodes.length) {
if (pTempNode.childNodes[i].attributes.ident_ref == respCompareArray[j]) {
pTempNode = pTempNode.childNodes[i];
break;
}
if (i == (pTempNode.childNodes.length-1)) {
j = (respCompareArray.length-1);
}
i++;
}
j++;
}
return(this.getSectionItemOutcomes(pTempNode).getValue(respCompareArray[(respCompareArray.length-1)]));
};
ResponseObject.prototype.getRespList = function (therespident) {
var respCompareArray = therespident.split(".");
if (respCompareArray.length == 1) {
var pTempNode = this.pCurrentNode;
} else {
var pTempNode = this.getRootNode();
}
var j = 0;
while (j < (respCompareArray.length-1)) {
var i = 0;
while (i < pTempNode.childNodes.length) {
if (pTempNode.childNodes[i].attributes.ident_ref == respCompareArray[j]) {
pTempNode = pTempNode.childNodes[i];
break;
}
i++;
}
j++;
}
var listOfResps = this.getItemResponses(pTempNode);
var respCompare = respCompareArray[(respCompareArray.length-1)];
var i = 0;
while (i < listOfResps.length) {
if (listOfResps[i][0] == respCompare) {
return(listOfResps[i]);
}
i++;
}
_global.debugger.alert((("respident not found - " + therespident) + " ") + this.getRootNode().toString());
return(null);
};
ResponseObject.prototype.getItemResponses = function (whichNode) {
var itemResponses = new Array();
var i = 0;
while (i < whichNode.childNodes.length) {
if (whichNode.childNodes[i].nodeName == "response") {
if (whichNode.childNodes[i].responseDetails != null) {
itemResponses.push(whichNode.childNodes[i].responseDetails.getResponses());
}
}
i++;
}
return(itemResponses);
};
ResponseObject.prototype.setResponseProcessingString = function (xmlString) {
if ((xmlString == "") || (xmlString == null)) {
return(undefined);
}
if (this.pCurrentNode.resProcessing == null) {
if (this.assembledXmlString == null) {
this.assembledXmlString = "";
}
this.assembledXmlString = this.assembledXmlString + xmlString;
}
};
ResponseObject.prototype.concludeResponseProcessingString = function (nothing) {
if (this.pCurrentNode.resProcessing == null) {
this.pCurrentNode.resProcessing = new RPS();
this.pCurrentNode.resProcessing.theXML = new XML(this.assembledXmlString);
this.assembledXmlString = null;
}
this.pCurrentNode.resProcessing.evaluateRPS(this.pCurrentNode.resProcessing.theXML.firstChild, this.getItemResponses(this.pCurrentNode), this.getTimeElapsed(), this);
};
ResponseObject.prototype.showFeedback = function () {
if (this.pCurrentNode.resProcessing == null) {
_global.resp.moveHead(3);
} else {
this.pCurrentNode.resProcessing.showFeedback();
}
};
ResponseObject.prototype.clearFeedback = function () {
this.feedbackrefs = new Array();
this.feedbackmovies = new Array();
};
ResponseObject.prototype.registerFeedback = function (feedbackID, movieclip) {
this.feedbackrefs.push(feedbackID);
this.feedbackmovies.push(movieclip);
movieclip.stop();
movieclip._visible = false;
};
ResponseObject.prototype.getClipName = function (feedbackID) {
var i = 0;
while (i < this.feedbackrefs.length) {
if (this.feedbackrefs[i] == feedbackID) {
return(this.feedbackmovies[i]);
}
i++;
}
};
ResponseObject.prototype.populateMatvar = function (theTextBox, varString, theIndex, isrespident) {
if (isrespident) {
if ((theIndex == null) || (theIndex == 0)) {
theIndex = 1;
}
theTextBox.text = removeHash(this.getRespList(varString)[theIndex]);
} else {
theTextBox.text = this.getScore(varString);
}
};
function Magnifier(aClip) {
this.theClip = aClip;
if (aClip._parent == null) {
this.theClip._magCenterX = Stage.width / 2;
this.theClip._magCenterY = Stage.height / 2;
this.theClip._frameWidth = Stage.width;
this.theClip._frameHeight = Stage.height;
} else {
this.theClip._magCenterX = this.theClip._width / 2;
this.theClip._magCenterY = this.theClip._height / 2;
this.theClip._frameWidth = this.theClip._width;
this.theClip._frameHeight = this.theClip._height;
}
this.theClip._frameX = this.theClip._x;
this.theClip._frameY = this.theClip._y;
this.placeCenter();
Key.addListener(this);
}
Magnifier.prototype.onKeyDown = function () {
if (Selection.getCaretIndex() == -1) {
if (Key.isDown(90)) {
this.theClip._magCenterX = this.theClip._magCenterX - (this.theClip._xscale / 5);
this.placeCenter();
this.runCorrector();
} else if (Key.isDown(81)) {
this.theClip._magCenterY = this.theClip._magCenterY - (this.theClip._yscale / 5);
this.placeCenter();
this.runCorrector();
} else if (Key.isDown(88)) {
this.theClip._magCenterX = this.theClip._magCenterX + (this.theClip._xscale / 5);
this.placeCenter();
this.runCorrector();
} else if (Key.isDown(65)) {
this.theClip._magCenterY = this.theClip._magCenterY + (this.theClip._yscale / 5);
this.placeCenter();
this.runCorrector();
}
if (Key.isDown(16)) {
if (Key.isDown(187) | Key.isDown(107)) {
if (this.theClip._xscale < 1000) {
this.scale(1.05);
this.placeCenter();
this.runCorrector();
}
} else if (Key.isDown(189) | Key.isDown(109)) {
if (this.theClip._xscale > 100) {
this.scale(0.95238);
this.placeCenter();
this.runCorrector();
}
}
}
}
};
Magnifier.prototype.runCorrector = function () {
var update = false;
if ((this.theClip._frameWidth / 2) > (this.theClip._width - this.theClip._magCenterX)) {
this.theClip._magCenterX = this.theClip._width - (this.theClip._frameWidth / 2);
update = true;
}
if ((this.theClip._frameWidth / 2) > this.theClip._magCenterX) {
this.theClip._magCenterX = this.theClip._frameWidth / 2;
update = true;
}
if ((this.theClip._frameHeight / 2) > this.theClip._magCenterY) {
this.theClip._magCenterY = this.theClip._frameHeight / 2;
update = true;
}
if ((this.theClip._frameHeight / 2) > (this.theClip._height - this.theClip._magCenterY)) {
this.theClip._magCenterY = this.theClip._height - (this.theClip._frameHeight / 2);
update = true;
}
if (update) {
this.placeCenter();
}
};
Magnifier.prototype.scale = function (theScale) {
this.theClip._xscale = this.theClip._xscale * theScale;
this.theClip._magCenterX = this.theClip._magCenterX * theScale;
this.theClip._yscale = this.theClip._yscale * theScale;
this.theClip._magCenterY = this.theClip._magCenterY * theScale;
};
Magnifier.prototype.placeCenter = function () {
this.theClip._x = (this.theClip._frameX + (this.theClip._frameWidth / 2)) - this.theClip._magCenterX;
this.theClip._y = (this.theClip._frameY + (this.theClip._frameHeight / 2)) - this.theClip._magCenterY;
};
var myMag = new Magnifier(this);
this.resp = new ResponseObject(this, "html");
_global.resp = this.resp;
gotoAndPlay(this._currentFrame + 4);
Frame 11
resp.checkEntryBranching("The Ultimate Newgrounds Quiz #469511435-1", 1008, "NA", 0);
Frame 14
resp.majorElementEnter("assessment_result", "The Ultimate Newgrounds Quiz #469511435-1");
resp.jumpToNextDestination();
Frame 15
this.clip3008._accProps = new Object();
this.clip3008._accProps.forceSimple = true;
this.clip3008._accProps.name = "";
this.clip3008.tabIndex = 3008;
this.clip3008.tabEnabled = false;
this.clip3008.tabChildren = true;
gotoAndPlay(this._currentFrame + 3);
Frame 18
resp.startStopTimer(-1);
Frame 19
_global.resp.bypassQuestion();
Frame 20
resp.checkTimeAllowed(false);
stop();
Frame 22
resp.jumpToNextDestination();
Frame 23
resp.checkEntryBranching("Instructions", 56, "The Ultimate Newgrounds Quiz #469511435-1", 0);
Frame 26
resp.majorElementEnter("section_result", "Instructions");
resp.jumpToNextDestination();
Frame 27
gotoAndPlay(this._currentFrame + 3);
Frame 30
resp.startStopTimer(-1);
Frame 31
_global.resp.bypassQuestion();
Frame 32
resp.checkTimeAllowed(false);
stop();
Frame 34
resp.jumpToNextDestination();
Frame 35
resp.checkEntryBranching("InstructionsPage", 28, "Instructions", 0);
Frame 38
resp.majorElementEnter("item_result", "InstructionsPage");
resp.jumpToNextDestination();
Frame 39
gotoAndPlay(this._currentFrame + 3);
Frame 42
resp.startStopTimer(-1);
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3020" in Frame 43
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 43
_global.resp.registerButton(this.button3020, "itemnav", "nextQuestion", 3020);
resp.setAllowUnansweredForward(false);
resp.showHideNextButton();
_global.resp.enterVisible("InstructionsPage-item-presentation");
Frame 44
resp.checkTimeAllowed(false);
stop();
Frame 46
resp.setResponseProcessingString("<ops pageid='0'></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 47
gotoAndPlay(this._currentFrame + 3);
Frame 50
resp.stopStartTimer(-1);
Frame 51
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3053" in Frame 51
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3024";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3053";
}
Frame 52
resp.checkTimeAllowed(true);
stop();
Frame 54
resp.jumpToNextDestination();
Frame 55
gotoAndPlay(this._currentFrame + 3);
Frame 58
resp.jumpToNextDestination();
Frame 59
resp.checkExitBranching("InstructionsPage", 28, "Instructions", 0);
Frame 62
resp.majorElementExit("item_result", "InstructionsPage");
resp.jumpToNextDestination();
Frame 63
gotoAndPlay(this._currentFrame + 3);
Frame 66
resp.stopStartTimer(-1);
Frame 67
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3055" in Frame 67
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3054";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3055";
}
Frame 68
resp.checkTimeAllowed(true);
stop();
Frame 70
resp.jumpToNextDestination();
Frame 71
gotoAndPlay(this._currentFrame + 3);
Frame 74
resp.jumpToNextDestination();
Frame 75
resp.checkExitBranching("Instructions", 56, "The Ultimate Newgrounds Quiz #469511435-1", 0);
Frame 78
resp.majorElementExit("section_result", "Instructions");
resp.jumpToNextDestination();
Frame 79
resp.checkEntryBranching("469511435-1The Ultimate Newgrounds Quiz", 448, "The Ultimate Newgrounds Quiz #469511435-1", 1);
Frame 82
resp.majorElementEnter("section_result", "469511435-1The Ultimate Newgrounds 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, "469511435-1The Ultimate Newgrounds 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 3019 MovieClip [CQButtonV1_4] "button3056" in Frame 99
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 99
_global.resp.registerButton(this.button3056, "itemnav", "nextQuestion", 3056);
resp.setAutoForward(true);
resp.showHideNextButton();
_global.resp.enterVisible("IntroductionPage-item-presentation");
Frame 100
resp.checkTimeAllowed(false);
stop();
Frame 102
resp.setResponseProcessingString("<ops pageid='0'></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 103
gotoAndPlay(this._currentFrame + 3);
Frame 106
resp.stopStartTimer(-1);
Frame 107
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3065" in Frame 107
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3064";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3065";
}
Frame 108
resp.checkTimeAllowed(true);
stop();
Frame 110
resp.jumpToNextDestination();
Frame 111
gotoAndPlay(this._currentFrame + 3);
Frame 114
resp.jumpToNextDestination();
Frame 115
resp.checkExitBranching("IntroductionPage", 28, "469511435-1The Ultimate Newgrounds Quiz", 0);
Frame 118
resp.majorElementExit("item_result", "IntroductionPage");
resp.jumpToNextDestination();
Frame 119
resp.checkEntryBranching("Question Q1", 28, "469511435-1The Ultimate Newgrounds 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 3019 MovieClip [CQButtonV1_4] "button3075" in Frame 127
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Frame 127
_global.resp.registerButton(this.button3075, "itemnav", "prevQuestion", 3075);
_global.resp.registerButton(this.button3076, "itemnav", "nextQuestion", 3076);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 469511435-2", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q1-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3076" in Frame 127
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 128
resp.checkTimeAllowed(false);
stop();
Frame 130
resp.setResponseProcessingString("<ops pageid='0'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><not><varequal respident='questiontitle # 469511435-2'>a</varequal></not><not><varequal respident='questiontitle # 469511435-2'>b</varequal></not><varequal respident='questiontitle # 469511435-2'>c</varequal><not><varequal respident='questiontitle # 469511435-2'>d</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 131
gotoAndPlay(this._currentFrame + 3);
Frame 134
resp.stopStartTimer(-1);
Frame 135
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3102" in Frame 135
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3101";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3102";
}
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, "469511435-1The Ultimate Newgrounds Quiz", 1);
Frame 146
resp.majorElementExit("item_result", "Question Q1");
resp.jumpToNextDestination();
Frame 147
resp.checkEntryBranching("Question Q2", 28, "469511435-1The Ultimate Newgrounds 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 3019 MovieClip [CQButtonV1_4] "button3103" in Frame 155
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Frame 155
_global.resp.registerButton(this.button3103, "itemnav", "prevQuestion", 3103);
_global.resp.registerButton(this.button3104, "itemnav", "nextQuestion", 3104);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 469511435-3", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q2-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3104" in Frame 155
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 156
resp.checkTimeAllowed(false);
stop();
Frame 158
resp.setResponseProcessingString("<ops pageid='1'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><not><varequal respident='questiontitle # 469511435-3'>a</varequal></not><not><varequal respident='questiontitle # 469511435-3'>b</varequal></not><not><varequal respident='questiontitle # 469511435-3'>c</varequal></not><varequal respident='questiontitle # 469511435-3'>d</varequal></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 159
gotoAndPlay(this._currentFrame + 3);
Frame 162
resp.stopStartTimer(-1);
Frame 163
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3117" in Frame 163
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3116";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3117";
}
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, "469511435-1The Ultimate Newgrounds Quiz", 2);
Frame 174
resp.majorElementExit("item_result", "Question Q2");
resp.jumpToNextDestination();
Frame 175
resp.checkEntryBranching("Question Q3", 28, "469511435-1The Ultimate Newgrounds 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 3019 MovieClip [CQButtonV1_4] "button3118" in Frame 183
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Frame 183
_global.resp.registerButton(this.button3118, "itemnav", "prevQuestion", 3118);
_global.resp.registerButton(this.button3119, "itemnav", "nextQuestion", 3119);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 469511435-4", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q3-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3119" in Frame 183
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 184
resp.checkTimeAllowed(false);
stop();
Frame 186
resp.setResponseProcessingString("<ops pageid='2'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><varequal respident='questiontitle # 469511435-4'>a</varequal><not><varequal respident='questiontitle # 469511435-4'>b</varequal></not><not><varequal respident='questiontitle # 469511435-4'>c</varequal></not><not><varequal respident='questiontitle # 469511435-4'>d</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 187
gotoAndPlay(this._currentFrame + 3);
Frame 190
resp.stopStartTimer(-1);
Frame 191
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3132" in Frame 191
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3131";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3132";
}
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, "469511435-1The Ultimate Newgrounds Quiz", 3);
Frame 202
resp.majorElementExit("item_result", "Question Q3");
resp.jumpToNextDestination();
Frame 203
resp.checkEntryBranching("Question Q4", 28, "469511435-1The Ultimate Newgrounds 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 3019 MovieClip [CQButtonV1_4] "button3133" in Frame 211
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Frame 211
_global.resp.registerButton(this.button3133, "itemnav", "prevQuestion", 3133);
_global.resp.registerButton(this.button3134, "itemnav", "nextQuestion", 3134);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 469511435-5", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q4-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3134" in Frame 211
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 212
resp.checkTimeAllowed(false);
stop();
Frame 214
resp.setResponseProcessingString("<ops pageid='3'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><not><varequal respident='questiontitle # 469511435-5'>a</varequal></not><not><varequal respident='questiontitle # 469511435-5'>b</varequal></not><varequal respident='questiontitle # 469511435-5'>c</varequal><not><varequal respident='questiontitle # 469511435-5'>d</varequal></not><not><varequal respident='questiontitle # 469511435-5'>e</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 215
gotoAndPlay(this._currentFrame + 3);
Frame 218
resp.stopStartTimer(-1);
Frame 219
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3149" in Frame 219
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3148";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3149";
}
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, "469511435-1The Ultimate Newgrounds Quiz", 4);
Frame 230
resp.majorElementExit("item_result", "Question Q4");
resp.jumpToNextDestination();
Frame 231
resp.checkEntryBranching("Question Q5", 28, "469511435-1The Ultimate Newgrounds 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 3019 MovieClip [CQButtonV1_4] "button3150" in Frame 239
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Frame 239
_global.resp.registerButton(this.button3150, "itemnav", "prevQuestion", 3150);
_global.resp.registerButton(this.button3151, "itemnav", "nextQuestion", 3151);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 469511435-6", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q5-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3151" in Frame 239
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 240
resp.checkTimeAllowed(false);
stop();
Frame 242
resp.setResponseProcessingString("<ops pageid='4'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><varequal respident='questiontitle # 469511435-6'>a</varequal><not><varequal respident='questiontitle # 469511435-6'>b</varequal></not><not><varequal respident='questiontitle # 469511435-6'>c</varequal></not><not><varequal respident='questiontitle # 469511435-6'>d</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 243
gotoAndPlay(this._currentFrame + 3);
Frame 246
resp.stopStartTimer(-1);
Frame 247
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3164" in Frame 247
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3163";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3164";
}
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, "469511435-1The Ultimate Newgrounds Quiz", 5);
Frame 258
resp.majorElementExit("item_result", "Question Q5");
resp.jumpToNextDestination();
Frame 259
resp.checkEntryBranching("Question Q6", 28, "469511435-1The Ultimate Newgrounds 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 3019 MovieClip [CQButtonV1_4] "button3165" in Frame 267
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Frame 267
_global.resp.registerButton(this.button3165, "itemnav", "prevQuestion", 3165);
_global.resp.registerButton(this.button3166, "itemnav", "nextQuestion", 3166);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 469511435-7", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q6-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3166" in Frame 267
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 268
resp.checkTimeAllowed(false);
stop();
Frame 270
resp.setResponseProcessingString("<ops pageid='5'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><not><varequal respident='questiontitle # 469511435-7'>a</varequal></not><varequal respident='questiontitle # 469511435-7'>b</varequal><not><varequal respident='questiontitle # 469511435-7'>c</varequal></not><not><varequal respident='questiontitle # 469511435-7'>d</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 271
gotoAndPlay(this._currentFrame + 3);
Frame 274
resp.stopStartTimer(-1);
Frame 275
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3179" in Frame 275
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3178";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3179";
}
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, "469511435-1The Ultimate Newgrounds Quiz", 6);
Frame 286
resp.majorElementExit("item_result", "Question Q6");
resp.jumpToNextDestination();
Frame 287
resp.checkEntryBranching("Question Q7", 28, "469511435-1The Ultimate Newgrounds 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 3019 MovieClip [CQButtonV1_4] "button3180" in Frame 295
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Frame 295
_global.resp.registerButton(this.button3180, "itemnav", "prevQuestion", 3180);
_global.resp.registerButton(this.button3181, "itemnav", "nextQuestion", 3181);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 469511435-8", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q7-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3181" in Frame 295
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 296
resp.checkTimeAllowed(false);
stop();
Frame 298
resp.setResponseProcessingString("<ops pageid='6'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><not><varequal respident='questiontitle # 469511435-8'>a</varequal></not><not><varequal respident='questiontitle # 469511435-8'>b</varequal></not><varequal respident='questiontitle # 469511435-8'>c</varequal><not><varequal respident='questiontitle # 469511435-8'>d</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 299
gotoAndPlay(this._currentFrame + 3);
Frame 302
resp.stopStartTimer(-1);
Frame 303
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3194" in Frame 303
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3193";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3194";
}
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, "469511435-1The Ultimate Newgrounds Quiz", 7);
Frame 314
resp.majorElementExit("item_result", "Question Q7");
resp.jumpToNextDestination();
Frame 315
resp.checkEntryBranching("Question Q8", 28, "469511435-1The Ultimate Newgrounds 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 3019 MovieClip [CQButtonV1_4] "button3195" in Frame 323
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Frame 323
_global.resp.registerButton(this.button3195, "itemnav", "prevQuestion", 3195);
_global.resp.registerButton(this.button3196, "itemnav", "nextQuestion", 3196);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 469511435-9", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q8-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3196" in Frame 323
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 324
resp.checkTimeAllowed(false);
stop();
Frame 326
resp.setResponseProcessingString("<ops pageid='7'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><not><varequal respident='questiontitle # 469511435-9'>a</varequal></not><not><varequal respident='questiontitle # 469511435-9'>b</varequal></not><not><varequal respident='questiontitle # 469511435-9'>c</varequal></not><varequal respident='questiontitle # 469511435-9'>d</varequal></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 327
gotoAndPlay(this._currentFrame + 3);
Frame 330
resp.stopStartTimer(-1);
Frame 331
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3209" in Frame 331
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3208";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3209";
}
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, "469511435-1The Ultimate Newgrounds Quiz", 8);
Frame 342
resp.majorElementExit("item_result", "Question Q8");
resp.jumpToNextDestination();
Frame 343
resp.checkEntryBranching("Question Q9", 28, "469511435-1The Ultimate Newgrounds 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 3019 MovieClip [CQButtonV1_4] "button3210" in Frame 351
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Frame 351
_global.resp.registerButton(this.button3210, "itemnav", "prevQuestion", 3210);
_global.resp.registerButton(this.button3211, "itemnav", "nextQuestion", 3211);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 469511435-10", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q9-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3211" in Frame 351
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 352
resp.checkTimeAllowed(false);
stop();
Frame 354
resp.setResponseProcessingString("<ops pageid='8'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><not><varequal respident='questiontitle # 469511435-10'>a</varequal></not><not><varequal respident='questiontitle # 469511435-10'>b</varequal></not><varequal respident='questiontitle # 469511435-10'>c</varequal><not><varequal respident='questiontitle # 469511435-10'>d</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 355
gotoAndPlay(this._currentFrame + 3);
Frame 358
resp.stopStartTimer(-1);
Frame 359
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3224" in Frame 359
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3223";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3224";
}
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, "469511435-1The Ultimate Newgrounds Quiz", 9);
Frame 370
resp.majorElementExit("item_result", "Question Q9");
resp.jumpToNextDestination();
Frame 371
resp.checkEntryBranching("Question Q10", 28, "469511435-1The Ultimate Newgrounds 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 3019 MovieClip [CQButtonV1_4] "button3225" in Frame 379
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Frame 379
_global.resp.registerButton(this.button3225, "itemnav", "prevQuestion", 3225);
_global.resp.registerButton(this.button3226, "itemnav", "nextQuestion", 3226);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 469511435-11", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q10-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3226" in Frame 379
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 380
resp.checkTimeAllowed(false);
stop();
Frame 382
resp.setResponseProcessingString("<ops pageid='9'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><not><varequal respident='questiontitle # 469511435-11'>a</varequal></not><varequal respident='questiontitle # 469511435-11'>b</varequal><not><varequal respident='questiontitle # 469511435-11'>c</varequal></not><not><varequal respident='questiontitle # 469511435-11'>d</varequal></not></and></conditionvar><setvar varname='SCORE' action='Set'>10</setvar></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 383
gotoAndPlay(this._currentFrame + 3);
Frame 386
resp.stopStartTimer(-1);
Frame 387
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3239" in Frame 387
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3238";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3239";
}
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, "469511435-1The Ultimate Newgrounds Quiz", 10);
Frame 398
resp.majorElementExit("item_result", "Question Q10");
resp.jumpToNextDestination();
Frame 399
resp.checkEntryBranching("Question Q11", 28, "469511435-1The Ultimate Newgrounds 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 3019 MovieClip [CQButtonV1_4] "button3240" in Frame 407
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Frame 407
_global.resp.registerButton(this.button3240, "itemnav", "prevQuestion", 3240);
_global.resp.registerButton(this.button3241, "itemnav", "nextQuestion", 3241);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 469511435-12", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q11-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3241" in Frame 407
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 408
resp.checkTimeAllowed(false);
stop();
Frame 410
resp.setResponseProcessingString("<ops pageid='10'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><varequal respident='questiontitle # 469511435-12'>a</varequal><not><varequal respident='questiontitle # 469511435-12'>b</varequal></not><not><varequal respident='questiontitle # 469511435-12'>c</varequal></not><not><varequal respident='questiontitle # 469511435-12'>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 3052 MovieClip [CQScrollbarV1_5] "scroller3254" in Frame 415
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3253";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3254";
}
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, "469511435-1The Ultimate Newgrounds Quiz", 11);
Frame 426
resp.majorElementExit("item_result", "Question Q11");
resp.jumpToNextDestination();
Frame 427
resp.checkEntryBranching("Question Q12", 28, "469511435-1The Ultimate Newgrounds 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 3019 MovieClip [CQButtonV1_4] "button3255" in Frame 435
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Frame 435
_global.resp.registerButton(this.button3255, "itemnav", "prevQuestion", 3255);
_global.resp.registerButton(this.button3256, "itemnav", "nextQuestion", 3256);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 469511435-13", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q12-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3256" in Frame 435
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 436
resp.checkTimeAllowed(false);
stop();
Frame 438
resp.setResponseProcessingString("<ops pageid='11'><resprocessing><outcomes><decvar defaultval='0' varname='SCORE' vartype='Decimal'></decvar></outcomes><respcondition continue='No'><conditionvar><and><not><varequal respident='questiontitle # 469511435-13'>a</varequal></not><not><varequal respident='questiontitle # 469511435-13'>b</varequal></not><not><varequal respident='questiontitle # 469511435-13'>c</varequal></not><varequal respident='questiontitle # 469511435-13'>d</varequal></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 3052 MovieClip [CQScrollbarV1_5] "scroller3269" in Frame 443
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3268";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3269";
}
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, "469511435-1The Ultimate Newgrounds Quiz", 12);
Frame 454
resp.majorElementExit("item_result", "Question Q12");
resp.jumpToNextDestination();
Frame 455
resp.checkEntryBranching("Question Q13", 28, "469511435-1The Ultimate Newgrounds 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 3019 MovieClip [CQButtonV1_4] "button3270" in Frame 463
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Frame 463
_global.resp.registerButton(this.button3270, "itemnav", "prevQuestion", 3270);
_global.resp.registerButton(this.button3271, "itemnav", "nextQuestion", 3271);
_global.resp.registerResponseLabelRenderChoice("questiontitle # 469511435-14", 1, 1);
resp.showHideNextButton();
_global.resp.enterVisible("Question Q13-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3271" in Frame 463
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_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><varequal respident='questiontitle # 469511435-14'>a</varequal></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 3052 MovieClip [CQScrollbarV1_5] "scroller3278" in Frame 471
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3277";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3278";
}
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, "469511435-1The Ultimate Newgrounds Quiz", 13);
Frame 482
resp.majorElementExit("item_result", "Question Q13");
resp.jumpToNextDestination();
Frame 483
resp.checkEntryBranching("EndPage", 28, "469511435-1The Ultimate Newgrounds Quiz", 14);
Frame 486
resp.majorElementEnter("item_result", "EndPage");
resp.jumpToNextDestination();
Frame 487
gotoAndPlay(this._currentFrame + 3);
Frame 490
resp.startStopTimer(-1);
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3279" in Frame 491
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Frame 491
_global.resp.registerButton(this.button3279, "itemnav", "prevQuestion", 3279);
_global.resp.registerButton(this.button3280, "itemnav", "nextQuestion", 3280);
resp.showHideNextButton();
_global.resp.enterVisible("EndPage-item-presentation");
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3280" in Frame 491
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 492
resp.checkTimeAllowed(false);
stop();
Frame 494
resp.setResponseProcessingString("<ops pageid='13'></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 495
gotoAndPlay(this._currentFrame + 3);
Frame 498
resp.stopStartTimer(-1);
Frame 499
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3284" in Frame 499
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3283";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3284";
}
Frame 500
resp.checkTimeAllowed(true);
stop();
Frame 502
resp.jumpToNextDestination();
Frame 503
gotoAndPlay(this._currentFrame + 3);
Frame 506
resp.jumpToNextDestination();
Frame 507
resp.checkExitBranching("EndPage", 28, "469511435-1The Ultimate Newgrounds Quiz", 14);
Frame 510
resp.majorElementExit("item_result", "EndPage");
resp.jumpToNextDestination();
Frame 511
gotoAndPlay(this._currentFrame + 3);
Frame 514
resp.stopStartTimer(-1);
Frame 515
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3286" in Frame 515
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3285";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3286";
}
Frame 516
resp.checkTimeAllowed(true);
stop();
Frame 518
resp.jumpToNextDestination();
Frame 519
gotoAndPlay(this._currentFrame + 3);
Frame 522
resp.jumpToNextDestination();
Frame 523
resp.checkExitBranching("469511435-1The Ultimate Newgrounds Quiz", 448, "The Ultimate Newgrounds Quiz #469511435-1", 1);
Frame 526
resp.majorElementExit("section_result", "469511435-1The Ultimate Newgrounds Quiz");
resp.jumpToNextDestination();
Frame 527
resp.checkEntryBranching("quizReview", 476, "The Ultimate Newgrounds Quiz #469511435-1", 2);
Frame 530
resp.majorElementEnter("section_result", "quizReview");
resp.jumpToNextDestination();
Frame 531
gotoAndPlay(this._currentFrame + 3);
Frame 534
resp.startStopTimer(-1);
Frame 535
_global.resp.bypassQuestion();
Frame 536
resp.checkTimeAllowed(false);
stop();
Frame 538
resp.jumpToNextDestination();
Frame 539
resp.checkEntryBranching("CalculationPage", 28, "quizReview", 0);
Frame 542
resp.majorElementEnter("item_result", "CalculationPage");
resp.jumpToNextDestination();
Frame 543
gotoAndPlay(this._currentFrame + 3);
Frame 546
resp.startStopTimer(-1);
Frame 547
_global.resp.bypassQuestion();
Frame 548
resp.checkTimeAllowed(false);
stop();
Frame 550
resp.setResponseProcessingString("<ops pageid='13'><resprocessing><outcomes><decvar defaultval='0' minvalue='0' varname='OVERALLSCORE' vartype='Decimal'></decvar><decvar defaultval='0' minvalue='0' varname='TOTALPOSSIBLESCORE' vartype='Decimal'></decvar><decvar defaultval='0' minvalue='0' maxvalue='100' varname='PERCENTAGESCORE' vartype='Integer'></decvar><decvar defaultval='0' varname='PERCENTAGESCORESTRING' vartype='String'></decvar><decvar defaultval='70' varname='PERCENTAGEPASS' vartype='String'></decvar><decvar defaultval='FAIL' varname='PASSFAIL' vartype='String'></decvar></outcomes><respcondition continue='Yes'><setvar varname='OVERALLSCORE' action='Add' sourcevarname='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds 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='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds 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='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds 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='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds 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='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds 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='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds 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='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds 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='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds 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='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds 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='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds 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='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds 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='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds 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='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q13.SCORE'></setvar></respcondition><respcondition continue='Yes'><setvar varname='TOTALPOSSIBLESCORE' action='Add'>10</setvar></respcondition><respcondition continue='Yes'><conditionvar><and><varlt varname='OVERALLSCORE'>0</varlt></and></conditionvar><setvar varname='OVERALLSCORE' action='Set'>0</setvar></respcondition><respcondition continue='Yes'><setvar varname='PERCENTAGESCORE' sourcevarname='OVERALLSCORE' action='Add'></setvar><setvar varname='PERCENTAGESCORE' action='Multiply'>100</setvar><setvar varname='PERCENTAGESCORE' sourcevarname='TOTALPOSSIBLESCORE' action='Divide'></setvar></respcondition><respcondition continue='Yes'><conditionvar><and><vargte varname='PERCENTAGESCORE'>70</vargte></and></conditionvar><setvar varname='PASSFAIL' action='Set'>PASS</setvar></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 551
gotoAndPlay(this._currentFrame + 3);
Frame 554
resp.stopStartTimer(-1);
Frame 555
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3288" in Frame 555
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3287";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3288";
}
Frame 556
resp.checkTimeAllowed(true);
stop();
Frame 558
resp.jumpToNextDestination();
Frame 559
gotoAndPlay(this._currentFrame + 3);
Frame 562
resp.jumpToNextDestination();
Frame 563
resp.checkExitBranching("CalculationPage", 28, "quizReview", 0);
Frame 566
resp.majorElementExit("item_result", "CalculationPage");
resp.jumpToNextDestination();
Frame 567
resp.checkEntryBranching("StartOfFeedbackPage", 28, "quizReview", 1);
Frame 570
resp.majorElementEnter("item_result", "StartOfFeedbackPage");
resp.jumpToNextDestination();
Frame 571
gotoAndPlay(this._currentFrame + 3);
Frame 574
resp.startStopTimer(-1);
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3289" in Frame 575
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 575
_global.resp.registerButton(this.button3289, "itemnav", "nextQuestion", 3289);
resp.showHideNextButton();
_global.resp.enterVisible("StartOfFeedbackPage-item-presentation");
Frame 576
resp.checkTimeAllowed(false);
stop();
Frame 578
resp.setResponseProcessingString("<ops pageid='19'></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 3052 MovieClip [CQScrollbarV1_5] "scroller3293" in Frame 583
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3292";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3293";
}
Frame 584
resp.checkTimeAllowed(true);
stop();
Frame 586
resp.jumpToNextDestination();
Frame 587
gotoAndPlay(this._currentFrame + 3);
Frame 590
resp.jumpToNextDestination();
Frame 591
resp.checkExitBranching("StartOfFeedbackPage", 28, "quizReview", 1);
Frame 594
resp.majorElementExit("item_result", "StartOfFeedbackPage");
resp.jumpToNextDestination();
Frame 595
resp.checkEntryBranching("ReportPage", 28, "quizReview", 2);
Frame 598
resp.majorElementEnter("item_result", "ReportPage");
resp.jumpToNextDestination();
Frame 599
gotoAndPlay(this._currentFrame + 3);
Frame 602
resp.startStopTimer(-1);
Frame 603
_global.resp.bypassQuestion();
Frame 604
resp.checkTimeAllowed(false);
stop();
Frame 606
resp.setResponseProcessingString("<ops pageid='19'><resprocessing><respcondition continue='Yes'><conditionvar><and><varequal varname='The Ultimate Newgrounds Quiz #469511435-1.quizReview.CalculationPage.PASSFAIL'>PASS</varequal></and></conditionvar><displayfeedback linkrefid='GeneralReport'></displayfeedback><displayfeedback linkrefid='FooterFeedback'></displayfeedback><displayfeedback linkrefid='PassFeedback'></displayfeedback></respcondition><respcondition continue='Yes'><conditionvar><and><varequal varname='The Ultimate Newgrounds Quiz #469511435-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 607
gotoAndPlay(this._currentFrame + 3);
Frame 610
resp.stopStartTimer(-1);
Frame 611
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3322, "itemnav", "prevQuestion", 3322);
_global.resp.registerButton(this.button3323, "itemnav", "nextQuestion", 3323);
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3321" in Frame 611
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3294";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3321";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3322" in Frame 611
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3323" in Frame 611
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 612
resp.checkTimeAllowed(true);
stop();
Frame 614
resp.jumpToNextDestination();
Frame 615
gotoAndPlay(this._currentFrame + 3);
Frame 618
resp.jumpToNextDestination();
Frame 619
resp.checkExitBranching("ReportPage", 28, "quizReview", 2);
Frame 622
resp.majorElementExit("item_result", "ReportPage");
resp.jumpToNextDestination();
Frame 623
resp.checkEntryBranching("FB: Question Q1", 28, "quizReview", 3);
Frame 626
resp.majorElementEnter("item_result", "FB: Question Q1");
resp.jumpToNextDestination();
Frame 627
gotoAndPlay(this._currentFrame + 3);
Frame 630
resp.startStopTimer(-1);
Frame 631
_global.resp.bypassQuestion();
Frame 632
resp.checkTimeAllowed(false);
stop();
Frame 634
resp.setResponseProcessingString("<ops pageid='19'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q1.questiontitle # 469511435-2'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q1.questiontitle # 469511435-2'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q1.questiontitle # 469511435-2'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q1.questiontitle # 469511435-2'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q1.questiontitle # 469511435-2'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q1.questiontitle # 469511435-2'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q1.questiontitle # 469511435-2'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q1.questiontitle # 469511435-2'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 469511435-2'></displayfeedback><displayfeedback linkrefid='Correct Answers # 469511435-2'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q1.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 469511435-2'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 469511435-2'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 635
gotoAndPlay(this._currentFrame + 3);
Frame 638
resp.stopStartTimer(-1);
Frame 639
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3389, "itemnav", "prevQuestion", 3389);
_global.resp.registerButton(this.button3390, "itemnav", "nextQuestion", 3390);
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3388" in Frame 639
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3324";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3388";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3389" in Frame 639
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3390" in Frame 639
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 640
resp.checkTimeAllowed(true);
stop();
Frame 642
resp.jumpToNextDestination();
Frame 643
gotoAndPlay(this._currentFrame + 3);
Frame 646
resp.jumpToNextDestination();
Frame 647
resp.checkExitBranching("FB: Question Q1", 28, "quizReview", 3);
Frame 650
resp.majorElementExit("item_result", "FB: Question Q1");
resp.jumpToNextDestination();
Frame 651
resp.checkEntryBranching("FB: Question Q2", 28, "quizReview", 4);
Frame 654
resp.majorElementEnter("item_result", "FB: Question Q2");
resp.jumpToNextDestination();
Frame 655
gotoAndPlay(this._currentFrame + 3);
Frame 658
resp.startStopTimer(-1);
Frame 659
_global.resp.bypassQuestion();
Frame 660
resp.checkTimeAllowed(false);
stop();
Frame 662
resp.setResponseProcessingString("<ops pageid='19'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q2.questiontitle # 469511435-3'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q2.questiontitle # 469511435-3'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q2.questiontitle # 469511435-3'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q2.questiontitle # 469511435-3'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q2.questiontitle # 469511435-3'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q2.questiontitle # 469511435-3'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q2.questiontitle # 469511435-3'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q2.questiontitle # 469511435-3'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 469511435-3'></displayfeedback><displayfeedback linkrefid='Correct Answers # 469511435-3'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q2.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 469511435-3'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 469511435-3'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 663
gotoAndPlay(this._currentFrame + 3);
Frame 666
resp.stopStartTimer(-1);
Frame 667
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3433, "itemnav", "prevQuestion", 3433);
_global.resp.registerButton(this.button3434, "itemnav", "nextQuestion", 3434);
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3432" in Frame 667
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3391";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3432";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3433" in Frame 667
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3434" in Frame 667
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 668
resp.checkTimeAllowed(true);
stop();
Frame 670
resp.jumpToNextDestination();
Frame 671
gotoAndPlay(this._currentFrame + 3);
Frame 674
resp.jumpToNextDestination();
Frame 675
resp.checkExitBranching("FB: Question Q2", 28, "quizReview", 4);
Frame 678
resp.majorElementExit("item_result", "FB: Question Q2");
resp.jumpToNextDestination();
Frame 679
resp.checkEntryBranching("FB: Question Q3", 28, "quizReview", 5);
Frame 682
resp.majorElementEnter("item_result", "FB: Question Q3");
resp.jumpToNextDestination();
Frame 683
gotoAndPlay(this._currentFrame + 3);
Frame 686
resp.startStopTimer(-1);
Frame 687
_global.resp.bypassQuestion();
Frame 688
resp.checkTimeAllowed(false);
stop();
Frame 690
resp.setResponseProcessingString("<ops pageid='19'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q3.questiontitle # 469511435-4'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q3.questiontitle # 469511435-4'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q3.questiontitle # 469511435-4'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q3.questiontitle # 469511435-4'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q3.questiontitle # 469511435-4'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q3.questiontitle # 469511435-4'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q3.questiontitle # 469511435-4'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q3.questiontitle # 469511435-4'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 469511435-4'></displayfeedback><displayfeedback linkrefid='Correct Answers # 469511435-4'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q3.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 469511435-4'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 469511435-4'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 691
gotoAndPlay(this._currentFrame + 3);
Frame 694
resp.stopStartTimer(-1);
Frame 695
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3477, "itemnav", "prevQuestion", 3477);
_global.resp.registerButton(this.button3478, "itemnav", "nextQuestion", 3478);
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3476" in Frame 695
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3435";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3476";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3477" in Frame 695
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3478" in Frame 695
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 696
resp.checkTimeAllowed(true);
stop();
Frame 698
resp.jumpToNextDestination();
Frame 699
gotoAndPlay(this._currentFrame + 3);
Frame 702
resp.jumpToNextDestination();
Frame 703
resp.checkExitBranching("FB: Question Q3", 28, "quizReview", 5);
Frame 706
resp.majorElementExit("item_result", "FB: Question Q3");
resp.jumpToNextDestination();
Frame 707
resp.checkEntryBranching("FB: Question Q4", 28, "quizReview", 6);
Frame 710
resp.majorElementEnter("item_result", "FB: Question Q4");
resp.jumpToNextDestination();
Frame 711
gotoAndPlay(this._currentFrame + 3);
Frame 714
resp.startStopTimer(-1);
Frame 715
_global.resp.bypassQuestion();
Frame 716
resp.checkTimeAllowed(false);
stop();
Frame 718
resp.setResponseProcessingString("<ops pageid='19'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q4.questiontitle # 469511435-5'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q4.questiontitle # 469511435-5'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q4.questiontitle # 469511435-5'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q4.questiontitle # 469511435-5'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q4.questiontitle # 469511435-5'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q4.questiontitle # 469511435-5'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q4.questiontitle # 469511435-5'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q4.questiontitle # 469511435-5'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected e'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q4.questiontitle # 469511435-5'>e</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected e'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q4.questiontitle # 469511435-5'>e</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 469511435-5'></displayfeedback><displayfeedback linkrefid='Correct Answers # 469511435-5'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q4.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 469511435-5'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 469511435-5'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 719
gotoAndPlay(this._currentFrame + 3);
Frame 722
resp.stopStartTimer(-1);
Frame 723
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3528, "itemnav", "prevQuestion", 3528);
_global.resp.registerButton(this.button3529, "itemnav", "nextQuestion", 3529);
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3527" in Frame 723
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3479";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3527";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3528" in Frame 723
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3529" in Frame 723
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 724
resp.checkTimeAllowed(true);
stop();
Frame 726
resp.jumpToNextDestination();
Frame 727
gotoAndPlay(this._currentFrame + 3);
Frame 730
resp.jumpToNextDestination();
Frame 731
resp.checkExitBranching("FB: Question Q4", 28, "quizReview", 6);
Frame 734
resp.majorElementExit("item_result", "FB: Question Q4");
resp.jumpToNextDestination();
Frame 735
resp.checkEntryBranching("FB: Question Q5", 28, "quizReview", 7);
Frame 738
resp.majorElementEnter("item_result", "FB: Question Q5");
resp.jumpToNextDestination();
Frame 739
gotoAndPlay(this._currentFrame + 3);
Frame 742
resp.startStopTimer(-1);
Frame 743
_global.resp.bypassQuestion();
Frame 744
resp.checkTimeAllowed(false);
stop();
Frame 746
resp.setResponseProcessingString("<ops pageid='19'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q5.questiontitle # 469511435-6'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q5.questiontitle # 469511435-6'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q5.questiontitle # 469511435-6'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q5.questiontitle # 469511435-6'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q5.questiontitle # 469511435-6'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q5.questiontitle # 469511435-6'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q5.questiontitle # 469511435-6'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q5.questiontitle # 469511435-6'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 469511435-6'></displayfeedback><displayfeedback linkrefid='Correct Answers # 469511435-6'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q5.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 469511435-6'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 469511435-6'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 747
gotoAndPlay(this._currentFrame + 3);
Frame 750
resp.stopStartTimer(-1);
Frame 751
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3572, "itemnav", "prevQuestion", 3572);
_global.resp.registerButton(this.button3573, "itemnav", "nextQuestion", 3573);
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3571" in Frame 751
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3530";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3571";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3572" in Frame 751
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3573" in Frame 751
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 752
resp.checkTimeAllowed(true);
stop();
Frame 754
resp.jumpToNextDestination();
Frame 755
gotoAndPlay(this._currentFrame + 3);
Frame 758
resp.jumpToNextDestination();
Frame 759
resp.checkExitBranching("FB: Question Q5", 28, "quizReview", 7);
Frame 762
resp.majorElementExit("item_result", "FB: Question Q5");
resp.jumpToNextDestination();
Frame 763
resp.checkEntryBranching("FB: Question Q6", 28, "quizReview", 8);
Frame 766
resp.majorElementEnter("item_result", "FB: Question Q6");
resp.jumpToNextDestination();
Frame 767
gotoAndPlay(this._currentFrame + 3);
Frame 770
resp.startStopTimer(-1);
Frame 771
_global.resp.bypassQuestion();
Frame 772
resp.checkTimeAllowed(false);
stop();
Frame 774
resp.setResponseProcessingString("<ops pageid='19'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q6.questiontitle # 469511435-7'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q6.questiontitle # 469511435-7'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q6.questiontitle # 469511435-7'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q6.questiontitle # 469511435-7'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q6.questiontitle # 469511435-7'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q6.questiontitle # 469511435-7'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q6.questiontitle # 469511435-7'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q6.questiontitle # 469511435-7'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 469511435-7'></displayfeedback><displayfeedback linkrefid='Correct Answers # 469511435-7'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q6.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 469511435-7'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 469511435-7'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 775
gotoAndPlay(this._currentFrame + 3);
Frame 778
resp.stopStartTimer(-1);
Frame 779
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3616, "itemnav", "prevQuestion", 3616);
_global.resp.registerButton(this.button3617, "itemnav", "nextQuestion", 3617);
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3615" in Frame 779
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3574";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3615";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3616" in Frame 779
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3617" in Frame 779
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 780
resp.checkTimeAllowed(true);
stop();
Frame 782
resp.jumpToNextDestination();
Frame 783
gotoAndPlay(this._currentFrame + 3);
Frame 786
resp.jumpToNextDestination();
Frame 787
resp.checkExitBranching("FB: Question Q6", 28, "quizReview", 8);
Frame 790
resp.majorElementExit("item_result", "FB: Question Q6");
resp.jumpToNextDestination();
Frame 791
resp.checkEntryBranching("FB: Question Q7", 28, "quizReview", 9);
Frame 794
resp.majorElementEnter("item_result", "FB: Question Q7");
resp.jumpToNextDestination();
Frame 795
gotoAndPlay(this._currentFrame + 3);
Frame 798
resp.startStopTimer(-1);
Frame 799
_global.resp.bypassQuestion();
Frame 800
resp.checkTimeAllowed(false);
stop();
Frame 802
resp.setResponseProcessingString("<ops pageid='19'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q7.questiontitle # 469511435-8'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q7.questiontitle # 469511435-8'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q7.questiontitle # 469511435-8'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q7.questiontitle # 469511435-8'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q7.questiontitle # 469511435-8'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q7.questiontitle # 469511435-8'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q7.questiontitle # 469511435-8'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q7.questiontitle # 469511435-8'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 469511435-8'></displayfeedback><displayfeedback linkrefid='Correct Answers # 469511435-8'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q7.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 469511435-8'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 469511435-8'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 803
gotoAndPlay(this._currentFrame + 3);
Frame 806
resp.stopStartTimer(-1);
Frame 807
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3660, "itemnav", "prevQuestion", 3660);
_global.resp.registerButton(this.button3661, "itemnav", "nextQuestion", 3661);
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3659" in Frame 807
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3618";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3659";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3660" in Frame 807
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3661" in Frame 807
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 808
resp.checkTimeAllowed(true);
stop();
Frame 810
resp.jumpToNextDestination();
Frame 811
gotoAndPlay(this._currentFrame + 3);
Frame 814
resp.jumpToNextDestination();
Frame 815
resp.checkExitBranching("FB: Question Q7", 28, "quizReview", 9);
Frame 818
resp.majorElementExit("item_result", "FB: Question Q7");
resp.jumpToNextDestination();
Frame 819
resp.checkEntryBranching("FB: Question Q8", 28, "quizReview", 10);
Frame 822
resp.majorElementEnter("item_result", "FB: Question Q8");
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='19'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q8.questiontitle # 469511435-9'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q8.questiontitle # 469511435-9'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q8.questiontitle # 469511435-9'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q8.questiontitle # 469511435-9'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q8.questiontitle # 469511435-9'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q8.questiontitle # 469511435-9'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q8.questiontitle # 469511435-9'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q8.questiontitle # 469511435-9'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 469511435-9'></displayfeedback><displayfeedback linkrefid='Correct Answers # 469511435-9'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q8.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 469511435-9'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 469511435-9'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 831
gotoAndPlay(this._currentFrame + 3);
Frame 834
resp.stopStartTimer(-1);
Frame 835
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3704, "itemnav", "prevQuestion", 3704);
_global.resp.registerButton(this.button3705, "itemnav", "nextQuestion", 3705);
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3703" in Frame 835
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3662";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3703";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3704" in Frame 835
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3705" in Frame 835
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 836
resp.checkTimeAllowed(true);
stop();
Frame 838
resp.jumpToNextDestination();
Frame 839
gotoAndPlay(this._currentFrame + 3);
Frame 842
resp.jumpToNextDestination();
Frame 843
resp.checkExitBranching("FB: Question Q8", 28, "quizReview", 10);
Frame 846
resp.majorElementExit("item_result", "FB: Question Q8");
resp.jumpToNextDestination();
Frame 847
resp.checkEntryBranching("FB: Question Q9", 28, "quizReview", 11);
Frame 850
resp.majorElementEnter("item_result", "FB: Question Q9");
resp.jumpToNextDestination();
Frame 851
gotoAndPlay(this._currentFrame + 3);
Frame 854
resp.startStopTimer(-1);
Frame 855
_global.resp.bypassQuestion();
Frame 856
resp.checkTimeAllowed(false);
stop();
Frame 858
resp.setResponseProcessingString("<ops pageid='19'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q9.questiontitle # 469511435-10'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q9.questiontitle # 469511435-10'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q9.questiontitle # 469511435-10'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q9.questiontitle # 469511435-10'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q9.questiontitle # 469511435-10'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q9.questiontitle # 469511435-10'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q9.questiontitle # 469511435-10'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q9.questiontitle # 469511435-10'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 469511435-10'></displayfeedback><displayfeedback linkrefid='Correct Answers # 469511435-10'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q9.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 469511435-10'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 469511435-10'></displayfeedback></respcondition></resprocessing></ops>");
resp.concludeResponseProcessingString("true");
resp.jumpToNextDestination();
Frame 859
gotoAndPlay(this._currentFrame + 3);
Frame 862
resp.stopStartTimer(-1);
Frame 863
_global.resp.clearFeedback();
_global.resp.registerButton(this.button3748, "itemnav", "prevQuestion", 3748);
_global.resp.registerButton(this.button3749, "itemnav", "nextQuestion", 3749);
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3747" in Frame 863
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3706";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3747";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3748" in Frame 863
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3749" in Frame 863
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_listener = "_global.resp";
_accessText = "next";
}
Frame 864
resp.checkTimeAllowed(true);
stop();
Frame 866
resp.jumpToNextDestination();
Frame 867
gotoAndPlay(this._currentFrame + 3);
Frame 870
resp.jumpToNextDestination();
Frame 871
resp.checkExitBranching("FB: Question Q9", 28, "quizReview", 11);
Frame 874
resp.majorElementExit("item_result", "FB: Question Q9");
resp.jumpToNextDestination();
Frame 875
resp.checkEntryBranching("FB: Question Q10", 28, "quizReview", 12);
Frame 878
resp.majorElementEnter("item_result", "FB: Question Q10");
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='19'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q10.questiontitle # 469511435-11'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q10.questiontitle # 469511435-11'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q10.questiontitle # 469511435-11'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q10.questiontitle # 469511435-11'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q10.questiontitle # 469511435-11'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q10.questiontitle # 469511435-11'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q10.questiontitle # 469511435-11'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q10.questiontitle # 469511435-11'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 469511435-11'></displayfeedback><displayfeedback linkrefid='Correct Answers # 469511435-11'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q10.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 469511435-11'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 469511435-11'></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.button3792, "itemnav", "prevQuestion", 3792);
_global.resp.registerButton(this.button3793, "itemnav", "nextQuestion", 3793);
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3791" in Frame 891
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3750";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3791";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3792" in Frame 891
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3793" in Frame 891
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_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("FB: Question Q10", 28, "quizReview", 12);
Frame 902
resp.majorElementExit("item_result", "FB: Question Q10");
resp.jumpToNextDestination();
Frame 903
resp.checkEntryBranching("FB: Question Q11", 28, "quizReview", 13);
Frame 906
resp.majorElementEnter("item_result", "FB: Question Q11");
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='19'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q11.questiontitle # 469511435-12'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q11.questiontitle # 469511435-12'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q11.questiontitle # 469511435-12'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q11.questiontitle # 469511435-12'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q11.questiontitle # 469511435-12'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q11.questiontitle # 469511435-12'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q11.questiontitle # 469511435-12'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q11.questiontitle # 469511435-12'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 469511435-12'></displayfeedback><displayfeedback linkrefid='Correct Answers # 469511435-12'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q11.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 469511435-12'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 469511435-12'></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.button3836, "itemnav", "prevQuestion", 3836);
_global.resp.registerButton(this.button3837, "itemnav", "nextQuestion", 3837);
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3835" in Frame 919
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3794";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3835";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3836" in Frame 919
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3837" in Frame 919
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_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 Q11", 28, "quizReview", 13);
Frame 930
resp.majorElementExit("item_result", "FB: Question Q11");
resp.jumpToNextDestination();
Frame 931
resp.checkEntryBranching("FB: Question Q12", 28, "quizReview", 14);
Frame 934
resp.majorElementEnter("item_result", "FB: Question Q12");
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='19'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q12.questiontitle # 469511435-13'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q12.questiontitle # 469511435-13'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected b'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q12.questiontitle # 469511435-13'>b</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected b'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q12.questiontitle # 469511435-13'>b</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected c'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q12.questiontitle # 469511435-13'>c</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected c'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q12.questiontitle # 469511435-13'>c</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Selected d'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q12.questiontitle # 469511435-13'>d</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected d'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q12.questiontitle # 469511435-13'>d</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 469511435-13'></displayfeedback><displayfeedback linkrefid='Correct Answers # 469511435-13'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q12.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 469511435-13'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 469511435-13'></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.button3880, "itemnav", "prevQuestion", 3880);
_global.resp.registerButton(this.button3881, "itemnav", "nextQuestion", 3881);
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3879" in Frame 947
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3838";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3879";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3880" in Frame 947
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3881" in Frame 947
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_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 Q12", 28, "quizReview", 14);
Frame 958
resp.majorElementExit("item_result", "FB: Question Q12");
resp.jumpToNextDestination();
Frame 959
resp.checkEntryBranching("FB: Question Q13", 28, "quizReview", 15);
Frame 962
resp.majorElementEnter("item_result", "FB: Question Q13");
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='19'><resprocessing><outcomes></outcomes><respcondition continue='Yes'><displayfeedback linkrefid='Selected a'></displayfeedback><conditionvar><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q13.questiontitle # 469511435-14'>a</varequal></and></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='UnSelected a'></displayfeedback><conditionvar><not><and><varequal respident='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q13.questiontitle # 469511435-14'>a</varequal></and></not></conditionvar></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Repeat Question # 469511435-14'></displayfeedback><displayfeedback linkrefid='Correct Answers # 469511435-14'></displayfeedback></respcondition><respcondition continue='No'><conditionvar><and><varequal varname='The Ultimate Newgrounds Quiz #469511435-1.469511435-1The Ultimate Newgrounds Quiz.Question Q13.SCORE'>10</varequal></and></conditionvar><displayfeedback linkrefid='Correct # 469511435-14'></displayfeedback></respcondition><respcondition continue='Yes'><displayfeedback linkrefid='Incorrect # 469511435-14'></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.button3903, "itemnav", "prevQuestion", 3903);
_global.resp.registerButton(this.button3904, "itemnav", "nextQuestion", 3904);
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3902" in Frame 975
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3882";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3902";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3903" in Frame 975
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3066";
_theUpRoll = "clip3070";
_theDownNormal = "clip3070";
_theDownRoll = "clip3070";
_listener = "_global.resp";
_accessText = "back";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3904" in Frame 975
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3009";
_theUpRoll = "clip3013";
_theDownNormal = "clip3013";
_theDownRoll = "clip3013";
_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 Q13", 28, "quizReview", 15);
Frame 986
resp.majorElementExit("item_result", "FB: Question Q13");
resp.jumpToNextDestination();
Frame 987
gotoAndPlay(this._currentFrame + 3);
Frame 990
resp.stopStartTimer(-1);
Frame 991
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3906" in Frame 991
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3905";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3906";
}
Frame 992
resp.checkTimeAllowed(true);
stop();
Frame 994
resp.jumpToNextDestination();
Frame 995
gotoAndPlay(this._currentFrame + 3);
Frame 998
resp.jumpToNextDestination();
Frame 999
resp.checkExitBranching("quizReview", 476, "The Ultimate Newgrounds Quiz #469511435-1", 2);
Frame 1002
resp.majorElementExit("section_result", "quizReview");
resp.jumpToNextDestination();
Frame 1003
gotoAndPlay(this._currentFrame + 3);
Frame 1006
resp.stopStartTimer(-1);
Frame 1007
_global.resp.clearFeedback();
_global.resp.showFeedback();
Instance of Symbol 3052 MovieClip [CQScrollbarV1_5] "scroller3908" in Frame 1007
//component parameters
onClipEvent (initialize) {
_panecontent = "scrollable3907";
_panealpha = "0";
_panecolor = "#FFFFFF";
_listener = "_global.resp";
_uid = "scroller3908";
}
Frame 1008
resp.checkTimeAllowed(true);
stop();
Frame 1010
resp.jumpToNextDestination();
Frame 1011
gotoAndPlay(this._currentFrame + 3);
Frame 1014
resp.jumpToNextDestination();
Frame 1015
resp.checkExitBranching("The Ultimate Newgrounds Quiz #469511435-1", 1008, "NA", 0);
Frame 1018
resp.majorElementExit("assessment_result", "The Ultimate Newgrounds Quiz #469511435-1");
resp.jumpToNextDestination();
Frame 1019
this.clip3909._accProps = new Object();
this.clip3909._accProps.forceSimple = true;
this.clip3909._accProps.name = "";
this.clip3909.tabIndex = 3909;
this.clip3909.tabEnabled = false;
this.clip3909.tabChildren = true;
this.text3910.tabIndex = 3910;
Frame 1020
if ((forwardURL != null) && (forwardURL != "")) {
this.getURL(("javascript:document.location = '" + forwardURL) + "';", "_self");
}
_global.resp.moveHead(1);
Frame 1021
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 1023
stop();
Frame 1024
stop();
Frame 1025
stop();
Frame 1026
stop();
Symbol 3009 MovieClip [clip3009] Frame 1
_global.cqRootPointer3010 = this;
Symbol 3013 MovieClip [clip3013] Frame 1
_global.cqRootPointer3014 = this;
Symbol 3019 MovieClip [CQButtonV1_4] Frame 1
#initclip 1
function CQButton() {
this.respObject = eval (this._listener);
this.accessibilityText = this._accessText;
this._accProps = new Object();
this._accProps.forceSimple = true;
this.attachMovie(this._theUpNormal, "tmp_un", 3);
this.upnormal = this.tmp_un;
this.upnormal._accProps = new Object();
this.upnormal._accProps.silent = true;
this.attachMovie(this._theUpRoll, "tmp_ur", 4);
this.uproll = this.tmp_ur;
this.uproll._accProps = new Object();
this.uproll._accProps.silent = true;
this.attachMovie(this._theDownNormal, "tmp_dn", 5);
this.downnormal = this.tmp_dn;
this.downnormal._accProps = new Object();
this.downnormal._accProps.silent = true;
this.attachMovie(this._theDownRoll, "tmp_dr", 6);
this.downroll = this.tmp_dr;
this.downroll._accProps = new Object();
this.downroll._accProps.silent = true;
if (this.isMouseOver()) {
this.setTheState(2);
} else {
this.setTheState(1);
}
}
CQButton.prototype = new MovieClip();
Object.registerClass("CQButtonV1_4", CQButton);
CQButton.prototype.setTheState = function (stateNo) {
this.state = stateNo;
if ((this.state == 1) | (this.state == 2)) {
this.buttonStateText = "unchecked";
} else {
this.buttonStateText = "checked";
}
this.upnormal._visible = stateNo == 1;
this.uproll._visible = stateNo == 2;
this.downnormal._visible = stateNo == 3;
this.downroll._visible = stateNo == 4;
this._accProps.name = (this.accessibilityText + " ") + this.buttonStateText;
};
CQButton.prototype.onRollOver = function () {
if (this.state == 1) {
this.setTheState(2);
} else if (this.state == 3) {
this.setTheState(4);
}
};
CQButton.prototype.onRollOut = function () {
if (this.state == 2) {
this.setTheState(1);
} else if (this.state == 4) {
this.setTheState(3);
}
};
CQButton.prototype.onDragOver = function () {
if (this.state == 1) {
this.setTheState(2);
} else if (this.state == 3) {
this.setTheState(4);
}
};
CQButton.prototype.onDragOut = function () {
if (this.state == 2) {
this.setTheState(1);
} else if (this.state == 4) {
this.setTheState(3);
}
};
CQButton.prototype.onPress = function () {
this.respObject.beenHit(this);
};
CQButton.prototype.onRelease = function () {
};
CQButton.prototype.onReleaseOutside = function () {
};
CQButton.prototype.switchOn = function () {
if (this.state == 1) {
this.setTheState(3);
} else if (this.state == 2) {
this.setTheState(4);
}
};
CQButton.prototype.switchOff = function () {
if (this.state == 3) {
this.setTheState(1);
} else if (this.state == 4) {
this.setTheState(2);
}
};
CQButton.prototype.setVisible = function (isVisible) {
this._visible = isVisible;
if (isVisible == false) {
this.onRollOut();
} else if (isVisible && (this.isMouseOver())) {
this.onRollOver();
}
};
CQButton.prototype.isMouseOver = function () {
return((((this._xmouse > 0) && (this._ymouse > 0)) && (this._xmouse < this._width)) && (this._ymouse < this._height));
};
#endinitclip
Symbol 3017 MovieClip Frame 1
_global.cqRootPointer3018 = this;
if (this._parent == null) {
this.createTextField("version", 10, 0, 0, 200, 200);
this.version.multiline = true;
this.version.wordWrap = true;
this.version.text = "Symbol: CQButtonV1_4\nVersion 1.4\nCopyright 2005 Central Question Ltd.";
}
Symbol 3021 MovieClip Frame 1
this.text3022.tabIndex = 3022;
Symbol 3033 Button
on (press) {
if (_xmouse > SliderButton._x) {
_parent.MovePlaneByOffset(_parent.paneWidth, 0);
_parent.delayEffect = 0;
ScrollUpdateID = setInterval(_parent, "MovePlaneByOffset", 100, _parent.paneWidth, 0, 2);
} else {
_parent.MovePlaneByOffset(-_parent.paneWidth, 0);
_parent.delayEffect = 0;
ScrollUpdateID = setInterval(_parent, "MovePlaneByOffset", 100, -_parent.paneWidth, 0, 2);
}
}
on (rollOut, release, dragOut, releaseOutside) {
clearInterval(ScrollUpdateID);
}
Symbol 3035 Button
on (press) {
if (..:PageMove._width == _width) {
startDrag ("", false, 0, 0, 0, ..:PageMove._height - _height);
ScrollUpdateID = setInterval(..:_parent, "LockToScrolls", 25);
} else if (..:PageMove._height == _height) {
startDrag ("", false, 0, 0, ..:PageMove._width - _width, 0);
ScrollUpdateID = setInterval(..:_parent, "LockToScrolls", 25);
}
}
on (release, releaseOutside) {
clearInterval(ScrollUpdateID);
stopDrag();
}
Symbol 3038 Button
on (press) {
if (_ymouse > SliderButton._y) {
_parent.MovePlaneByOffset(0, _parent.paneHeight);
_parent.delayEffect = 0;
ScrollUpdateID = setInterval(_parent, "MovePlaneByOffset", 100, 0, _parent.paneHeight, 2);
} else {
_parent.MovePlaneByOffset(0, -_parent.paneHeight);
_parent.delayEffect = 0;
ScrollUpdateID = setInterval(_parent, "MovePlaneByOffset", 100, 0, -_parent.paneHeight, 2);
}
}
on (rollOut, release, dragOut, releaseOutside) {
clearInterval(ScrollUpdateID);
}
Symbol 3042 Button
on (press) {
this.MovePlaneByOffset(0, -15);
this.delayEffect = 0;
ScrollRepeatID = setInterval(this, "MovePlaneByOffset", 25, 0, -15, 10);
}
on (rollOut, release, dragOut, releaseOutside) {
clearInterval(ScrollRepeatID);
}
Symbol 3045 Button
on (press) {
this.MovePlaneByOffset(15, 0);
this.delayEffect = 0;
ScrollRepeatID = setInterval(this, "MovePlaneByOffset", 25, 15, 0, 10);
}
on (rollOut, release, dragOut, releaseOutside) {
clearInterval(ScrollRepeatID);
}
Symbol 3048 Button
on (press) {
this.MovePlaneByOffset(-15, 0);
this.delayEffect = 0;
ScrollRepeatID = setInterval(this, "MovePlaneByOffset", 25, -15, 0, 10);
}
on (rollOut, release, dragOut, releaseOutside) {
clearInterval(ScrollRepeatID);
}
Symbol 3051 Button
on (press) {
this.MovePlaneByOffset(0, 15);
this.delayEffect = 0;
ScrollRepeatID = setInterval(this, "MovePlaneByOffset", 25, 0, 15, 10);
}
on (rollOut, release, dragOut, releaseOutside) {
clearInterval(ScrollRepeatID);
}
Symbol 3052 MovieClip [CQScrollbarV1_5] Frame 1
#initclip 2
function ScrollPaneClass() {
ScrollPaneClass.prototype.addProperty("MaxXScroll", this.getMaxXScroll, null);
ScrollPaneClass.prototype.addProperty("MaxYScroll", this.getMaxYScroll, null);
ScrollPaneClass.prototype.addProperty("XScrollPos", this.getXScrollPos, this.setXScrollPos);
ScrollPaneClass.prototype.addProperty("YScrollPos", this.getYScrollPos, this.setYScrollPos);
ScrollPaneClass.prototype.addProperty("width", this.getPWidth, this.setPWidth);
ScrollPaneClass.prototype.addProperty("height", this.getPHeight, this.setPHeight);
ScrollPaneClass.prototype.addProperty("paneWidth", this.getPlaneWidth, null);
ScrollPaneClass.prototype.addProperty("paneHeight", this.getPlaneHeight, null);
ScrollPaneClass.prototype.addProperty("content", this.getScrollContent, this.setScrollContent);
this.NewWidth = this._width;
this.NewHeight = this._height;
this._xscale = 100;
this._yscale = 100;
this.DelayEffect = -1;
this.Bounds._alpha = 0;
this.tabenabled = false;
this.tabchildren = true;
this.bUp.tabenabled = true;
this.bUp.tabindex = 16003;
this.bDown.tabenabled = true;
this.bDown.tabindex = 16004;
this.bLeft.tabenabled = true;
this.bLeft.tabindex = 16001;
this.bRight.tabenabled = true;
this.bRight.tabindex = 16002;
this.HScrollBar.tabenabled = false;
this.HScrollBar.tabchildren = false;
this.VScrollBar.tabenabled = false;
this.VScrollBar.tabchildren = false;
this.BUp.useHandCursor = false;
this.BDown.useHandCursor = false;
this.BLeft.useHandCursor = false;
this.BRight.useHandCursor = false;
this.HScrollBar.PageMove.useHandCursor = false;
this.VScrollBar.PageMove.useHandCursor = false;
this.HScrollBar.SliderButton.SB.useHandCursor = false;
this.VScrollBar.SliderButton.SB.useHandCursor = false;
this.ScrollPosition = new Object();
this.ScrollPosition.x = 0;
this.ScrollPosition.y = 0;
this.setScrollContent(this._panecontent);
this.Bounds._alpha = Number(this._panealpha);
if (this._panecolor.length > 6) {
new Color(this.Bounds).setRGB("0x" + this._panecolor.substr(1, 6));
} else {
new Color(this.Bounds).setRGB("0x" + this._panecolor);
}
this.respObject = eval (this._listener);
this.theScrollBarName = this._uid;
this.initScrollX = this.respObject.getPairValue(this.theScrollBarName + "x");
this.initScrollY = this.respObject.getPairValue(this.theScrollBarName + "y");
this.setSize(this.NewWidth, this.NewHeight);
this.setScrollPos(this.initScrollX, this.initScrollY);
this._visible = false;
var updateF = function (theObj) {
clearInterval(theObj.myTimer);
theObj._visible = true;
theObj.setSize(theObj.NewWidth, theObj.NewHeight);
theObj.setScrollPos(theObj.initScrollX, theObj.initScrollY);
};
this.myTimer = setInterval(updateF, 1, this);
}
ScrollPaneClass.prototype = new MovieClip();
Object.registerClass("CQScrollbarV1_5", ScrollPaneClass);
ScrollPaneClass.prototype.setSize = function (NewWidth, NewHeight) {
if (((arguments.length < 2) || (isNaN(NewWidth))) || (isNaN(NewHeight))) {
return(undefined);
}
var w = Math.max(NewWidth, 100);
var h = Math.max(NewHeight, 100);
this.Bounds._width = w;
this.Bounds._height = h;
this.Refresh();
};
ScrollPaneClass.prototype.Refresh = function () {
this.ActiveXScroller = false;
this.ActiveYScroller = false;
this.PlaneMask._width = this.Bounds._width;
this.PlaneMask._height = this.Bounds._height;
if (this.MaxXScroll != 0) {
this.ActiveXScroller = true;
this.PlaneMask._height = this.Bounds._height - 16;
}
if (this.MaxYScroll != 0) {
this.ActiveYScroller = true;
this.PlaneMask._width = this.Bounds._width - 16;
}
if (this.MaxXScroll != 0) {
this.ActiveXScroller = true;
this.PlaneMask._height = this.Bounds._height - 16;
}
this.BUp._x = this.paneWidth;
this.BUp._y = 0;
this.BDown._x = this.paneWidth;
this.BDown._y = this.paneHeight - 16;
this.VScrollBar._x = this.paneWidth;
this.VScrollBar._y = 17;
this.VScrollBar.PageMove._height = Math.round(this.paneHeight - 34);
this.VScrollBar.SliderButton._height = Math.round((this.VScrollBar.PageMove._height * this.paneHeight) / (this.paneHeight + this.MaxYScroll));
this.VScrollBar.SliderButton._height = Math.max(this.VScrollBar.SliderButton._height, 4);
this.BLeft._x = 0;
this.BLeft._y = this.paneHeight;
this.BRight._x = this.paneWidth - 16;
this.BRight._y = this.paneHeight;
this.HScrollBar._x = 17;
this.HScrollBar._y = this.paneHeight;
this.HScrollBar.PageMove._width = Math.round(this.paneWidth - 34);
this.HScrollBar.SliderButton._width = Math.round((this.HScrollBar.PageMove._width * this.paneWidth) / (this.paneWidth + this.MaxXScroll));
this.HScrollBar.SliderButton._width = Math.max(this.HScrollBar.SliderButton._width, 4);
this.BLeft._visible = this.ActiveXScroller;
this.BRight._visible = this.ActiveXScroller;
this.HScrollBar._visible = this.ActiveXScroller;
this.BUp._visible = this.ActiveYScroller;
this.BDown._visible = this.ActiveYScroller;
this.VScrollBar._visible = this.ActiveYScroller;
this.MovePlaneByOffset(0, 0);
};
ScrollPaneClass.prototype.getScrollContent = function () {
return(this.PlaneContent);
};
ScrollPaneClass.prototype.setScrollContent = function (NewScrollingMC) {
if ((this.PlaneContent != undefined) && (target != this.PlaneContent)) {
this.PlaneContent._visible = false;
this.PlaneContent.removeMovieClip();
this.PlaneContent.unloadMovie();
}
this.PlaneContent = eval ("this._parent." + NewScrollingMC);
this.PlaneContent.scrollPaneRef = this;
this.ScrollPosition = new Object();
this.ScrollPosition.x = 0;
this.ScrollPosition.y = 0;
this.MovePlane(this.ScrollPosition.x, this.ScrollPosition.y);
this.PlaneContent.setMask(this.PlaneMask);
this.setSize(this._width, this._height);
};
ScrollPaneClass.prototype.MovePlane = function (x, y, DelayEff) {
if (DelayEff > 0) {
this.DelayEffect++;
if (this.DelayEffect <= DelayEff) {
return(undefined);
}
}
x = Math.max(x, 0);
y = Math.max(y, 0);
x = Math.min(x, this.MaxXScroll);
y = Math.min(y, this.MaxYScroll);
this.offset = new Object();
this.offset.x = x;
this.offset.y = y;
this.localToGlobal(this.offset);
this.PlaneContent._parent.globalToLocal(this.offset);
this.PlaneContent._x = this.offset.x;
this.PlaneContent._y = this.offset.y;
var contentAdjust = this.PlaneContent.getBounds(this.PlaneContent);
var contentAdjustX = contentAdjust.xMin;
var contentAdjustY = contentAdjust.yMin;
var contentBounds = this.PlaneContent.getBounds(this);
this.offset.x = -(contentBounds.xMin - contentAdjustX);
this.offset.y = -(contentBounds.yMin - contentAdjustY);
this.localToGlobal(this.offset);
this.PlaneContent._parent.globalToLocal(this.offset);
this.PlaneContent._x = this.offset.x - this._x;
this.PlaneContent._y = this.offset.y - this._y;
this.ScrollPosition.x = x;
this.ScrollPosition.y = y;
this.HScrollBar.SliderButton._x = Math.round((this.HScrollBar.PageMove._width - this.HScrollBar.SliderButton._width) * (x / this.MaxXScroll));
this.VScrollBar.SliderButton._y = Math.round((this.VScrollBar.PageMove._height - this.VScrollBar.SliderButton._height) * (y / this.MaxYScroll));
updateAfterEvent();
if (this.respObject != undefined) {
var scrollPos = this.getScrollPos();
this.respObject.setPair(this.theScrollBarName + "x", this.XScrollPos);
this.respObject.setPair(this.theScrollBarName + "y", this.YScrollPos);
}
};
ScrollPaneClass.prototype.MovePlaneByOffset = function (x, y, DelayEff) {
this.MovePlane(this.ScrollPosition.x + x, this.ScrollPosition.y + y, DelayEff);
};
ScrollPaneClass.prototype.LockToScrolls = function () {
var x = Math.round(this.MaxXScroll * (this.HScrollBar.SliderButton._x / (this.HScrollBar.PageMove._width - this.HScrollBar.SliderButton._width)));
var y = Math.round(this.MaxYScroll * (this.VScrollBar.SliderButton._y / (this.VScrollBar.PageMove._height - this.VScrollBar.SliderButton._height)));
this.MovePlane(x, y);
};
ScrollPaneClass.prototype.getMaxXScroll = function () {
var contentAdjust = this.PlaneContent.getBounds(this.PlaneContent);
var contentAdjustX = contentAdjust.xMin;
return(Math.max(((this.PlaneContent._width + contentAdjustX) - this._x) - this.PlaneMask._width, 0));
};
ScrollPaneClass.prototype.getMaxYScroll = function () {
var contentAdjust = this.PlaneContent.getBounds(this.PlaneContent);
var contentAdjustY = contentAdjust.yMin;
return(Math.max(((this.PlaneContent._height + contentAdjustY) - this._y) - this.PlaneMask._height, 0));
};
ScrollPaneClass.prototype.getXScrollPos = function () {
return(this.ScrollPosition.x);
};
ScrollPaneClass.prototype.setXScrollPos = function (value) {
this.MovePlane(value, this.YScrollPos);
};
ScrollPaneClass.prototype.getYScrollPos = function () {
return(this.ScrollPosition.y);
};
ScrollPaneClass.prototype.setYScrollPos = function (value) {
this.MovePlane(this.XScrollPos, value);
};
ScrollPaneClass.prototype.getPWidth = function () {
return(this.Bounds._width);
};
ScrollPaneClass.prototype.setPWidth = function (value) {
this.setSize(value, this.Bounds._height);
};
ScrollPaneClass.prototype.getPHeight = function () {
return(this.Bounds._height);
};
ScrollPaneClass.prototype.setPHeight = function (value) {
this.setSize(this.Bounds._width, value);
};
ScrollPaneClass.prototype.getPlaneWidth = function () {
return(this.PlaneMask._width);
};
ScrollPaneClass.prototype.getPlaneHeight = function () {
return(this.PlaneMask._height);
};
ScrollPaneClass.prototype.setScrollPos = function (x, y) {
this.movePlane(x, y);
};
ScrollPaneClass.prototype.getScrollPos = function () {
return({x:this.XScrollPos, y:this.YScrollPos});
};
ScrollPaneClass.prototype.prepareForPrinting = function () {
this.PlaneContent.setMask(null);
this.PlaneMask._visible = false;
};
ScrollPaneClass.prototype.printingFinished = function () {
this.PlaneMask._visible = true;
this.PlaneContent.setMask(this.PlaneMask);
};
#endinitclip
Symbol 3025 MovieClip Frame 1
_global.cqRootPointer3026 = this;
if (this._parent == null) {
this.createTextField("version", 10, 0, 0, 200, 200);
this.version.multiline = true;
this.version.wordWrap = true;
this.version.text = "Symbol: CQScrollbarV1_5\nVersion 1.5\nCopyright 2005 Central Question Ltd.";
}
Symbol 3061 MovieClip [CQRandomV1_2] Frame 1
#initclip 3
function CQRandom() {
this.respObject = eval (this._listener);
this.theValue = new Array();
}
CQRandom.prototype = new Movieclip();
Object.registerClass("CQRandomV1_2", CQRandom);
CQRandom.prototype.setAnswers = function (theAnswer) {
if (theAnswer.length == 0) {
if (Number(this._min) >= Number(this._max)) {
var i = 0;
while (i < Number(this._max)) {
this.theValue[i] = "1";
i++;
}
} else {
var i = 0;
while (i < Number(this._max)) {
this.theValue[i] = "0";
i++;
}
var i = 0;
while (i < Number(this._min)) {
do {
this.theIndex = Math.floor(Math.random() * this._max);
} while (this.theValue[this.theIndex] == "1");
this.theValue[this.theIndex] = "1";
i++;
}
}
var updateF = function (theObj) {
clearInterval(theObj.myTimer);
theObj.respObject.updateFlash(theObj._responseid);
};
this.myTimer = setInterval(updateF, 50, this);
} else {
var i = 0;
while (i < theAnswer.length) {
this.theValue[i / 2] = theAnswer[i];
i = i + 2;
}
}
};
CQRandom.prototype.getAnswers = function () {
var returnValue = new Array();
var questionNumber = 0;
var i = 0;
while (i < this.theValue.length) {
returnValue[i * 2] = this.theValue[i];
if (this.theValue[i] == "1") {
questionNumber++;
}
returnValue[(i * 2) + 1] = (((((this._text1 + " ") + questionNumber) + " ") + this._text2) + " ") + this._min;
i++;
}
return(returnValue);
};
CQRandom.prototype.isFullyAnswered = function () {
if (this.theValue.length == 0) {
return(false);
}
return(true);
};
#endinitclip
Symbol 3059 MovieClip Frame 1
_global.cqRootPointer3060 = this;
if (this._parent == null) {
this.createTextField("version", 10, 0, 0, 100, 100);
this.version.multiline = true;
this.version.wordWrap = true;
this.version.text = "Symbol: CQRandomV1_2\nVersion 1.2\nCopyright 2005 Central Question Ltd.";
}
Symbol 3057 MovieClip Frame 1
this.text3058.tabIndex = 3058;
this.custom3062.tabIndex = 3062;
_global.resp.registerResponseStrRenderFlash("RandomChooser", custom3062);
Instance of Symbol 3061 MovieClip [CQRandomV1_2] "custom3062" in Symbol 3057 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_allocatedwidth = "-10000";
_allocatedheight = "-10000";
_responseid = "RandomChooser";
_min = "1";
_max = "1";
_listener = "_global.resp";
_text1 = "Question ";
_text2 = " of";
_option0 = "responselabel3001";
_option0TabIndex = "3063";
_option0ident = "RandomChooser";
}
Symbol 3066 MovieClip [clip3066] Frame 1
_global.cqRootPointer3067 = this;
Symbol 3070 MovieClip [clip3070] Frame 1
_global.cqRootPointer3071 = this;
Symbol 3079 MovieClip [clip3079] Frame 1
_global.cqRootPointer3080 = this;
Symbol 3083 MovieClip [clip3083] Frame 1
_global.cqRootPointer3084 = this;
Symbol 3087 MovieClip [clip3087] Frame 1
_global.cqRootPointer3088 = this;
Symbol 3077 MovieClip Frame 1
this.text3078.tabIndex = 3078;
_global.resp.registerButton(this.button3091, "questiontitle # 469511435-2", "a", 3091);
this.text3092.tabIndex = 3092;
_global.resp.registerButton(this.button3093, "questiontitle # 469511435-2", "b", 3093);
this.text3094.tabIndex = 3094;
_global.resp.registerButton(this.button3095, "questiontitle # 469511435-2", "c", 3095);
this.text3096.tabIndex = 3096;
_global.resp.registerButton(this.button3097, "questiontitle # 469511435-2", "d", 3097);
this.text3098.tabIndex = 3098;
this.text3099.tabIndex = 3099;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3091" in Symbol 3077 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " 25,000";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3093" in Symbol 3077 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " 100,000";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3095" in Symbol 3077 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " 50,000";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3097" in Symbol 3077 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " 150,000";
}
Symbol 3105 MovieClip Frame 1
this.text3106.tabIndex = 3106;
_global.resp.registerButton(this.button3107, "questiontitle # 469511435-3", "a", 3107);
this.text3108.tabIndex = 3108;
_global.resp.registerButton(this.button3109, "questiontitle # 469511435-3", "b", 3109);
this.text3110.tabIndex = 3110;
_global.resp.registerButton(this.button3111, "questiontitle # 469511435-3", "c", 3111);
this.text3112.tabIndex = 3112;
_global.resp.registerButton(this.button3113, "questiontitle # 469511435-3", "d", 3113);
this.text3114.tabIndex = 3114;
this.text3115.tabIndex = 3115;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3107" in Symbol 3105 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " May 14 2001";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3109" in Symbol 3105 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " January 18 1999";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3111" in Symbol 3105 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " June 23 2000";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3113" in Symbol 3105 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " April 6 2000";
}
Symbol 3120 MovieClip Frame 1
this.text3121.tabIndex = 3121;
_global.resp.registerButton(this.button3122, "questiontitle # 469511435-4", "a", 3122);
this.text3123.tabIndex = 3123;
_global.resp.registerButton(this.button3124, "questiontitle # 469511435-4", "b", 3124);
this.text3125.tabIndex = 3125;
_global.resp.registerButton(this.button3126, "questiontitle # 469511435-4", "c", 3126);
this.text3127.tabIndex = 3127;
_global.resp.registerButton(this.button3128, "questiontitle # 469511435-4", "d", 3128);
this.text3129.tabIndex = 3129;
this.text3130.tabIndex = 3130;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3122" in Symbol 3120 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Alien Hominid";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3124" in Symbol 3120 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Dad n' Me";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3126" in Symbol 3120 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Pico's School";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3128" in Symbol 3120 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Salad Fingers";
}
Symbol 3135 MovieClip Frame 1
this.text3136.tabIndex = 3136;
_global.resp.registerButton(this.button3137, "questiontitle # 469511435-5", "a", 3137);
this.text3138.tabIndex = 3138;
_global.resp.registerButton(this.button3139, "questiontitle # 469511435-5", "b", 3139);
this.text3140.tabIndex = 3140;
_global.resp.registerButton(this.button3141, "questiontitle # 469511435-5", "c", 3141);
this.text3142.tabIndex = 3142;
_global.resp.registerButton(this.button3143, "questiontitle # 469511435-5", "d", 3143);
this.text3144.tabIndex = 3144;
_global.resp.registerButton(this.button3145, "questiontitle # 469511435-5", "e", 3145);
this.text3146.tabIndex = 3146;
this.text3147.tabIndex = 3147;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3137" in Symbol 3135 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " December 15 1999";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3139" in Symbol 3135 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " October 11 2002";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3141" in Symbol 3135 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " July 6 1995";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3143" in Symbol 3135 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " July 7 1999";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3145" in Symbol 3135 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " March 28 1998";
}
Symbol 3152 MovieClip Frame 1
this.text3153.tabIndex = 3153;
_global.resp.registerButton(this.button3154, "questiontitle # 469511435-6", "a", 3154);
this.text3155.tabIndex = 3155;
_global.resp.registerButton(this.button3156, "questiontitle # 469511435-6", "b", 3156);
this.text3157.tabIndex = 3157;
_global.resp.registerButton(this.button3158, "questiontitle # 469511435-6", "c", 3158);
this.text3159.tabIndex = 3159;
_global.resp.registerButton(this.button3160, "questiontitle # 469511435-6", "d", 3160);
this.text3161.tabIndex = 3161;
this.text3162.tabIndex = 3162;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3154" in Symbol 3152 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Sherbert";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3156" in Symbol 3152 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Mittens";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3158" in Symbol 3152 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Hernandez";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3160" in Symbol 3152 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Ralph";
}
Symbol 3167 MovieClip Frame 1
this.text3168.tabIndex = 3168;
_global.resp.registerButton(this.button3169, "questiontitle # 469511435-7", "a", 3169);
this.text3170.tabIndex = 3170;
_global.resp.registerButton(this.button3171, "questiontitle # 469511435-7", "b", 3171);
this.text3172.tabIndex = 3172;
_global.resp.registerButton(this.button3173, "questiontitle # 469511435-7", "c", 3173);
this.text3174.tabIndex = 3174;
_global.resp.registerButton(this.button3175, "questiontitle # 469511435-7", "d", 3175);
this.text3176.tabIndex = 3176;
this.text3177.tabIndex = 3177;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3169" in Symbol 3167 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Josh Bedn";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3171" in Symbol 3167 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " David Firth";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3173" in Symbol 3167 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Brian Beaton";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3175" in Symbol 3167 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " jeremy Lokken";
}
Symbol 3182 MovieClip Frame 1
this.text3183.tabIndex = 3183;
_global.resp.registerButton(this.button3184, "questiontitle # 469511435-8", "a", 3184);
this.text3185.tabIndex = 3185;
_global.resp.registerButton(this.button3186, "questiontitle # 469511435-8", "b", 3186);
this.text3187.tabIndex = 3187;
_global.resp.registerButton(this.button3188, "questiontitle # 469511435-8", "c", 3188);
this.text3189.tabIndex = 3189;
_global.resp.registerButton(this.button3190, "questiontitle # 469511435-8", "d", 3190);
this.text3191.tabIndex = 3191;
this.text3192.tabIndex = 3192;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3184" in Symbol 3182 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Wade Fulp";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3186" in Symbol 3182 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " liljim";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3188" in Symbol 3182 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Johnny Utah";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3190" in Symbol 3182 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Bob";
}
Symbol 3197 MovieClip Frame 1
this.text3198.tabIndex = 3198;
_global.resp.registerButton(this.button3199, "questiontitle # 469511435-9", "a", 3199);
this.text3200.tabIndex = 3200;
_global.resp.registerButton(this.button3201, "questiontitle # 469511435-9", "b", 3201);
this.text3202.tabIndex = 3202;
_global.resp.registerButton(this.button3203, "questiontitle # 469511435-9", "c", 3203);
this.text3204.tabIndex = 3204;
_global.resp.registerButton(this.button3205, "questiontitle # 469511435-9", "d", 3205);
this.text3206.tabIndex = 3206;
this.text3207.tabIndex = 3207;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3199" in Symbol 3197 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " 70";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3201" in Symbol 3197 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " 65";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3203" in Symbol 3197 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " 50";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3205" in Symbol 3197 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " 60";
}
Symbol 3212 MovieClip Frame 1
this.text3213.tabIndex = 3213;
_global.resp.registerButton(this.button3214, "questiontitle # 469511435-10", "a", 3214);
this.text3215.tabIndex = 3215;
_global.resp.registerButton(this.button3216, "questiontitle # 469511435-10", "b", 3216);
this.text3217.tabIndex = 3217;
_global.resp.registerButton(this.button3218, "questiontitle # 469511435-10", "c", 3218);
this.text3219.tabIndex = 3219;
_global.resp.registerButton(this.button3220, "questiontitle # 469511435-10", "d", 3220);
this.text3221.tabIndex = 3221;
this.text3222.tabIndex = 3222;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3214" in Symbol 3212 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " 1998";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3216" in Symbol 3212 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " 1995";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3218" in Symbol 3212 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " 1999";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3220" in Symbol 3212 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " 2000";
}
Symbol 3227 MovieClip Frame 1
this.text3228.tabIndex = 3228;
_global.resp.registerButton(this.button3229, "questiontitle # 469511435-11", "a", 3229);
this.text3230.tabIndex = 3230;
_global.resp.registerButton(this.button3231, "questiontitle # 469511435-11", "b", 3231);
this.text3232.tabIndex = 3232;
_global.resp.registerButton(this.button3233, "questiontitle # 469511435-11", "c", 3233);
this.text3234.tabIndex = 3234;
_global.resp.registerButton(this.button3235, "questiontitle # 469511435-11", "d", 3235);
this.text3236.tabIndex = 3236;
this.text3237.tabIndex = 3237;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3229" in Symbol 3227 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Pico's School";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3231" in Symbol 3227 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Dad n' Me";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3233" in Symbol 3227 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Castle Crashers";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3235" in Symbol 3227 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Alien Hominid";
}
Symbol 3242 MovieClip Frame 1
this.text3243.tabIndex = 3243;
_global.resp.registerButton(this.button3244, "questiontitle # 469511435-12", "a", 3244);
this.text3245.tabIndex = 3245;
_global.resp.registerButton(this.button3246, "questiontitle # 469511435-12", "b", 3246);
this.text3247.tabIndex = 3247;
_global.resp.registerButton(this.button3248, "questiontitle # 469511435-12", "c", 3248);
this.text3249.tabIndex = 3249;
_global.resp.registerButton(this.button3250, "questiontitle # 469511435-12", "d", 3250);
this.text3251.tabIndex = 3251;
this.text3252.tabIndex = 3252;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3244" in Symbol 3242 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Neo-Geo";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3246" in Symbol 3242 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Newgrounds, it was always the name";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3248" in Symbol 3242 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Tanker-grounds";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3250" in Symbol 3242 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Newground order";
}
Symbol 3257 MovieClip Frame 1
this.text3258.tabIndex = 3258;
_global.resp.registerButton(this.button3259, "questiontitle # 469511435-13", "a", 3259);
this.text3260.tabIndex = 3260;
_global.resp.registerButton(this.button3261, "questiontitle # 469511435-13", "b", 3261);
this.text3262.tabIndex = 3262;
_global.resp.registerButton(this.button3263, "questiontitle # 469511435-13", "c", 3263);
this.text3264.tabIndex = 3264;
_global.resp.registerButton(this.button3265, "questiontitle # 469511435-13", "d", 3265);
this.text3266.tabIndex = 3266;
this.text3267.tabIndex = 3267;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3259" in Symbol 3257 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Gears of War";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3261" in Symbol 3257 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Call of Duty 4";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3263" in Symbol 3257 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Doom";
}
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3265" in Symbol 3257 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Portal";
}
Symbol 3272 MovieClip Frame 1
this.text3273.tabIndex = 3273;
_global.resp.registerButton(this.button3274, "questiontitle # 469511435-14", "a", 3274);
this.text3275.tabIndex = 3275;
this.text3276.tabIndex = 3276;
Instance of Symbol 3019 MovieClip [CQButtonV1_4] "button3274" in Symbol 3272 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
_theUpNormal = "clip3079";
_theUpRoll = "clip3083";
_theDownNormal = "clip3087";
_theDownRoll = "clip3087";
_listener = "_global.resp";
_accessText = " Yes, I am ready to see my answers.";
}
Symbol 3281 MovieClip Frame 1
this.text3282.tabIndex = 3282;
Symbol 3290 MovieClip Frame 1
this.text3291.tabIndex = 3291;
Symbol 3302 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 3302 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 3302 MovieClip Frame 3
printAsBitmap (this._parent._parent._parent, "bmax");
Symbol 3302 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 3298 MovieClip [clip3298] Frame 1
_global.cqRootPointer3299 = this;
Symbol 3295 MovieClip Frame 1
_global.resp.registerFeedback("GeneralReportResponse", this);
Symbol 3295 MovieClip Frame 2
this.text3296.tabIndex = 3296;
this.clip3297._accProps = new Object();
this.clip3297._accProps.forceSimple = true;
this.clip3297._accProps.name = "";
this.clip3297.tabIndex = 3297;
this.clip3297.tabEnabled = false;
this.clip3297.tabChildren = true;
this.text3303.tabIndex = 3303;
this.text3304.tabIndex = 3304;
this.text3305.tabIndex = 3305;
this.text3305.background = false;
this.text3305.backgroundColor = -1;
this.text3305.border = false;
this.text3305.borderColor = -16777216;
this.text3305.maxChars = 10000;
this.text3305.password = false;
_global.resp.populateMatvar(this.text3305, "The Ultimate Newgrounds Quiz #469511435-1.quizReview.CalculationPage.OVERALLSCORE", 1, false);
this.text3306.tabIndex = 3306;
this.text3307.tabIndex = 3307;
this.text3307.background = false;
this.text3307.backgroundColor = -1;
this.text3307.border = false;
this.text3307.borderColor = -16777216;
this.text3307.maxChars = 10000;
this.text3307.password = false;
_global.resp.populateMatvar(this.text3307, "The Ultimate Newgrounds Quiz #469511435-1.quizReview.CalculationPage.PERCENTAGESCORE", 1, false);
this.text3308.tabIndex = 3308;
this.text3309.tabIndex = 3309;
this.text3310.tabIndex = 3310;
this.text3310.background = false;
this.text3310.backgroundColor = -1;
this.text3310.border = false;
this.text3310.borderColor = -16777216;
this.text3310.maxChars = 10000;
this.text3310.password = false;
_global.resp.populateMatvar(this.text3310, "The Ultimate Newgrounds Quiz #469511435-1.quizReview.CalculationPage.TOTALPOSSIBLESCORE", 1, false);
this.text3311.tabIndex = 3311;
this.text3312.tabIndex = 3312;
this.text3312.background = false;
this.text3312.backgroundColor = -1;
this.text3312.border = false;
this.text3312.borderColor = -16777216;
this.text3312.maxChars = 10000;
this.text3312.password = false;
_global.resp.populateMatvar(this.text3312, "The Ultimate Newgrounds Quiz #469511435-1.quizReview.CalculationPage.PERCENTAGEPASS", 1, false);
this.text3313.tabIndex = 3313;
this.stop();
Symbol 3314 MovieClip Frame 1
_global.resp.registerFeedback("PassFeedbackResponse", this);
Symbol 3314 MovieClip Frame 2
this.text3315.tabIndex = 3315;
this.text3316.tabIndex = 3316;
this.stop();
Symbol 3317 MovieClip Frame 1
_global.resp.registerFeedback("FailFeedbackResponse", this);
Symbol 3317 MovieClip Frame 2
this.text3318.tabIndex = 3318;
this.text3319.tabIndex = 3319;
this.stop();
Symbol 3320 MovieClip Frame 1
_global.resp.registerFeedback("FooterFeedbackResponse", this);
Symbol 3320 MovieClip Frame 2
this.stop();
Symbol 3325 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 469511435-2Response", this);
Symbol 3325 MovieClip Frame 2
this.text3326.tabIndex = 3326;
this.stop();
Symbol 3330 MovieClip [clip3330] Frame 1
_global.cqRootPointer3331 = this;
Symbol 3327 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3327 MovieClip Frame 2
this.text3328.tabIndex = 3328;
this.clip3329._accProps = new Object();
this.clip3329._accProps.forceSimple = true;
this.clip3329._accProps.name = "Cross";
this.clip3329.tabIndex = 3329;
this.clip3329.tabEnabled = false;
this.clip3329.tabChildren = true;
this.clip3335._accProps = new Object();
this.clip3335._accProps.forceSimple = true;
this.clip3335._accProps.name = "Unselected Radio Button";
this.clip3335.tabIndex = 3335;
this.clip3335.tabEnabled = false;
this.clip3335.tabChildren = true;
this.stop();
Symbol 3336 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3336 MovieClip Frame 2
this.text3337.tabIndex = 3337;
this.clip3338._accProps = new Object();
this.clip3338._accProps.forceSimple = true;
this.clip3338._accProps.name = "Unselected Radio Button";
this.clip3338.tabIndex = 3338;
this.clip3338.tabEnabled = false;
this.clip3338.tabChildren = true;
this.stop();
Symbol 3339 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3339 MovieClip Frame 2
this.text3340.tabIndex = 3340;
this.clip3341._accProps = new Object();
this.clip3341._accProps.forceSimple = true;
this.clip3341._accProps.name = "Cross";
this.clip3341.tabIndex = 3341;
this.clip3341.tabEnabled = false;
this.clip3341.tabChildren = true;
this.clip3342._accProps = new Object();
this.clip3342._accProps.forceSimple = true;
this.clip3342._accProps.name = "Unselected Radio Button";
this.clip3342.tabIndex = 3342;
this.clip3342.tabEnabled = false;
this.clip3342.tabChildren = true;
this.stop();
Symbol 3343 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3343 MovieClip Frame 2
this.text3344.tabIndex = 3344;
this.clip3345._accProps = new Object();
this.clip3345._accProps.forceSimple = true;
this.clip3345._accProps.name = "Unselected Radio Button";
this.clip3345.tabIndex = 3345;
this.clip3345.tabEnabled = false;
this.clip3345.tabChildren = true;
this.stop();
Symbol 3349 MovieClip [clip3349] Frame 1
_global.cqRootPointer3350 = this;
Symbol 3346 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3346 MovieClip Frame 2
this.text3347.tabIndex = 3347;
this.clip3348._accProps = new Object();
this.clip3348._accProps.forceSimple = true;
this.clip3348._accProps.name = "Tick";
this.clip3348.tabIndex = 3348;
this.clip3348.tabEnabled = false;
this.clip3348.tabChildren = true;
this.clip3354._accProps = new Object();
this.clip3354._accProps.forceSimple = true;
this.clip3354._accProps.name = "Unselected Radio Button";
this.clip3354.tabIndex = 3354;
this.clip3354.tabEnabled = false;
this.clip3354.tabChildren = true;
this.stop();
Symbol 3358 MovieClip [clip3358] Frame 1
_global.cqRootPointer3359 = this;
Symbol 3355 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3355 MovieClip Frame 2
this.text3356.tabIndex = 3356;
this.clip3357._accProps = new Object();
this.clip3357._accProps.forceSimple = true;
this.clip3357._accProps.name = "Arrow";
this.clip3357.tabIndex = 3357;
this.clip3357.tabEnabled = false;
this.clip3357.tabChildren = true;
this.clip3361._accProps = new Object();
this.clip3361._accProps.forceSimple = true;
this.clip3361._accProps.name = "Unselected Radio Button";
this.clip3361.tabIndex = 3361;
this.clip3361.tabEnabled = false;
this.clip3361.tabChildren = true;
this.stop();
Symbol 3362 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3362 MovieClip Frame 2
this.text3363.tabIndex = 3363;
this.clip3364._accProps = new Object();
this.clip3364._accProps.forceSimple = true;
this.clip3364._accProps.name = "Cross";
this.clip3364.tabIndex = 3364;
this.clip3364.tabEnabled = false;
this.clip3364.tabChildren = true;
this.clip3365._accProps = new Object();
this.clip3365._accProps.forceSimple = true;
this.clip3365._accProps.name = "Unselected Radio Button";
this.clip3365.tabIndex = 3365;
this.clip3365.tabEnabled = false;
this.clip3365.tabChildren = true;
this.stop();
Symbol 3366 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3366 MovieClip Frame 2
this.text3367.tabIndex = 3367;
this.clip3368._accProps = new Object();
this.clip3368._accProps.forceSimple = true;
this.clip3368._accProps.name = "Unselected Radio Button";
this.clip3368.tabIndex = 3368;
this.clip3368.tabEnabled = false;
this.clip3368.tabChildren = true;
this.stop();
Symbol 3372 MovieClip [clip3372] Frame 1
_global.cqRootPointer3373 = this;
Symbol 3369 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 469511435-2Response", this);
Symbol 3369 MovieClip Frame 2
this.text3370.tabIndex = 3370;
this.clip3371._accProps = new Object();
this.clip3371._accProps.forceSimple = true;
this.clip3371._accProps.name = "Tick";
this.clip3371.tabIndex = 3371;
this.clip3371.tabEnabled = false;
this.clip3371.tabChildren = true;
this.text3377.tabIndex = 3377;
this.stop();
Symbol 3381 MovieClip [clip3381] Frame 1
_global.cqRootPointer3382 = this;
Symbol 3378 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 469511435-2Response", this);
Symbol 3378 MovieClip Frame 2
this.text3379.tabIndex = 3379;
this.clip3380._accProps = new Object();
this.clip3380._accProps.forceSimple = true;
this.clip3380._accProps.name = "Cross";
this.clip3380.tabIndex = 3380;
this.clip3380.tabEnabled = false;
this.clip3380.tabChildren = true;
this.text3386.tabIndex = 3386;
this.stop();
Symbol 3387 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 469511435-2Response", this);
Symbol 3387 MovieClip Frame 2
this.stop();
Symbol 3392 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 469511435-3Response", this);
Symbol 3392 MovieClip Frame 2
this.text3393.tabIndex = 3393;
this.stop();
Symbol 3394 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3394 MovieClip Frame 2
this.text3395.tabIndex = 3395;
this.clip3396._accProps = new Object();
this.clip3396._accProps.forceSimple = true;
this.clip3396._accProps.name = "Cross";
this.clip3396.tabIndex = 3396;
this.clip3396.tabEnabled = false;
this.clip3396.tabChildren = true;
this.clip3397._accProps = new Object();
this.clip3397._accProps.forceSimple = true;
this.clip3397._accProps.name = "Unselected Radio Button";
this.clip3397.tabIndex = 3397;
this.clip3397.tabEnabled = false;
this.clip3397.tabChildren = true;
this.stop();
Symbol 3398 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3398 MovieClip Frame 2
this.text3399.tabIndex = 3399;
this.clip3400._accProps = new Object();
this.clip3400._accProps.forceSimple = true;
this.clip3400._accProps.name = "Unselected Radio Button";
this.clip3400.tabIndex = 3400;
this.clip3400.tabEnabled = false;
this.clip3400.tabChildren = true;
this.stop();
Symbol 3401 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3401 MovieClip Frame 2
this.text3402.tabIndex = 3402;
this.clip3403._accProps = new Object();
this.clip3403._accProps.forceSimple = true;
this.clip3403._accProps.name = "Cross";
this.clip3403.tabIndex = 3403;
this.clip3403.tabEnabled = false;
this.clip3403.tabChildren = true;
this.clip3404._accProps = new Object();
this.clip3404._accProps.forceSimple = true;
this.clip3404._accProps.name = "Unselected Radio Button";
this.clip3404.tabIndex = 3404;
this.clip3404.tabEnabled = false;
this.clip3404.tabChildren = true;
this.stop();
Symbol 3405 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3405 MovieClip Frame 2
this.text3406.tabIndex = 3406;
this.clip3407._accProps = new Object();
this.clip3407._accProps.forceSimple = true;
this.clip3407._accProps.name = "Unselected Radio Button";
this.clip3407.tabIndex = 3407;
this.clip3407.tabEnabled = false;
this.clip3407.tabChildren = true;
this.stop();
Symbol 3408 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3408 MovieClip Frame 2
this.text3409.tabIndex = 3409;
this.clip3410._accProps = new Object();
this.clip3410._accProps.forceSimple = true;
this.clip3410._accProps.name = "Cross";
this.clip3410.tabIndex = 3410;
this.clip3410.tabEnabled = false;
this.clip3410.tabChildren = true;
this.clip3411._accProps = new Object();
this.clip3411._accProps.forceSimple = true;
this.clip3411._accProps.name = "Unselected Radio Button";
this.clip3411.tabIndex = 3411;
this.clip3411.tabEnabled = false;
this.clip3411.tabChildren = true;
this.stop();
Symbol 3412 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3412 MovieClip Frame 2
this.text3413.tabIndex = 3413;
this.clip3414._accProps = new Object();
this.clip3414._accProps.forceSimple = true;
this.clip3414._accProps.name = "Unselected Radio Button";
this.clip3414.tabIndex = 3414;
this.clip3414.tabEnabled = false;
this.clip3414.tabChildren = true;
this.stop();
Symbol 3415 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3415 MovieClip Frame 2
this.text3416.tabIndex = 3416;
this.clip3417._accProps = new Object();
this.clip3417._accProps.forceSimple = true;
this.clip3417._accProps.name = "Tick";
this.clip3417.tabIndex = 3417;
this.clip3417.tabEnabled = false;
this.clip3417.tabChildren = true;
this.clip3418._accProps = new Object();
this.clip3418._accProps.forceSimple = true;
this.clip3418._accProps.name = "Unselected Radio Button";
this.clip3418.tabIndex = 3418;
this.clip3418.tabEnabled = false;
this.clip3418.tabChildren = true;
this.stop();
Symbol 3419 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3419 MovieClip Frame 2
this.text3420.tabIndex = 3420;
this.clip3421._accProps = new Object();
this.clip3421._accProps.forceSimple = true;
this.clip3421._accProps.name = "Arrow";
this.clip3421.tabIndex = 3421;
this.clip3421.tabEnabled = false;
this.clip3421.tabChildren = true;
this.clip3422._accProps = new Object();
this.clip3422._accProps.forceSimple = true;
this.clip3422._accProps.name = "Unselected Radio Button";
this.clip3422.tabIndex = 3422;
this.clip3422.tabEnabled = false;
this.clip3422.tabChildren = true;
this.stop();
Symbol 3423 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 469511435-3Response", this);
Symbol 3423 MovieClip Frame 2
this.text3424.tabIndex = 3424;
this.clip3425._accProps = new Object();
this.clip3425._accProps.forceSimple = true;
this.clip3425._accProps.name = "Tick";
this.clip3425.tabIndex = 3425;
this.clip3425.tabEnabled = false;
this.clip3425.tabChildren = true;
this.text3426.tabIndex = 3426;
this.stop();
Symbol 3427 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 469511435-3Response", this);
Symbol 3427 MovieClip Frame 2
this.text3428.tabIndex = 3428;
this.clip3429._accProps = new Object();
this.clip3429._accProps.forceSimple = true;
this.clip3429._accProps.name = "Cross";
this.clip3429.tabIndex = 3429;
this.clip3429.tabEnabled = false;
this.clip3429.tabChildren = true;
this.text3430.tabIndex = 3430;
this.stop();
Symbol 3431 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 469511435-3Response", this);
Symbol 3431 MovieClip Frame 2
this.stop();
Symbol 3436 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 469511435-4Response", this);
Symbol 3436 MovieClip Frame 2
this.text3437.tabIndex = 3437;
this.stop();
Symbol 3438 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3438 MovieClip Frame 2
this.text3439.tabIndex = 3439;
this.clip3440._accProps = new Object();
this.clip3440._accProps.forceSimple = true;
this.clip3440._accProps.name = "Tick";
this.clip3440.tabIndex = 3440;
this.clip3440.tabEnabled = false;
this.clip3440.tabChildren = true;
this.clip3441._accProps = new Object();
this.clip3441._accProps.forceSimple = true;
this.clip3441._accProps.name = "Unselected Radio Button";
this.clip3441.tabIndex = 3441;
this.clip3441.tabEnabled = false;
this.clip3441.tabChildren = true;
this.stop();
Symbol 3442 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3442 MovieClip Frame 2
this.text3443.tabIndex = 3443;
this.clip3444._accProps = new Object();
this.clip3444._accProps.forceSimple = true;
this.clip3444._accProps.name = "Arrow";
this.clip3444.tabIndex = 3444;
this.clip3444.tabEnabled = false;
this.clip3444.tabChildren = true;
this.clip3445._accProps = new Object();
this.clip3445._accProps.forceSimple = true;
this.clip3445._accProps.name = "Unselected Radio Button";
this.clip3445.tabIndex = 3445;
this.clip3445.tabEnabled = false;
this.clip3445.tabChildren = true;
this.stop();
Symbol 3446 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3446 MovieClip Frame 2
this.text3447.tabIndex = 3447;
this.clip3448._accProps = new Object();
this.clip3448._accProps.forceSimple = true;
this.clip3448._accProps.name = "Cross";
this.clip3448.tabIndex = 3448;
this.clip3448.tabEnabled = false;
this.clip3448.tabChildren = true;
this.clip3449._accProps = new Object();
this.clip3449._accProps.forceSimple = true;
this.clip3449._accProps.name = "Unselected Radio Button";
this.clip3449.tabIndex = 3449;
this.clip3449.tabEnabled = false;
this.clip3449.tabChildren = true;
this.stop();
Symbol 3450 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3450 MovieClip Frame 2
this.text3451.tabIndex = 3451;
this.clip3452._accProps = new Object();
this.clip3452._accProps.forceSimple = true;
this.clip3452._accProps.name = "Unselected Radio Button";
this.clip3452.tabIndex = 3452;
this.clip3452.tabEnabled = false;
this.clip3452.tabChildren = true;
this.stop();
Symbol 3453 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3453 MovieClip Frame 2
this.text3454.tabIndex = 3454;
this.clip3455._accProps = new Object();
this.clip3455._accProps.forceSimple = true;
this.clip3455._accProps.name = "Cross";
this.clip3455.tabIndex = 3455;
this.clip3455.tabEnabled = false;
this.clip3455.tabChildren = true;
this.clip3456._accProps = new Object();
this.clip3456._accProps.forceSimple = true;
this.clip3456._accProps.name = "Unselected Radio Button";
this.clip3456.tabIndex = 3456;
this.clip3456.tabEnabled = false;
this.clip3456.tabChildren = true;
this.stop();
Symbol 3457 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3457 MovieClip Frame 2
this.text3458.tabIndex = 3458;
this.clip3459._accProps = new Object();
this.clip3459._accProps.forceSimple = true;
this.clip3459._accProps.name = "Unselected Radio Button";
this.clip3459.tabIndex = 3459;
this.clip3459.tabEnabled = false;
this.clip3459.tabChildren = true;
this.stop();
Symbol 3460 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3460 MovieClip Frame 2
this.text3461.tabIndex = 3461;
this.clip3462._accProps = new Object();
this.clip3462._accProps.forceSimple = true;
this.clip3462._accProps.name = "Cross";
this.clip3462.tabIndex = 3462;
this.clip3462.tabEnabled = false;
this.clip3462.tabChildren = true;
this.clip3463._accProps = new Object();
this.clip3463._accProps.forceSimple = true;
this.clip3463._accProps.name = "Unselected Radio Button";
this.clip3463.tabIndex = 3463;
this.clip3463.tabEnabled = false;
this.clip3463.tabChildren = true;
this.stop();
Symbol 3464 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3464 MovieClip Frame 2
this.text3465.tabIndex = 3465;
this.clip3466._accProps = new Object();
this.clip3466._accProps.forceSimple = true;
this.clip3466._accProps.name = "Unselected Radio Button";
this.clip3466.tabIndex = 3466;
this.clip3466.tabEnabled = false;
this.clip3466.tabChildren = true;
this.stop();
Symbol 3467 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 469511435-4Response", this);
Symbol 3467 MovieClip Frame 2
this.text3468.tabIndex = 3468;
this.clip3469._accProps = new Object();
this.clip3469._accProps.forceSimple = true;
this.clip3469._accProps.name = "Tick";
this.clip3469.tabIndex = 3469;
this.clip3469.tabEnabled = false;
this.clip3469.tabChildren = true;
this.text3470.tabIndex = 3470;
this.stop();
Symbol 3471 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 469511435-4Response", this);
Symbol 3471 MovieClip Frame 2
this.text3472.tabIndex = 3472;
this.clip3473._accProps = new Object();
this.clip3473._accProps.forceSimple = true;
this.clip3473._accProps.name = "Cross";
this.clip3473.tabIndex = 3473;
this.clip3473.tabEnabled = false;
this.clip3473.tabChildren = true;
this.text3474.tabIndex = 3474;
this.stop();
Symbol 3475 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 469511435-4Response", this);
Symbol 3475 MovieClip Frame 2
this.stop();
Symbol 3480 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 469511435-5Response", this);
Symbol 3480 MovieClip Frame 2
this.text3481.tabIndex = 3481;
this.stop();
Symbol 3482 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3482 MovieClip Frame 2
this.text3483.tabIndex = 3483;
this.clip3484._accProps = new Object();
this.clip3484._accProps.forceSimple = true;
this.clip3484._accProps.name = "Cross";
this.clip3484.tabIndex = 3484;
this.clip3484.tabEnabled = false;
this.clip3484.tabChildren = true;
this.clip3485._accProps = new Object();
this.clip3485._accProps.forceSimple = true;
this.clip3485._accProps.name = "Unselected Radio Button";
this.clip3485.tabIndex = 3485;
this.clip3485.tabEnabled = false;
this.clip3485.tabChildren = true;
this.stop();
Symbol 3486 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3486 MovieClip Frame 2
this.text3487.tabIndex = 3487;
this.clip3488._accProps = new Object();
this.clip3488._accProps.forceSimple = true;
this.clip3488._accProps.name = "Unselected Radio Button";
this.clip3488.tabIndex = 3488;
this.clip3488.tabEnabled = false;
this.clip3488.tabChildren = true;
this.stop();
Symbol 3489 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3489 MovieClip Frame 2
this.text3490.tabIndex = 3490;
this.clip3491._accProps = new Object();
this.clip3491._accProps.forceSimple = true;
this.clip3491._accProps.name = "Cross";
this.clip3491.tabIndex = 3491;
this.clip3491.tabEnabled = false;
this.clip3491.tabChildren = true;
this.clip3492._accProps = new Object();
this.clip3492._accProps.forceSimple = true;
this.clip3492._accProps.name = "Unselected Radio Button";
this.clip3492.tabIndex = 3492;
this.clip3492.tabEnabled = false;
this.clip3492.tabChildren = true;
this.stop();
Symbol 3493 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3493 MovieClip Frame 2
this.text3494.tabIndex = 3494;
this.clip3495._accProps = new Object();
this.clip3495._accProps.forceSimple = true;
this.clip3495._accProps.name = "Unselected Radio Button";
this.clip3495.tabIndex = 3495;
this.clip3495.tabEnabled = false;
this.clip3495.tabChildren = true;
this.stop();
Symbol 3496 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3496 MovieClip Frame 2
this.text3497.tabIndex = 3497;
this.clip3498._accProps = new Object();
this.clip3498._accProps.forceSimple = true;
this.clip3498._accProps.name = "Tick";
this.clip3498.tabIndex = 3498;
this.clip3498.tabEnabled = false;
this.clip3498.tabChildren = true;
this.clip3499._accProps = new Object();
this.clip3499._accProps.forceSimple = true;
this.clip3499._accProps.name = "Unselected Radio Button";
this.clip3499.tabIndex = 3499;
this.clip3499.tabEnabled = false;
this.clip3499.tabChildren = true;
this.stop();
Symbol 3500 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3500 MovieClip Frame 2
this.text3501.tabIndex = 3501;
this.clip3502._accProps = new Object();
this.clip3502._accProps.forceSimple = true;
this.clip3502._accProps.name = "Arrow";
this.clip3502.tabIndex = 3502;
this.clip3502.tabEnabled = false;
this.clip3502.tabChildren = true;
this.clip3503._accProps = new Object();
this.clip3503._accProps.forceSimple = true;
this.clip3503._accProps.name = "Unselected Radio Button";
this.clip3503.tabIndex = 3503;
this.clip3503.tabEnabled = false;
this.clip3503.tabChildren = true;
this.stop();
Symbol 3504 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3504 MovieClip Frame 2
this.text3505.tabIndex = 3505;
this.clip3506._accProps = new Object();
this.clip3506._accProps.forceSimple = true;
this.clip3506._accProps.name = "Cross";
this.clip3506.tabIndex = 3506;
this.clip3506.tabEnabled = false;
this.clip3506.tabChildren = true;
this.clip3507._accProps = new Object();
this.clip3507._accProps.forceSimple = true;
this.clip3507._accProps.name = "Unselected Radio Button";
this.clip3507.tabIndex = 3507;
this.clip3507.tabEnabled = false;
this.clip3507.tabChildren = true;
this.stop();
Symbol 3508 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3508 MovieClip Frame 2
this.text3509.tabIndex = 3509;
this.clip3510._accProps = new Object();
this.clip3510._accProps.forceSimple = true;
this.clip3510._accProps.name = "Unselected Radio Button";
this.clip3510.tabIndex = 3510;
this.clip3510.tabEnabled = false;
this.clip3510.tabChildren = true;
this.stop();
Symbol 3511 MovieClip Frame 1
_global.resp.registerFeedback("Selected eResponse", this);
Symbol 3511 MovieClip Frame 2
this.text3512.tabIndex = 3512;
this.clip3513._accProps = new Object();
this.clip3513._accProps.forceSimple = true;
this.clip3513._accProps.name = "Cross";
this.clip3513.tabIndex = 3513;
this.clip3513.tabEnabled = false;
this.clip3513.tabChildren = true;
this.clip3514._accProps = new Object();
this.clip3514._accProps.forceSimple = true;
this.clip3514._accProps.name = "Unselected Radio Button";
this.clip3514.tabIndex = 3514;
this.clip3514.tabEnabled = false;
this.clip3514.tabChildren = true;
this.stop();
Symbol 3515 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected eResponse", this);
Symbol 3515 MovieClip Frame 2
this.text3516.tabIndex = 3516;
this.clip3517._accProps = new Object();
this.clip3517._accProps.forceSimple = true;
this.clip3517._accProps.name = "Unselected Radio Button";
this.clip3517.tabIndex = 3517;
this.clip3517.tabEnabled = false;
this.clip3517.tabChildren = true;
this.stop();
Symbol 3518 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 469511435-5Response", this);
Symbol 3518 MovieClip Frame 2
this.text3519.tabIndex = 3519;
this.clip3520._accProps = new Object();
this.clip3520._accProps.forceSimple = true;
this.clip3520._accProps.name = "Tick";
this.clip3520.tabIndex = 3520;
this.clip3520.tabEnabled = false;
this.clip3520.tabChildren = true;
this.text3521.tabIndex = 3521;
this.stop();
Symbol 3522 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 469511435-5Response", this);
Symbol 3522 MovieClip Frame 2
this.text3523.tabIndex = 3523;
this.clip3524._accProps = new Object();
this.clip3524._accProps.forceSimple = true;
this.clip3524._accProps.name = "Cross";
this.clip3524.tabIndex = 3524;
this.clip3524.tabEnabled = false;
this.clip3524.tabChildren = true;
this.text3525.tabIndex = 3525;
this.stop();
Symbol 3526 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 469511435-5Response", this);
Symbol 3526 MovieClip Frame 2
this.stop();
Symbol 3531 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 469511435-6Response", this);
Symbol 3531 MovieClip Frame 2
this.text3532.tabIndex = 3532;
this.stop();
Symbol 3533 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3533 MovieClip Frame 2
this.text3534.tabIndex = 3534;
this.clip3535._accProps = new Object();
this.clip3535._accProps.forceSimple = true;
this.clip3535._accProps.name = "Tick";
this.clip3535.tabIndex = 3535;
this.clip3535.tabEnabled = false;
this.clip3535.tabChildren = true;
this.clip3536._accProps = new Object();
this.clip3536._accProps.forceSimple = true;
this.clip3536._accProps.name = "Unselected Radio Button";
this.clip3536.tabIndex = 3536;
this.clip3536.tabEnabled = false;
this.clip3536.tabChildren = true;
this.stop();
Symbol 3537 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3537 MovieClip Frame 2
this.text3538.tabIndex = 3538;
this.clip3539._accProps = new Object();
this.clip3539._accProps.forceSimple = true;
this.clip3539._accProps.name = "Arrow";
this.clip3539.tabIndex = 3539;
this.clip3539.tabEnabled = false;
this.clip3539.tabChildren = true;
this.clip3540._accProps = new Object();
this.clip3540._accProps.forceSimple = true;
this.clip3540._accProps.name = "Unselected Radio Button";
this.clip3540.tabIndex = 3540;
this.clip3540.tabEnabled = false;
this.clip3540.tabChildren = true;
this.stop();
Symbol 3541 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3541 MovieClip Frame 2
this.text3542.tabIndex = 3542;
this.clip3543._accProps = new Object();
this.clip3543._accProps.forceSimple = true;
this.clip3543._accProps.name = "Cross";
this.clip3543.tabIndex = 3543;
this.clip3543.tabEnabled = false;
this.clip3543.tabChildren = true;
this.clip3544._accProps = new Object();
this.clip3544._accProps.forceSimple = true;
this.clip3544._accProps.name = "Unselected Radio Button";
this.clip3544.tabIndex = 3544;
this.clip3544.tabEnabled = false;
this.clip3544.tabChildren = true;
this.stop();
Symbol 3545 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", 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 cResponse", 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 cResponse", 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 3555 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3555 MovieClip Frame 2
this.text3556.tabIndex = 3556;
this.clip3557._accProps = new Object();
this.clip3557._accProps.forceSimple = true;
this.clip3557._accProps.name = "Cross";
this.clip3557.tabIndex = 3557;
this.clip3557.tabEnabled = false;
this.clip3557.tabChildren = true;
this.clip3558._accProps = new Object();
this.clip3558._accProps.forceSimple = true;
this.clip3558._accProps.name = "Unselected Radio Button";
this.clip3558.tabIndex = 3558;
this.clip3558.tabEnabled = false;
this.clip3558.tabChildren = true;
this.stop();
Symbol 3559 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3559 MovieClip Frame 2
this.text3560.tabIndex = 3560;
this.clip3561._accProps = new Object();
this.clip3561._accProps.forceSimple = true;
this.clip3561._accProps.name = "Unselected Radio Button";
this.clip3561.tabIndex = 3561;
this.clip3561.tabEnabled = false;
this.clip3561.tabChildren = true;
this.stop();
Symbol 3562 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 469511435-6Response", this);
Symbol 3562 MovieClip Frame 2
this.text3563.tabIndex = 3563;
this.clip3564._accProps = new Object();
this.clip3564._accProps.forceSimple = true;
this.clip3564._accProps.name = "Tick";
this.clip3564.tabIndex = 3564;
this.clip3564.tabEnabled = false;
this.clip3564.tabChildren = true;
this.text3565.tabIndex = 3565;
this.stop();
Symbol 3566 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 469511435-6Response", this);
Symbol 3566 MovieClip Frame 2
this.text3567.tabIndex = 3567;
this.clip3568._accProps = new Object();
this.clip3568._accProps.forceSimple = true;
this.clip3568._accProps.name = "Cross";
this.clip3568.tabIndex = 3568;
this.clip3568.tabEnabled = false;
this.clip3568.tabChildren = true;
this.text3569.tabIndex = 3569;
this.stop();
Symbol 3570 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 469511435-6Response", this);
Symbol 3570 MovieClip Frame 2
this.stop();
Symbol 3575 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 469511435-7Response", this);
Symbol 3575 MovieClip Frame 2
this.text3576.tabIndex = 3576;
this.stop();
Symbol 3577 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3577 MovieClip Frame 2
this.text3578.tabIndex = 3578;
this.clip3579._accProps = new Object();
this.clip3579._accProps.forceSimple = true;
this.clip3579._accProps.name = "Cross";
this.clip3579.tabIndex = 3579;
this.clip3579.tabEnabled = false;
this.clip3579.tabChildren = true;
this.clip3580._accProps = new Object();
this.clip3580._accProps.forceSimple = true;
this.clip3580._accProps.name = "Unselected Radio Button";
this.clip3580.tabIndex = 3580;
this.clip3580.tabEnabled = false;
this.clip3580.tabChildren = true;
this.stop();
Symbol 3581 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3581 MovieClip Frame 2
this.text3582.tabIndex = 3582;
this.clip3583._accProps = new Object();
this.clip3583._accProps.forceSimple = true;
this.clip3583._accProps.name = "Unselected Radio Button";
this.clip3583.tabIndex = 3583;
this.clip3583.tabEnabled = false;
this.clip3583.tabChildren = true;
this.stop();
Symbol 3584 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3584 MovieClip Frame 2
this.text3585.tabIndex = 3585;
this.clip3586._accProps = new Object();
this.clip3586._accProps.forceSimple = true;
this.clip3586._accProps.name = "Tick";
this.clip3586.tabIndex = 3586;
this.clip3586.tabEnabled = false;
this.clip3586.tabChildren = true;
this.clip3587._accProps = new Object();
this.clip3587._accProps.forceSimple = true;
this.clip3587._accProps.name = "Unselected Radio Button";
this.clip3587.tabIndex = 3587;
this.clip3587.tabEnabled = false;
this.clip3587.tabChildren = true;
this.stop();
Symbol 3588 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3588 MovieClip Frame 2
this.text3589.tabIndex = 3589;
this.clip3590._accProps = new Object();
this.clip3590._accProps.forceSimple = true;
this.clip3590._accProps.name = "Arrow";
this.clip3590.tabIndex = 3590;
this.clip3590.tabEnabled = false;
this.clip3590.tabChildren = true;
this.clip3591._accProps = new Object();
this.clip3591._accProps.forceSimple = true;
this.clip3591._accProps.name = "Unselected Radio Button";
this.clip3591.tabIndex = 3591;
this.clip3591.tabEnabled = false;
this.clip3591.tabChildren = true;
this.stop();
Symbol 3592 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3592 MovieClip Frame 2
this.text3593.tabIndex = 3593;
this.clip3594._accProps = new Object();
this.clip3594._accProps.forceSimple = true;
this.clip3594._accProps.name = "Cross";
this.clip3594.tabIndex = 3594;
this.clip3594.tabEnabled = false;
this.clip3594.tabChildren = true;
this.clip3595._accProps = new Object();
this.clip3595._accProps.forceSimple = true;
this.clip3595._accProps.name = "Unselected Radio Button";
this.clip3595.tabIndex = 3595;
this.clip3595.tabEnabled = false;
this.clip3595.tabChildren = true;
this.stop();
Symbol 3596 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3596 MovieClip Frame 2
this.text3597.tabIndex = 3597;
this.clip3598._accProps = new Object();
this.clip3598._accProps.forceSimple = true;
this.clip3598._accProps.name = "Unselected Radio Button";
this.clip3598.tabIndex = 3598;
this.clip3598.tabEnabled = false;
this.clip3598.tabChildren = true;
this.stop();
Symbol 3599 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3599 MovieClip Frame 2
this.text3600.tabIndex = 3600;
this.clip3601._accProps = new Object();
this.clip3601._accProps.forceSimple = true;
this.clip3601._accProps.name = "Cross";
this.clip3601.tabIndex = 3601;
this.clip3601.tabEnabled = false;
this.clip3601.tabChildren = true;
this.clip3602._accProps = new Object();
this.clip3602._accProps.forceSimple = true;
this.clip3602._accProps.name = "Unselected Radio Button";
this.clip3602.tabIndex = 3602;
this.clip3602.tabEnabled = false;
this.clip3602.tabChildren = true;
this.stop();
Symbol 3603 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3603 MovieClip Frame 2
this.text3604.tabIndex = 3604;
this.clip3605._accProps = new Object();
this.clip3605._accProps.forceSimple = true;
this.clip3605._accProps.name = "Unselected Radio Button";
this.clip3605.tabIndex = 3605;
this.clip3605.tabEnabled = false;
this.clip3605.tabChildren = true;
this.stop();
Symbol 3606 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 469511435-7Response", this);
Symbol 3606 MovieClip Frame 2
this.text3607.tabIndex = 3607;
this.clip3608._accProps = new Object();
this.clip3608._accProps.forceSimple = true;
this.clip3608._accProps.name = "Tick";
this.clip3608.tabIndex = 3608;
this.clip3608.tabEnabled = false;
this.clip3608.tabChildren = true;
this.text3609.tabIndex = 3609;
this.stop();
Symbol 3610 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 469511435-7Response", this);
Symbol 3610 MovieClip Frame 2
this.text3611.tabIndex = 3611;
this.clip3612._accProps = new Object();
this.clip3612._accProps.forceSimple = true;
this.clip3612._accProps.name = "Cross";
this.clip3612.tabIndex = 3612;
this.clip3612.tabEnabled = false;
this.clip3612.tabChildren = true;
this.text3613.tabIndex = 3613;
this.stop();
Symbol 3614 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 469511435-7Response", this);
Symbol 3614 MovieClip Frame 2
this.stop();
Symbol 3619 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 469511435-8Response", this);
Symbol 3619 MovieClip Frame 2
this.text3620.tabIndex = 3620;
this.stop();
Symbol 3621 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3621 MovieClip Frame 2
this.text3622.tabIndex = 3622;
this.clip3623._accProps = new Object();
this.clip3623._accProps.forceSimple = true;
this.clip3623._accProps.name = "Cross";
this.clip3623.tabIndex = 3623;
this.clip3623.tabEnabled = false;
this.clip3623.tabChildren = true;
this.clip3624._accProps = new Object();
this.clip3624._accProps.forceSimple = true;
this.clip3624._accProps.name = "Unselected Radio Button";
this.clip3624.tabIndex = 3624;
this.clip3624.tabEnabled = false;
this.clip3624.tabChildren = true;
this.stop();
Symbol 3625 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3625 MovieClip Frame 2
this.text3626.tabIndex = 3626;
this.clip3627._accProps = new Object();
this.clip3627._accProps.forceSimple = true;
this.clip3627._accProps.name = "Unselected Radio Button";
this.clip3627.tabIndex = 3627;
this.clip3627.tabEnabled = false;
this.clip3627.tabChildren = true;
this.stop();
Symbol 3628 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3628 MovieClip Frame 2
this.text3629.tabIndex = 3629;
this.clip3630._accProps = new Object();
this.clip3630._accProps.forceSimple = true;
this.clip3630._accProps.name = "Cross";
this.clip3630.tabIndex = 3630;
this.clip3630.tabEnabled = false;
this.clip3630.tabChildren = true;
this.clip3631._accProps = new Object();
this.clip3631._accProps.forceSimple = true;
this.clip3631._accProps.name = "Unselected Radio Button";
this.clip3631.tabIndex = 3631;
this.clip3631.tabEnabled = false;
this.clip3631.tabChildren = true;
this.stop();
Symbol 3632 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3632 MovieClip Frame 2
this.text3633.tabIndex = 3633;
this.clip3634._accProps = new Object();
this.clip3634._accProps.forceSimple = true;
this.clip3634._accProps.name = "Unselected Radio Button";
this.clip3634.tabIndex = 3634;
this.clip3634.tabEnabled = false;
this.clip3634.tabChildren = true;
this.stop();
Symbol 3635 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3635 MovieClip Frame 2
this.text3636.tabIndex = 3636;
this.clip3637._accProps = new Object();
this.clip3637._accProps.forceSimple = true;
this.clip3637._accProps.name = "Tick";
this.clip3637.tabIndex = 3637;
this.clip3637.tabEnabled = false;
this.clip3637.tabChildren = true;
this.clip3638._accProps = new Object();
this.clip3638._accProps.forceSimple = true;
this.clip3638._accProps.name = "Unselected Radio Button";
this.clip3638.tabIndex = 3638;
this.clip3638.tabEnabled = false;
this.clip3638.tabChildren = true;
this.stop();
Symbol 3639 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3639 MovieClip Frame 2
this.text3640.tabIndex = 3640;
this.clip3641._accProps = new Object();
this.clip3641._accProps.forceSimple = true;
this.clip3641._accProps.name = "Arrow";
this.clip3641.tabIndex = 3641;
this.clip3641.tabEnabled = false;
this.clip3641.tabChildren = true;
this.clip3642._accProps = new Object();
this.clip3642._accProps.forceSimple = true;
this.clip3642._accProps.name = "Unselected Radio Button";
this.clip3642.tabIndex = 3642;
this.clip3642.tabEnabled = false;
this.clip3642.tabChildren = true;
this.stop();
Symbol 3643 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3643 MovieClip Frame 2
this.text3644.tabIndex = 3644;
this.clip3645._accProps = new Object();
this.clip3645._accProps.forceSimple = true;
this.clip3645._accProps.name = "Cross";
this.clip3645.tabIndex = 3645;
this.clip3645.tabEnabled = false;
this.clip3645.tabChildren = true;
this.clip3646._accProps = new Object();
this.clip3646._accProps.forceSimple = true;
this.clip3646._accProps.name = "Unselected Radio Button";
this.clip3646.tabIndex = 3646;
this.clip3646.tabEnabled = false;
this.clip3646.tabChildren = true;
this.stop();
Symbol 3647 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3647 MovieClip Frame 2
this.text3648.tabIndex = 3648;
this.clip3649._accProps = new Object();
this.clip3649._accProps.forceSimple = true;
this.clip3649._accProps.name = "Unselected Radio Button";
this.clip3649.tabIndex = 3649;
this.clip3649.tabEnabled = false;
this.clip3649.tabChildren = true;
this.stop();
Symbol 3650 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 469511435-8Response", this);
Symbol 3650 MovieClip Frame 2
this.text3651.tabIndex = 3651;
this.clip3652._accProps = new Object();
this.clip3652._accProps.forceSimple = true;
this.clip3652._accProps.name = "Tick";
this.clip3652.tabIndex = 3652;
this.clip3652.tabEnabled = false;
this.clip3652.tabChildren = true;
this.text3653.tabIndex = 3653;
this.stop();
Symbol 3654 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 469511435-8Response", this);
Symbol 3654 MovieClip Frame 2
this.text3655.tabIndex = 3655;
this.clip3656._accProps = new Object();
this.clip3656._accProps.forceSimple = true;
this.clip3656._accProps.name = "Cross";
this.clip3656.tabIndex = 3656;
this.clip3656.tabEnabled = false;
this.clip3656.tabChildren = true;
this.text3657.tabIndex = 3657;
this.stop();
Symbol 3658 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 469511435-8Response", this);
Symbol 3658 MovieClip Frame 2
this.stop();
Symbol 3663 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 469511435-9Response", this);
Symbol 3663 MovieClip Frame 2
this.text3664.tabIndex = 3664;
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 = "Cross";
this.clip3674.tabIndex = 3674;
this.clip3674.tabEnabled = false;
this.clip3674.tabChildren = true;
this.clip3675._accProps = new Object();
this.clip3675._accProps.forceSimple = true;
this.clip3675._accProps.name = "Unselected Radio Button";
this.clip3675.tabIndex = 3675;
this.clip3675.tabEnabled = false;
this.clip3675.tabChildren = true;
this.stop();
Symbol 3676 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected 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 = "Unselected Radio Button";
this.clip3678.tabIndex = 3678;
this.clip3678.tabEnabled = false;
this.clip3678.tabChildren = true;
this.stop();
Symbol 3679 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3679 MovieClip Frame 2
this.text3680.tabIndex = 3680;
this.clip3681._accProps = new Object();
this.clip3681._accProps.forceSimple = true;
this.clip3681._accProps.name = "Cross";
this.clip3681.tabIndex = 3681;
this.clip3681.tabEnabled = false;
this.clip3681.tabChildren = true;
this.clip3682._accProps = new Object();
this.clip3682._accProps.forceSimple = true;
this.clip3682._accProps.name = "Unselected Radio Button";
this.clip3682.tabIndex = 3682;
this.clip3682.tabEnabled = false;
this.clip3682.tabChildren = true;
this.stop();
Symbol 3683 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3683 MovieClip Frame 2
this.text3684.tabIndex = 3684;
this.clip3685._accProps = new Object();
this.clip3685._accProps.forceSimple = true;
this.clip3685._accProps.name = "Unselected Radio Button";
this.clip3685.tabIndex = 3685;
this.clip3685.tabEnabled = false;
this.clip3685.tabChildren = true;
this.stop();
Symbol 3686 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3686 MovieClip Frame 2
this.text3687.tabIndex = 3687;
this.clip3688._accProps = new Object();
this.clip3688._accProps.forceSimple = true;
this.clip3688._accProps.name = "Tick";
this.clip3688.tabIndex = 3688;
this.clip3688.tabEnabled = false;
this.clip3688.tabChildren = true;
this.clip3689._accProps = new Object();
this.clip3689._accProps.forceSimple = true;
this.clip3689._accProps.name = "Unselected Radio Button";
this.clip3689.tabIndex = 3689;
this.clip3689.tabEnabled = false;
this.clip3689.tabChildren = true;
this.stop();
Symbol 3690 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3690 MovieClip Frame 2
this.text3691.tabIndex = 3691;
this.clip3692._accProps = new Object();
this.clip3692._accProps.forceSimple = true;
this.clip3692._accProps.name = "Arrow";
this.clip3692.tabIndex = 3692;
this.clip3692.tabEnabled = false;
this.clip3692.tabChildren = true;
this.clip3693._accProps = new Object();
this.clip3693._accProps.forceSimple = true;
this.clip3693._accProps.name = "Unselected Radio Button";
this.clip3693.tabIndex = 3693;
this.clip3693.tabEnabled = false;
this.clip3693.tabChildren = true;
this.stop();
Symbol 3694 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 469511435-9Response", this);
Symbol 3694 MovieClip Frame 2
this.text3695.tabIndex = 3695;
this.clip3696._accProps = new Object();
this.clip3696._accProps.forceSimple = true;
this.clip3696._accProps.name = "Tick";
this.clip3696.tabIndex = 3696;
this.clip3696.tabEnabled = false;
this.clip3696.tabChildren = true;
this.text3697.tabIndex = 3697;
this.stop();
Symbol 3698 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 469511435-9Response", this);
Symbol 3698 MovieClip Frame 2
this.text3699.tabIndex = 3699;
this.clip3700._accProps = new Object();
this.clip3700._accProps.forceSimple = true;
this.clip3700._accProps.name = "Cross";
this.clip3700.tabIndex = 3700;
this.clip3700.tabEnabled = false;
this.clip3700.tabChildren = true;
this.text3701.tabIndex = 3701;
this.stop();
Symbol 3702 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 469511435-9Response", this);
Symbol 3702 MovieClip Frame 2
this.stop();
Symbol 3707 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 469511435-10Response", this);
Symbol 3707 MovieClip Frame 2
this.text3708.tabIndex = 3708;
this.stop();
Symbol 3709 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3709 MovieClip Frame 2
this.text3710.tabIndex = 3710;
this.clip3711._accProps = new Object();
this.clip3711._accProps.forceSimple = true;
this.clip3711._accProps.name = "Cross";
this.clip3711.tabIndex = 3711;
this.clip3711.tabEnabled = false;
this.clip3711.tabChildren = true;
this.clip3712._accProps = new Object();
this.clip3712._accProps.forceSimple = true;
this.clip3712._accProps.name = "Unselected Radio Button";
this.clip3712.tabIndex = 3712;
this.clip3712.tabEnabled = false;
this.clip3712.tabChildren = true;
this.stop();
Symbol 3713 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3713 MovieClip Frame 2
this.text3714.tabIndex = 3714;
this.clip3715._accProps = new Object();
this.clip3715._accProps.forceSimple = true;
this.clip3715._accProps.name = "Unselected Radio Button";
this.clip3715.tabIndex = 3715;
this.clip3715.tabEnabled = false;
this.clip3715.tabChildren = true;
this.stop();
Symbol 3716 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3716 MovieClip Frame 2
this.text3717.tabIndex = 3717;
this.clip3718._accProps = new Object();
this.clip3718._accProps.forceSimple = true;
this.clip3718._accProps.name = "Cross";
this.clip3718.tabIndex = 3718;
this.clip3718.tabEnabled = false;
this.clip3718.tabChildren = true;
this.clip3719._accProps = new Object();
this.clip3719._accProps.forceSimple = true;
this.clip3719._accProps.name = "Unselected Radio Button";
this.clip3719.tabIndex = 3719;
this.clip3719.tabEnabled = false;
this.clip3719.tabChildren = true;
this.stop();
Symbol 3720 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3720 MovieClip Frame 2
this.text3721.tabIndex = 3721;
this.clip3722._accProps = new Object();
this.clip3722._accProps.forceSimple = true;
this.clip3722._accProps.name = "Unselected Radio Button";
this.clip3722.tabIndex = 3722;
this.clip3722.tabEnabled = false;
this.clip3722.tabChildren = true;
this.stop();
Symbol 3723 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3723 MovieClip Frame 2
this.text3724.tabIndex = 3724;
this.clip3725._accProps = new Object();
this.clip3725._accProps.forceSimple = true;
this.clip3725._accProps.name = "Tick";
this.clip3725.tabIndex = 3725;
this.clip3725.tabEnabled = false;
this.clip3725.tabChildren = true;
this.clip3726._accProps = new Object();
this.clip3726._accProps.forceSimple = true;
this.clip3726._accProps.name = "Unselected Radio Button";
this.clip3726.tabIndex = 3726;
this.clip3726.tabEnabled = false;
this.clip3726.tabChildren = true;
this.stop();
Symbol 3727 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3727 MovieClip Frame 2
this.text3728.tabIndex = 3728;
this.clip3729._accProps = new Object();
this.clip3729._accProps.forceSimple = true;
this.clip3729._accProps.name = "Arrow";
this.clip3729.tabIndex = 3729;
this.clip3729.tabEnabled = false;
this.clip3729.tabChildren = true;
this.clip3730._accProps = new Object();
this.clip3730._accProps.forceSimple = true;
this.clip3730._accProps.name = "Unselected Radio Button";
this.clip3730.tabIndex = 3730;
this.clip3730.tabEnabled = false;
this.clip3730.tabChildren = true;
this.stop();
Symbol 3731 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3731 MovieClip Frame 2
this.text3732.tabIndex = 3732;
this.clip3733._accProps = new Object();
this.clip3733._accProps.forceSimple = true;
this.clip3733._accProps.name = "Cross";
this.clip3733.tabIndex = 3733;
this.clip3733.tabEnabled = false;
this.clip3733.tabChildren = true;
this.clip3734._accProps = new Object();
this.clip3734._accProps.forceSimple = true;
this.clip3734._accProps.name = "Unselected Radio Button";
this.clip3734.tabIndex = 3734;
this.clip3734.tabEnabled = false;
this.clip3734.tabChildren = true;
this.stop();
Symbol 3735 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3735 MovieClip Frame 2
this.text3736.tabIndex = 3736;
this.clip3737._accProps = new Object();
this.clip3737._accProps.forceSimple = true;
this.clip3737._accProps.name = "Unselected Radio Button";
this.clip3737.tabIndex = 3737;
this.clip3737.tabEnabled = false;
this.clip3737.tabChildren = true;
this.stop();
Symbol 3738 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 469511435-10Response", this);
Symbol 3738 MovieClip Frame 2
this.text3739.tabIndex = 3739;
this.clip3740._accProps = new Object();
this.clip3740._accProps.forceSimple = true;
this.clip3740._accProps.name = "Tick";
this.clip3740.tabIndex = 3740;
this.clip3740.tabEnabled = false;
this.clip3740.tabChildren = true;
this.text3741.tabIndex = 3741;
this.stop();
Symbol 3742 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 469511435-10Response", this);
Symbol 3742 MovieClip Frame 2
this.text3743.tabIndex = 3743;
this.clip3744._accProps = new Object();
this.clip3744._accProps.forceSimple = true;
this.clip3744._accProps.name = "Cross";
this.clip3744.tabIndex = 3744;
this.clip3744.tabEnabled = false;
this.clip3744.tabChildren = true;
this.text3745.tabIndex = 3745;
this.stop();
Symbol 3746 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 469511435-10Response", this);
Symbol 3746 MovieClip Frame 2
this.stop();
Symbol 3751 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 469511435-11Response", this);
Symbol 3751 MovieClip Frame 2
this.text3752.tabIndex = 3752;
this.stop();
Symbol 3753 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3753 MovieClip Frame 2
this.text3754.tabIndex = 3754;
this.clip3755._accProps = new Object();
this.clip3755._accProps.forceSimple = true;
this.clip3755._accProps.name = "Cross";
this.clip3755.tabIndex = 3755;
this.clip3755.tabEnabled = false;
this.clip3755.tabChildren = true;
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("UnSelected aResponse", this);
Symbol 3757 MovieClip Frame 2
this.text3758.tabIndex = 3758;
this.clip3759._accProps = new Object();
this.clip3759._accProps.forceSimple = true;
this.clip3759._accProps.name = "Unselected Radio Button";
this.clip3759.tabIndex = 3759;
this.clip3759.tabEnabled = false;
this.clip3759.tabChildren = true;
this.stop();
Symbol 3760 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3760 MovieClip Frame 2
this.text3761.tabIndex = 3761;
this.clip3762._accProps = new Object();
this.clip3762._accProps.forceSimple = true;
this.clip3762._accProps.name = "Tick";
this.clip3762.tabIndex = 3762;
this.clip3762.tabEnabled = false;
this.clip3762.tabChildren = true;
this.clip3763._accProps = new Object();
this.clip3763._accProps.forceSimple = true;
this.clip3763._accProps.name = "Unselected Radio Button";
this.clip3763.tabIndex = 3763;
this.clip3763.tabEnabled = false;
this.clip3763.tabChildren = true;
this.stop();
Symbol 3764 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3764 MovieClip Frame 2
this.text3765.tabIndex = 3765;
this.clip3766._accProps = new Object();
this.clip3766._accProps.forceSimple = true;
this.clip3766._accProps.name = "Arrow";
this.clip3766.tabIndex = 3766;
this.clip3766.tabEnabled = false;
this.clip3766.tabChildren = true;
this.clip3767._accProps = new Object();
this.clip3767._accProps.forceSimple = true;
this.clip3767._accProps.name = "Unselected Radio Button";
this.clip3767.tabIndex = 3767;
this.clip3767.tabEnabled = false;
this.clip3767.tabChildren = true;
this.stop();
Symbol 3768 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3768 MovieClip Frame 2
this.text3769.tabIndex = 3769;
this.clip3770._accProps = new Object();
this.clip3770._accProps.forceSimple = true;
this.clip3770._accProps.name = "Cross";
this.clip3770.tabIndex = 3770;
this.clip3770.tabEnabled = false;
this.clip3770.tabChildren = true;
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("UnSelected cResponse", this);
Symbol 3772 MovieClip Frame 2
this.text3773.tabIndex = 3773;
this.clip3774._accProps = new Object();
this.clip3774._accProps.forceSimple = true;
this.clip3774._accProps.name = "Unselected Radio Button";
this.clip3774.tabIndex = 3774;
this.clip3774.tabEnabled = false;
this.clip3774.tabChildren = true;
this.stop();
Symbol 3775 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3775 MovieClip Frame 2
this.text3776.tabIndex = 3776;
this.clip3777._accProps = new Object();
this.clip3777._accProps.forceSimple = true;
this.clip3777._accProps.name = "Cross";
this.clip3777.tabIndex = 3777;
this.clip3777.tabEnabled = false;
this.clip3777.tabChildren = true;
this.clip3778._accProps = new Object();
this.clip3778._accProps.forceSimple = true;
this.clip3778._accProps.name = "Unselected Radio Button";
this.clip3778.tabIndex = 3778;
this.clip3778.tabEnabled = false;
this.clip3778.tabChildren = true;
this.stop();
Symbol 3779 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3779 MovieClip Frame 2
this.text3780.tabIndex = 3780;
this.clip3781._accProps = new Object();
this.clip3781._accProps.forceSimple = true;
this.clip3781._accProps.name = "Unselected Radio Button";
this.clip3781.tabIndex = 3781;
this.clip3781.tabEnabled = false;
this.clip3781.tabChildren = true;
this.stop();
Symbol 3782 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 469511435-11Response", this);
Symbol 3782 MovieClip Frame 2
this.text3783.tabIndex = 3783;
this.clip3784._accProps = new Object();
this.clip3784._accProps.forceSimple = true;
this.clip3784._accProps.name = "Tick";
this.clip3784.tabIndex = 3784;
this.clip3784.tabEnabled = false;
this.clip3784.tabChildren = true;
this.text3785.tabIndex = 3785;
this.stop();
Symbol 3786 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 469511435-11Response", this);
Symbol 3786 MovieClip Frame 2
this.text3787.tabIndex = 3787;
this.clip3788._accProps = new Object();
this.clip3788._accProps.forceSimple = true;
this.clip3788._accProps.name = "Cross";
this.clip3788.tabIndex = 3788;
this.clip3788.tabEnabled = false;
this.clip3788.tabChildren = true;
this.text3789.tabIndex = 3789;
this.stop();
Symbol 3790 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 469511435-11Response", this);
Symbol 3790 MovieClip Frame 2
this.stop();
Symbol 3795 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 469511435-12Response", this);
Symbol 3795 MovieClip Frame 2
this.text3796.tabIndex = 3796;
this.stop();
Symbol 3797 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3797 MovieClip Frame 2
this.text3798.tabIndex = 3798;
this.clip3799._accProps = new Object();
this.clip3799._accProps.forceSimple = true;
this.clip3799._accProps.name = "Tick";
this.clip3799.tabIndex = 3799;
this.clip3799.tabEnabled = false;
this.clip3799.tabChildren = true;
this.clip3800._accProps = new Object();
this.clip3800._accProps.forceSimple = true;
this.clip3800._accProps.name = "Unselected Radio Button";
this.clip3800.tabIndex = 3800;
this.clip3800.tabEnabled = false;
this.clip3800.tabChildren = true;
this.stop();
Symbol 3801 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3801 MovieClip Frame 2
this.text3802.tabIndex = 3802;
this.clip3803._accProps = new Object();
this.clip3803._accProps.forceSimple = true;
this.clip3803._accProps.name = "Arrow";
this.clip3803.tabIndex = 3803;
this.clip3803.tabEnabled = false;
this.clip3803.tabChildren = true;
this.clip3804._accProps = new Object();
this.clip3804._accProps.forceSimple = true;
this.clip3804._accProps.name = "Unselected Radio Button";
this.clip3804.tabIndex = 3804;
this.clip3804.tabEnabled = false;
this.clip3804.tabChildren = true;
this.stop();
Symbol 3805 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3805 MovieClip Frame 2
this.text3806.tabIndex = 3806;
this.clip3807._accProps = new Object();
this.clip3807._accProps.forceSimple = true;
this.clip3807._accProps.name = "Cross";
this.clip3807.tabIndex = 3807;
this.clip3807.tabEnabled = false;
this.clip3807.tabChildren = true;
this.clip3808._accProps = new Object();
this.clip3808._accProps.forceSimple = true;
this.clip3808._accProps.name = "Unselected Radio Button";
this.clip3808.tabIndex = 3808;
this.clip3808.tabEnabled = false;
this.clip3808.tabChildren = true;
this.stop();
Symbol 3809 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3809 MovieClip Frame 2
this.text3810.tabIndex = 3810;
this.clip3811._accProps = new Object();
this.clip3811._accProps.forceSimple = true;
this.clip3811._accProps.name = "Unselected Radio Button";
this.clip3811.tabIndex = 3811;
this.clip3811.tabEnabled = false;
this.clip3811.tabChildren = true;
this.stop();
Symbol 3812 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3812 MovieClip Frame 2
this.text3813.tabIndex = 3813;
this.clip3814._accProps = new Object();
this.clip3814._accProps.forceSimple = true;
this.clip3814._accProps.name = "Cross";
this.clip3814.tabIndex = 3814;
this.clip3814.tabEnabled = false;
this.clip3814.tabChildren = true;
this.clip3815._accProps = new Object();
this.clip3815._accProps.forceSimple = true;
this.clip3815._accProps.name = "Unselected Radio Button";
this.clip3815.tabIndex = 3815;
this.clip3815.tabEnabled = false;
this.clip3815.tabChildren = true;
this.stop();
Symbol 3816 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3816 MovieClip Frame 2
this.text3817.tabIndex = 3817;
this.clip3818._accProps = new Object();
this.clip3818._accProps.forceSimple = true;
this.clip3818._accProps.name = "Unselected Radio Button";
this.clip3818.tabIndex = 3818;
this.clip3818.tabEnabled = false;
this.clip3818.tabChildren = true;
this.stop();
Symbol 3819 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3819 MovieClip Frame 2
this.text3820.tabIndex = 3820;
this.clip3821._accProps = new Object();
this.clip3821._accProps.forceSimple = true;
this.clip3821._accProps.name = "Cross";
this.clip3821.tabIndex = 3821;
this.clip3821.tabEnabled = false;
this.clip3821.tabChildren = true;
this.clip3822._accProps = new Object();
this.clip3822._accProps.forceSimple = true;
this.clip3822._accProps.name = "Unselected Radio Button";
this.clip3822.tabIndex = 3822;
this.clip3822.tabEnabled = false;
this.clip3822.tabChildren = true;
this.stop();
Symbol 3823 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3823 MovieClip Frame 2
this.text3824.tabIndex = 3824;
this.clip3825._accProps = new Object();
this.clip3825._accProps.forceSimple = true;
this.clip3825._accProps.name = "Unselected Radio Button";
this.clip3825.tabIndex = 3825;
this.clip3825.tabEnabled = false;
this.clip3825.tabChildren = true;
this.stop();
Symbol 3826 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 469511435-12Response", this);
Symbol 3826 MovieClip Frame 2
this.text3827.tabIndex = 3827;
this.clip3828._accProps = new Object();
this.clip3828._accProps.forceSimple = true;
this.clip3828._accProps.name = "Tick";
this.clip3828.tabIndex = 3828;
this.clip3828.tabEnabled = false;
this.clip3828.tabChildren = true;
this.text3829.tabIndex = 3829;
this.stop();
Symbol 3830 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 469511435-12Response", this);
Symbol 3830 MovieClip Frame 2
this.text3831.tabIndex = 3831;
this.clip3832._accProps = new Object();
this.clip3832._accProps.forceSimple = true;
this.clip3832._accProps.name = "Cross";
this.clip3832.tabIndex = 3832;
this.clip3832.tabEnabled = false;
this.clip3832.tabChildren = true;
this.text3833.tabIndex = 3833;
this.stop();
Symbol 3834 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 469511435-12Response", this);
Symbol 3834 MovieClip Frame 2
this.stop();
Symbol 3839 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 469511435-13Response", this);
Symbol 3839 MovieClip Frame 2
this.text3840.tabIndex = 3840;
this.stop();
Symbol 3841 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3841 MovieClip Frame 2
this.text3842.tabIndex = 3842;
this.clip3843._accProps = new Object();
this.clip3843._accProps.forceSimple = true;
this.clip3843._accProps.name = "Cross";
this.clip3843.tabIndex = 3843;
this.clip3843.tabEnabled = false;
this.clip3843.tabChildren = true;
this.clip3844._accProps = new Object();
this.clip3844._accProps.forceSimple = true;
this.clip3844._accProps.name = "Unselected Radio Button";
this.clip3844.tabIndex = 3844;
this.clip3844.tabEnabled = false;
this.clip3844.tabChildren = true;
this.stop();
Symbol 3845 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected aResponse", this);
Symbol 3845 MovieClip Frame 2
this.text3846.tabIndex = 3846;
this.clip3847._accProps = new Object();
this.clip3847._accProps.forceSimple = true;
this.clip3847._accProps.name = "Unselected Radio Button";
this.clip3847.tabIndex = 3847;
this.clip3847.tabEnabled = false;
this.clip3847.tabChildren = true;
this.stop();
Symbol 3848 MovieClip Frame 1
_global.resp.registerFeedback("Selected bResponse", this);
Symbol 3848 MovieClip Frame 2
this.text3849.tabIndex = 3849;
this.clip3850._accProps = new Object();
this.clip3850._accProps.forceSimple = true;
this.clip3850._accProps.name = "Cross";
this.clip3850.tabIndex = 3850;
this.clip3850.tabEnabled = false;
this.clip3850.tabChildren = true;
this.clip3851._accProps = new Object();
this.clip3851._accProps.forceSimple = true;
this.clip3851._accProps.name = "Unselected Radio Button";
this.clip3851.tabIndex = 3851;
this.clip3851.tabEnabled = false;
this.clip3851.tabChildren = true;
this.stop();
Symbol 3852 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected bResponse", this);
Symbol 3852 MovieClip Frame 2
this.text3853.tabIndex = 3853;
this.clip3854._accProps = new Object();
this.clip3854._accProps.forceSimple = true;
this.clip3854._accProps.name = "Unselected Radio Button";
this.clip3854.tabIndex = 3854;
this.clip3854.tabEnabled = false;
this.clip3854.tabChildren = true;
this.stop();
Symbol 3855 MovieClip Frame 1
_global.resp.registerFeedback("Selected cResponse", this);
Symbol 3855 MovieClip Frame 2
this.text3856.tabIndex = 3856;
this.clip3857._accProps = new Object();
this.clip3857._accProps.forceSimple = true;
this.clip3857._accProps.name = "Cross";
this.clip3857.tabIndex = 3857;
this.clip3857.tabEnabled = false;
this.clip3857.tabChildren = true;
this.clip3858._accProps = new Object();
this.clip3858._accProps.forceSimple = true;
this.clip3858._accProps.name = "Unselected Radio Button";
this.clip3858.tabIndex = 3858;
this.clip3858.tabEnabled = false;
this.clip3858.tabChildren = true;
this.stop();
Symbol 3859 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected cResponse", this);
Symbol 3859 MovieClip Frame 2
this.text3860.tabIndex = 3860;
this.clip3861._accProps = new Object();
this.clip3861._accProps.forceSimple = true;
this.clip3861._accProps.name = "Unselected Radio Button";
this.clip3861.tabIndex = 3861;
this.clip3861.tabEnabled = false;
this.clip3861.tabChildren = true;
this.stop();
Symbol 3862 MovieClip Frame 1
_global.resp.registerFeedback("Selected dResponse", this);
Symbol 3862 MovieClip Frame 2
this.text3863.tabIndex = 3863;
this.clip3864._accProps = new Object();
this.clip3864._accProps.forceSimple = true;
this.clip3864._accProps.name = "Tick";
this.clip3864.tabIndex = 3864;
this.clip3864.tabEnabled = false;
this.clip3864.tabChildren = true;
this.clip3865._accProps = new Object();
this.clip3865._accProps.forceSimple = true;
this.clip3865._accProps.name = "Unselected Radio Button";
this.clip3865.tabIndex = 3865;
this.clip3865.tabEnabled = false;
this.clip3865.tabChildren = true;
this.stop();
Symbol 3866 MovieClip Frame 1
_global.resp.registerFeedback("UnSelected dResponse", this);
Symbol 3866 MovieClip Frame 2
this.text3867.tabIndex = 3867;
this.clip3868._accProps = new Object();
this.clip3868._accProps.forceSimple = true;
this.clip3868._accProps.name = "Arrow";
this.clip3868.tabIndex = 3868;
this.clip3868.tabEnabled = false;
this.clip3868.tabChildren = true;
this.clip3869._accProps = new Object();
this.clip3869._accProps.forceSimple = true;
this.clip3869._accProps.name = "Unselected Radio Button";
this.clip3869.tabIndex = 3869;
this.clip3869.tabEnabled = false;
this.clip3869.tabChildren = true;
this.stop();
Symbol 3870 MovieClip Frame 1
_global.resp.registerFeedback("Correct # 469511435-13Response", this);
Symbol 3870 MovieClip Frame 2
this.text3871.tabIndex = 3871;
this.clip3872._accProps = new Object();
this.clip3872._accProps.forceSimple = true;
this.clip3872._accProps.name = "Tick";
this.clip3872.tabIndex = 3872;
this.clip3872.tabEnabled = false;
this.clip3872.tabChildren = true;
this.text3873.tabIndex = 3873;
this.stop();
Symbol 3874 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 469511435-13Response", this);
Symbol 3874 MovieClip Frame 2
this.text3875.tabIndex = 3875;
this.clip3876._accProps = new Object();
this.clip3876._accProps.forceSimple = true;
this.clip3876._accProps.name = "Cross";
this.clip3876.tabIndex = 3876;
this.clip3876.tabEnabled = false;
this.clip3876.tabChildren = true;
this.text3877.tabIndex = 3877;
this.stop();
Symbol 3878 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 469511435-13Response", this);
Symbol 3878 MovieClip Frame 2
this.stop();
Symbol 3883 MovieClip Frame 1
_global.resp.registerFeedback("Repeat Question # 469511435-14Response", this);
Symbol 3883 MovieClip Frame 2
this.text3884.tabIndex = 3884;
this.stop();
Symbol 3885 MovieClip Frame 1
_global.resp.registerFeedback("Selected aResponse", this);
Symbol 3885 MovieClip Frame 2
this.text3886.tabIndex = 3886;
this.clip3887._accProps = new Object();
this.clip3887._accProps.forceSimple = true;
this.clip3887._accProps.name = "Tick";
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("UnSelected aResponse", this);
Symbol 3889 MovieClip Frame 2
this.text3890.tabIndex = 3890;
this.clip3891._accProps = new Object();
this.clip3891._accProps.forceSimple = true;
this.clip3891._accProps.name = "Arrow";
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("Correct # 469511435-14Response", this);
Symbol 3893 MovieClip Frame 2
this.text3894.tabIndex = 3894;
this.clip3895._accProps = new Object();
this.clip3895._accProps.forceSimple = true;
this.clip3895._accProps.name = "Tick";
this.clip3895.tabIndex = 3895;
this.clip3895.tabEnabled = false;
this.clip3895.tabChildren = true;
this.text3896.tabIndex = 3896;
this.stop();
Symbol 3897 MovieClip Frame 1
_global.resp.registerFeedback("Incorrect # 469511435-14Response", this);
Symbol 3897 MovieClip Frame 2
this.text3898.tabIndex = 3898;
this.clip3899._accProps = new Object();
this.clip3899._accProps.forceSimple = true;
this.clip3899._accProps.name = "Cross";
this.clip3899.tabIndex = 3899;
this.clip3899.tabEnabled = false;
this.clip3899.tabChildren = true;
this.text3900.tabIndex = 3900;
this.stop();
Symbol 3901 MovieClip Frame 1
_global.resp.registerFeedback("Correct Answers # 469511435-14Response", this);
Symbol 3901 MovieClip Frame 2
this.stop();