Frame 1
b1 = _root.getBytesLoaded();
b2 = _root.getBytesTotal();
tgPrel = 1 + Math.round((b1 * 100) / b2);
prel.gotoAndStop(tgPrel);
if (b1 >= b2) {
gotoAndPlay ("intro");
}
Frame 4
if (Math.round(b1 / 1024) <= 35) {
gotoAndPlay ("loop1");
}
Frame 5
b1 = _root.getBytesLoaded();
b2 = _root.getBytesTotal();
tgPrel = 1 + Math.round((b1 * 100) / b2);
tg = tgprel - 1;
if (tg <= 9) {
procent = "0" + tg;
} else {
procent = tg;
}
prel.gotoAndStop(tgPrel);
Frame 9
if (Math.round(b1 / 1024) <= 325) {
gotoAndPlay ("loop2");
}
Frame 11
b1 = _root.getBytesLoaded();
b2 = _root.getBytesTotal();
tgPrel = 1 + Math.round((b1 * 100) / b2);
tg = tgprel - 2;
if (tgprel <= 9) {
procent = "0" + tg;
} else {
procent = tg;
}
prel.gotoAndStop(tgPrel);
Frame 14
if (b1 < b2) {
gotoAndPlay ("loop3");
}
Frame 15
procent = "--";
prel.gotoAndStop(100);
Frame 175
_global.app = this;
_global.sunet = 1;
_root.play();
Instance of Symbol 249 MovieClip "comp1" in Frame 175
//component parameters
onClipEvent (initialize) {
wynume = "TheProfessionals";
wyculoare = 3755887 /* 0x394F6F */;
wyasezare = "Vertical";
wyaliniere = "Stanga";
wypozitie = "Sus";
wyinstructions = true;
}
Frame 182
function init_game() {
var _local1 = _global;
Mouse.show();
_local1._run = false;
_local1.sniper_mode = false;
_local1.escapes = 5;
_local1.num_of_levels = 10;
_local1.current_level = 1;
_local1.koef = 1;
_local1.deduction = false;
_local1.unclosed = false;
_local1.total_score = 0;
}
function escaping() {
var _local1 = _global;
if (_local1._run) {
_local1.escapes = _local1.escapes - 1;
if (_local1.escapes == 0) {
_local1.app.finishGame();
}
_local1.escape_sound = new Sound();
_local1.escape_sound.attachSound("escape_snd");
_local1.escape_sound.start(0, 1);
}
}
function finishGame() {
_global.app.gotoAndStop("submit");
Mouse.show();
}
function start_timer() {
var _local1 = _global;
_local1.numberOfMinutes = 1;
var _local2 = "00";
var _local3 = "00";
var minutes = ("0" + _local1.numberOfMinutes);
_local1.app.timer_mc.timer_txt.text = (((minutes + ":") + _local3) + ":") + _local2;
_local1.startTime = getTimer();
}
function finish_level() {
var _local1 = _global;
_local1._run = false;
_local1.sniper_mode = false;
if ((_local1.current_level < _local1.num_of_levels) && (!_local1.unclosed)) {
_local1.current_level = _local1.current_level + 1;
_local1.app.gotoAndPlay("loadlevel");
} else {
_local1.unclosed = true;
_local1.app.gotoAndStop("unclosed");
Mouse.show();
}
}
function continue_tasks() {
var _local1 = _global;
_local1.current_level = random(_local1.num_of_levels) + 1;
_local1.app.gotoAndPlay("loadlevel");
}
function load_level() {
var _local2 = _global;
var _local1 = ("level" + _local2.current_level) + "_mc";
_local2.app.level_holder.level_mc.attachMovie(_local1, "lev_mc", 1000);
_local2.app.level_holder._visible = false;
Mouse.show();
}
function start_level() {
var _local1 = _global;
_local1.app.level_holder.level_mc._x = 0;
_local1.app.level_holder.level_mc._y = 0;
_local1.app.level_holder.level_mc._xscale = 50;
_local1.app.level_holder.level_mc._yscale = 50;
_local1.app.start_timer();
_local1._run = true;
_local1.reloading = false;
_local1.sniper_mode = false;
_local1.app.sn_mc.gotoAndStop("nosniper");
_local1.bullets = 0;
_local1.bullets_over = false;
Mouse.hide();
_local1.app.total_score_txt.text = _local1.total_score;
_local1.hit_target = false;
_local1.app.level_holder.level_mc.lev_mc.targets_mc.gotoAndPlay("t1");
}
function scoring(score, target_mc, parent_mc, bomb_mc) {
var _local1 = _global;
var _local2 = bomb_mc;
var _local3 = score;
if (!_local1.bullets_over) {
if (target_mc.hitTest(_local1.app._xmouse, _local1.app._ymouse, true)) {
trace(("hit " + _local3) + "target");
if (!parent_mc.hide_mc.hitTest(_local1.app._xmouse, _local1.app._ymouse, true)) {
trace("through");
if (_local3 == 1) {
_local1.add_score = Math.round(100 * _local1.koef);
_local2.gotoAndPlay("bomb_head");
_local1.hit_target = true;
} else if (_local3 == 2) {
_local1.add_score = Math.round(75 * _local1.koef);
_local2.gotoAndPlay("bomb_head");
_local1.hit_target = true;
} else if (_local3 == 3) {
_local1.add_score = Math.round(50 * _local1.koef);
_local2.gotoAndPlay("bomb_body");
_local1.hit_target = true;
} else {
_local1.add_score = Math.round(25 * _local1.koef);
_local2.gotoAndPlay("bomb_body");
_local1.hit_target = true;
}
if (_local1.sniper_mode) {
_local1.add_score = Math.round(_local1.add_score * 2);
}
_local1.total_score = _local1.total_score + _local1.add_score;
_local1.app.total_score_txt.text = _local1.total_score;
parent_mc.stop();
_local1.app.score_anim.score_mc.score_txt.text = _local1.add_score;
_local1.app.score_anim.gotoAndPlay(1);
_local1.app.score_anim._x = _local1.app._xmouse;
_local1.app.score_anim._y = _local1.app._ymouse;
_local1.app.score_anim._visible = true;
}
}
}
}
function generate_new_target(clip) {
_global.koef = 1;
_global.deduction = false;
clip.gotoAndPlay("t" + (random(3) + 1));
}
function play_ricoshet() {
var _local1 = _global;
if (!_local1.hit_target) {
_local1.ricoshet_sound = new Sound();
_local1.ricoshet_sound.attachSound("ricoshet_snd");
_local1.ricoshet_sound.start(0, 1);
}
}
function play_hit_sound() {
var _local1 = _global;
_local1.hit_sound = new Sound();
_local1.hit_sound.attachSound("hit_snd");
_local1.hit_sound.start(0, 1);
}
function play_reload_sound() {
var _local1 = _global;
if (!_local1.reloading) {
_local1.reloading = true;
_local1.reload_sound = new Sound();
_local1.reload_sound.attachSound("reload2_snd");
_local1.reload_sound.start(0, 1);
_local1.app.reload();
}
}
function play_shot_sound(clip) {
var _local1 = _global;
if (!_local1.bullets_over) {
_local1.shot_sound = new Sound();
if (_local1.sniper_mode) {
_local1.shot_sound.attachSound("sn_shot_snd");
} else {
_local1.shot_sound.attachSound("shot_snd");
}
_local1.shot_sound.start(0, 1);
clip.gotoAndPlay(2);
}
}
function play_bip_sound() {
var _local1 = _global;
if (_local1.bullets == 10) {
_local1.bip_sound = new Sound();
_local1.bip_sound.attachSound("bip_snd");
_local1.bip_sound.start(0, 1);
}
}
function play_seconds_sound() {
var _local1 = _global;
_local1.seconds_sound = new Sound();
_local1.seconds_sound.attachSound("warn");
_local1.seconds_sound.start(0, 1);
}
function reload() {
var _local2 = _global;
_local2.reloading = false;
_local2.bullets = 0;
_local2.bullets_over = false;
if (_local2.total_score > 25) {
_local2.total_score = _local2.total_score - 25;
} else {
_local2.total_score = 0;
}
_local2.app.total_score_txt.text = _local2.total_score;
var _local1 = 1;
while (_local1 < 11) {
_local2.app.bulets_mc["b" + _local1].gotoAndStop(1);
_local1++;
}
}
stop();
init_game();
Instance of Symbol 588 MovieClip "instructions_mc" in Frame 182
onClipEvent (load) {
this._visible = false;
}
Frame 190
_root.score = _global.score;
if (_global.current_level > 1) {
stop();
} else {
_global.app.gotoAndStop("level");
}
_global.app.load_level();
_global.app.level_holder._visible = true;
Frame 197
_root.onEnterFrame = function () {
var _local1 = _global;
_local1.score = _root.scorTotal;
if (_local1.sunet != 1) {
_local1.ricoshet_sound.setVolume(0);
_local1.hit_sound.setVolume(0);
_local1.reload_sound.setVolume(0);
_local1.shot_sound.setVolume(0);
_local1.bip_sound.setVolume(0);
_local1.seconds_sound.setVolume(0);
stopAllSounds();
} else if (_local1.sunet == 1) {
_local1.ricoshet_sound.setVolume(100);
_local1.hit_sound.setVolume(100);
_local1.reload_sound.setVolume(100);
_local1.shot_sound.setVolume(100);
_local1.bip_sound.setVolume(100);
_local1.seconds_sound.setVolume(100);
}
};
stop();
_global.app.start_level();
Instance of Symbol 605 MovieClip "gun_mc" in Frame 197
onClipEvent (enterFrame) {
if (_global.sniper_mode) {
this._visible = false;
} else {
this._visible = true;
this._y = 400 - ((400 - _global.app._ymouse) / 2);
this._x = 550 - ((550 - _global.app._xmouse) / 2);
}
}
Instance of Symbol 609 MovieClip "sn_mc" in Frame 197
onClipEvent (load) {
this.startDrag(true);
}
onClipEvent (enterFrame) {
if (_global.sniper_mode) {
this.gotoAndStop("sniper");
} else {
this.gotoAndStop("nosniper");
}
}
Instance of Symbol 610 MovieClip "score_counter" in Frame 197
onClipEvent (enterFrame) {
if ((_global.koef > 0.1) && (_global.deduction)) {
_global.koef = _global.koef - 0.005;
}
}
Instance of Symbol 618 MovieClip "timer_mc" in Frame 197
onClipEvent (enterFrame) {
if (_global._run) {
var time = (getTimer() - _global.startTime);
var milli = (99 - (Math.floor(time / 10) - (Math.floor(time / 1000) * 100)));
var seconds = Math.floor(59 - (Math.floor(time / 1000) % 60));
var minutes = Math.floor(_global.numberOfMinutes - ((time / 1000) / 60));
if (seconds == this.seconds_to_bip) {
this.seconds_to_bip--;
_global.app.play_seconds_sound();
}
if (seconds == 0) {
_global.app.finish_level();
}
if (minutes < 10) {
minutes = "0" + minutes;
}
if (seconds < 10) {
seconds = "0" + seconds;
}
if (milli < 10) {
milli = "0" + milli;
}
this.timer_txt.text = seconds;
}
}
onClipEvent (load) {
this.seconds_to_bip = 5;
}
Instance of Symbol 621 MovieClip in Frame 197
onClipEvent (enterFrame) {
this.gotoAndStop(_global.escapes);
}
Instance of Symbol 622 MovieClip in Frame 197
onClipEvent (mouseDown) {
if (_global.sunet == 1) {
_global.app.play_shot_sound(this);
}
}
Instance of Symbol 629 MovieClip "bulets_mc" in Frame 197
onClipEvent (mouseDown) {
if (_global.bullets < 10) {
_global.bullets = _global.bullets + 1;
this["b" + _global.bullets].gotoAndPlay("fly");
}
if (_global.bullets == 10) {
_global.bullets_over = true;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(16)) {
_global.app.play_reload_sound();
}
if (_global.bullets == 10) {
this.reload_mc._visible = true;
} else {
this.reload_mc._visible = false;
}
}
Instance of Symbol 676 MovieClip in Frame 197
//component parameters
onClipEvent (initialize) {
wxnume = "TheProfessionals";
wxaliniere = "Dreapta-Jos";
wxculoare = 3755887 /* 0x394F6F */;
wxdownload = true;
wxpause = false;
wxsound = true;
}
Frame 204
_root.score = _root.scorTotal;
Instance of Symbol 249 MovieClip "comp1" in Frame 204
//component parameters
onClipEvent (initialize) {
wynume = "TheProfessionals";
wyculoare = 3755887 /* 0x394F6F */;
wyasezare = "Vertical";
wyaliniere = "Stanga";
wypozitie = "Sus";
wyinstructions = false;
}
Frame 211
_root.score = _root.scorTotal;
Frame 217
if (false) {
}
Frame 218
_root.menu.removeMovieClip();
_root.gameid = "TheProfessionals";
_root.best = _root.score;
_root.score = 0;
_root.updated = 0;
_root.done = 0;
done = 0;
i = 1;
while (i <= 100) {
_root["score" + i] = null;
_root["name" + i] = null;
_root["escore" + i] = null;
_root["ename" + i] = null;
i++;
}
Frame 220
cale = "http://www.freeonlinegames.com/scoreboard/score.php?game=" + _root.gameid;
loadVariablesNum (cale, 0, "POST");
Frame 221
if (false) {
}
Frame 228
if (done != 1) {
gotoAndPlay ("loopLoad");
} else {
gotoAndPlay ("scoreTable");
}
Frame 232
monthnume = new Array();
monthscor = new Array();
i = 1;
while (i <= 100) {
monthnume[i] = _root["name" + i];
monthscor[i] = Number(_root["score" + i].slice(0, _root["score" + i].length - 1));
i++;
}
evernume = new Array();
everscor = new Array();
i = 1;
while (i <= 100) {
evernume[i] = _root["ename" + i];
everscor[i] = Number(_root["escore" + i].slice(0, _root["escore" + i].length - 1));
i++;
}
Frame 233
stop();
if (_root.best > everscor[100]) {
scoreWind.gotoAndStop("submitScoreYes");
} else {
scoreWind.gotoAndStop("submitScoreNo");
}
if (_root.xdada == 1) {
scoreWind.gotoAndStop("topEver");
}
Symbol 10 MovieClip [FUIComponentSymbol] Frame 1
#initclip 2
function FUIComponentClass() {
this.init();
}
FUIComponentClass.prototype = new MovieClip();
FUIComponentClass.prototype.init = function () {
var _local1 = this;
var _local3 = _global;
_local1.enable = true;
_local1.focused = false;
_local1.useHandCursor = false;
_local1._accImpl = new Object();
_local1._accImpl.stub = true;
_local1.styleTable = new Array();
if (_local3.globalStyleFormat == undefined) {
_local3.globalStyleFormat = new FStyleFormat();
globalStyleFormat.isGlobal = true;
_local3._focusControl = new Object();
_local3._focusControl.onSetFocus = function (oldFocus, newFocus) {
oldFocus.myOnKillFocus();
newFocus.myOnSetFocus();
};
Selection.addListener(_local3._focusControl);
}
if (_local1._name != undefined) {
_local1._focusrect = false;
_local1.tabEnabled = true;
_local1.focusEnabled = true;
_local1.tabChildren = false;
_local1.tabFocused = true;
if (_local1.hostStyle == undefined) {
globalStyleFormat.addListener(_local1);
} else {
_local1.styleTable = _local1.hostStyle;
}
_local1.deadPreview._visible = false;
_local1.deadPreview._width = (_local1.deadPreview._height = 1);
_local1.methodTable = new Object();
_local1.keyListener = new Object();
_local1.keyListener.controller = _local1;
_local1.keyListener.onKeyDown = function () {
this.controller.myOnKeyDown();
};
_local1.keyListener.onKeyUp = function () {
this.controller.myOnKeyUp();
};
for (var _local2 in _local1.styleFormat_prm) {
_local1.setStyleProperty(_local2, _local1.styleFormat_prm[_local2]);
}
}
};
FUIComponentClass.prototype.setEnabled = function (enabledFlag) {
var _local1 = this;
_local1.enable = ((arguments.length > 0) ? (enabledFlag) : true);
_local1.tabEnabled = (_local1.focusEnabled = enabledFlag);
if ((!_local1.enable) && (_local1.focused)) {
Selection.setFocus(undefined);
}
};
FUIComponentClass.prototype.getEnabled = function () {
return(this.enable);
};
FUIComponentClass.prototype.setSize = function (w, h) {
var _local1 = this;
_local1.width = w;
_local1.height = h;
_local1.focusRect.removeMovieClip();
};
FUIComponentClass.prototype.setChangeHandler = function (chng, obj) {
var _local1 = this;
_local1.handlerObj = ((obj == undefined) ? (_local1._parent) : (obj));
_local1.changeHandler = chng;
};
FUIComponentClass.prototype.invalidate = function (methodName) {
var _local1 = this;
_local1.methodTable[methodName] = true;
_local1.onEnterFrame = _local1.cleanUI;
};
FUIComponentClass.prototype.cleanUI = function () {
var _local1 = this;
if (_local1.methodTable.setSize) {
_local1.setSize(_local1.width, _local1.height);
} else {
_local1.cleanUINotSize();
}
_local1.methodTable = new Object();
delete _local1.onEnterFrame;
};
FUIComponentClass.prototype.cleanUINotSize = function () {
var _local1 = this;
for (var _local2 in _local1.methodTable) {
_local1[_local2]();
}
};
FUIComponentClass.prototype.drawRect = function (x, y, w, h) {
var _local1 = this;
var _local2 = y;
var _local3 = x;
var inner = _local1.styleTable.focusRectInner.value;
var outer = _local1.styleTable.focusRectOuter.value;
if (inner == undefined) {
inner = 16777215 /* 0xFFFFFF */;
}
if (outer == undefined) {
outer = 0;
}
_local1.createEmptyMovieClip("focusRect", 1000);
_local1.focusRect.controller = _local1;
_local1.focusRect.lineStyle(1, outer);
_local1.focusRect.moveTo(_local3, _local2);
_local1.focusRect.lineTo(_local3 + w, _local2);
_local1.focusRect.lineTo(_local3 + w, _local2 + h);
_local1.focusRect.lineTo(_local3, _local2 + h);
_local1.focusRect.lineTo(_local3, _local2);
_local1.focusRect.lineStyle(1, inner);
_local1.focusRect.moveTo(_local3 + 1, _local2 + 1);
_local1.focusRect.lineTo((_local3 + w) - 1, _local2 + 1);
_local1.focusRect.lineTo((_local3 + w) - 1, (_local2 + h) - 1);
_local1.focusRect.lineTo(_local3 + 1, (_local2 + h) - 1);
_local1.focusRect.lineTo(_local3 + 1, _local2 + 1);
};
FUIComponentClass.prototype.pressFocus = function () {
var _local1 = this;
_local1.tabFocused = false;
_local1.focusRect.removeMovieClip();
Selection.setFocus(_local1);
};
FUIComponentClass.prototype.drawFocusRect = function () {
var _local1 = this;
_local1.drawRect(-2, -2, _local1.width + 4, _local1.height + 4);
};
FUIComponentClass.prototype.myOnSetFocus = function () {
var _local1 = this;
_local1.focused = true;
Key.addListener(_local1.keyListener);
if (_local1.tabFocused) {
_local1.drawFocusRect();
}
};
FUIComponentClass.prototype.myOnKillFocus = function () {
var _local1 = this;
_local1.tabFocused = true;
_local1.focused = false;
_local1.focusRect.removeMovieClip();
Key.removeListener(_local1.keyListener);
};
FUIComponentClass.prototype.executeCallBack = function () {
var _local1 = this;
_local1.handlerObj[_local1.changeHandler](_local1);
};
FUIComponentClass.prototype.updateStyleProperty = function (styleFormat, propName) {
this.setStyleProperty(propName, styleFormat[propName], styleFormat.isGlobal);
};
FUIComponentClass.prototype.setStyleProperty = function (propName, value, isGlobal) {
var _local1 = this;
var _local2 = propName;
if (value == "") {
} else {
var tmpValue = parseInt(value);
if (!isNaN(tmpValue)) {
value = tmpValue;
}
var global = ((arguments.length > 2) ? (isGlobal) : false);
if (_local1.styleTable[_local2] == undefined) {
_local1.styleTable[_local2] = new Object();
_local1.styleTable[_local2].useGlobal = true;
}
if (_local1.styleTable[_local2].useGlobal || (!global)) {
_local1.styleTable[_local2].value = value;
if (_local1.setCustomStyleProperty(_local2, value)) {
} else if (_local2 == "embedFonts") {
_local1.invalidate("setSize");
} else if (_local2.subString(0, 4) == "text") {
if (_local1.textStyle == undefined) {
_local1.textStyle = new TextFormat();
}
var textProp = _local2.subString(4, _local2.length);
_local1.textStyle[textProp] = value;
_local1.invalidate("setSize");
} else {
for (var j in _local1.styleTable[_local2].coloredMCs) {
var _local3 = new Color(_local1.styleTable[_local2].coloredMCs[j]);
if (_local1.styleTable[_local2].value == undefined) {
var myTObj = {ra:"100", rb:"0", ga:"100", gb:"0", ba:"100", bb:"0", aa:"100", ab:"0"};
_local3.setTransform(myTObj);
} else {
_local3.setRGB(value);
}
}
}
_local1.styleTable[_local2].useGlobal = global;
}
}
};
FUIComponentClass.prototype.registerSkinElement = function (skinMCRef, propName) {
var _local1 = this;
var _local2 = propName;
if (_local1.styleTable[_local2] == undefined) {
_local1.styleTable[_local2] = new Object();
_local1.styleTable[_local2].useGlobal = true;
}
if (_local1.styleTable[_local2].coloredMCs == undefined) {
_local1.styleTable[_local2].coloredMCs = new Object();
}
_local1.styleTable[_local2].coloredMCs[skinMCRef] = skinMCRef;
if (_local1.styleTable[_local2].value != undefined) {
var _local3 = new Color(skinMCRef);
_local3.setRGB(_local1.styleTable[_local2].value);
}
};
_global.FStyleFormat = function () {
var _local1 = arguments;
var _local2 = this;
_local2.nonStyles = {listeners:true, isGlobal:true, isAStyle:true, addListener:true, removeListener:true, nonStyles:true, applyChanges:true};
_local2.listeners = new Object();
_local2.isGlobal = false;
if (_local1.length > 0) {
for (var _local3 in _local1[0]) {
_local2[_local3] = _local1[0][_local3];
}
}
};
_global.FStyleFormat.prototype = new Object();
FStyleFormat.prototype.addListener = function () {
var _local1 = this;
var _local2 = 0;
while (_local2 < arguments.length) {
var _local3 = arguments[_local2];
_local1.listeners[arguments[_local2]] = _local3;
for (var i in _local1) {
if (_local1.isAStyle(i)) {
_local3.updateStyleProperty(_local1, i.toString());
}
}
_local2++;
}
};
FStyleFormat.prototype.removeListener = function (component) {
var _local1 = this;
var _local2 = component;
_local1.listeners[_local2] = undefined;
for (var prop in _local1) {
if (_local1.isAStyle(prop)) {
if (_local2.styleTable[prop].useGlobal == _local1.isGlobal) {
_local2.styleTable[prop].useGlobal = true;
var _local3 = (_local1.isGlobal ? undefined : (globalStyleFormat[prop]));
_local2.setStyleProperty(prop, _local3, true);
}
}
}
};
FStyleFormat.prototype.applyChanges = function () {
var _local1 = this;
var _local2 = arguments;
var count = 0;
for (var i in _local1.listeners) {
var _local3 = _local1.listeners[i];
if (_local2.length > 0) {
var j = 0;
while (j < _local2.length) {
if (_local1.isAStyle(_local2[j])) {
_local3.updateStyleProperty(_local1, _local2[j]);
}
j++;
}
} else {
for (var j in _local1) {
if (_local1.isAStyle(j)) {
_local3.updateStyleProperty(_local1, j.toString());
}
}
}
}
};
FStyleFormat.prototype.isAStyle = function (name) {
return((this.nonStyles[name] ? false : true));
};
#endinitclip
Symbol 23 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(arrow_mc, "arrow");
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 32 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(arrow_mc, "arrow");
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 41 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(arrow_mc, "foregroundDisabled");
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 42 MovieClip [UpArrow] Frame 1
stop();
Symbol 42 MovieClip [UpArrow] Frame 2
stop();
Symbol 42 MovieClip [UpArrow] Frame 3
stop();
Symbol 48 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 57 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 62 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(highlight3D_mc, "highlight3D");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
Symbol 63 MovieClip [ScrollThumb] Frame 1
stop();
Symbol 71 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(arrow_mc, "arrow");
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 79 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(arrow_mc, "arrow");
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 87 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(arrow_mc, "foregroundDisabled");
component.registerSkinElement(face_mc, "face");
component.registerSkinElement(shadow_mc, "shadow");
component.registerSkinElement(darkshadow_mc, "darkshadow");
component.registerSkinElement(highlight_mc, "highlight");
component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 88 MovieClip [DownArrow] Frame 1
stop();
Symbol 88 MovieClip [DownArrow] Frame 2
stop();
Symbol 88 MovieClip [DownArrow] Frame 3
stop();
Symbol 93 MovieClip [FLabelSymbol] Frame 1
#initclip 1
_global.FLabelClass = function () {
var _local1 = this;
if (_local1.hostComponent == undefined) {
_local1.hostComponent = ((_local1._parent.controller == undefined) ? (_local1._parent) : (_local1._parent.controller));
}
if (_local1.customTextStyle == undefined) {
if (_local1.hostComponent.textStyle == undefined) {
_local1.hostComponent.textStyle = new TextFormat();
}
_local1.textStyle = _local1.hostComponent.textStyle;
_local1.enable = true;
}
};
FLabelClass.prototype = new MovieClip();
Object.registerClass("FLabelSymbol", FLabelClass);
FLabelClass.prototype.setLabel = function (label) {
var _local1 = this;
var _local2 = _local1.hostComponent.styleTable.embedFonts.value;
if (_local2 != undefined) {
_local1.labelField.embedFonts = _local2;
}
_local1.labelField.setNewTextFormat(_local1.textStyle);
_local1.labelField.text = label;
_local1.labelField._height = _local1.labelField.textHeight + 2;
};
FLabelClass.prototype.setSize = function (width) {
this.labelField._width = width;
};
FLabelClass.prototype.setEnabled = function (enable) {
var _local2 = this;
var _local3 = enable;
_local2.enable = _local3;
var _local1 = _local2.hostComponent.styleTable[(_local3 ? "textColor" : "textDisabled")].value;
if (_local1 == undefined) {
_local1 = (_local3 ? 0 : 8947848);
}
_local2.setColor(_local1);
};
FLabelClass.prototype.getLabel = function () {
return(this.labelField.text);
};
FLabelClass.prototype.setColor = function (col) {
this.labelField.textColor = col;
};
#endinitclip
Symbol 101 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(frame5, "face");
component.registerSkinElement(frame3, "shadow");
component.registerSkinElement(frame1, "darkshadow");
component.registerSkinElement(frame4, "highlight");
component.registerSkinElement(frame2, "highlight3D");
Symbol 107 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(frame5, "face");
component.registerSkinElement(frame3, "shadow");
component.registerSkinElement(frame1, "darkshadow");
component.registerSkinElement(frame4, "highlight");
component.registerSkinElement(frame2, "highlight3D");
Symbol 113 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(frame5, "face");
component.registerSkinElement(frame4, "shadow");
component.registerSkinElement(frame2, "darkshadow");
component.registerSkinElement(frame3, "highlight");
component.registerSkinElement(frame1, "highlight3D");
Symbol 119 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(frame5, "face");
component.registerSkinElement(frame3, "shadow");
component.registerSkinElement(frame1, "darkshadow");
component.registerSkinElement(frame4, "highlight");
component.registerSkinElement(frame2, "highlight3D");
Symbol 120 MovieClip [fpb_states] Frame 1
stop();
Symbol 120 MovieClip [fpb_states] Frame 2
stop();
Symbol 120 MovieClip [fpb_states] Frame 3
stop();
Symbol 120 MovieClip [fpb_states] Frame 4
stop();
Symbol 124 MovieClip [FBoundingBoxSymbol] Frame 1
var component = _parent;
component.registerSkinElement(boundingBox, "background");
stop();
Symbol 124 MovieClip [FBoundingBoxSymbol] Frame 2
component.registerSkinElement(boundingBox2, "backgroundDisabled");
stop();
Symbol 127 MovieClip [FPushButtonSymbol] Frame 1
#initclip 4
function FPushButtonClass() {
this.init();
}
FPushButtonClass.prototype = new FUIComponentClass();
Object.registerClass("FPushButtonSymbol", FPushButtonClass);
FPushButtonClass.prototype.init = function () {
var _local1 = this;
super.setSize(_local1._width, _local1._height);
_local1.boundingBox_mc.unloadMovie();
_local1.attachMovie("fpb_states", "fpbState_mc", 1);
_local1.attachMovie("FLabelSymbol", "fLabel_mc", 2);
_local1.attachMovie("fpb_hitArea", "fpb_hitArea_mc", 3);
super.init();
_local1.btnState = false;
_local1.setClickHandler(_local1.clickHandler);
_local1._xscale = 100;
_local1._yscale = 100;
_local1.setSize(_local1.width, _local1.height);
if (_local1.label != undefined) {
_local1.setLabel(_local1.label);
}
_local1.ROLE_SYSTEM_PUSHBUTTON = 43;
_local1.STATE_SYSTEM_PRESSED = 8;
_local1.EVENT_OBJECT_STATECHANGE = 32778;
_local1.EVENT_OBJECT_NAMECHANGE = 32780;
_local1._accImpl.master = _local1;
_local1._accImpl.stub = false;
_local1._accImpl.get_accRole = _local1.get_accRole;
_local1._accImpl.get_accName = _local1.get_accName;
_local1._accImpl.get_accState = _local1.get_accState;
_local1._accImpl.get_accDefaultAction = _local1.get_accDefaultAction;
_local1._accImpl.accDoDefaultAction = _local1.accDoDefaultAction;
};
FPushButtonClass.prototype.setHitArea = function (w, h) {
var _local1 = this.fpb_hitArea_mc;
this.hitArea = _local1;
_local1._visible = false;
_local1._width = w;
_local1._height = ((arguments.length > 1) ? (h) : (_local1._height));
};
FPushButtonClass.prototype.setSize = function (w, h) {
var _local1 = this;
var _local2 = w;
var _local3 = h;
_local2 = ((_local2 < 6) ? 6 : (_local2));
if (arguments.length > 1) {
if (_local3 < 6) {
_local3 = 6;
}
}
super.setSize(_local2, _local3);
_local1.setLabel(_local1.getLabel());
_local1.arrangeLabel();
_local1.setHitArea(_local2, _local3);
_local1.boundingBox_mc._width = _local2;
_local1.boundingBox_mc._height = _local3;
_local1.drawFrame();
if (_local1.focused) {
super.myOnSetFocus();
}
_local1.initContentPos("fLabel_mc");
};
FPushButtonClass.prototype.arrangeLabel = function () {
var _local3 = this;
var _local1 = _local3.fLabel_mc;
var h = _local3.height;
var w = (_local3.width - 2);
var _local2 = 1;
_local3.fLabel_mc.setSize(w - (_local2 * 4));
_local1._x = _local2 * 3;
_local1._y = (h / 2) - (_local1._height / 2);
};
FPushButtonClass.prototype.getLabel = function () {
return(this.fLabel_mc.labelField.text);
};
FPushButtonClass.prototype.setLabel = function (label) {
var _local1 = this;
_local1.fLabel_mc.setLabel(label);
_local1.txtFormat();
_local1.arrangeLabel();
if (Accessibility.isActive()) {
Accessibility.sendEvent(_local1, 0, _local1.EVENT_OBJECT_NAMECHANGE);
}
};
FPushButtonClass.prototype.getEnabled = function () {
return(this.enabled);
};
FPushButtonClass.prototype.setEnabled = function (enable) {
var _local1 = this;
if (enable || (enable == undefined)) {
_local1.gotoFrame(1);
_local1.drawFrame();
_local1.flabel_mc.setEnabled(true);
_local1.enabled = true;
super.setEnabled(true);
} else {
_local1.gotoFrame(4);
_local1.drawFrame();
_local1.flabel_mc.setEnabled(false);
_local1.enabled = false;
super.setEnabled(false);
}
};
FPushButtonClass.prototype.txtFormat = function () {
var _local1 = this;
var _local2 = _local1.textStyle;
var _local3 = _local1.styleTable;
_local2.align = ((_local3.textAlign.value == undefined) ? ((_local2.align = "center")) : undefined);
_local2.leftMargin = ((_local3.textLeftMargin.value == undefined) ? ((_local2.leftMargin = 1)) : undefined);
_local2.rightMargin = ((_local3.textRightMargin.value == undefined) ? ((_local2.rightMargin = 1)) : undefined);
if (_local1.fLabel_mc._height > _local1.height) {
super.setSize(_local1.width, _local1.fLabel_mc._height);
} else {
super.setSize(_local1.width, _local1.height);
}
_local1.fLabel_mc.labelField.setTextFormat(_local1.textStyle);
_local1.setEnabled(_local1.enable);
};
FPushButtonClass.prototype.drawFrame = function () {
var _local3 = this;
var _local2 = 1;
var x1 = 0;
var y1 = 0;
var x2 = _local3.width;
var y2 = _local3.height;
var mc_array = ["up_mc", "over_mc", "down_mc", "disabled_mc"];
var frame = mc_array[_local3.fpbState_mc._currentframe - 1];
var mc = "frame";
var _local1 = 0;
while (_local1 < 6) {
x1 = x1 + ((_local1 % 2) * _local2);
y1 = y1 + ((_local1 % 2) * _local2);
x2 = x2 - (((_local1 + 1) % 2) * _local2);
y2 = y2 - (((_local1 + 1) % 2) * _local2);
var w = (Math.abs(x1 - x2) + (2 * _local2));
var h = (Math.abs(y1 - y2) + (2 * _local2));
_local3.fpbState_mc[frame][mc + _local1]._width = w;
_local3.fpbState_mc[frame][mc + _local1]._height = h;
_local3.fpbState_mc[frame][mc + _local1]._x = x1 - _local2;
_local3.fpbState_mc[frame][mc + _local1]._y = y1 - _local2;
_local1++;
}
};
FPushButtonClass.prototype.setClickHandler = function (chng, obj) {
var _local1 = this;
_local1.handlerObj = ((arguments.length < 2) ? (_local1._parent) : (obj));
_local1.clickHandler = chng;
};
FPushButtonClass.prototype.executeCallBack = function () {
var _local1 = this;
_local1.handlerObj[_local1.clickHandler](_local1);
};
FPushButtonClass.prototype.initContentPos = function (mc) {
var _local1 = this;
_local1.incrVal = 1;
_local1.initx = _local1[mc]._x - (_local1.getBtnState() * _local1.incrVal);
_local1.inity = _local1[mc]._y - (_local1.getBtnState() * _local1.incrVal);
_local1.togx = _local1.initx + _local1.incrVal;
_local1.togy = _local1.inity + _local1.incrVal;
};
FPushButtonClass.prototype.setBtnState = function (state) {
var _local1 = this;
_local1.btnState = state;
if (state) {
_local1.fLabel_mc._x = _local1.togx;
_local1.fLabel_mc._y = _local1.togy;
} else {
_local1.fLabel_mc._x = _local1.initx;
_local1.fLabel_mc._y = _local1.inity;
}
};
FPushButtonClass.prototype.getBtnState = function () {
return(this.btnState);
};
FPushButtonClass.prototype.myOnSetFocus = function () {
this.focused = true;
super.myOnSetFocus();
};
FPushButtonClass.prototype.onPress = function () {
var _local1 = this;
_local1.pressFocus();
_local1.fpbState_mc.gotoAndStop(3);
_local1.drawFrame();
_local1.setBtnState(true);
if (Accessibility.isActive()) {
Accessibility.sendEvent(_local1, 0, _local1.EVENT_OBJECT_STATECHANGE, true);
}
};
FPushButtonClass.prototype.onRelease = function () {
var _local1 = this;
_local1.fpbState_mc.gotoAndStop(2);
_local1.drawFrame();
_local1.executeCallBack();
_local1.setBtnState(false);
if (Accessibility.isActive()) {
Accessibility.sendEvent(_local1, 0, _local1.EVENT_OBJECT_STATECHANGE, true);
}
};
FPushButtonClass.prototype.onRollOver = function () {
this.fpbState_mc.gotoAndStop(2);
this.drawFrame();
};
FPushButtonClass.prototype.onRollOut = function () {
this.fpbState_mc.gotoAndStop(1);
this.drawFrame();
};
FPushButtonClass.prototype.onReleaseOutside = function () {
var _local1 = this;
_local1.setBtnState(false);
_local1.fpbState_mc.gotoAndStop(1);
_local1.drawFrame();
};
FPushButtonClass.prototype.onDragOut = function () {
var _local1 = this;
_local1.setBtnState(false);
_local1.fpbState_mc.gotoAndStop(1);
_local1.drawFrame();
};
FPushButtonClass.prototype.onDragOver = function () {
var _local1 = this;
_local1.setBtnState(true);
_local1.fpbState_mc.gotoAndStop(3);
_local1.drawFrame();
};
FPushButtonClass.prototype.myOnKeyDown = function () {
var _local1 = this;
if ((Key.getCode() == 32) && (_local1.pressOnce == undefined)) {
_local1.onPress();
_local1.pressOnce = 1;
}
};
FPushButtonClass.prototype.myOnKeyUp = function () {
if (Key.getCode() == 32) {
this.onRelease();
this.pressOnce = undefined;
}
};
FPushButtonClass.prototype.get_accRole = function (childId) {
return(this.master.ROLE_SYSTEM_PUSHBUTTON);
};
FPushButtonClass.prototype.get_accName = function (childId) {
return(this.master.getLabel());
};
FPushButtonClass.prototype.get_accState = function (childId) {
var _local1 = this;
if (_local1.pressOnce) {
return(_local1.master.STATE_SYSTEM_PRESSED);
}
return(_local1.master.STATE_SYSTEM_DEFAULT);
};
FPushButtonClass.prototype.get_accDefaultAction = function (childId) {
return("Press");
};
FPushButtonClass.prototype.accDoDefaultAction = function (childId) {
this.master.onPress();
this.master.onRelease();
};
#endinitclip
boundingBox_mc._visible = false;
deadPreview._visible = false;
Symbol 129 MovieClip Frame 1
var component = _parent;
component.registerSkinElement(track_mc, "scrollTrack");
Symbol 130 MovieClip [FScrollBarSymbol] Frame 1
#initclip 3
FScrollBarClass = function () {
var _local1 = this;
if (_local1._height == 4) {
} else {
_local1.init();
_local1.minPos = (_local1.maxPos = (_local1.pageSize = (_local1.largeScroll = 0)));
_local1.smallScroll = 1;
_local1.width = (_local1.horizontal ? (_local1._width) : (_local1._height));
_local1._xscale = (_local1._yscale = 100);
_local1.setScrollPosition(0);
_local1.tabEnabled = false;
if (_local1._targetInstanceName.length > 0) {
_local1.setScrollTarget(_local1._parent[_local1._targetInstanceName]);
}
_local1.tabChildren = false;
_local1.setSize(_local1.width);
}
};
FScrollBarClass.prototype = new FUIComponentClass();
FScrollBarClass.prototype.setHorizontal = function (flag) {
var _local1 = this;
var _local2 = flag;
if (_local1.horizontal && (!_local2)) {
_local1._xscale = 100;
_local1._rotation = 0;
} else if (_local2 && (!_local1.horizontal)) {
_local1._xscale = -100;
_local1._rotation = -90;
}
_local1.horizontal = _local2;
};
FScrollBarClass.prototype.setScrollProperties = function (pSize, mnPos, mxPos) {
var _local1 = this;
if (!_local1.enable) {
} else {
_local1.pageSize = pSize;
_local1.minPos = Math.max(mnPos, 0);
_local1.maxPos = Math.max(mxPos, 0);
_local1.scrollPosition = Math.max(_local1.minPos, _local1.scrollPosition);
_local1.scrollPosition = Math.min(_local1.maxPos, _local1.scrollPosition);
if ((_local1.maxPos - _local1.minPos) <= 0) {
_local1.scrollThumb_mc.removeMovieClip();
_local1.upArrow_mc.gotoAndStop(3);
_local1.downArrow_mc.gotoAndStop(3);
_local1.downArrow_mc.onPress = (_local1.downArrow_mc.onRelease = (_local1.downArrow_mc.onDragOut = null));
_local1.upArrow_mc.onPress = (_local1.upArrow_mc.onRelease = (_local1.upArrow_mc.onDragOut = null));
_local1.scrollTrack_mc.onPress = (_local1.scrollTrack_mc.onRelease = null);
_local1.scrollTrack_mc.onDragOut = (_local1.scrollTrack_mc.onRollOut = null);
_local1.scrollTrack_mc.useHandCursor = false;
} else {
var _local2 = _local1.getScrollPosition();
_local1.upArrow_mc.gotoAndStop(1);
_local1.downArrow_mc.gotoAndStop(1);
_local1.upArrow_mc.onPress = (_local1.upArrow_mc.onDragOver = _local1.startUpScroller);
_local1.upArrow_mc.onRelease = (_local1.upArrow_mc.onDragOut = _local1.stopScrolling);
_local1.downArrow_mc.onPress = (_local1.downArrow_mc.onDragOver = _local1.startDownScroller);
_local1.downArrow_mc.onRelease = (_local1.downArrow_mc.onDragOut = _local1.stopScrolling);
_local1.scrollTrack_mc.onPress = (_local1.scrollTrack_mc.onDragOver = _local1.startTrackScroller);
_local1.scrollTrack_mc.onRelease = _local1.stopScrolling;
_local1.scrollTrack_mc.onDragOut = _local1.stopScrolling;
_local1.scrollTrack_mc.onRollOut = _local1.stopScrolling;
_local1.scrollTrack_mc.useHandCursor = false;
_local1.attachMovie("ScrollThumb", "scrollThumb_mc", 3);
_local1.scrollThumb_mc._x = 0;
_local1.scrollThumb_mc._y = _local1.upArrow_mc._height;
_local1.scrollThumb_mc.onPress = _local1.startDragThumb;
_local1.scrollThumb_mc.controller = _local1;
_local1.scrollThumb_mc.onRelease = (_local1.scrollThumb_mc.onReleaseOutside = _local1.stopDragThumb);
_local1.scrollThumb_mc.useHandCursor = false;
_local1.thumbHeight = (_local1.pageSize / ((_local1.maxPos - _local1.minPos) + _local1.pageSize)) * _local1.trackSize;
_local1.thumbMid_mc = _local1.scrollThumb_mc.mc_sliderMid;
_local1.thumbTop_mc = _local1.scrollThumb_mc.mc_sliderTop;
_local1.thumbBot_mc = _local1.scrollThumb_mc.mc_sliderBot;
_local1.thumbHeight = Math.max(_local1.thumbHeight, 6);
_local1.midHeight = (_local1.thumbHeight - _local1.thumbTop_mc._height) - _local1.thumbBot_mc._height;
_local1.thumbMid_mc._yScale = (_local1.midHeight * 100) / _local1.thumbMid_mc._height;
_local1.thumbMid_mc._y = _local1.thumbTop_mc._height;
_local1.thumbBot_mc._y = _local1.thumbTop_mc._height + _local1.midHeight;
_local1.scrollTop = _local1.scrollThumb_mc._y;
_local1.trackHeight = _local1.trackSize - _local1.thumbHeight;
_local1.scrollBot = _local1.trackHeight + _local1.scrollTop;
_local2 = Math.min(_local2, _local1.maxPos);
_local1.setScrollPosition(Math.max(_local2, _local1.minPos));
}
}
};
FScrollBarClass.prototype.getScrollPosition = function () {
return(this.scrollPosition);
};
FScrollBarClass.prototype.setScrollPosition = function (pos) {
var _local1 = this;
var _local2 = pos;
_local1.scrollPosition = _local2;
if (_local1.scrollThumb_mc != undefined) {
_local2 = Math.min(_local2, _local1.maxPos);
_local2 = Math.max(_local2, _local1.minPos);
}
_local1.scrollThumb_mc._y = (((_local2 - _local1.minPos) * _local1.trackHeight) / (_local1.maxPos - _local1.minPos)) + _local1.scrollTop;
_local1.executeCallBack();
};
FScrollBarClass.prototype.setLargeScroll = function (lScroll) {
this.largeScroll = lScroll;
};
FScrollBarClass.prototype.setSmallScroll = function (sScroll) {
this.smallScroll = sScroll;
};
FScrollBarClass.prototype.setEnabled = function (enabledFlag) {
var _local1 = this;
var _local2 = enabledFlag;
var _local3 = _local1.enable;
if (_local2 && (!_local3)) {
_local1.enable = _local2;
if (_local1.textField != undefined) {
_local1.setScrollTarget(_local1.textField);
} else {
_local1.setScrollProperties(_local1.pageSize, _local1.cachedMinPos, _local1.cachedMaxPos);
_local1.setScrollPosition(_local1.cachedPos);
}
_local1.clickFilter = undefined;
} else if ((!_local2) && (_local3)) {
_local1.textField.removeListener(_local1);
_local1.cachedPos = _local1.getScrollPosition();
_local1.cachedMinPos = _local1.minPos;
_local1.cachedMaxPos = _local1.maxPos;
if (_local1.clickFilter == undefined) {
_local1.setScrollProperties(_local1.pageSize, 0, 0);
} else {
_local1.clickFilter = true;
}
_local1.enable = _local2;
}
};
FScrollBarClass.prototype.setSize = function (hgt) {
var _local1 = this;
if (_local1._height == 1) {
} else {
_local1.width = hgt;
_local1.scrollTrack_mc._yscale = 100;
_local1.scrollTrack_mc._yscale = (100 * _local1.width) / _local1.scrollTrack_mc._height;
if (_local1.upArrow_mc == undefined) {
_local1.attachMovie("UpArrow", "upArrow_mc", 1);
_local1.attachMovie("DownArrow", "downArrow_mc", 2);
_local1.downArrow_mc.controller = (_local1.upArrow_mc.controller = _local1);
_local1.upArrow_mc.useHandCursor = (_local1.downArrow_mc.useHandCursor = false);
_local1.upArrow_mc._x = (_local1.upArrow_mc._y = 0);
_local1.downArrow_mc._x = 0;
}
_local1.scrollTrack_mc.controller = _local1;
_local1.downArrow_mc._y = _local1.width - _local1.downArrow_mc._height;
_local1.trackSize = _local1.width - (2 * _local1.downArrow_mc._height);
if (_local1.textField != undefined) {
_local1.onTextChanged();
} else {
_local1.setScrollProperties(_local1.pageSize, _local1.minPos, _local1.maxPos);
}
}
};
FScrollBarClass.prototype.scrollIt = function (inc, mode) {
var _local1 = this;
var _local3 = _local1.smallScroll;
if (inc != "one") {
_local3 = ((_local1.largeScroll == 0) ? (_local1.pageSize) : (_local1.largeScroll));
}
var _local2 = _local1.getScrollPosition() + (mode * _local3);
if (_local2 > _local1.maxPos) {
_local2 = _local1.maxPos;
} else if (_local2 < _local1.minPos) {
_local2 = _local1.minPos;
}
_local1.setScrollPosition(_local2);
};
FScrollBarClass.prototype.startDragThumb = function () {
var _local1 = this;
_local1.lastY = _local1._ymouse;
_local1.onMouseMove = _local1.controller.dragThumb;
};
FScrollBarClass.prototype.dragThumb = function () {
var _local1 = this;
_local1.scrollMove = _local1._ymouse - _local1.lastY;
_local1.scrollMove = _local1.scrollMove + _local1._y;
if (_local1.scrollMove < _local1.controller.scrollTop) {
_local1.scrollMove = _local1.controller.scrollTop;
} else if (_local1.scrollMove > _local1.controller.scrollBot) {
_local1.scrollMove = _local1.controller.scrollBot;
}
_local1._y = _local1.scrollMove;
var _local2 = _local1.controller;
_local2.scrollPosition = Math.round(((_local2.maxPos - _local2.minPos) * (_local1._y - _local2.scrollTop)) / _local2.trackHeight) + _local2.minPos;
_local1.controller.isScrolling = true;
updateAfterEvent();
_local1.controller.executeCallBack();
};
FScrollBarClass.prototype.stopDragThumb = function () {
this.controller.isScrolling = false;
this.onMouseMove = null;
};
FScrollBarClass.prototype.startTrackScroller = function () {
var _local1 = this;
_local1.controller.trackScroller();
_local1.controller.scrolling = setInterval(_local1.controller, "scrollInterval", 500, "page", -1);
};
FScrollBarClass.prototype.scrollInterval = function (inc, mode) {
var _local1 = this;
var _local2 = inc;
clearInterval(_local1.scrolling);
if (_local2 == "page") {
_local1.trackScroller();
} else {
_local1.scrollIt(_local2, mode);
}
_local1.scrolling = setInterval(_local1, "scrollInterval", 35, _local2, mode);
};
FScrollBarClass.prototype.trackScroller = function () {
var _local1 = this;
if ((_local1.scrollThumb_mc._y + _local1.thumbHeight) < _local1._ymouse) {
_local1.scrollIt("page", 1);
} else if (_local1.scrollThumb_mc._y > _local1._ymouse) {
_local1.scrollIt("page", -1);
}
};
FScrollBarClass.prototype.stopScrolling = function () {
var _local1 = this;
_local1.controller.downArrow_mc.gotoAndStop(1);
_local1.controller.upArrow_mc.gotoAndStop(1);
clearInterval(_local1.controller.scrolling);
};
FScrollBarClass.prototype.startUpScroller = function () {
var _local1 = this;
_local1.controller.upArrow_mc.gotoAndStop(2);
_local1.controller.scrollIt("one", -1);
_local1.controller.scrolling = setInterval(_local1.controller, "scrollInterval", 500, "one", -1);
};
FScrollBarClass.prototype.startDownScroller = function () {
var _local1 = this;
_local1.controller.downArrow_mc.gotoAndStop(2);
_local1.controller.scrollIt("one", 1);
_local1.controller.scrolling = setInterval(_local1.controller, "scrollInterval", 500, "one", 1);
};
FScrollBarClass.prototype.setScrollTarget = function (tF) {
var _local1 = this;
var _local2 = tF;
if (_local2 == undefined) {
_local1.textField.removeListener(_local1);
delete _local1.textField[(_local1.horizontal ? "hScroller" : "vScroller")];
if ((_local1.textField.hScroller != undefined) && (_local1.textField.vScroller != undefined)) {
_local1.textField.unwatch("text");
_local1.textField.unwatch("htmltext");
}
}
_local1.textField = undefined;
if (!(_local2 instanceof TextField)) {
} else {
_local1.textField = _local2;
_local1.textField[(_local1.horizontal ? "hScroller" : "vScroller")] = _local1;
_local1.onTextChanged();
_local1.onChanged = function () {
this.onTextChanged();
};
_local1.onScroller = function () {
var _local1 = this;
if (!_local1.isScrolling) {
if (!_local1.horizontal) {
_local1.setScrollPosition(_local1.textField.scroll);
} else {
_local1.setScrollPosition(_local1.textField.hscroll);
}
}
};
_local1.textField.addListener(_local1);
_local1.textField.watch("text", _local1.callback);
_local1.textField.watch("htmlText", _local1.callback);
}
};
FScrollBarClass.prototype.callback = function (prop, oldVal, newVal) {
var _local1 = this;
clearInterval(_local1.hScroller.synchScroll);
clearInterval(_local1.vScroller.synchScroll);
_local1.hScroller.synchScroll = setInterval(_local1.hScroller, "onTextChanged", 50);
_local1.vScroller.synchScroll = setInterval(_local1.vScroller, "onTextChanged", 50);
return(newVal);
};
FScrollBarClass.prototype.onTextChanged = function () {
var _local1 = this;
if ((!_local1.enable) || (_local1.textField == undefined)) {
} else {
clearInterval(_local1.synchScroll);
if (_local1.horizontal) {
var _local2 = _local1.textField.hscroll;
_local1.setScrollProperties(_local1.textField._width, 0, _local1.textField.maxhscroll);
_local1.setScrollPosition(Math.min(_local2, _local1.textField.maxhscroll));
} else {
var _local2 = _local1.textField.scroll;
var _local3 = _local1.textField.bottomScroll - _local1.textField.scroll;
_local1.setScrollProperties(_local3, 1, _local1.textField.maxscroll);
_local1.setScrollPosition(Math.min(_local2, _local1.textField.maxscroll));
}
}
};
FScrollBarClass.prototype.executeCallBack = function () {
var _local1 = this;
if (_local1.textField == undefined) {
super.executeCallBack();
} else if (_local1.horizontal) {
_local1.textField.hscroll = _local1.getScrollPosition();
} else {
_local1.textField.scroll = _local1.getScrollPosition();
}
};
Object.registerClass("FScrollBarSymbol", FScrollBarClass);
#endinitclip
Symbol 132 Button
on (release) {
getURL ("http://www.freeonlinegames.com/?TheProfessionals", "_blank");
}
Symbol 136 MovieClip Frame 1
stop();
Symbol 147 MovieClip Frame 1
stop();
Symbol 157 MovieClip Frame 50
stop();
_parent.play();
Symbol 198 MovieClip Frame 1
stop();
Symbol 198 MovieClip Frame 28
gotoAndPlay ("loop");
Symbol 203 Button
on (release) {
getURL ("http://www.freeonlinegames.com/?TheProfessionals", "_blank");
}
Symbol 206 Button
on (release) {
targetul1 = ("http://www.freeonlinegames.com/downloads/" + _parent.wynume) + ".exe";
getURL (targetul1);
}
Symbol 214 MovieClip Frame 1
stop();
if (_parent.wyaliniere == "Centru") {
this.gotoAndStop(2);
}
if (_parent.wyaliniere == "Dreapta") {
this.gotoAndStop(3);
}
Symbol 214 MovieClip Frame 2
wxculoarea2 = new Color(but1);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
Symbol 214 MovieClip Frame 3
wxculoarea2 = new Color(but1);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
Symbol 215 Button
on (release) {
targetul2 = "http://www.freeonlinegames.com/?" + _parent.wynume;
getURL (targetul2, "_blank");
}
Symbol 218 Button
on (release) {
targetul2 = "http://www.freeonlinegames.com/?" + _parent.wynume;
getURL (targetul2);
}
Symbol 223 MovieClip Frame 1
stop();
if (_parent.wyaliniere == "Centru") {
this.gotoAndStop(2);
}
if (_parent.wyaliniere == "Dreapta") {
this.gotoAndStop(3);
}
Symbol 223 MovieClip Frame 2
wxculoarea2 = new Color(but2);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
Symbol 223 MovieClip Frame 3
wxculoarea2 = new Color(but2);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
Symbol 224 Button
on (release) {
targetul3 = "http://www.freegamesforyourwebsite.com/?" + _parent.wynume;
getURL (targetul3, "_blank");
}
Symbol 227 Button
on (release) {
targetul3 = "http://www.freegamesforyourwebsite.com/?" + _parent.wynume;
getURL (targetul3);
}
Symbol 228 MovieClip Frame 1
stop();
if (_parent.wyaliniere == "Centru") {
this.gotoAndStop(2);
}
if (_parent.wyaliniere == "Dreapta") {
this.gotoAndStop(3);
}
Symbol 228 MovieClip Frame 2
wxculoarea2 = new Color(but3);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
Symbol 228 MovieClip Frame 3
wxculoarea2 = new Color(but3);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
Symbol 233 Button
on (release) {
targetul1 = ("http://www.freeonlinegames.com/downloads/" + _parent.wynume) + ".exe";
getURL (targetul1);
}
Symbol 234 MovieClip Frame 1
stop();
Symbol 237 Button
on (release) {
targetul2 = "http://www.freeonlinegames.com/?" + _parent.wynume;
getURL (targetul2);
}
Symbol 238 MovieClip Frame 1
stop();
Symbol 239 Button
on (release, keyPress "p") {
_parent.instructionsFunction();
}
Symbol 246 MovieClip Frame 1
stop();
if (_parent.wyaliniere == "Centru") {
this.gotoAndStop(2);
}
if (_parent.wyaliniere == "Dreapta") {
this.gotoAndStop(3);
}
Symbol 246 MovieClip Frame 2
wxculoarea2 = new Color(but4);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
Symbol 246 MovieClip Frame 3
wxculoarea2 = new Color(but4);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
Symbol 247 Button
on (release, keyPress "p") {
_parent.instructionsFunction();
}
Symbol 248 MovieClip Frame 1
stop();
Symbol 249 MovieClip Frame 1
function instructionsFunction() {
var _local1 = _global;
_local1.app.instructions_mc._visible = true;
_local1.app.instructions_bn._visible = false;
_local1.app.start_bn._visible = false;
_root.comp1._visible = false;
}
function soundFunction() {
var _local1 = _global;
if (_local1.sunet != 1) {
_local1.sunet = 1;
} else {
_local1.sunet = 0;
}
}
stop();
if ((wyasezare == "Orizontal") && (wyinstructions == false)) {
this.gotoAndStop(2);
}
if (((wyasezare == "Vertical") && (wyinstructions == true)) && (wypozitie == "Sus")) {
this.gotoAndStop(3);
}
if (((wyasezare == "Vertical") && (wyinstructions == true)) && (wypozitie == "Jos")) {
this.gotoAndStop(4);
}
if (((wyasezare == "Orizontal") && (wyinstructions == true)) && (wypozitie == "Sus")) {
this.gotoAndStop(5);
}
if (((wyasezare == "Orizontal") && (wyinstructions == true)) && (wypozitie == "Jos")) {
this.gotoAndStop(6);
}
my_color = new Color(my_mc);
my_color.setRGB(wyculoare);
myValue = my_color.getRGB().toString(16);
trace(myValue.length);
if (myValue.length == 5) {
myValue = "0" + myValue;
}
if (myValue.length == 4) {
myValue = "00" + myValue;
}
if (myValue.length == 3) {
myValue = "000" + myValue;
}
if (myValue.length == 2) {
myValue = "0000" + myValue;
}
if (myValue.length == 1) {
myValue = "00000" + myValue;
}
xtbcolor = myValue;
xrtb5 = Number("0x" + xtbcolor.slice(0, 2)) - 1;
xgtb5 = Number("0x" + xtbcolor.slice(2, 4)) - 1;
xbtb5 = Number("0x" + xtbcolor.slice(4, 6)) - 1;
wxculoarea2 = new Color(wynbut1.but1);
wxculoarea3 = new Color(wynbut2.but2);
wxculoarea4 = new Color(wynbut3.but3);
wxculoarea5 = new Color(wynbut4.but4);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:xrtb5, ga:"100", gb:xgtb5, ba:"100", bb:xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
wxculoarea3.setTransform(myColorTransform);
wxculoarea4.setTransform(myColorTransform);
wxculoarea5.setTransform(myColorTransform);
Symbol 249 MovieClip Frame 2
stop();
my_color = new Color(my_mc);
my_color.setRGB(wyculoare);
myValue = my_color.getRGB().toString(16);
trace(myValue.length);
if (myValue.length == 5) {
myValue = "0" + myValue;
}
if (myValue.length == 4) {
myValue = "00" + myValue;
}
if (myValue.length == 3) {
myValue = "000" + myValue;
}
if (myValue.length == 2) {
myValue = "0000" + myValue;
}
if (myValue.length == 1) {
myValue = "00000" + myValue;
}
xtbcolor = myValue;
xrtb5 = Number("0x" + xtbcolor.slice(0, 2)) - 1;
xgtb5 = Number("0x" + xtbcolor.slice(2, 4)) - 1;
xbtb5 = Number("0x" + xtbcolor.slice(4, 6)) - 1;
wxculoarea2 = new Color(wynbut1.but1);
wxculoarea3 = new Color(wynbut2.but2);
wxculoarea4 = new Color(wynbut3.but3);
wxculoarea5 = new Color(wynbut4.but4);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:xrtb5, ga:"100", gb:xgtb5, ba:"100", bb:xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
wxculoarea3.setTransform(myColorTransform);
wxculoarea4.setTransform(myColorTransform);
wxculoarea5.setTransform(myColorTransform);
Symbol 249 MovieClip Frame 3
stop();
my_color = new Color(my_mc);
my_color.setRGB(wyculoare);
myValue = my_color.getRGB().toString(16);
trace(myValue.length);
if (myValue.length == 5) {
myValue = "0" + myValue;
}
if (myValue.length == 4) {
myValue = "00" + myValue;
}
if (myValue.length == 3) {
myValue = "000" + myValue;
}
if (myValue.length == 2) {
myValue = "0000" + myValue;
}
if (myValue.length == 1) {
myValue = "00000" + myValue;
}
xtbcolor = myValue;
xrtb5 = Number("0x" + xtbcolor.slice(0, 2)) - 1;
xgtb5 = Number("0x" + xtbcolor.slice(2, 4)) - 1;
xbtb5 = Number("0x" + xtbcolor.slice(4, 6)) - 1;
wxculoarea2 = new Color(wynbut1.but1);
wxculoarea3 = new Color(wynbut2.but2);
wxculoarea4 = new Color(wynbut3.but3);
wxculoarea5 = new Color(wynbut4.but4);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:xrtb5, ga:"100", gb:xgtb5, ba:"100", bb:xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
wxculoarea3.setTransform(myColorTransform);
wxculoarea4.setTransform(myColorTransform);
wxculoarea5.setTransform(myColorTransform);
Symbol 249 MovieClip Frame 4
stop();
my_color = new Color(my_mc);
my_color.setRGB(wyculoare);
myValue = my_color.getRGB().toString(16);
trace(myValue.length);
if (myValue.length == 5) {
myValue = "0" + myValue;
}
if (myValue.length == 4) {
myValue = "00" + myValue;
}
if (myValue.length == 3) {
myValue = "000" + myValue;
}
if (myValue.length == 2) {
myValue = "0000" + myValue;
}
if (myValue.length == 1) {
myValue = "00000" + myValue;
}
xtbcolor = myValue;
xrtb5 = Number("0x" + xtbcolor.slice(0, 2)) - 1;
xgtb5 = Number("0x" + xtbcolor.slice(2, 4)) - 1;
xbtb5 = Number("0x" + xtbcolor.slice(4, 6)) - 1;
wxculoarea2 = new Color(wynbut1.but1);
wxculoarea3 = new Color(wynbut2.but2);
wxculoarea4 = new Color(wynbut3.but3);
wxculoarea5 = new Color(wynbut4.but4);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:xrtb5, ga:"100", gb:xgtb5, ba:"100", bb:xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
wxculoarea3.setTransform(myColorTransform);
wxculoarea4.setTransform(myColorTransform);
wxculoarea5.setTransform(myColorTransform);
Symbol 249 MovieClip Frame 5
stop();
my_color = new Color(my_mc);
my_color.setRGB(wyculoare);
myValue = my_color.getRGB().toString(16);
trace(myValue.length);
if (myValue.length == 5) {
myValue = "0" + myValue;
}
if (myValue.length == 4) {
myValue = "00" + myValue;
}
if (myValue.length == 3) {
myValue = "000" + myValue;
}
if (myValue.length == 2) {
myValue = "0000" + myValue;
}
if (myValue.length == 1) {
myValue = "00000" + myValue;
}
xtbcolor = myValue;
xrtb5 = Number("0x" + xtbcolor.slice(0, 2)) - 1;
xgtb5 = Number("0x" + xtbcolor.slice(2, 4)) - 1;
xbtb5 = Number("0x" + xtbcolor.slice(4, 6)) - 1;
wxculoarea2 = new Color(wynbut1.but1);
wxculoarea3 = new Color(wynbut2.but2);
wxculoarea4 = new Color(wynbut3.but3);
wxculoarea5 = new Color(wynbut4.but4);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:xrtb5, ga:"100", gb:xgtb5, ba:"100", bb:xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
wxculoarea3.setTransform(myColorTransform);
wxculoarea4.setTransform(myColorTransform);
wxculoarea5.setTransform(myColorTransform);
Symbol 249 MovieClip Frame 6
stop();
my_color = new Color(my_mc);
my_color.setRGB(wyculoare);
myValue = my_color.getRGB().toString(16);
trace(myValue.length);
if (myValue.length == 5) {
myValue = "0" + myValue;
}
if (myValue.length == 4) {
myValue = "00" + myValue;
}
if (myValue.length == 3) {
myValue = "000" + myValue;
}
if (myValue.length == 2) {
myValue = "0000" + myValue;
}
if (myValue.length == 1) {
myValue = "00000" + myValue;
}
xtbcolor = myValue;
xrtb5 = Number("0x" + xtbcolor.slice(0, 2)) - 1;
xgtb5 = Number("0x" + xtbcolor.slice(2, 4)) - 1;
xbtb5 = Number("0x" + xtbcolor.slice(4, 6)) - 1;
wxculoarea2 = new Color(wynbut1.but1);
wxculoarea3 = new Color(wynbut2.but2);
wxculoarea4 = new Color(wynbut3.but3);
wxculoarea5 = new Color(wynbut4.but4);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:xrtb5, ga:"100", gb:xgtb5, ba:"100", bb:xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
wxculoarea3.setTransform(myColorTransform);
wxculoarea4.setTransform(myColorTransform);
wxculoarea5.setTransform(myColorTransform);
Symbol 279 MovieClip Frame 1
stop();
Instance of Symbol 255 MovieClip in Symbol 279 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(2, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 257 MovieClip in Symbol 279 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(1, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 259 MovieClip in Symbol 279 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(4, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 261 MovieClip in Symbol 279 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(3, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Symbol 279 MovieClip Frame 2
_global.app.play_hit_sound();
Symbol 279 MovieClip Frame 8
_global.hit_target = false;
Symbol 279 MovieClip Frame 16
_global.app.generate_new_target(_parent._parent);
gotoAndStop (1);
Symbol 279 MovieClip Frame 17
_global.hit_target = false;
Symbol 279 MovieClip Frame 24
_global.hit_target = false;
Symbol 279 MovieClip Frame 31
_global.app.generate_new_target(_parent._parent);
Instance of Symbol 279 MovieClip in Symbol 280 MovieClip Frame 1
/* no clip actions */
Symbol 294 MovieClip Frame 16
_global.deduction = true;
Symbol 294 MovieClip Frame 105
_global.deduction = false;
Symbol 294 MovieClip Frame 120
_global.app.generate_new_target(this);
_global.app.escaping();
Symbol 294 MovieClip Frame 138
_global.deduction = true;
Symbol 294 MovieClip Frame 266
_global.deduction = false;
Symbol 294 MovieClip Frame 283
_global.app.generate_new_target(this);
_global.app.escaping();
Symbol 294 MovieClip Frame 309
_global.deduction = true;
Symbol 294 MovieClip Frame 382
_global.deduction = false;
Symbol 294 MovieClip Frame 423
_global.app.generate_new_target(this);
_global.app.escaping();
Symbol 307 MovieClip Frame 1
stop();
Instance of Symbol 301 MovieClip in Symbol 307 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(2, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 302 MovieClip in Symbol 307 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(1, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 303 MovieClip in Symbol 307 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(4, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 304 MovieClip in Symbol 307 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(3, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Symbol 307 MovieClip Frame 2
_global.app.play_hit_sound();
Symbol 307 MovieClip Frame 8
_global.hit_target = false;
Symbol 307 MovieClip Frame 16
_global.app.generate_new_target(_parent._parent);
gotoAndStop (1);
Symbol 307 MovieClip Frame 17
_global.app.play_hit_sound();
Symbol 307 MovieClip Frame 23
_global.hit_target = false;
Symbol 307 MovieClip Frame 31
_global.app.generate_new_target(_parent._parent);
Instance of Symbol 307 MovieClip in Symbol 308 MovieClip Frame 1
/* no clip actions */
Symbol 324 MovieClip Frame 29
_global.deduction = true;
Symbol 324 MovieClip Frame 175
_global.deduction = false;
Symbol 324 MovieClip Frame 204
_global.app.generate_new_target(this);
_global.app.escaping();
Symbol 324 MovieClip Frame 222
_global.deduction = true;
Symbol 324 MovieClip Frame 353
_global.deduction = false;
Symbol 324 MovieClip Frame 391
_global.deduction = true;
Symbol 324 MovieClip Frame 506
_global.deduction = false;
Symbol 324 MovieClip Frame 551
_global.app.generate_new_target(this);
_global.app.escaping();
Symbol 335 MovieClip Frame 1
stop();
Instance of Symbol 329 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(2, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 330 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(1, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 331 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(4, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 332 MovieClip in Symbol 335 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(3, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Symbol 335 MovieClip Frame 2
_global.app.play_hit_sound();
Symbol 335 MovieClip Frame 8
_global.hit_target = false;
Symbol 335 MovieClip Frame 16
_global.app.generate_new_target(_parent._parent);
gotoAndStop (1);
Symbol 335 MovieClip Frame 17
_global.app.play_hit_sound();
Symbol 335 MovieClip Frame 23
_global.hit_target = false;
Symbol 335 MovieClip Frame 31
_global.app.generate_new_target(_parent._parent);
Instance of Symbol 335 MovieClip in Symbol 336 MovieClip Frame 1
/* no clip actions */
Symbol 341 MovieClip Frame 16
_global.deduction = true;
Symbol 341 MovieClip Frame 201
_global.deduction = false;
Symbol 341 MovieClip Frame 224
_global.app.generate_new_target(this);
_global.app.escaping();
Symbol 341 MovieClip Frame 242
_global.deduction = true;
Symbol 341 MovieClip Frame 373
_global.deduction = false;
Symbol 341 MovieClip Frame 425
_global.deduction = true;
Symbol 341 MovieClip Frame 540
_global.deduction = false;
Symbol 341 MovieClip Frame 568
_global.app.generate_new_target(this);
_global.app.escaping();
Symbol 354 MovieClip Frame 1
stop();
Instance of Symbol 348 MovieClip in Symbol 354 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(2, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 349 MovieClip in Symbol 354 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(1, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 350 MovieClip in Symbol 354 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(4, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 351 MovieClip in Symbol 354 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(3, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Symbol 354 MovieClip Frame 2
_global.app.play_hit_sound();
Symbol 354 MovieClip Frame 8
_global.hit_target = false;
Symbol 354 MovieClip Frame 16
_global.app.generate_new_target(_parent._parent);
gotoAndStop (1);
Symbol 354 MovieClip Frame 17
_global.app.play_hit_sound();
Symbol 354 MovieClip Frame 23
_global.hit_target = false;
Symbol 354 MovieClip Frame 31
_global.app.generate_new_target(_parent._parent);
Instance of Symbol 354 MovieClip in Symbol 355 MovieClip Frame 1
/* no clip actions */
Symbol 374 MovieClip Frame 16
_global.deduction = true;
Symbol 374 MovieClip Frame 201
_global.deduction = false;
Symbol 374 MovieClip Frame 224
_global.app.generate_new_target(this);
_global.app.escaping();
Symbol 374 MovieClip Frame 242
_global.deduction = true;
Symbol 374 MovieClip Frame 364
_global.deduction = false;
Symbol 374 MovieClip Frame 383
_global.app.generate_new_target(this);
_global.app.escaping();
Symbol 374 MovieClip Frame 405
_global.deduction = true;
Symbol 374 MovieClip Frame 501
_global.deduction = false;
Symbol 374 MovieClip Frame 529
_global.app.generate_new_target(this);
_global.app.escaping();
Symbol 387 MovieClip Frame 1
stop();
Instance of Symbol 381 MovieClip in Symbol 387 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(2, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 382 MovieClip in Symbol 387 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(1, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 383 MovieClip in Symbol 387 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(4, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 384 MovieClip in Symbol 387 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(3, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Symbol 387 MovieClip Frame 2
_global.app.play_hit_sound();
Symbol 387 MovieClip Frame 8
_global.hit_target = false;
Symbol 387 MovieClip Frame 16
_global.app.generate_new_target(_parent._parent);
gotoAndStop (1);
Symbol 387 MovieClip Frame 17
_global.app.play_hit_sound();
Symbol 387 MovieClip Frame 23
_global.hit_target = false;
Symbol 387 MovieClip Frame 31
_global.app.generate_new_target(_parent._parent);
Instance of Symbol 387 MovieClip in Symbol 388 MovieClip Frame 1
/* no clip actions */
Symbol 409 MovieClip Frame 16
_global.deduction = true;
Symbol 409 MovieClip Frame 184
_global.deduction = false;
Symbol 409 MovieClip Frame 207
_global.app.generate_new_target(this);
_global.app.escaping();
Symbol 409 MovieClip Frame 225
_global.deduction = true;
Symbol 409 MovieClip Frame 389
_global.deduction = false;
Symbol 409 MovieClip Frame 438
_global.deduction = true;
Symbol 409 MovieClip Frame 553
_global.deduction = false;
Symbol 409 MovieClip Frame 581
_global.app.generate_new_target(this);
_global.app.escaping();
Symbol 419 MovieClip Frame 1
stop();
Instance of Symbol 413 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(2, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 414 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(1, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 415 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(4, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 416 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(3, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Symbol 419 MovieClip Frame 2
_global.app.play_hit_sound();
Symbol 419 MovieClip Frame 8
_global.hit_target = false;
Symbol 419 MovieClip Frame 16
_global.app.generate_new_target(_parent._parent);
gotoAndStop (1);
Symbol 419 MovieClip Frame 17
_global.hit_target = false;
Symbol 419 MovieClip Frame 24
_global.hit_target = false;
Symbol 419 MovieClip Frame 31
_global.app.generate_new_target(_parent._parent);
Instance of Symbol 419 MovieClip in Symbol 420 MovieClip Frame 1
/* no clip actions */
Symbol 434 MovieClip Frame 21
!!!ERROR
Symbol 434 MovieClip Frame 194
!!!ERROR
Symbol 434 MovieClip Frame 219
_global.app.generate_new_target(this);
_global.app.escaping();
Symbol 434 MovieClip Frame 237
!!!ERROR
Symbol 434 MovieClip Frame 342
!!!ERROR
Symbol 434 MovieClip Frame 377
_global.app.generate_new_target(this);
_global.app.escaping();
Symbol 434 MovieClip Frame 408
!!!ERROR
Symbol 434 MovieClip Frame 433
!!!ERROR
Symbol 434 MovieClip Frame 494
_global.app.generate_new_target(this);
_global.app.escaping();
Symbol 445 MovieClip Frame 1
!!!ERROR
Instance of Symbol 439 MovieClip in Symbol 445 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(2, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 440 MovieClip in Symbol 445 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(1, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 441 MovieClip in Symbol 445 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(4, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 442 MovieClip in Symbol 445 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(3, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Symbol 445 MovieClip Frame 2
!!!ERROR
Symbol 445 MovieClip Frame 8
!!!ERROR
Symbol 445 MovieClip Frame 16
_global.app.generate_new_target(_parent._parent);
gotoAndStop (1);
Symbol 445 MovieClip Frame 17
!!!ERROR
Symbol 445 MovieClip Frame 23
!!!ERROR
Symbol 445 MovieClip Frame 31
_global.app.generate_new_target(_parent._parent);
Instance of Symbol 445 MovieClip in Symbol 446 MovieClip Frame 1
/* no clip actions */
Symbol 467 MovieClip Frame 16
!!!ERROR
Symbol 467 MovieClip Frame 137
!!!ERROR
Symbol 467 MovieClip Frame 155
_global.app.generate_new_target(this);
_global.app.escaping();
Symbol 467 MovieClip Frame 186
!!!ERROR
Symbol 467 MovieClip Frame 322
!!!ERROR
Symbol 467 MovieClip Frame 350
_global.app.generate_new_target(this);
_global.app.escaping();
Symbol 467 MovieClip Frame 381
!!!ERROR
Symbol 467 MovieClip Frame 432
!!!ERROR
Symbol 467 MovieClip Frame 461
_global.app.generate_new_target(this);
_global.app.escaping();
Symbol 477 MovieClip Frame 1
!!!ERROR
Instance of Symbol 471 MovieClip in Symbol 477 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(2, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 472 MovieClip in Symbol 477 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(1, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 473 MovieClip in Symbol 477 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(4, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 474 MovieClip in Symbol 477 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(3, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Symbol 477 MovieClip Frame 2
!!!ERROR
Symbol 477 MovieClip Frame 8
!!!ERROR
Symbol 477 MovieClip Frame 16
_global.app.generate_new_target(_parent._parent);
gotoAndStop (1);
Symbol 477 MovieClip Frame 17
!!!ERROR
Symbol 477 MovieClip Frame 24
!!!ERROR
Symbol 477 MovieClip Frame 31
_global.app.generate_new_target(_parent._parent);
Instance of Symbol 477 MovieClip in Symbol 478 MovieClip Frame 1
/* no clip actions */
Symbol 500 MovieClip Frame 22
!!!ERROR
Symbol 500 MovieClip Frame 141
!!!ERROR
Symbol 500 MovieClip Frame 166
_global.app.generate_new_target(this);
_global.app.escaping();
Symbol 500 MovieClip Frame 189
!!!ERROR
Symbol 500 MovieClip Frame 293
!!!ERROR
Symbol 500 MovieClip Frame 321
_global.app.generate_new_target(this);
_global.app.escaping();
Symbol 500 MovieClip Frame 374
!!!ERROR
Symbol 500 MovieClip Frame 431
!!!ERROR
Symbol 500 MovieClip Frame 454
_global.app.generate_new_target(this);
_global.app.escaping();
Symbol 511 MovieClip Frame 1
!!!ERROR
Instance of Symbol 505 MovieClip in Symbol 511 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(2, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 506 MovieClip in Symbol 511 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(1, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 507 MovieClip in Symbol 511 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(4, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 508 MovieClip in Symbol 511 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(3, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Symbol 511 MovieClip Frame 2
!!!ERROR
Symbol 511 MovieClip Frame 8
!!!ERROR
Symbol 511 MovieClip Frame 16
_global.app.generate_new_target(_parent._parent);
gotoAndStop (1);
Symbol 511 MovieClip Frame 17
!!!ERROR
Symbol 511 MovieClip Frame 24
!!!ERROR
Symbol 511 MovieClip Frame 31
_global.app.generate_new_target(_parent._parent);
Instance of Symbol 511 MovieClip in Symbol 512 MovieClip Frame 1
/* no clip actions */
Symbol 526 MovieClip Frame 16
!!!ERROR
Symbol 526 MovieClip Frame 144
!!!ERROR
Symbol 526 MovieClip Frame 161
_global.app.generate_new_target(this);
_global.app.escaping();
Symbol 526 MovieClip Frame 179
!!!ERROR
Symbol 526 MovieClip Frame 295
!!!ERROR
Symbol 526 MovieClip Frame 318
_global.app.generate_new_target(this);
_global.app.escaping();
Symbol 526 MovieClip Frame 349
!!!ERROR
Symbol 526 MovieClip Frame 374
!!!ERROR
Symbol 526 MovieClip Frame 435
_global.app.generate_new_target(this);
_global.app.escaping();
Symbol 539 MovieClip Frame 1
!!!ERROR
Instance of Symbol 533 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(2, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 534 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(1, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 535 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(4, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 536 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(3, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Symbol 539 MovieClip Frame 2
!!!ERROR
Symbol 539 MovieClip Frame 8
!!!ERROR
Symbol 539 MovieClip Frame 16
_global.app.generate_new_target(_parent._parent);
gotoAndStop (1);
Symbol 539 MovieClip Frame 17
!!!ERROR
Symbol 539 MovieClip Frame 24
!!!ERROR
Symbol 539 MovieClip Frame 31
_global.app.generate_new_target(_parent._parent);
Instance of Symbol 539 MovieClip in Symbol 540 MovieClip Frame 1
/* no clip actions */
Symbol 553 MovieClip Frame 16
!!!ERROR
Symbol 553 MovieClip Frame 190
!!!ERROR
Symbol 553 MovieClip Frame 208
_global.app.generate_new_target(this);
_global.app.escaping();
Symbol 553 MovieClip Frame 243
!!!ERROR
Symbol 553 MovieClip Frame 331
!!!ERROR
Symbol 553 MovieClip Frame 348
_global.app.generate_new_target(this);
_global.app.escaping();
Symbol 553 MovieClip Frame 379
!!!ERROR
Symbol 553 MovieClip Frame 404
!!!ERROR
Symbol 553 MovieClip Frame 433
_global.app.generate_new_target(this);
_global.app.escaping();
Symbol 560 Button
on (release) {
!!!ERROR
Symbol 564 Button
on (release) {
_global.app.instructions_mc._visible = true;
_global.app.instructions_bn._visible = false;
_global.app.start_bn._visible = false;
}
Symbol 581 Button
on (release) {
_global.app.instructions_mc._visible = false;
_global.app.instructions_bn._visible = true;
_global.app.start_bn._visible = true;
_root.comp1._visible = true;
}
Symbol 588 MovieClip Frame 1
!!!ERROR
Instance of Symbol 259 MovieClip in Symbol 588 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(4, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 261 MovieClip in Symbol 588 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(3, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 255 MovieClip in Symbol 588 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(2, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 257 MovieClip in Symbol 588 MovieClip Frame 1
onClipEvent (mouseDown) {
_global.app.scoring(1, this, _parent._parent._parent._parent.targets_mc, _parent);
}
Instance of Symbol 589 MovieClip "level_mc" in Symbol 590 MovieClip Frame 1
onClipEvent (mouseMove) {
if (_global.sniper_mode) {
this._x = -_root._xmouse;
this._y = -_root._ymouse;
}
}
onClipEvent (load) {
this._xscale = 50;
this._yscale = 50;
this._x = 0;
this._y = 0;
}
onClipEvent (data) {
_global.app.ready_bn._visible = true;
this._xscale = 50;
this._yscale = 50;
this._x = 0;
this._y = 0;
}
onClipEvent (keyDown) {
if (Key.isDown(32)) {
_global.sniper_mode = (_global.sniper_mode ? false : true);
if (!_global.sniper_mode) {
this._xscale = 50;
this._yscale = 50;
this._x = 0;
this._y = 0;
} else {
this._xscale = 100;
this._yscale = 100;
this._x = -_root._xmouse;
this._y = -_root._ymouse;
}
}
}
Symbol 599 Button
on (release) {
!!!ERROR
Symbol 602 Button
on (release) {
_root.xdada = 0;
removeMovieClip(_root.gamemenu);
removeMovieClip(_root.gameOver);
gotoAndPlay ("submitScore");
}
Symbol 609 MovieClip Frame 1
!!!ERROR
Symbol 614 MovieClip Frame 9
!!!ERROR
Symbol 622 MovieClip Frame 1
!!!ERROR
Symbol 622 MovieClip Frame 6
!!!ERROR
Symbol 625 MovieClip Frame 1
!!!ERROR
Symbol 628 MovieClip Frame 1
!!!ERROR
Symbol 628 MovieClip Frame 16
!!!ERROR
Symbol 631 Button
on (release) {
targetul3 = "http://www.freegamesforyourwebsite.com/?" + _parent.wxnume;
getURL (targetul3, "_blank");
}
Symbol 632 Button
on (release) {
targetul2 = "http://www.freeonlinegames.com/?" + _parent.wxnume;
getURL (targetul2, "_blank");
}
Symbol 633 Button
on (release) {
!!!ERROR
Symbol 634 Button
on (release) {
targetul1 = ("http://www.freeonlinegames.com/downloads/" + _parent.wxnume) + ".exe";
getURL (targetul1);
}
Symbol 635 Button
on (release, keyPress "p") {
!!!ERROR
Symbol 636 Button
on (release, keyPress "s") {
!!!ERROR
Symbol 647 Button
on (release, keyPress "p") {
!!!ERROR
Symbol 648 MovieClip Frame 1
stop();
wxculoarea3 = new Color(but1);
wxculoarea4 = new Color(but2);
wxculoarea5 = new Color(but3);
wxculoarea6 = new Color(but4);
wxculoarea7 = new Color(but5);
wxculoarea8 = new Color(but6);
myColorTransform2 = new Object();
myColorTransform2 = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea3.setTransform(myColorTransform2);
wxculoarea4.setTransform(myColorTransform2);
wxculoarea5.setTransform(myColorTransform2);
wxculoarea6.setTransform(myColorTransform2);
wxculoarea7.setTransform(myColorTransform2);
wxculoarea8.setTransform(myColorTransform2);
_parent.wxbutno = 6;
if (((_parent.wxdownload == false) && (_parent.wxpause == true)) && (_parent.wxsound == true)) {
this.gotoAndStop(2);
_parent.wxbutno = 5;
}
if (((_parent.wxdownload == true) && (_parent.wxpause == false)) && (_parent.wxsound == true)) {
this.gotoAndStop(3);
_parent.wxbutno = 5;
}
if (((_parent.wxdownload == true) && (_parent.wxpause == true)) && (_parent.wxsound == false)) {
this.gotoAndStop(4);
_parent.wxbutno = 5;
}
if (((_parent.wxdownload == false) && (_parent.wxpause == false)) && (_parent.wxsound == true)) {
this.gotoAndStop(5);
_parent.wxbutno = 4;
}
if (((_parent.wxdownload == false) && (_parent.wxpause == true)) && (_parent.wxsound == false)) {
this.gotoAndStop(6);
_parent.wxbutno = 4;
}
if (((_parent.wxdownload == true) && (_parent.wxpause == false)) && (_parent.wxsound == false)) {
this.gotoAndStop(7);
_parent.wxbutno = 4;
}
if (((_parent.wxdownload == false) && (_parent.wxpause == false)) && (_parent.wxsound == false)) {
this.gotoAndStop(8);
_parent.wxbutno = 3;
}
Symbol 648 MovieClip Frame 2
wxculoarea3 = new Color(but1);
wxculoarea4 = new Color(but2);
wxculoarea5 = new Color(but3);
wxculoarea6 = new Color(but4);
wxculoarea7 = new Color(but5);
wxculoarea8 = new Color(but6);
myColorTransform2 = new Object();
myColorTransform2 = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea3.setTransform(myColorTransform2);
wxculoarea4.setTransform(myColorTransform2);
wxculoarea5.setTransform(myColorTransform2);
wxculoarea6.setTransform(myColorTransform2);
wxculoarea7.setTransform(myColorTransform2);
wxculoarea8.setTransform(myColorTransform2);
Symbol 648 MovieClip Frame 3
wxculoarea3 = new Color(but1);
wxculoarea4 = new Color(but2);
wxculoarea5 = new Color(but3);
wxculoarea6 = new Color(but4);
wxculoarea7 = new Color(but5);
wxculoarea8 = new Color(but6);
myColorTransform2 = new Object();
myColorTransform2 = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea3.setTransform(myColorTransform2);
wxculoarea4.setTransform(myColorTransform2);
wxculoarea5.setTransform(myColorTransform2);
wxculoarea6.setTransform(myColorTransform2);
wxculoarea7.setTransform(myColorTransform2);
wxculoarea8.setTransform(myColorTransform2);
Symbol 648 MovieClip Frame 4
wxculoarea3 = new Color(but1);
wxculoarea4 = new Color(but2);
wxculoarea5 = new Color(but3);
wxculoarea6 = new Color(but4);
wxculoarea7 = new Color(but5);
wxculoarea8 = new Color(but6);
myColorTransform2 = new Object();
myColorTransform2 = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea3.setTransform(myColorTransform2);
wxculoarea4.setTransform(myColorTransform2);
wxculoarea5.setTransform(myColorTransform2);
wxculoarea6.setTransform(myColorTransform2);
wxculoarea7.setTransform(myColorTransform2);
wxculoarea8.setTransform(myColorTransform2);
Symbol 648 MovieClip Frame 5
wxculoarea3 = new Color(but1);
wxculoarea4 = new Color(but2);
wxculoarea5 = new Color(but3);
wxculoarea6 = new Color(but4);
wxculoarea7 = new Color(but5);
wxculoarea8 = new Color(but6);
myColorTransform2 = new Object();
myColorTransform2 = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea3.setTransform(myColorTransform2);
wxculoarea4.setTransform(myColorTransform2);
wxculoarea5.setTransform(myColorTransform2);
wxculoarea6.setTransform(myColorTransform2);
wxculoarea7.setTransform(myColorTransform2);
wxculoarea8.setTransform(myColorTransform2);
Symbol 648 MovieClip Frame 6
wxculoarea3 = new Color(but1);
wxculoarea4 = new Color(but2);
wxculoarea5 = new Color(but3);
wxculoarea6 = new Color(but4);
wxculoarea7 = new Color(but5);
wxculoarea8 = new Color(but6);
myColorTransform2 = new Object();
myColorTransform2 = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea3.setTransform(myColorTransform2);
wxculoarea4.setTransform(myColorTransform2);
wxculoarea5.setTransform(myColorTransform2);
wxculoarea6.setTransform(myColorTransform2);
wxculoarea7.setTransform(myColorTransform2);
wxculoarea8.setTransform(myColorTransform2);
Symbol 648 MovieClip Frame 7
wxculoarea3 = new Color(but1);
wxculoarea4 = new Color(but2);
wxculoarea5 = new Color(but3);
wxculoarea6 = new Color(but4);
wxculoarea7 = new Color(but5);
wxculoarea8 = new Color(but6);
myColorTransform2 = new Object();
myColorTransform2 = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea3.setTransform(myColorTransform2);
wxculoarea4.setTransform(myColorTransform2);
wxculoarea5.setTransform(myColorTransform2);
wxculoarea6.setTransform(myColorTransform2);
wxculoarea7.setTransform(myColorTransform2);
wxculoarea8.setTransform(myColorTransform2);
Symbol 648 MovieClip Frame 8
wxculoarea3 = new Color(but1);
wxculoarea4 = new Color(but2);
wxculoarea5 = new Color(but3);
wxculoarea6 = new Color(but4);
wxculoarea7 = new Color(but5);
wxculoarea8 = new Color(but6);
myColorTransform2 = new Object();
myColorTransform2 = {ra:"100", rb:_parent.xrtb5, ga:"100", gb:_parent.xgtb5, ba:"100", bb:_parent.xbtb5, aa:"100", ab:"0"};
wxculoarea3.setTransform(myColorTransform2);
wxculoarea4.setTransform(myColorTransform2);
wxculoarea5.setTransform(myColorTransform2);
wxculoarea6.setTransform(myColorTransform2);
wxculoarea7.setTransform(myColorTransform2);
wxculoarea8.setTransform(myColorTransform2);
Symbol 653 Button
on (press) {
!!!ERROR
Symbol 656 MovieClip Frame 1
stop();
if (_parent.wxaliniere == "Dreapta-Jos") {
this.gotoAndStop(2);
}
if ((_parent.wxaliniere == "Dreapta-Sus") && (_parent.wxbutno == 6)) {
this.gotoAndStop(3);
}
if ((_parent.wxaliniere == "Dreapta-Sus") && (_parent.wxbutno == 5)) {
this.gotoAndStop(5);
}
if ((_parent.wxaliniere == "Dreapta-Sus") && (_parent.wxbutno == 4)) {
this.gotoAndStop(6);
}
if ((_parent.wxaliniere == "Dreapta-Sus") && (_parent.wxbutno == 3)) {
this.gotoAndStop(7);
}
if ((_parent.wxaliniere == "Stanga-Sus") && (_parent.wxbutno == 6)) {
this.gotoAndStop(4);
}
if ((_parent.wxaliniere == "Stanga-Sus") && (_parent.wxbutno == 5)) {
this.gotoAndStop(8);
}
if ((_parent.wxaliniere == "Stanga-Sus") && (_parent.wxbutno == 4)) {
this.gotoAndStop(9);
}
if ((_parent.wxaliniere == "Stanga-Sus") && (_parent.wxbutno == 3)) {
this.gotoAndStop(10);
}
Symbol 656 MovieClip Frame 2
tg._x = 147;
tg._y = 1.1;
Symbol 656 MovieClip Frame 3
tg._x = 147;
tg._y = -174.9;
Symbol 656 MovieClip Frame 4
tg._x = 1.5;
tg._y = -174.9;
Symbol 656 MovieClip Frame 5
tg._x = 147;
tg._y = -152.4;
Symbol 656 MovieClip Frame 6
tg._x = 147;
tg._y = -128.9;
Symbol 656 MovieClip Frame 7
tg._x = 147;
tg._y = -104.9;
Symbol 656 MovieClip Frame 8
tg._x = 1.5;
tg._y = -151.4;
Symbol 656 MovieClip Frame 9
tg._x = 1.5;
tg._y = -128.4;
Symbol 656 MovieClip Frame 10
tg._x = 1.5;
tg._y = -104.9;
Symbol 674 MovieClip Frame 1
stop();
this.onRollOver = function () {
if (_parent._parent._currentframe <= 10) {
_parent._parent.gotoAndPlay(11);
}
};
if (_parent._parent.wxbutno == 5) {
this.gotoAndStop(2);
}
if (_parent._parent.wxbutno == 4) {
this.gotoAndStop(3);
}
if (_parent._parent.wxbutno == 3) {
this.gotoAndStop(4);
}
Symbol 675 MovieClip Frame 1
stop();
if ((_parent.wxaliniere == "Stanga-Sus") || (_parent.wxaliniere == "Dreapta-Sus")) {
this.gotoAndStop(2);
}
Symbol 676 MovieClip Frame 1
function pauseFunction() {
}
function soundFunction() {
var _local1 = _global;
trace("sunetMovieFrame= " + _root.sunetMovie._currentframe);
if (_local1.sunet != 1) {
_local1.sunet = 1;
_root.stopAllSounds();
} else {
_local1.sunet = 0;
}
}
function mainMenuFunction() {
_root.gotoAndPlay("coperta");
}
stop();
wxnguides._alpha = 0;
my_color = new Color(my_mc);
my_color.setRGB(wxculoare);
myValue = my_color.getRGB().toString(16);
trace(myValue.length);
if (myValue.length == 5) {
myValue = "0" + myValue;
}
if (myValue.length == 4) {
myValue = "00" + myValue;
}
if (myValue.length == 3) {
myValue = "000" + myValue;
}
if (myValue.length == 2) {
myValue = "0000" + myValue;
}
if (myValue.length == 1) {
myValue = "00000" + myValue;
}
xtbcolor = myValue;
xrtb5 = Number("0x" + xtbcolor.slice(0, 2)) - 1;
xgtb5 = Number("0x" + xtbcolor.slice(2, 4)) - 1;
xbtb5 = Number("0x" + xtbcolor.slice(4, 6)) - 1;
wxculoarea2 = new Color(wxnmenu.tg);
myColorTransform = new Object();
myColorTransform = {ra:"100", rb:xrtb5, ga:"100", gb:xgtb5, ba:"100", bb:xbtb5, aa:"100", ab:"0"};
wxculoarea2.setTransform(myColorTransform);
wxculoarea3 = new Color(wxnfer);
myColorTransform2 = new Object();
myColorTransform2 = {ra:"100", rb:xrtb5, ga:"100", gb:xgtb5, ba:"100", bb:xbtb5, aa:"100", ab:"0"};
wxculoarea3.setTransform(myColorTransform2);
Symbol 676 MovieClip Frame 10
!!!ERROR
Symbol 681 Button
on (release) {
!!!ERROR
Symbol 683 Button
on (release) {
!!!ERROR
Symbol 692 MovieClip Frame 1
scroll1.setScrollProperties(130, 0, 220);
this.chHand1 = function () {
scoresScroll._y = -(scroll1.getScrollPosition() * 2);
};
scroll1.setChangeHandler("chHand1");
i = 1;
while (i <= 30) {
scoresScroll["n" + i].text = _root.monthnume[i];
scoresScroll["s" + i].text = _root.monthscor[i];
i++;
}
Symbol 699 Button
on (release) {
!!!ERROR
Symbol 1004 MovieClip Frame 1
scroll1.setScrollProperties(130, 0, 915);
this.chHand1 = function () {
scoresScroll._y = -(scroll1.getScrollPosition() * 2);
};
scroll1.setChangeHandler("chHand1");
q = 1;
while (q <= 100) {
scoresScroll["n" + q].text = _root.evernume[q];
scoresScroll["s" + q].text = _root.everscor[q];
q++;
}
Instance of Symbol 130 MovieClip [FScrollBarSymbol] "scroll1" in Symbol 1004 MovieClip Frame 1
//component parameters
onClipEvent (initialize) {
!!!ERROR
Symbol 1010 Button
on (release) {
!!!ERROR
Symbol 1026 Button
on (release) {
i = 1;
while (i <= 100) {
if (_root.best > _root.monthscor[i]) {
k = 100;
while (k >= (i + 1)) {
_root.monthscor[k] = _root.monthscor[k - 1];
_root.monthnume[k] = _root.monthnume[k - 1];
k--;
}
_root.monthscor[i] = _root.best;
_root.monthnume[i] = _root.nickname;
i = 31;
}
i++;
}
i = 1;
while (i <= 100) {
if (_root.best > _root.everscor[i]) {
k = 100;
while (k >= (i + 1)) {
_root.everscor[k] = _root.everscor[k - 1];
_root.evernume[k] = _root.evernume[k - 1];
k--;
}
_root.everscor[i] = _root.best;
_root.evernume[i] = _root.nickname;
i = 31;
}
i++;
}
gotoAndPlay ("submit");
}
Symbol 1032 Button
on (release) {
!!!ERROR
Symbol 1036 MovieClip Frame 1
!!!ERROR
Symbol 1036 MovieClip Frame 9
!!!ERROR
Symbol 1036 MovieClip Frame 22
!!!ERROR
Symbol 1036 MovieClip Frame 34
var my_date:Date = new Date();
codul = Math.round(my_date.getTime() / 1000) * _root.best;
cale = (((((("http://www.freeonlinegames.com/scoreboard/update.php?game=" + _root.gameid) + "&name=") + _root.nickname) + "&score=") + _root.best) + "&code=") + codul;
loadVariablesNum (cale, 0, "GET");
gotoAndPlay ("loop");
Symbol 1036 MovieClip Frame 45
if (_root.updated != 1) {
gotoAndPlay ("loop");
} else {
_root.best = 0;
_root.score = 0;
_root.xdada = 1;
_root.gotoAndPlay("submitScore");
}