Frame 2
gotoAndPlay (5);
Frame 3
stop();
_root.myRecorder = new JMRecorder("myRecorder");
_root.myRecorder.registerObject(actor1);
_root.myRecorder.registerObject(actor2);
_root.myRecorder.registerObject(actor3);
_root.myRecorder.registerObject(actor4);
_root.myRecorder.registerObject(actor5);
_root.myRecorder.registerObject(actor6);
_root.myRecorder.registerObject(actor7);
_root.myRecorder.registerObject(actor8);
actor.onPress = (actor1.onPress = (actor2.onPress = (actor3.onPress = (actor4.onPress = function () {
this.startDrag(false);
}))));
actor.onPress = (actor5.onPress = (actor6.onPress = (actor7.onPress = (actor8.onPress = function () {
this.startDrag(false);
}))));
actor.onRelease = (actor1.onRelease = (actor2.onRelease = (actor3.onRelease = (actor4.onRelease = function () {
this.stopDrag();
}))));
actor.onRelease = (actor5.onRelease = (actor6.onRelease = (actor7.onRelease = (actor8.onRelease = function () {
this.stopDrag();
}))));
record_overlay._visible = false;
pause_overlay._visible = false;
loop_overlay._visible = false;
rewind_btn.onPress = function () {
var mode = myRecorder.mode;
switch (mode) {
case "nuetral" :
_root.myRecorder.playbackFrame = 1;
message.text = "playback rewound.";
return;
case "playback" :
_root.myRecorder.playbackFrame = 1;
message.text = "playback rewound.";
return;
default :
message.text = "record must be stopped prior to rewind playback.";
}
};
record_btn.onPress = function () {
var mode = myRecorder.mode;
switch (mode) {
case "nuetral" :
_root.myRecorder.startRecord();
record_overlay._visible = true;
message.text = "recording started.";
return;
case "recording" :
_root.myRecorder.stopRecord();
record_overlay._visible = false;
message.text = "recording stopped.";
return;
default :
message.text = "playback must be stopped prior to recording.";
}
};
play_btn.onPress = function () {
var mode = myRecorder.mode;
switch (mode) {
case "nuetral" :
_root.myRecorder.startPlayback();
message.text = "playback started.";
return;
case "recording" :
message.text = "recording must be stopped prior to playback.";
}
};
pause_btn.onPress = function () {
var mode = myRecorder.mode;
switch (mode) {
case "nuetral" :
if (pause_overlay._visible) {
_root.myRecorder.startPlayback();
pause_overlay._visible = false;
message.text = "playback unpaused.";
} else {
message.text = "recorder is not in playback.";
}
return;
case "playback" :
_root.myRecorder.stopPlayback();
pause_overlay._visible = true;
message.text = "playback paused.";
return;
default :
message.text = "recorder is not in playback.";
}
};
stop_btn.onPress = function () {
var mode = myRecorder.mode;
switch (mode) {
case "playback" :
_root.myRecorder.stopPlayback();
pause_overlay._visible = false;
message.text = "playback stopped.";
return;
default :
message.text = "recorder not in playback mode.";
}
};
loop_btn.onPress = function () {
loop_overlay._visible = (_root.myRecorder.loopPlayback = !_root.myRecorder.loopPlayback);
message.text = "loop playback.";
};
clear_btn.onPress = function () {
var mode = myRecorder.mode;
switch (mode) {
case "nuetral" :
_root.myRecorder.clearRecording();
message.text = "recording cleared.";
return;
default :
message.text = "recorder must be in nuetral mode to clear recording.";
}
};
Instance of Symbol 75 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 77 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 79 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 81 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 83 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 85 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 87 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 89 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 91 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 93 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 95 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 97 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 99 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 75 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 75 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 77 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 77 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 83 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 83 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 81 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 81 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 99 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 99 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 99 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 101 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 103 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 105 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 107 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 109 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 111 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 109 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 111 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 113 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 115 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 117 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 119 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 121 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 123 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 125 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 127 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 129 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 131 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 131 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 127 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 129 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 131 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 131 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 127 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 129 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 131 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 131 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 127 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 129 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 131 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Instance of Symbol 131 MovieClip in Frame 3
onClipEvent (load) {
this.onPress = function () {
startDrag ("");
};
}
onClipEvent (load) {
this.onRelease = function () {
stopDrag();
};
}
Frame 5
stop();
Frame 6
stop();
Frame 7
stop();
Frame 8
play();
Frame 9
gotoAndStop (3);
Symbol 2 MovieClip [JMRecorder] Frame 1
#initclip 1
function SetLoopPlayback(value) {
this._loopPlayback = value;
}
function GetLoopPlayback() {
return(this._loopPlayback);
}
function SetRecordChildren(value) {
this._recordChildren = value;
}
function GetRecordChildren() {
return(this._recordChildren);
}
function SetRate(value) {
this._rate = value;
setInterval(this.interval, value, this);
}
function GetRate() {
return(this._rate);
}
function SetRecordingFrame(value) {
this._recordingFrame = value;
}
function GetRecordingFrame() {
return(this._recordingFrame);
}
function SetPlaybackFrame(value) {
this._playbackFrame = value;
}
function GetPlaybackFrame() {
return(this._playbackFrame);
}
function SetDefaultProperties(value) {
this._defaultRecordProperties = value;
}
function GetDefaultProperties() {
return(this._defaultRecordProperties);
}
function SetDefaultMCProperties(value) {
this._defaultMovieClipProperties = value;
}
function GetDefaultMCProperties() {
return(this._defaultMovieClipProperties);
}
function SetDefaultTFProperties(value) {
this._defaultTextFieldProperties = value;
}
function GetDefaultTFProperties() {
return(this._defaultTextFieldProperties);
}
function GetMode() {
return(this._mode);
}
_global.JMRecorder = function (name, defaultProperties, targets, recordChildren, childTypes, loopPlayback) {
this._class = "JMRecorder";
this.isGlobal = true;
this._visible = false;
this._name = ((name == undefined) ? (this._name) : (name));
this.defaultProperties = ((defaultProperties == undefined) ? (this.defaultProperties) : (defaultProperties));
this.targets = ((targets == undefined) ? (this.targets) : (targets));
this.recordChildren = ((recordChildren == undefined) ? (this.recordChildren) : (recordChildren));
this.childTypes = ((childTypes == undefined) ? (this.childTypes) : (childTypes));
this.loopPlayback = ((loopPlayback == undefined) ? (this.loopPlayback) : (loopPlayback));
if (_global.JMRecorder.__instances__ == undefined) {
_global.JMRecorder.__instances__ = [];
}
_global.JMRecorder.__instances__.push(this);
this._defaultMovieClipProperties = ["_x", "_y", "_width", "_height", "_xscale", "_yscale", "_rotation", "_alpha", "_visible"];
this._defaultTextFieldProperties = ["autoSize", "background", "backgroundColor", "border", "borderColor", "hscroll", "html", "text", "htmlText", "textColor", "textHeight", "textWidth", "variable"];
this.defaultProperties = (((this.defaultProperties.length < 1) || (this.defaultProperties == undefined)) ? (this._defaultMovieClipProperties) : (this.defaultProperties));
this.__targets__ = [];
if (this.targets != undefined) {
for (var target in this.targets) {
this.registerObject(this.targets[target]);
}
}
this._mode = "nuetral";
this._playbackFrame = undefined;
this._recordingFrame = undefined;
this._recording = [];
delete this.properties;
delete this.targets;
if (this._rate == undefined) {
this.rate = 10;
}
ASSetPropFlags(this, null, 1);
};
_global.JMRecorder.prototype = new Object();
Object.registerClass("JMRecorder", _global.JMRecorder);
ASBroadcaster.initialize(_global.JMRecorder.prototype);
_global.JMRecorder.prototype.registerObject = function (obj, properties, recordChildren) {
if (obj == undefined) {
trace(this._name + ".record obj parameter missing, object NOT registered!");
return(false);
}
switch (properties) {
case undefined :
properties = this._defaultRecordProperties;
break;
case null :
properties = this._defaultRecordProperties;
break;
case "default movieclip" :
properties = this._defaultMovieClipProperties;
break;
case "default textfield" :
properties = this._defaultTextFieldProperties;
}
obj._recordControl = this;
obj._recordProperties = properties;
this.addInstance(obj);
if (recordChildren || (this.recordChildren)) {
for (var child in obj) {
for (var childType in this.childTypes) {
if (typeof(obj[child]) == this.childTypes[childType]) {
this.registerObject(obj[child], properties, true);
break;
}
}
}
}
return(true);
};
_global.JMRecorder.prototype.unregisterObject = function (obj) {
delete obj._recordControl;
delete obj._recordProperties;
return(this.removeInstance(obj));
};
_global.JMRecorder.prototype.startRecord = function () {
if (this._mode != "nuetral") {
trace(this._name + ": must be nuetral prior to recording.");
return(false);
}
if (this._recordingFrame == undefined) {
this._recordingFrame = 1;
}
this._mode = "recording";
return(true);
};
_global.JMRecorder.prototype.stopRecord = function () {
if (this._mode != "recording") {
trace(this._name + ": is not recording, stopRecord cancelled.");
return(false);
}
this._mode = "nuetral";
return(true);
};
_global.JMRecorder.prototype.clearRecording = function () {
if (this._mode != "nuetral") {
trace(this._name + ": must be nuetral prior to clearing recording.");
return(false);
}
this._recordingFrame = undefined;
this._playbackFrame = undefined;
this._recording = [];
return(true);
};
_global.JMRecorder.prototype.startPlayback = function () {
if (this._mode != "nuetral") {
trace(this._name + ": must be nuetral prior to playback.");
return(false);
}
if (this._playbackFrame == undefined) {
this._playbackFrame = 1;
}
this._mode = "playback";
return(true);
};
_global.JMRecorder.prototype.stopPlayback = function () {
if (this._mode != "playback") {
trace(this._name + ": is not in playback, stopPlayback cancelled.");
return(false);
}
this._mode = "nuetral";
return(true);
};
_global.JMRecorder.prototype.isRegistered = function (obj) {
for (i in this.__targets__) {
if (this.__targets__[i] == obj) {
return(true);
}
}
return(false);
};
_global.JMRecorder.prototype.getRegisteredObjects = function () {
return(this.__targets__);
};
_global.JMRecorder.prototype.addProperty("loopPlayback", GetLoopPlayback, SetLoopPlayback);
_global.JMRecorder.prototype.addProperty("recordChildren", GetRecordChildren, SetRecordChildren);
_global.JMRecorder.prototype.addProperty("rate", GetRate, SetRate);
_global.JMRecorder.prototype.addProperty("recordingFrame", GetRecordingFrame, SetRecordingFrame);
_global.JMRecorder.prototype.addProperty("playbackFrame", GetPlaybackFrame, SetPlaybackFrame);
_global.JMRecorder.prototype.addProperty("defaultProperties", GetDefaultProperties, SetDefaultProperties);
_global.JMRecorder.prototype.addProperty("defaultMovieClipProperties", GetDefaultMCProperties, SetDefaultMCProperties);
_global.JMRecorder.prototype.addProperty("defaultTextFieldProperties", GetDefaultTFProperties, SetDefaultTFProperties);
_global.JMRecorder.prototype.addProperty("mode", GetMode, null);
delete SetLoopPlayback;
_global.JMRecorder.prototype.addInstance = function (obj) {
if (!this.isRegistered(obj)) {
this.__targets__.push(obj);
return(true);
}
trace((obj + " is already registered with ") + this._name);
return(false);
};
_global.JMRecorder.prototype.removeInstance = function (obj) {
if (this.isRegistered(obj)) {
for (i in this.__targets__) {
if (this.__targets__[i] == obj) {
delete this.__targets__[i];
return(true);
}
}
trace((obj + " was not removed from ") + this._name);
return(false);
}
trace((obj + " is not registered with ") + this._name);
return(false);
};
_global.JMRecorder.prototype.interval = function (comp) {
this = comp;
if (this._mode == "recording") {
var frameObjs = [];
var i = 0;
while (i < this.__targets__.length) {
var obj = this.__targets__[i];
var recObj = this.recordObject(obj);
if (recObj != undefined) {
frameobjs.push(recObj);
}
i++;
}
this._recording[this._recordingFrame] = frameObjs;
this._recordingFrame++;
} else if (this._mode == "playback") {
var frameObjs = this._recording[this._playbackFrame];
for (var i in frameObjs) {
var recObj = frameObjs[i];
var recordTarget = recObj._recordTarget;
var properties = recordTarget._recordProperties;
for (var property in properties) {
var property = properties[property];
var value = recObj[property];
recordTarget[property] = value;
}
}
if (this._playbackFrame >= this._recordingFrame) {
if (this.loopPlayback) {
this._playbackFrame = 1;
} else {
this._playbackFrame = undefined;
this._mode = "nuetral";
}
} else {
this._playbackFrame++;
}
}
};
_global.JMRecorder.prototype.recordObject = function (obj) {
if (obj._class == "JMRecorder") {
return(undefined);
}
var properties = obj._recordProperties;
var recObj = new Object();
for (property in properties) {
var property = properties[property];
ASSetPropFlags(recObj, property, 8);
var value = obj[property];
recObj[property] = value;
}
recObj._recordTarget = obj;
return(recObj);
};
#endinitclip
Symbol 10 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
setProperty(bar, _xscale , PercentLoaded);
} else {
gotoAndStop (3);
}
Symbol 10 MovieClip Frame 2
gotoAndPlay (1);
Symbol 10 MovieClip Frame 3
_root.play();
Symbol 33 MovieClip Frame 1
stop();
Symbol 33 MovieClip Frame 2
stop();
Symbol 33 MovieClip Frame 3
stop();
Symbol 33 MovieClip Frame 4
play();
Symbol 72 Button
on (press) {
backgrounds.nextFrame();
}
Symbol 73 Button
on (press) {
backgrounds.prevFrame();
}
Symbol 149 Button
on (release) {
gotoAndPlay (8);
}
Symbol 151 Button
on (release) {
gotoAndPlay (6);
}
Symbol 153 Button
on (release) {
gotoAndPlay (7);
}
Symbol 162 Button
on (release) {
_quality = "LOW";
}
Symbol 164 Button
on (release) {
_quality = "HIGH";
}
Symbol 166 Button
on (release) {
gotoAndPlay (5);
}