Frame 1
stop();
Frame 2
main.setMask(mask);
play();
Frame 17
stop();
Frame 28
stop();
Symbol 5 MovieClip [FBoundingBoxSymbol] Frame 1
var component = _parent;
component.registerSkinElement(boundingBox, "background");
stop();
Symbol 5 MovieClip [FBoundingBoxSymbol] Frame 2
component.registerSkinElement(boundingBox2, "backgroundDisabled");
stop();
Symbol 8 MovieClip [FRadioButtonSymbol] Frame 1
#initclip 11
function FRadioButtonClass() {
this.init();
}
function FRadioButtonGroupClass() {
this.radioInstances = new Array();
}
FRadioButtonClass.prototype = new FUIComponentClass();
FRadioButtonGroupClass.prototype = new FUIComponentClass();
Object.registerClass("FRadioButtonSymbol", FRadioButtonClass);
FRadioButtonClass.prototype.init = function () {
var _local1 = this;
if (_local1.initialState == undefined) {
_local1.selected = false;
} else {
_local1.selected = _local1.initialState;
}
super.setSize(_local1._width, _local1._height);
_local1.boundingBox_mc.unloadMovie();
_local1.boundingBox_mc._width = 0;
_local1.boundingBox_mc._height = 0;
_local1.attachMovie("frb_hitArea", "frb_hitArea_mc", 1);
_local1.attachMovie("frb_states", "frb_states_mc", 2);
_local1.attachMovie("FLabelSymbol", "fLabel_mc", 3);
super.init();
_local1._xscale = 100;
_local1._yscale = 100;
_local1.setSize(_local1.width, _local1.height);
_local1.setChangeHandler(_local1.changeHandler);
if (_local1.label != undefined) {
_local1.setLabel(_local1.label);
}
if (_local1.initialState == undefined) {
_local1.setValue(false);
} else {
_local1.setValue(_local1.initialState);
}
if (_local1.data == "") {
_local1.data = undefined;
} else {
_local1.setData(_local1.data);
}
_local1.addToRadioGroup();
_local1.ROLE_SYSTEM_RADIOBUTTON = 45;
_local1.STATE_SYSTEM_SELECTED = 16;
_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;
};
FRadioButtonClass.prototype.setHitArea = function (w, h) {
var _local2 = this;
var _local1 = _local2.frb_hitArea_mc;
_local2.hitArea = _local1;
if (_local2.frb_states_mc._width > w) {
_local1._width = _local2.frb_states_mc._width;
} else {
_local1._width = w;
}
_local1._visible = false;
if (arguments.length > 1) {
_local1._height = h;
}
};
FRadioButtonClass.prototype.txtFormat = function (pos) {
var _local1 = this;
var _local2 = _local1.textStyle;
var _local3 = _local1.styleTable;
_local2.align = ((_local3.textAlign.value == undefined) ? ((_local2.align = pos)) : undefined);
_local2.leftMargin = ((_local3.textLeftMargin.value == undefined) ? ((_local2.leftMargin = 0)) : undefined);
_local2.rightMargin = ((_local3.textRightMargin.value == undefined) ? ((_local2.rightMargin = 0)) : undefined);
if (_local1.flabel_mc._height > _local1.height) {
super.setSize(_local1.width, _local1.flabel_mc._height);
} else {
super.setSize(_local1.width, _local1.height);
}
_local1.setEnabled(_local1.enable);
};
FRadioButtonClass.prototype.setSize = function (w, h) {
var _local1 = this;
_local1.setLabel(_local1.getLabel());
_local1.setLabelPlacement(_local1.labelPlacement);
if (_local1.frb_states_mc._height < _local1.flabel_mc.labelField._height) {
super.setSize(w, _local1.flabel_mc.labelField._height);
}
_local1.setHitArea(_local1.width, _local1.height);
_local1.setLabelPlacement(_local1.labelPlacement);
};
FRadioButtonClass.prototype.setLabelPlacement = function (pos) {
var _local1 = this;
_local1.setLabel(_local1.getLabel());
_local1.txtFormat(pos);
var halfLabelH = (_local1.fLabel_mc._height / 2);
var halfFrameH = (_local1.frb_states_mc._height / 2);
var vertCenter = (halfFrameH - halfLabelH);
var radioWidth = _local1.frb_states_mc._width;
var _local2 = _local1.frb_states_mc;
var label = _local1.fLabel_mc;
var _local3 = _local1.width - _local2._width;
if (_local2._width > _local1.width) {
_local3 = 0;
} else {
_local3 = _local1.width - _local2._width;
}
_local1.fLabel_mc.setSize(_local3);
if ((pos == "right") || (pos == undefined)) {
_local1.labelPlacement = "right";
_local1.frb_states_mc._x = 0;
_local1.fLabel_mc._x = radioWidth;
_local1.txtFormat("left");
} else if (pos == "left") {
_local1.labelPlacement = "left";
_local1.fLabel_mc._x = 0;
_local1.frb_states_mc._x = _local1.width - radioWidth;
_local1.txtFormat("right");
}
_local1.fLabel_mc._y = vertCenter;
_local1.frb_hitArea_mc._y = vertCenter;
_local1.setLabel(_local1.getLabel());
};
FRadioButtonClass.prototype.setData = function (dataValue) {
this.data = dataValue;
};
FRadioButtonClass.prototype.getData = function () {
return(this.data);
};
FRadioButtonClass.prototype.getState = function () {
return(this.selected);
};
FRadioButtonClass.prototype.getSize = function () {
return(this.width);
};
FRadioButtonClass.prototype.getGroupName = function () {
return(this.groupName);
};
FRadioButtonClass.prototype.setGroupName = function (groupName) {
var _local1 = this;
var _local2 = 0;
while (_local2 < _local1._parent[_local1.groupName].radioInstances.length) {
if (_local1._parent[_local1.groupName].radioInstances[_local2] == _local1) {
delete _local1._parent[_local1.groupName].radioInstances[_local2];
}
_local2++;
}
_local1.groupName = groupName;
_local1.addToRadioGroup();
};
FRadioButtonClass.prototype.addToRadioGroup = function () {
var _local1 = this;
if (_local1._parent[_local1.groupName] == undefined) {
_local1._parent[_local1.groupName] = new FRadioButtonGroupClass();
}
_local1._parent[_local1.groupName].addRadioInstance(_local1);
};
FRadioButtonClass.prototype.setValue = function (selected) {
var _local1 = this;
var _local2 = selected;
if (_local2 || (_local2 == undefined)) {
_local1.setState(true);
_local1.focusRect.removeMovieClip();
_local1.executeCallBack();
} else if (_local2 == false) {
_local1.setState(false);
}
};
FRadioButtonClass.prototype.setTabState = function (selected) {
var _local1 = this;
Selection.setFocus(_local1);
_local1.setState(selected);
_local1.drawFocusRect();
_local1.executeCallBack();
};
FRadioButtonClass.prototype.setState = function (selected) {
var _local1 = this;
var _local2 = selected;
if (_local2 || (_local2 == undefined)) {
_local1.tabEnabled = true;
for (var _local3 in _local1._parent) {
if ((_local1 != _local1._parent[_local3]) && (_local1._parent[_local3].groupName == _local1.groupName)) {
_local1._parent[_local3].setState(false);
_local1._parent[_local3].tabEnabled = false;
}
}
}
if (_local1.enable) {
_local1.flabel_mc.setEnabled(true);
if (_local2 || (_local2 == undefined)) {
_local1.frb_states_mc.gotoAndStop("selectedEnabled");
_local1.enabled = false;
_local1.selected = true;
_local1.tabEnabled = true;
_local1.tabFocused = true;
} else {
_local1.frb_states_mc.gotoAndStop("unselectedEnabled");
_local1.enabled = true;
_local1.selected = false;
_local1.tabEnabled = false;
var enabTrue = _local1._parent[_local1.groupName].getEnabled();
var noneSelect = (_local1._parent[_local1.groupName].getValue() == undefined);
if (enabTrue && (noneSelect)) {
_local1._parent[_local1.groupName].radioInstances[0].tabEnabled = true;
}
}
} else {
_local1.flabel_mc.setEnabled(false);
if (_local2 || (_local2 == undefined)) {
_local1.frb_states_mc.gotoAndStop("selectedDisabled");
_local1.enabled = false;
_local1.selected = true;
_local1.tabEnabled = false;
} else {
_local1.frb_states_mc.gotoAndStop("unselectedDisabled");
_local1.enabled = false;
_local1.selected = false;
_local1.tabEnabled = false;
}
}
if (Accessibility.isActive()) {
Accessibility.sendEvent(_local1, 0, _local1.EVENT_OBJECT_STATECHANGE, true);
}
};
FRadioButtonClass.prototype.getValue = function () {
var _local1 = this;
if (_local1.selected) {
if ((_local1.data == "") || (_local1.data == undefined)) {
return(_local1.getLabel());
}
return(_local1.data);
}
return(undefined);
};
FRadioButtonClass.prototype.setEnabled = function (enable) {
var _local1 = this;
if ((enable == true) || (enable == undefined)) {
_local1.enable = true;
super.setEnabled(true);
} else {
_local1.enable = false;
super.setEnabled(false);
}
_local1.setState(_local1.selected);
var cgn = (_local1._parent[_local1.groupName].getEnabled() == undefined);
var _local3 = _local1._parent[_local1.groupName].radioInstances[0].getEnabled() == false;
if (cgn && (_local3)) {
var _local2 = 0;
while (_local2 < _local1._parent[_local1.groupName].radioInstances.length) {
if (_local1._parent[_local1.groupName].radioInstances[_local2].getEnabled() == true) {
_local1._parent[_local1.groupName].radioInstances[_local2].tabEnabled = true;
return;
}
_local2++;
}
}
};
FRadioButtonClass.prototype.getEnabled = function () {
return(this.enable);
};
FRadioButtonClass.prototype.setLabel = function (label) {
var _local1 = this;
_local1.fLabel_mc.setLabel(label);
_local1.txtFormat();
if (Accessibility.isActive()) {
Accessibility.sendEvent(_local1, 0, _local1.EVENT_OBJECT_NAMECHANGE);
}
};
FRadioButtonClass.prototype.getLabel = function () {
return(this.fLabel_mc.getLabel());
};
FRadioButtonClass.prototype.onPress = function () {
this.pressFocus();
this.frb_states_mc.gotoAndStop("press");
};
FRadioButtonClass.prototype.onRelease = function () {
var _local1 = this;
_local1.frb_states_mc.gotoAndStop("unselectedDisabled");
_local1.setValue(!_local1.selected);
};
FRadioButtonClass.prototype.onReleaseOutside = function () {
this.frb_states_mc.gotoAndStop("unselectedEnabled");
};
FRadioButtonClass.prototype.onDragOut = function () {
this.frb_states_mc.gotoAndStop("unselectedEnabled");
};
FRadioButtonClass.prototype.onDragOver = function () {
this.frb_states_mc.gotoAndStop("press");
};
FRadioButtonClass.prototype.executeCallBack = function () {
var _local1 = this;
_local1.handlerObj[_local1.changeHandler](_local1._parent[_local1.groupName]);
};
FRadioButtonGroupClass.prototype.addRadioInstance = function (instance) {
this.radioInstances.push(instance);
this.radioInstances[0].tabEnabled = true;
};
FRadioButtonGroupClass.prototype.setEnabled = function (enableFlag) {
var _local2 = this;
var _local3 = enableFlag;
var _local1 = 0;
while (_local1 < _local2.radioInstances.length) {
_local2.radioInstances[_local1].setEnabled(_local3);
_local1++;
}
};
FRadioButtonGroupClass.prototype.getEnabled = function () {
var _local2 = this;
var _local1 = 0;
while (_local1 < _local2.radioInstances.length) {
if (_local2.radioInstances[_local1].getEnabled() != _local2.radioInstances[0].getEnabled()) {
return(undefined);
}
_local1++;
}
return(_local2.radioInstances[0].getEnabled());
return(undefined);
};
FRadioButtonGroupClass.prototype.setChangeHandler = function (changeHandler, obj) {
var _local2 = this;
var _local3 = changeHandler;
var _local1 = 0;
while (_local1 < _local2.radioInstances.length) {
_local2.radioInstances[_local1].setChangeHandler(_local3, obj);
_local1++;
}
};
FRadioButtonGroupClass.prototype.getValue = function () {
var _local2 = this;
var _local1 = 0;
while (_local1 < _local2.radioInstances.length) {
if (_local2.radioInstances[_local1].selected == true) {
if ((_local2.radioInstances[_local1].data == "") || (_local2.radioInstances[_local1].data == undefined)) {
return(_local2.radioInstances[_local1].getLabel());
}
return(_local2.radioInstances[_local1].data);
}
_local1++;
}
return(undefined);
};
FRadioButtonGroupClass.prototype.getData = function () {
var _local2 = this;
var _local1 = 0;
while (_local1 < _local2.radioInstances.length) {
if (_local2.radioInstances[_local1].selected) {
return(_local2.radioInstances[_local1].getData());
}
_local1++;
}
return(undefined);
};
FRadioButtonGroupClass.prototype.getInstance = function () {
var _local2 = this;
var _local1 = 0;
while (_local1 < _local2.radioInstances.length) {
if (_local2.radioInstances[_local1].selected == true) {
return(_local1);
}
_local1++;
}
return(undefined);
};
FRadioButtonGroupClass.prototype.setValue = function (dataValue) {
var _local1 = this;
var _local3 = dataValue;
var _local2 = 0;
while (_local2 < _local1.radioInstances.length) {
if (_local1.radioInstances[_local2].data == _local3) {
_local1.radioInstances[_local2].setValue(true);
return;
}
_local2++;
}
_local2 = 0;
while (_local2 < _local1.radioInstances.length) {
if (_local1.radioInstances[_local2].getLabel() == _local3) {
_local1.radioInstances[_local2].setValue(true);
}
_local2++;
}
};
FRadioButtonGroupClass.prototype.setSize = function (w) {
var _local2 = this;
var _local3 = w;
var _local1 = 0;
while (_local1 < _local2.radioInstances.length) {
_local2.radioInstances[_local1].setSize(_local3);
_local1++;
}
};
FRadioButtonGroupClass.prototype.getSize = function () {
var _local2 = this;
var _local3 = 0;
var _local1 = 0;
while (_local1 < _local2.radioInstances.length) {
if (_local2.radioInstances[_local1].width >= _local3) {
_local3 = _local2.radioInstances[_local1].width;
}
_local1++;
}
return(_local3);
};
FRadioButtonGroupClass.prototype.setGroupName = function (groupName) {
var _local2 = this;
var _local3 = groupName;
_local2.oldGroupName = _local2.radioInstances[0].groupName;
var _local1 = 0;
while (_local1 < _local2.radioInstances.length) {
_local2.radioInstances[_local1].groupName = _local3;
_local2.radioInstances[_local1].addToRadioGroup();
_local1++;
}
delete _local2._parent[_local2.oldGroupName];
};
FRadioButtonGroupClass.prototype.getGroupName = function () {
return(this.radioInstances[0].groupName);
};
FRadioButtonGroupClass.prototype.setLabelPlacement = function (pos) {
var _local2 = this;
var _local3 = pos;
var _local1 = 0;
while (_local1 < _local2.radioInstances.length) {
_local2.radioInstances[_local1].setLabelPlacement(_local3);
_local1++;
}
};
FRadioButtonGroupClass.prototype.setStyleProperty = function (propName, value, isGlobal) {
var _local2 = this;
var _local3 = value;
var _local1 = 0;
while (_local1 < _local2.radioInstances.length) {
_local2.radioInstances[_local1].setStyleProperty(propName, _local3, isGlobal);
_local1++;
}
};
FRadioButtonGroupClass.prototype.addListener = function () {
var _local2 = this;
var _local1 = 0;
while (_local1 < _local2.radioInstances.length) {
_local2.radioInstances[_local1].addListener();
_local1++;
}
};
FRadioButtonGroupClass.prototype.applyChanges = function () {
var _local2 = this;
var _local1 = 0;
while (_local1 < _local2.radioInstances.length) {
_local2.radioInstances[_local1].applyChanges();
_local1++;
}
};
FRadioButtonGroupClass.prototype.removeListener = function (component) {
var _local2 = this;
var _local3 = component;
var _local1 = 0;
while (_local1 < _local2.radioInstances.length) {
_local2.radioInstances[_local1].removeListener(_local3);
_local1++;
}
};
FRadioButtonClass.prototype.drawFocusRect = function () {
var _local1 = this;
_local1.drawRect(-2, -2, _local1._width + 6, _local1._height - 3);
};
FRadioButtonClass.prototype.myOnKillFocus = function () {
var _local1 = this;
Key.removeListener(_local1.keyListener);
_local1.focused = false;
_local1.focusRect.removeMovieClip();
_local1._parent[_local1.groupName].foobar = 0;
};
FRadioButtonClass.prototype.myOnKeyDown = function () {
var _local1 = this;
if ((Key.getCode() == 32) && (_local1._parent[_local1.groupName].getValue() == undefined)) {
if (_local1._parent[_local1.groupName].radioInstances[0] == _local1) {
_local1.setTabState(true);
}
}
if ((Key.getCode() == 40) && (_local1.pressOnce == undefined)) {
_local1.foobar = _local1._parent[_local1.groupName].getInstance();
var _local2 = _local1.foobar;
while (_local2 < _local1._parent[_local1.groupName].radioInstances.length) {
var _local3 = _local2 + 1;
if (_local1._parent[_local1.groupName].radioInstances[_local3].getEnabled()) {
_local1._parent[_local1.groupName].radioInstances[_local3].setTabState(true);
return;
}
_local2++;
}
}
if ((Key.getCode() == 38) && (_local1.pressOnce == undefined)) {
_local1.foobar = _local1._parent[_local1.groupName].getInstance();
var _local2 = _local1.foobar;
while (_local2 >= 0) {
var _local3 = _local2 - 1;
if (_local1._parent[_local1.groupName].radioInstances[_local3].getEnabled()) {
_local1._parent[_local1.groupName].radioInstances[_local3].setTabState(true);
return;
}
_local2--;
}
}
};
FRadioButtonClass.prototype.get_accRole = function (childId) {
return(this.master.ROLE_SYSTEM_RADIOBUTTON);
};
FRadioButtonClass.prototype.get_accName = function (childId) {
return(this.master.getLabel());
};
FRadioButtonClass.prototype.get_accState = function (childId) {
if (this.master.getState()) {
return(this.master.STATE_SYSTEM_SELECTED);
}
return(0);
};
FRadioButtonClass.prototype.get_accDefaultAction = function (childId) {
if (this.master.getState()) {
return("UnCheck");
}
return("Check");
};
FRadioButtonClass.prototype.accDoDefaultAction = function (childId) {
this.master.setValue(!this.master.getValue());
};
#endinitclip
boundingBox_mc._visible = false;
deadPreview._visible = false;
Symbol 19 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 22 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(background_mc, "background");
Symbol 25 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 27 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 30 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(disabled_mc, "foregroundDisabled");
Symbol 33 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(dot_mc, "radioDot");
Symbol 34 MovieClip [frb_states] Frame 1
stop();
Symbol 34 MovieClip [frb_states] Frame 2
stop();
Symbol 34 MovieClip [frb_states] Frame 3
stop();
Symbol 34 MovieClip [frb_states] Frame 4
stop();
Symbol 34 MovieClip [frb_states] Frame 5
stop();
Symbol 37 MovieClip [FCheckBoxSymbol] Frame 1
#initclip 1
function FCheckBoxClass() {
this.init();
}
FCheckBoxClass.prototype = new FUIComponentClass();
Object.registerClass("FCheckBoxSymbol", FCheckBoxClass);
FCheckBoxClass.prototype.init = function () {
var _local1 = this;
super.setSize(_local1._width, _local1._height);
_local1.boundingBox_mc.unloadMovie();
_local1.attachMovie("fcb_hitArea", "fcb_hitArea_mc", 1);
_local1.attachMovie("fcb_states", "fcb_states_mc", 2);
_local1.attachMovie("FLabelSymbol", "fLabel_mc", 3);
super.init();
_local1.setChangeHandler(_local1.changeHandler);
_local1._xscale = 100;
_local1._yscale = 100;
_local1.setSize(_local1.width, _local1.height);
if (_local1.initialValue == undefined) {
_local1.setCheckState(false);
} else {
_local1.setCheckState(_local1.initialValue);
}
if (_local1.label != undefined) {
_local1.setLabel(_local1.label);
}
_local1.ROLE_SYSTEM_CHECKBUTTON = 44;
_local1.STATE_SYSTEM_CHECKED = 16;
_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;
};
FCheckBoxClass.prototype.setLabelPlacement = function (pos) {
var _local1 = this;
var _local3 = pos;
_local1.setLabel(_local1.getLabel());
_local1.txtFormat(_local3);
var halfLabelH = (_local1.fLabel_mc._height / 2);
var halfFrameH = (_local1.fcb_states_mc._height / 2);
var vertCenter = (halfFrameH - halfLabelH);
var checkWidth = _local1.fcb_states_mc._width;
var frame = _local1.fcb_states_mc;
var label = _local1.fLabel_mc;
var _local2 = 0;
if (frame._width > _local1.width) {
_local2 = 0;
} else {
_local2 = _local1.width - frame._width;
}
_local1.fLabel_mc.setSize(_local2);
if ((_local3 == "right") || (_local3 == undefined)) {
_local1.labelPlacement = "right";
_local1.fcb_states_mc._x = 0;
_local1.fLabel_mc._x = checkWidth;
_local1.txtFormat("left");
} else if (_local3 == "left") {
_local1.labelPlacement = "left";
_local1.fLabel_mc._x = 0;
_local1.fcb_states_mc._x = _local1.width - checkWidth;
_local1.txtFormat("right");
}
_local1.fLabel_mc._y = vertCenter;
_local1.fcb_hitArea_mc._y = vertCenter;
};
FCheckBoxClass.prototype.txtFormat = function (pos) {
var _local1 = this;
var _local2 = _local1.textStyle;
var _local3 = _local1.styleTable;
_local2.align = ((_local3.textAlign.value == undefined) ? ((_local2.align = pos)) : undefined);
_local2.leftMargin = ((_local3.textLeftMargin.value == undefined) ? ((_local2.leftMargin = 0)) : undefined);
_local2.rightMargin = ((_local3.textRightMargin.value == undefined) ? ((_local2.rightMargin = 0)) : 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);
};
FCheckBoxClass.prototype.setHitArea = function (w, h) {
var _local2 = this;
var _local1 = _local2.fcb_hitArea_mc;
_local2.hitArea = _local1;
if (_local2.fcb_states_mc._width > w) {
_local1._width = _local2.fcb_states_mc._width;
} else {
_local1._width = w;
}
_local1._visible = false;
if (arguments.length > 1) {
_local1._height = h;
}
};
FCheckBoxClass.prototype.setSize = function (w) {
var _local1 = this;
_local1.setLabel(_local1.getLabel());
_local1.setLabelPlacement(_local1.labelPlacement);
if (_local1.fcb_states_mc._height < _local1.flabel_mc.labelField._height) {
super.setSize(w, _local1.flabel_mc.labelField._height);
}
_local1.setHitArea(_local1.width, _local1.height);
_local1.setLabelPlacement(_local1.labelPlacement);
};
FCheckBoxClass.prototype.drawFocusRect = function () {
var _local1 = this;
_local1.drawRect(-2, -2, _local1._width + 6, _local1._height - 1);
};
FCheckBoxClass.prototype.onPress = function () {
var _local2 = this;
_local2.pressFocus();
_root.focusRect.removeMovieClip();
var _local1 = _local2.fcb_states_mc;
if (_local2.getValue()) {
_local1.gotoAndStop("checkedPress");
} else {
_local1.gotoAndStop("press");
}
};
FCheckBoxClass.prototype.onRelease = function () {
var _local1 = this;
_local1.fcb_states_mc.gotoAndStop("up");
_local1.setValue(!_local1.checked);
};
FCheckBoxClass.prototype.onReleaseOutside = function () {
var _local1 = this.fcb_states_mc;
if (this.getValue()) {
_local1.gotoAndStop("checkedEnabled");
} else {
_local1.gotoAndStop("up");
}
};
FCheckBoxClass.prototype.onDragOut = function () {
var _local1 = this.fcb_states_mc;
if (this.getValue()) {
_local1.gotoAndStop("checkedEnabled");
} else {
_local1.gotoAndStop("up");
}
};
FCheckBoxClass.prototype.onDragOver = function () {
var _local1 = this.fcb_states_mc;
if (this.getValue()) {
_local1.gotoAndStop("checkedPress");
} else {
_local1.gotoAndStop("press");
}
};
FCheckBoxClass.prototype.setValue = function (checkedValue) {
var _local1 = this;
var _local2 = checkedValue;
if (_local2 || (_local2 == undefined)) {
_local1.setCheckState(_local2);
} else if (_local2 == false) {
_local1.setCheckState(_local2);
}
_local1.executeCallBack();
if (Accessibility.isActive()) {
Accessibility.sendEvent(_local1, 0, _local1.EVENT_OBJECT_STATECHANGE, true);
}
};
FCheckBoxClass.prototype.setCheckState = function (checkedValue) {
var _local1 = this;
var _local3 = checkedValue;
var _local2 = _local1.fcb_states_mc;
if (_local1.enable) {
_local1.flabel_mc.setEnabled(true);
if (_local3 || (_local3 == undefined)) {
_local2.gotoAndStop("checkedEnabled");
_local1.enabled = true;
_local1.checked = true;
} else {
_local2.gotoAndStop("up");
_local1.enabled = true;
_local1.checked = false;
}
} else {
_local1.flabel_mc.setEnabled(false);
if (_local3 || (_local3 == undefined)) {
_local2.gotoAndStop("checkedDisabled");
_local1.enabled = false;
_local1.checked = true;
} else {
_local2.gotoAndStop("uncheckedDisabled");
_local1.enabled = false;
_local1.checked = false;
_local1.focusRect.removeMovieClip();
}
}
};
FCheckBoxClass.prototype.getValue = function () {
return(this.checked);
};
FCheckBoxClass.prototype.setEnabled = function (enable) {
var _local1 = this;
if ((enable == true) || (enable == undefined)) {
_local1.enable = true;
Super.setEnabled(true);
} else {
_local1.enable = false;
Super.setEnabled(false);
}
_local1.setCheckState(_local1.checked);
};
FCheckBoxClass.prototype.getEnabled = function () {
return(this.enable);
};
FCheckBoxClass.prototype.setLabel = function (label) {
var _local1 = this;
_local1.fLabel_mc.setLabel(label);
_local1.txtFormat();
if (Accessibility.isActive()) {
Accessibility.sendEvent(_local1, 0, _local1.EVENT_OBJECT_NAMECHANGE);
}
};
FCheckBoxClass.prototype.getLabel = function () {
return(this.fLabel_mc.labelField.text);
};
FCheckBoxClass.prototype.setTextColor = function (color) {
this.fLabel_mc.labelField.textColor = color;
};
FCheckBoxClass.prototype.myOnKeyDown = function () {
var _local1 = this;
if (((Key.getCode() == 32) && (_local1.pressOnce == undefined)) && (_local1.enabled == true)) {
_local1.setValue(!_local1.getValue());
_local1.pressOnce = true;
}
};
FCheckBoxClass.prototype.myOnKeyUp = function () {
if (Key.getCode() == 32) {
this.pressOnce = undefined;
}
};
FCheckBoxClass.prototype.get_accRole = function (childId) {
return(this.master.ROLE_SYSTEM_CHECKBUTTON);
};
FCheckBoxClass.prototype.get_accName = function (childId) {
return(this.master.getLabel());
};
FCheckBoxClass.prototype.get_accState = function (childId) {
if (this.master.getValue()) {
return(this.master.STATE_SYSTEM_CHECKED);
}
return(0);
};
FCheckBoxClass.prototype.get_accDefaultAction = function (childId) {
if (this.master.getValue()) {
return("UnCheck");
}
return("Check");
};
FCheckBoxClass.prototype.accDoDefaultAction = function (childId) {
this.master.setValue(!this.master.getValue());
};
#endinitclip
boundingBox_mc._visible = false;
deadPreview._visible = false;
Symbol 47 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 50 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(background_mc, "background");
Symbol 53 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 55 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 58 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(check_mc, "foregroundDisabled");
Symbol 61 MovieClip Frame 1
var component = _parent._parent;
component.registerSkinElement(check_mc, "check");
Symbol 62 MovieClip [fcb_states] Frame 1
stop();
Symbol 62 MovieClip [fcb_states] Frame 2
stop();
Symbol 62 MovieClip [fcb_states] Frame 3
stop();
Symbol 62 MovieClip [fcb_states] Frame 4
stop();
Symbol 62 MovieClip [fcb_states] Frame 5
stop();
Symbol 62 MovieClip [fcb_states] Frame 6
stop();
Symbol 64 MovieClip Frame 1
var component = _parent;
component.registerSkinElement(track_mc, "scrollTrack");
Symbol 65 MovieClip [FScrollBarSymbol] Frame 1
#initclip 2
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 66 MovieClip [DataProviderSymbol] Frame 1
#initclip 3
_global.DataProviderClass = function () {
this.init();
};
DataProviderClass.prototype.init = function () {
var _local1 = this;
_local1.items = new Array();
_local1.uniqueID = 0;
_local1.views = new Array();
};
DataProviderClass.prototype.addView = function (viewRef) {
this.views.push(viewRef);
var _local1 = {event:"updateAll"};
viewRef.modelChanged(_local1);
};
DataProviderClass.prototype.addItemAt = function (index, value) {
var _local1 = index;
var _local2 = this;
var _local3 = value;
if (_local1 < _local2.getLength()) {
_local2.items.splice(_local1, 0, "tmp");
}
_local2.items[_local1] = new Object();
if (typeof(_local3) == "object") {
_local2.items[_local1] = _local3;
} else {
_local2.items[_local1].label = _local3;
}
_local2.items[_local1].__ID__ = _local2.uniqueID++;
var eventObj = {event:"addRows", firstRow:_local1, lastRow:_local1};
_local2.updateViews(eventObj);
};
DataProviderClass.prototype.addItem = function (value) {
this.addItemAt(this.getLength(), value);
};
DataProviderClass.prototype.removeItemAt = function (index) {
var _local1 = index;
var _local2 = this;
var tmpItm = _local2.items[_local1];
_local2.items.splice(_local1, 1);
var _local3 = {event:"deleteRows", firstRow:_local1, lastRow:_local1};
_local2.updateViews(_local3);
return(tmpItm);
};
DataProviderClass.prototype.removeAll = function () {
var _local1 = this;
_local1.items = new Array();
_local1.updateViews({event:"deleteRows", firstRow:0, lastRow:_local1.getLength() - 1});
};
DataProviderClass.prototype.replaceItemAt = function (index, itemObj) {
var _local1 = index;
var _local2 = this;
if ((_local1 < 0) || (_local1 >= _local2.getLength())) {
} else {
var _local3 = _local2.getItemID(_local1);
if (typeof(itemObj) == "object") {
_local2.items[_local1] = itemObj;
} else {
_local2.items[_local1].label = itemObj;
}
_local2.items[_local1].__ID__ = _local3;
_local2.updateViews({event:"updateRows", firstRow:_local1, lastRow:_local1});
}
};
DataProviderClass.prototype.getLength = function () {
return(this.items.length);
};
DataProviderClass.prototype.getItemAt = function (index) {
return(this.items[index]);
};
DataProviderClass.prototype.getItemID = function (index) {
return(this.items[index].__ID__);
};
DataProviderClass.prototype.sortItemsBy = function (fieldName, order) {
var _local1 = this;
_local1.items.sortOn(fieldName);
if (order == "DESC") {
_local1.items.reverse();
}
_local1.updateViews({event:"sort"});
};
DataProviderClass.prototype.updateViews = function (eventObj) {
var _local2 = this;
var _local3 = eventObj;
var _local1 = 0;
while (_local1 < _local2.views.length) {
_local2.views[_local1].modelChanged(_local3);
_local1++;
}
};
#endinitclip
Symbol 67 MovieClip [FSelectableItemSymbol] Frame 1
#initclip 4
function FSelectableItemClass() {
this.init();
}
FSelectableItemClass.prototype = new FUIComponentClass();
FSelectableItemClass.prototype.init = function () {
var _local1 = this;
if (_local1._name != "itemAsset") {
_local1.highlighted = false;
_local1.layoutContent(100);
}
};
FSelectableItemClass.prototype.drawItem = function (itmObj, selected) {
var _local1 = this;
var _local2 = selected;
_local1.displayContent(itmObj, _local2);
if ((_local1.highlighted != _local2) || ((_local1.controller.focused != _local1.oldFocus) && (_local2))) {
_local1.setHighlighted(_local2);
}
_local1.oldFocus = _local1.controller.focused;
};
FSelectableItemClass.prototype.setSize = function (width, height) {
var _local1 = this;
var _local3 = width;
var _local2 = -16384;
_local1.width = _local3;
_local1.layoutContent(_local3);
_local1.attachMovie("FHighlightSymbol", "highlight_mc", _local2);
_local1.highlight_mc._x = 0.5;
_local1.highlight_mc._width = _local3 - 0.5;
_local1.highlight_mc._height = height;
_local1.highlight_mc.controller = _local1;
_local1.highlight_mc._alpha = 0;
_local1.highlight_mc.trackAsMenu = true;
_local1.highlight_mc.onPress = function () {
var _local1 = this;
if (_local1.controller.enable) {
_local1.controller.controller.clickHandler(_local1.controller.itemNum);
}
};
_local1.highlight_mc.onDragOver = function () {
if (this.controller.controller.focused) {
this.onPress();
}
};
_local1.highlight_mc.useHandCursor = false;
_local1.highlight_mc.trackAsMenu = true;
};
FSelectableItemClass.prototype.setEnabled = function (enabledFlag) {
var _local1 = this;
var _local2 = enabledFlag;
_local1.enable = _local2;
_local1.fLabel_mc.setEnabled(_local2);
_local1.highlight_mc.gotoAndStop((_local2 ? "unfocused" : "disabled"));
};
FSelectableItemClass.prototype.layoutContent = function (width) {
var _local1 = this;
_local1.attachMovie("FLabelSymbol", "fLabel_mc", 2, {hostComponent:_local1.controller});
_local1.fLabel_mc._x = 2;
_local1.fLabel_mc._y = 0;
_local1.fLabel_mc.setSize(width - 2);
_local1.fLabel_mc.labelField.selectable = false;
};
FSelectableItemClass.prototype.displayContent = function (itmObj, selected) {
var _local2 = itmObj;
var _local1 = "";
if (_local2.label != undefined) {
_local1 = _local2.label;
} else if (typeof(_local2) == "object") {
for (var _local3 in _local2) {
if (_local3 != "__ID__") {
_local1 = (_local2[_local3] + ", ") + _local1;
}
}
_local1 = _local1.substring(0, _local1.length - 2);
} else {
_local1 = _local2;
}
if (this.fLabel_mc.labelField.text != _local1) {
this.fLabel_mc.setLabel(_local1);
}
var clr = (selected ? (this.controller.styleTable.textSelected.value) : (this.controller.styleTable.textColor.value));
if (clr == undefined) {
clr = (selected ? 16777215 : 0);
}
this.fLabel_mc.setColor(clr);
};
FSelectableItemClass.prototype.getItemIndex = function () {
return(this.controller.getScrollPosition() + this.itemNum);
};
FSelectableItemClass.prototype.getItemModel = function () {
return(this.controller.getItemAt(this.getItemIndex()));
};
FSelectableItemClass.prototype.getHostDataProvider = function () {
return(this.controller.dataProvider);
};
FSelectableItemClass.prototype.setHighlighted = function (flag) {
var _local1 = this;
var _local2 = flag;
fade = _local1.controller.styleTable.fadeRate.value;
if (((fade == undefined) || (fade == 0)) || (!_local2)) {
_local1.highlight_mc._alpha = (_local2 ? 100 : 0);
delete _local1.onEnterFrame;
} else {
_local1.fadeN = fade;
_local1.fadeX = 1;
_local1.highLight_mc._alpha = 20;
_local1.onEnterFrame = function () {
var _local1 = this;
_local1.highLight_mc._alpha = (60 * Math.sqrt((_local1.fadeX++) / _local1.fadeN)) + 40;
if (_local1.fadeX > _local1.fadeN) {
delete _local1.onEnterFrame;
}
};
}
_local1.highlighted = _local2;
};
#endinitclip
Symbol 68 MovieClip [FSelectableListSymbol] Frame 1
#initclip 5
function FSelectableListClass() {
this.init();
}
FSelectableListClass.prototype = new FUIComponentClass();
FSelectableListClass.prototype.init = function () {
var _local1 = this;
super.init();
_local1.enable = true;
_local1.selected = new Array();
_local1.topDisplayed = (_local1.numDisplayed = 0);
_local1.lastSelected = 0;
_local1.tabChildren = false;
if (_local1._name != undefined) {
_local1.dataProvider = new DataProviderClass();
_local1.dataProvider.addView(_local1);
}
};
FSelectableListClass.prototype.addItemAt = function (index, label, data) {
if ((index < 0) || (!this.enable)) {
return(undefined);
}
this.dataProvider.addItemAt(index, {label:label, data:data});
};
FSelectableListClass.prototype.addItem = function (label, data) {
if (!this.enable) {
return(undefined);
}
this.dataProvider.addItem({label:label, data:data});
};
FSelectableListClass.prototype.removeItemAt = function (index) {
var _local1 = this;
_local1.selectHolder = _local1.getSelectedIndex();
var _local2 = _local1.getItemAt(index);
_local1.dataProvider.removeItemAt(index);
return(_local2);
};
FSelectableListClass.prototype.removeAll = function () {
this.dataProvider.removeAll();
};
FSelectableListClass.prototype.replaceItemAt = function (index, newLabel, newData) {
this.dataProvider.replaceItemAt(index, {label:newLabel, data:newData});
};
FSelectableListClass.prototype.sortItemsBy = function (fieldName, order) {
var _local1 = this;
_local1.lastSelID = _local1.dataProvider.getItemID(_local1.lastSelected);
_local1.dataProvider.sortItemsBy(fieldName, order);
};
FSelectableListClass.prototype.getLength = function () {
return(this.dataProvider.getLength());
};
FSelectableListClass.prototype.getSelectedIndex = function () {
var _local2 = this;
for (var _local3 in _local2.selected) {
var _local1 = _local2.selected[_local3].sIndex;
if (_local1 != undefined) {
return(_local1);
}
}
return(undefined);
};
FSelectableListClass.prototype.getSelectedItem = function () {
return(this.getItemAt(this.getSelectedIndex()));
};
FSelectableListClass.prototype.getItemAt = function (index) {
return(this.dataProvider.getItemAt(index));
};
FSelectableListClass.prototype.getEnabled = function () {
return(this.enable);
};
FSelectableListClass.prototype.getValue = function () {
var _local1 = this.getSelectedItem();
if (_local1.data != undefined) {
return(_local1.data);
}
return(_local1.label);
};
FSelectableListClass.prototype.setSelectedIndex = function (index, flag) {
var _local1 = this;
var _local2 = index;
if (((_local2 >= 0) && (_local2 < _local1.getLength())) && (_local1.enable)) {
_local1.clearSelected();
_local1.selectItem(_local2, true);
_local1.lastSelected = _local2;
_local1.invalidate("updateControl");
if (flag != false) {
_local1.executeCallBack();
}
}
};
FSelectableListClass.prototype.setDataProvider = function (obj) {
var _local2 = obj;
this.setScrollPosition(0);
this.clearSelected();
if (_local2 instanceof Array) {
this.dataProvider = new DataProviderClass();
var _local1 = 0;
while (_local1 < _local2.length) {
var _local3 = ((typeof(_local2[_local1]) == "string") ? ({label:_local2[_local1]}) : (_local2[_local1]));
this.dataProvider.addItem(_local3);
_local1++;
}
} else {
this.dataProvider = _local2;
}
this.dataProvider.addView(this);
};
FSelectableListClass.prototype.setItemSymbol = function (linkID) {
var _local1 = this;
_local1.tmpPos = _local1.getScrollPosition();
_local1.itemSymbol = linkID;
_local1.invalidate("setSize");
_local1.setScrollPosition(_local1.tmpPos);
};
FSelectableListClass.prototype.setEnabled = function (enabledFlag) {
var _local2 = this;
_local2.cleanUI();
super.setEnabled(enabledFlag);
_local2.enable = enabledFlag;
_local2.boundingBox_mc.gotoAndStop((_local2.enable ? "enabled" : "disabled"));
var _local3 = Math.min(_local2.numDisplayed, _local2.getLength());
var _local1 = 0;
while (_local1 < _local3) {
_local2.container_mc[("fListItem" + _local1) + "_mc"].setEnabled(_local2.enable);
_local1++;
}
if (_local2.enable) {
_local2.invalidate("updateControl");
}
};
FSelectableListClass.prototype.updateControl = function () {
var _local2 = this;
var _local1 = 0;
while (_local1 < _local2.numDisplayed) {
_local2.container_mc[("fListItem" + _local1) + "_mc"].drawItem(_local2.getItemAt(_local2.topDisplayed + _local1), _local2.isSelected(_local2.topDisplayed + _local1));
_local1++;
}
};
FSelectableListClass.prototype.setSize = function (w, h) {
var _local1 = this;
super.setSize(w, h);
_local1.boundingBox_mc._xscale = (_local1.boundingBox_mc._yscale = 100);
_local1.boundingBox_mc._xscale = (_local1.width * 100) / _local1.boundingBox_mc._width;
_local1.boundingBox_mc._yscale = (_local1.height * 100) / _local1.boundingBox_mc._height;
var _local2 = 0;
while (_local2 < _local1.numDisplayed) {
_local1.container_mc.attachMovie(_local1.itemSymbol, ("fListItem" + _local2) + "_mc", 10 + _local2, {controller:_local1, itemNum:_local2});
var _local3 = _local1.container_mc[("fListItem" + _local2) + "_mc"];
var offset = ((_local1.scrollOffset == undefined) ? 0 : (_local1.scrollOffset));
_local3.setSize(_local1.width - offset, _local1.itmHgt);
_local3._y = (_local1.itmHgt - 2) * _local2;
_local2++;
}
_local1.updateControl();
};
FSelectableListClass.prototype.modelChanged = function (eventObj) {
var _local1 = this;
var firstRow = eventObj.firstRow;
var lastRow = eventObj.lastRow;
var event = eventObj.event;
if (event == "addRows") {
for (var _local2 in _local1.selected) {
if ((_local1.selected[_local2].sIndex != undefined) && (_local1.selected[_local2].sIndex >= firstRow)) {
_local1.selected[_local2].sIndex = _local1.selected[_local2].sIndex + ((lastRow - firstRow) + 1);
_local1.setSelectedIndex(_local1.selected[_local2].sIndex, false);
}
}
} else if (event == "deleteRows") {
if (firstRow == lastRow) {
var index = firstRow;
if (_local1.selectHolder == index) {
_local1.selectionDeleted = true;
}
if (((_local1.topDisplayed + _local1.numDisplayed) >= _local1.getLength()) && (_local1.topDisplayed > 0)) {
_local1.topDisplayed--;
if (_local1.selectionDeleted && ((index - 1) >= 0)) {
_local1.setSelectedIndex(index - 1, false);
}
} else if (_local1.selectionDeleted) {
var len = _local1.getLength();
if (((index == (len - 1)) && (len > 1)) || (index > (len / 2))) {
_local1.setSelectedIndex(index - 1, false);
} else {
_local1.setSelectedIndex(index, false);
}
}
for (var _local2 in _local1.selected) {
if (_local1.selected[_local2].sIndex > firstRow) {
_local1.selected[_local2].sIndex--;
}
}
} else {
_local1.clearSelected();
_local1.topDisplayed = 0;
}
} else if (event == "sort") {
var len = _local1.getLength();
var _local2 = 0;
while (_local2 < len) {
if (_local1.isSelected(_local2)) {
var _local3 = _local1.dataProvider.getItemID(_local2);
if (_local3 == _local1.lastSelID) {
_local1.lastSelected = _local2;
}
_local1.selected[String(_local3)].sIndex = _local2;
}
_local2++;
}
}
_local1.invalidate("updateControl");
};
FSelectableListClass.prototype.measureItmHgt = function () {
var _local1 = this;
_local1.attachMovie(_local1.itemSymbol, "tmpItem_mc", 0, {controller:_local1});
_local1.tmpItem_mc.drawItem({label:"Sizer: PjtTopg"}, false);
_local1.itmHgt = _local1.tmpItem_mc._height;
_local1.tmpItem_mc.removeMovieClip();
};
FSelectableListClass.prototype.selectItem = function (index, selectedFlag) {
var _local1 = this;
var _local2 = index;
if (selectedFlag && (!_local1.isSelected(_local2))) {
_local1.selected[String(_local1.dataProvider.getItemID(_local2))] = {sIndex:_local2};
} else if (!selectedFlag) {
delete _local1.selected[String(_local1.dataProvider.getItemID(_local2))];
}
};
FSelectableListClass.prototype.isSelected = function (index) {
return(this.selected[String(this.dataProvider.getItemID(index))].sIndex != undefined);
};
FSelectableListClass.prototype.clearSelected = function () {
var _local1 = this;
for (var _local3 in _local1.selected) {
var _local2 = _local1.selected[_local3].sIndex;
if (((_local2 != undefined) && (_local1.topDisplayed <= _local2)) && (_local2 < (_local1.topDisplayed + _local1.numDisplayed))) {
_local1.container_mc[("fListItem" + (_local2 - _local1.topDisplayed)) + "_mc"].drawItem(_local1.getItemAt(_local2), false);
}
}
delete _local1.selected;
_local1.selected = new Array();
};
FSelectableListClass.prototype.selectionHandler = function (itemNum) {
var _local1 = this;
var _local2 = _local1.topDisplayed + itemNum;
if (_local1.getItemAt(_local2 == undefined)) {
_local1.changeFlag = false;
} else {
_local1.changeFlag = true;
_local1.clearSelected();
_local1.selectItem(_local2, true);
_local1.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(_local1.getItemAt(_local2), _local1.isSelected(_local2));
}
};
FSelectableListClass.prototype.moveSelBy = function (incr) {
var _local1 = this;
var _local3 = _local1.getSelectedIndex();
var _local2 = _local3 + incr;
_local2 = Math.max(0, _local2);
_local2 = Math.min(_local1.getLength() - 1, _local2);
if (_local2 == _local3) {
} else {
if ((_local3 < _local1.topDisplayed) || (_local3 >= (_local1.topDisplayed + _local1.numDisplayed))) {
_local1.setScrollPosition(_local3);
}
if ((_local2 >= (_local1.topDisplayed + _local1.numDisplayed)) || (_local2 < _local1.topDisplayed)) {
_local1.setScrollPosition(_local1.topDisplayed + incr);
}
_local1.selectionHandler(_local2 - _local1.topDisplayed);
}
};
FSelectableListClass.prototype.clickHandler = function (itmNum) {
var _local1 = this;
_local1.focusRect.removeMovieClip();
if (!_local1.focused) {
_local1.pressFocus();
}
_local1.selectionHandler(itmNum);
_local1.onMouseUp = _local1.releaseHandler;
};
FSelectableListClass.prototype.releaseHandler = function () {
var _local1 = this;
if (_local1.changeFlag) {
_local1.executeCallBack();
}
_local1.changeFlag = false;
_local1.onMouseUp = undefined;
};
FSelectableListClass.prototype.myOnSetFocus = function () {
var _local2 = this;
super.myOnSetFocus();
var _local1 = 0;
while (_local1 < _local2.numDisplayed) {
_local2.container_mc[("fListItem" + _local1) + "_mc"].highlight_mc.gotoAndStop("enabled");
_local1++;
}
};
FSelectableListClass.prototype.myOnKillFocus = function () {
var _local2 = this;
super.myOnKillFocus();
var _local1 = 0;
while (_local1 < _local2.numDisplayed) {
_local2.container_mc[("fListItem" + _local1) + "_mc"].highlight_mc.gotoAndStop("unfocused");
_local1++;
}
};
#endinitclip
Instance of Symbol 66 MovieClip [DataProviderSymbol] "dPAsset" in Symbol 68 MovieClip [FSelectableListSymbol] Frame 1
//component parameters
onClipEvent (initialize) {
}
Instance of Symbol 67 MovieClip [FSelectableItemSymbol] "ItemAsset" in Symbol 68 MovieClip [FSelectableListSymbol] Frame 1
//component parameters
onClipEvent (initialize) {
}
Symbol 69 MovieClip [FScrollSelectListSymbol] Frame 1
#initclip 6
function FScrollSelectListClass() {
this.init();
}
FScrollSelectListClass.prototype = new FSelectableListClass();
FScrollSelectListClass.prototype.getScrollPosition = function () {
return(this.topDisplayed);
};
FScrollSelectListClass.prototype.setScrollPosition = function (pos) {
var _local1 = pos;
var _local2 = this;
if (_local2.enable) {
_local1 = Math.min(_local1, _local2.getLength() - _local2.numDisplayed);
_local1 = Math.max(_local1, 0);
_local2.scrollBar_mc.setScrollPosition(_local1);
}
};
FScrollSelectListClass.prototype.setAutoHideScrollBar = function (flag) {
var _local1 = this;
_local1.permaScrollBar = !flag;
_local1.setSize(_local1.width, _local1.height);
};
FScrollSelectListClass.prototype.setEnabled = function (enabledFlag) {
super.setEnabled(enabledFlag);
this.scrollBar_mc.setEnabled(this.enable);
};
FScrollSelectListClass.prototype.setSize = function (w, h) {
var _local1 = this;
var _local2 = _local1.getScrollPosition();
super.setSize(w, h);
if (_local1.scrollBar_mc != undefined) {
_local1.removed = true;
}
_local1.scrollBar_mc = undefined;
_local1.initScrollBar();
_local1.setScrollPosition(_local2);
};
FScrollSelectListClass.prototype.modelChanged = function (eventObj) {
super.modelChanged(eventObj);
this.invalidate("initScrollBar");
};
FScrollSelectListClass.prototype.initScrollBar = function () {
var _local1 = this;
if ((!_local1.permaScrollBar) && (_local1.getLength() <= _local1.numDisplayed)) {
if (_local1.removed) {
_local1.scrollBar_mc.removeMovieClip();
_local1.scrollBar_mc = undefined;
_local1.scrollOffset = undefined;
_local1.invalidate("setSize");
}
} else {
if (_local1.scrollBar_mc == undefined) {
_local1.container_mc.attachMovie("FScrollBarSymbol", "scrollBar_mc", 3000, {hostStyle:_local1.styleTable});
_local1.scrollBar_mc = _local1.container_mc.scrollBar_mc;
_local1.scrollBar_mc.setChangeHandler("scrollHandler", _local1);
_local1.scrollBar_mc.setSize(_local1.height);
_local1.scrollBar_mc._x = _local1.width - _local1.scrollBar_mc._width;
_local1.scrollBar_mc._y = 0;
_local1.scrollBar_mc.setLargeScroll(_local1.numDisplayed - 1);
_local1.scrollOffset = _local1.scrollBar_mc._width;
_local1.invalidate("setSize");
}
_local1.scrollBar_mc.setScrollProperties(_local1.numDisplayed, 0, _local1.getLength() - _local1.numDisplayed);
}
};
FScrollSelectListClass.prototype.scrollHandler = function (scrollBar) {
var _local2 = this;
var _local1 = scrollBar.getScrollPosition();
_local2.topDisplayed = _local1;
if (_local2.lastPosition != _local1) {
_local2.updateControl();
}
_local2.lastPosition = _local1;
};
FScrollSelectListClass.prototype.clickHandler = function (itmNum) {
var _local1 = this;
super.clickHandler(itmNum);
if ((_local1.dragScrolling == undefined) && (_local1.scrollBar_mc != undefined)) {
_local1.dragScrolling = setInterval(_local1, "dragScroll", 15);
}
};
FScrollSelectListClass.prototype.releaseHandler = function () {
clearInterval(this.dragScrolling);
this.dragScrolling = undefined;
super.releaseHandler();
};
FScrollSelectListClass.prototype.dragScroll = function () {
var _local1 = this;
clearInterval(_local1.dragScrolling);
if (_local1.container_mc._ymouse < 0) {
_local1.setScrollPosition(_local1.getScrollPosition() - 1);
_local1.selectionHandler(0);
_local1.scrollInterval = Math.max(25, (-23.8 * (-_local1.container_mc._ymouse)) + 500);
_local1.dragScrolling = setInterval(_local1, "dragScroll", _local1.scrollInterval);
} else if (_local1.container_mc._ymouse > ((_local1.itmHgt - 2) * _local1.numDisplayed)) {
_local1.setScrollPosition(_local1.getScrollPosition() + 1);
_local1.selectionHandler(_local1.numDisplayed - 1);
_local1.scrollInterval = Math.max(25, (-23.8 * Math.abs((_local1.container_mc._ymouse - ((_local1.itmHgt - 2) * _local1.numDisplayed)) - 2)) + 500);
_local1.dragScrolling = setInterval(_local1, "dragScroll", _local1.scrollInterval);
} else {
_local1.dragScrolling = setInterval(_local1, "dragScroll", 15);
}
};
FScrollSelectListClass.prototype.myOnKeyDown = function () {
var _local2 = this;
if (_local2.focused) {
_local2.keyCodes = new Array(40, 38, 34, 33, 36, 35);
_local2.keyIncrs = new Array(1, -1, _local2.numDisplayed - 1, -(_local2.numDisplayed - 1), -_local2.getLength(), _local2.getLength());
var _local1 = 0;
while (_local1 < _local2.keyCodes.length) {
if (Key.isDown(_local2.keyCodes[_local1])) {
_local2.moveSelBy(_local2.keyIncrs[_local1]);
return;
}
_local1++;
}
_local2.findInputText();
}
};
FScrollSelectListClass.prototype.findInputText = function () {
var _local1 = Key.getAscii();
if ((_local1 >= 33) && (_local1 <= 126)) {
this.findString(String.fromCharCode(_local1));
}
};
FScrollSelectListClass.prototype.findString = function (str) {
if (this.getLength() == 0) {
} else {
var _local3 = this.getSelectedIndex();
var jump = 0;
var _local1 = _local3 + 1;
while (_local1 != _local3) {
var _local2 = this.getItemAt(_local1).label.substring(0, str.length);
if ((str == _local2) || (str.toUpperCase() == _local2.toUpperCase())) {
var jump = (_local1 - _local3);
break;
}
if (_local1 >= (this.getLength() - 1)) {
_local1 = -1;
}
_local1++;
}
if (jump != 0) {
this.moveSelBy(jump);
}
}
};
#endinitclip
Instance of Symbol 65 MovieClip [FScrollBarSymbol] "scrollBarAsset" in Symbol 69 MovieClip [FScrollSelectListSymbol] Frame 1
//component parameters
onClipEvent (initialize) {
_targetInstanceName = "";
horizontal = false;
}
onClipEvent (load) {
this._width = (this._height = 1);
}
Instance of Symbol 68 MovieClip [FSelectableListSymbol] "superClassAsset" in Symbol 69 MovieClip [FScrollSelectListSymbol] Frame 1
//component parameters
onClipEvent (initialize) {
}
Symbol 70 MovieClip [FComboBoxItemSymbol] Frame 1
#initclip 7
function FComboBoxItemClass() {
this.init();
}
FComboBoxItemClass.prototype = new FSelectableItemClass();
Object.registerClass("FComboBoxItemSymbol", FComboBoxItemClass);
FComboBoxItemClass.prototype.setSize = function (w, h) {
var _local1 = this;
super.setSize(w, h);
_local1.highlight_mc.onRollOver = function () {
this.controller.controller.selectionHandler(this.controller.itemNum);
};
};
#endinitclip
Symbol 73 MovieClip [FComboBoxSymbol] Frame 1
#initclip 8
function FComboBoxClass() {
var _local1 = this;
_global._popUpLevel = ((_global._popUpLevel == undefined) ? 20000 : (_global._popUpLevel + 1));
_local1.superHolder = _root.createEmptyMovieClip("superHolder" + _popUpLevel, _popUpLevel);
var _local3 = _local1.superHolder.createEmptyMovieClip("testCont", 20000);
var testBox = _local3.attachMovie("FBoundingBoxSymbol", "boundingBox_mc", 0);
if (testBox._name == undefined) {
_local1.superHolder.removeMovieClip();
_local1.superHolder = _local1._parent.createEmptyMovieClip("superHolder" + _popUpLevel, _popUpLevel);
} else {
_local3.removeMovieClip();
}
if (_local1.rowCount == undefined) {
_local1.rowCount = 8;
_local1.editable = false;
}
_local1.itemSymbol = "FComboBoxItemSymbol";
_local1.init();
_local1.permaScrollBar = false;
_local1.proxyBox_mc.gotoAndStop(1);
_local1.width = _local1._width;
_local1.height = (_local1.proxyBox_mc._height * _local1._yscale) / 100;
var _local2 = 0;
while (_local2 < _local1.labels.length) {
_local1.addItem(_local1.labels[_local2], _local1.data[_local2]);
_local2++;
}
_local1.lastSelected = 0;
_local1.selectItem(0);
_local1._xscale = (_local1._yscale = 100);
_local1.opened = false;
_local1.setSize(_local1.width);
_local1.highlightTop(false);
if (_local1.changeHandler.length > 0) {
_local1.setChangeHandler(_local1.changeHandler);
}
_local1.onUnload = function () {
this.superHolder.removeMovieClip();
};
_local1.setSelectedIndex(0, false);
_local1.value = "";
_local1.focusEnabled = true;
_local1.changeFlag = false;
}
FComboBoxClass.prototype = new FScrollSelectListClass();
Object.registerClass("FComboBoxSymbol", FComboBoxClass);
FComboBoxClass.prototype.modelChanged = function (eventObj) {
var _local1 = this;
super.modelChanged(eventObj);
var _local2 = eventObj.event;
if ((_local2 == "addRows") || (_local2 == "deleteRows")) {
var diff = ((eventObj.lastRow - eventObj.firstRow) + 1);
var mode = ((_local2 == "addRows") ? 1 : -1);
var _local3 = _local1.getLength();
var lenBefore = (_local3 - (mode * diff));
if ((_local1.rowCount > lenBefore) || (_local1.rowCount > _local3)) {
_local1.invalidate("setSize");
}
if (_local1.getSelectedIndex() == undefined) {
_local1.setSelectedIndex(0, false);
}
} else if (_local2 == "updateAll") {
_local1.invalidate("setSize");
}
};
FComboBoxClass.prototype.removeAll = function () {
var _local1 = this;
if (!_local1.enable) {
} else {
super.removeAll();
if (_local1.editable) {
_local1.value = "";
}
_local1.invalidate("setSize");
}
};
FComboBoxClass.prototype.setSize = function (w) {
var _local1 = this;
var _local2 = w;
if ((((_local2 == undefined) || (typeof(_local2) != "number")) || (_local2 <= 0)) || (!_local1.enable)) {
} else {
_local1.proxyBox_mc._width = _local2;
_local1.container_mc.removeMovieClip();
_local1.measureItmHgt();
_local1.container_mc = _local1.superHolder.createEmptyMovieClip("container", 3);
_local1.container_mc.tabChildren = false;
_local1.setPopUpLocation(_local1.container_mc);
_local1.container_mc.attachMovie("FBoundingBoxSymbol", "boundingBox_mc", 0);
_local1.boundingBox_mc = _local1.container_mc.boundingBox_mc;
_local1.boundingBox_mc.component = _local1;
_local1.registerSkinElement(_local1.boundingBox_mc.boundingBox, "background");
_local1.proxyBox_mc._height = _local1.itmHgt;
_local1.numDisplayed = Math.min(_local1.rowCount, _local1.getLength());
if (_local1.numDisplayed < 3) {
_local1.numDisplayed = Math.min(3, _local1.getLength());
}
_local1.height = (_local1.numDisplayed * (_local1.itmHgt - 2)) + 2;
super.setSize(_local2, _local1.height);
_local1.attachMovie("DownArrow", "downArrow", 10);
_local1.downArrow._y = 0;
_local1.downArrow._width = _local1.itmHgt;
_local1.downArrow._height = _local1.itmHgt;
_local1.downArrow._x = _local1.proxyBox_mc._width - _local1.downArrow._width;
_local1.setEditable(_local1.editable);
_local1.container_mc._visible = _local1.opened;
_local1.highlightTop(false);
_local1.fader = _local1.superHolder.attachMovie("FBoundingBoxSymbol", "faderX", 4);
_local1.registerSkinElement(_local1.fader.boundingBox, "background");
_local1.fader._width = _local1.width;
_local1.fader._height = _local1.height;
_local1.fader._visible = false;
}
};
FComboBoxClass.prototype.setDataProvider = function (dp) {
super.setDataProvider(dp);
this.invalidate("setSize");
this.setSelectedIndex(0);
};
FComboBoxClass.prototype.getValue = function () {
if (this.editable) {
return(this.fLabel_mc.getLabel());
}
return(super.getValue());
};
FComboBoxClass.prototype.getRowCount = function () {
return(this.rowCount);
};
FComboBoxClass.prototype.setRowCount = function (count) {
var _local1 = this;
var _local3 = count;
_local1.rowCount = ((_local1.getLength() > _local3) ? (Math.max(_local3, 3)) : (_local3));
_local1.setSize(_local1.width);
var _local2 = _local1.getLength();
if ((_local2 - _local1.getScrollPosition()) < _local1.rowCount) {
_local1.setScrollPosition(_local2 - Math.min(_local1.rowCount, _local2));
_local1.invalidate("updateControl");
}
};
FComboBoxClass.prototype.setEditable = function (editableFlag) {
var _local1 = this;
if (!_local1.enable) {
} else {
_local1.editable = editableFlag;
if (!_local1.editable) {
_local1.onPress = _local1.pressHandler;
_local1.useHandCursor = false;
_local1.trackAsMenu = true;
_local1.attachMovie("FComboBoxItemSymbol", "fLabel_mc", 5, {controller:_local1, itemNum:-1});
_local1.fLabel_mc.onRollOver = undefined;
_local1.fLabel_mc.setSize((_local1.width - _local1.itmHgt) + 1, _local1.itmHgt);
_local1.topLabel = _local1.getSelectedItem();
_local1.fLabel_mc.drawItem(_local1.topLabel, false);
_local1.highlightTop(false);
} else {
_local1.attachMovie("FLabelSymbol", "fLabel_mc", 5);
_local1.fLabel_txt = _local1.fLabel_mc.labelField;
_local1.fLabel_txt.type = "input";
_local1.fLabel_txt._x = 4;
_local1.fLabel_txt.onSetFocus = _local1.onLabelFocus;
_local1.fLabel_mc.setSize((_local1.width - _local1.itmHgt) - 3);
delete _local1.onPress;
_local1.fLabel_txt.onKillFocus = function () {
this._parent._parent.myOnKillFocus();
};
_local1.fLabel_mc.setLabel(_local1.value);
_local1.fLabel_txt.onChanged = function () {
this._parent._parent.findInputText();
};
_local1.downArrow.onPress = _local1.buttonPressHandler;
_local1.downArrow.useHandCursor = false;
_local1.downArrow.trackAsMenu = true;
}
}
};
FComboBoxClass.prototype.setEnabled = function (enabledFlag) {
var _local1 = this;
var _local2 = enabledFlag;
_local2 = (((_local2 == undefined) || (typeof(_local2) != "boolean")) ? true : (_local2));
super.setEnabled(_local2);
_local1.registerSkinElement(_local1.boundingBox_mc.boundingBox, "background");
_local1.proxyBox_mc.gotoAndStop((_local1.enable ? "enabled" : "disabled"));
_local1.downArrow.gotoAndStop((_local1.enable ? 1 : 3));
if (_local1.editable) {
_local1.fLabel_txt.type = (_local2 ? "input" : "dynamic");
_local1.fLabel_txt.selectable = _local2;
} else if (_local2) {
_local1.fLabel_mc.drawItem(_local1.topLabel, false);
_local1.setSelectedIndex(_local1.getSelectedIndex(), false);
}
_local1.fLabel_mc.setEnabled(_local1.enable);
_local1.fLabel_txt.onSetFocus = (_local2 ? (_local1.onLabelFocus) : undefined);
};
FComboBoxClass.prototype.setSelectedIndex = function (index, flag) {
var _local1 = this;
super.setSelectedIndex(index, flag);
if (!_local1.editable) {
_local1.topLabel = _local1.getSelectedItem();
_local1.fLabel_mc.drawItem(_local1.topLabel, false);
} else {
_local1.value = ((flag != undefined) ? "" : (_local1.getSelectedItem().label));
_local1.fLabel_mc.setLabel(_local1.value);
}
_local1.invalidate("updateControl");
};
FComboBoxClass.prototype.setValue = function (value) {
var _local1 = this;
if (_local1.editable) {
_local1.fLabel_mc.setLabel(value);
_local1.value = value;
}
};
FComboBoxClass.prototype.pressHandler = function () {
var _local1 = this;
_local1.focusRect.removeMovieClip();
if (_local1.enable) {
if (!_local1.opened) {
_local1.onMouseUp = _local1.releaseHandler;
} else {
_local1.onMouseUp = undefined;
}
_local1.changeFlag = false;
if (!_local1.focused) {
_local1.pressFocus();
_local1.clickFilter = (_local1.editable ? false : true);
}
if (!_local1.clickFilter) {
_local1.openOrClose(!_local1.opened);
} else {
_local1.clickFilter = false;
}
}
};
FComboBoxClass.prototype.clickHandler = function (itmNum) {
var _local1 = this;
if (!_local1.focused) {
if (_local1.editable) {
_local1.fLabel_txt.onKillFocus = undefined;
}
_local1.pressFocus();
}
super.clickHandler(itmNum);
_local1.selectionHandler(itmNum);
_local1.onMouseUp = _local1.releaseHandler;
};
FComboBoxClass.prototype.highlightTop = function (flag) {
var _local1 = this;
if (!_local1.editable) {
_local1.fLabel_mc.drawItem(_local1.topLabel, flag);
}
};
FComboBoxClass.prototype.myOnSetFocus = function () {
super.myOnSetFocus();
this.fLabel_mc.highlight_mc.gotoAndStop("enabled");
this.highlightTop(true);
};
FComboBoxClass.prototype.drawFocusRect = function () {
var _local1 = this;
_local1.drawRect(-2, -2, _local1.width + 4, _local1._height + 4);
};
FComboBoxClass.prototype.myOnKillFocus = function () {
var _local1 = this;
if (Selection.getFocus().indexOf("labelField") != -1) {
} else {
super.myOnKillFocus();
delete _local1.fLabel_txt.onKeyDown;
_local1.openOrClose(false);
_local1.highlightTop(false);
}
};
FComboBoxClass.prototype.setPopUpLocation = function (mcRef) {
var _local1 = this;
var _local3 = mcRef;
_local3._x = _local1._x;
var _local2 = {x:_local1._x, y:_local1._y + _local1.proxyBox_mc._height};
_local1._parent.localToGlobal(_local2);
_local3._parent.globalToLocal(_local2);
_local3._x = _local2.x;
_local3._y = _local2.y;
if ((_local1.height + _local3._y) >= Stage.height) {
_local1.upward = true;
_local3._y = (_local2.y - _local1.height) - _local1.proxyBox_mc._height;
} else {
_local1.upward = false;
}
};
FComboBoxClass.prototype.openOrClose = function (flag) {
var _local1 = this;
var _local2 = flag;
if (_local1.getLength() == 0) {
} else {
_local1.setPopUpLocation(_local1.container_mc);
if ((_local1.lastSelected != -1) && ((_local1.lastSelected < _local1.topDisplayed) || (_local1.lastSelected > (_local1.topDisplayed + _local1.numDisplayed)))) {
super.moveSelBy(_local1.lastSelected - _local1.getSelectedIndex());
}
if (!_local2) {
(_local1.downArrow.gotoAndStop(1));// not popped
} else {
(_local1.downArrow.gotoAndStop(2));// not popped
}
if (_local2 == _local1.opened) {
} else {
_local1.highlightTop(!_local2);
_local1.fadeRate = _local1.styleTable.popUpFade.value;
if (((!_local2) || (_local1.fadeRate == undefined)) || (_local1.fadeRate == 0)) {
_local1.opened = (_local1.container_mc._visible = _local2);
} else {
_local1.setPopUpLocation(_local1.fader);
_local1.time = 0;
_local1.const = 85 / Math.sqrt(_local1.fadeRate);
_local1.fader._alpha = 85;
_local1.container_mc._visible = (_local1.fader._visible = true);
_local1.onEnterFrame = function () {
var _local1 = this;
_local1.fader._alpha = 100 - ((_local1.const * Math.sqrt(++_local1.time)) + 15);
if (_local1.time >= _local1.fadeRate) {
_local1.fader._visible = false;
delete _local1.onEnterFrame;
_local1.opened = true;
}
};
}
}
}
};
FComboBoxClass.prototype.fireChange = function () {
var _local1 = this;
_local1.lastSelected = _local1.getSelectedIndex();
if (!_local1.editable) {
_local1.topLabel = _local1.getSelectedItem();
_local1.fLabel_mc.drawItem(_local1.topLabel, true);
} else {
_local1.value = _local1.getSelectedItem().label;
_local1.fLabel_mc.setLabel(_local1.value);
}
_local1.executeCallback();
};
FComboBoxClass.prototype.releaseHandler = function () {
var _local1 = this;
var _local2 = _root;
var _local3 = _local1.boundingBox_mc.hitTest(_local2._xmouse, _local2._ymouse);
if (_local1.changeFlag) {
if (_local3) {
_local1.fireChange();
}
_local1.openOrClose(!_local1.opened);
} else if (_local3) {
_local1.openOrClose(false);
} else {
_local1.onMouseDown = function () {
var _local1 = this;
var _local2 = _root;
if ((!_local1.boundingBox_mc.hitTest(_local2._xmouse, _local2._ymouse)) && (!_local1.hitTest(_local2._xmouse, _local2._ymouse))) {
_local1.onMouseDown = undefined;
_local1.openOrClose(false);
}
};
}
_local1.changeFlag = false;
_local1.onMouseUp = undefined;
clearInterval(_local1.dragScrolling);
_local1.dragScrolling = undefined;
};
FComboBoxClass.prototype.moveSelBy = function (itemNum) {
var _local1 = this;
if (itemNum != 0) {
super.moveSelBy(itemNum);
if (_local1.editable) {
_local1.setValue(_local1.getSelectedItem().label);
}
if (!_local1.opened) {
if (_local1.changeFlag && (!_local1.isSelected(_local1.lastSelected))) {
_local1.fireChange();
}
}
}
};
FComboBoxClass.prototype.myOnKeyDown = function () {
var _local1 = this;
if (!_local1.focused) {
} else {
if (_local1.editable && (Key.isDown(13))) {
_local1.setValue(_local1.fLabel_mc.getLabel());
_local1.executeCallback();
_local1.openOrClose(false);
} else if ((Key.isDown(13) || (Key.isDown(32) && (!_local1.editable))) && (_local1.opened)) {
if (_local1.getSelectedIndex() != _local1.lastSelected) {
_local1.fireChange();
}
_local1.openOrClose(false);
_local1.fLabel_txt.hscroll = 0;
}
super.myOnKeyDown();
}
};
FComboBoxClass.prototype.findInputText = function () {
if (!this.editable) {
super.findInputText();
}
};
FComboBoxClass.prototype.onLabelFocus = function () {
var _local1 = this;
_local1._parent._parent.tabFocused = false;
_local1._parent._parent.focused = true;
_local1.onKeyDown = function () {
this._parent._parent.myOnKeyDown();
};
Key.addListener(_local1);
};
FComboBoxClass.prototype.buttonPressHandler = function () {
this._parent.pressHandler();
};
#endinitclip
this.deadPreview._visible = false;
Instance of Symbol 69 MovieClip [FScrollSelectListSymbol] "superClassAsset" in Symbol 73 MovieClip [FComboBoxSymbol] Frame 1
//component parameters
onClipEvent (initialize) {
}
Symbol 76 MovieClip [FLabelSymbol] Frame 1
#initclip 9
_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 79 MovieClip [FHighlightSymbol] Frame 1
var component = _parent.controller;
component.registerSkinElement(highlight_mc, "selection");
stop();
Symbol 79 MovieClip [FHighlightSymbol] Frame 2
component.registerSkinElement(highlight_mc2, "selectionDisabled");
stop();
Symbol 79 MovieClip [FHighlightSymbol] Frame 3
component.registerSkinElement(highlight_mc3, "selectionUnfocused");
stop();
Symbol 80 MovieClip [FUIComponentSymbol] Frame 1
#initclip 10
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 91 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 101 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 110 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 111 MovieClip [UpArrow] Frame 1
stop();
Symbol 111 MovieClip [UpArrow] Frame 2
stop();
Symbol 111 MovieClip [UpArrow] Frame 3
stop();
Symbol 117 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 124 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 129 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 130 MovieClip [ScrollThumb] Frame 1
stop();
Symbol 138 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 146 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 154 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 155 MovieClip [DownArrow] Frame 1
stop();
Symbol 155 MovieClip [DownArrow] Frame 2
stop();
Symbol 155 MovieClip [DownArrow] Frame 3
stop();
Symbol 163 MovieClip [bg] Frame 1
function move_bg() {
var _local1 = 0;
while (_local1 < 2) {
if (bg["bg_" + _local1]._x > bg["bg_" + _local1]._width) {
var _local2 = 0;
while (_local2 < 2) {
if (_local2 != _local1) {
follow = bg["bg_" + _local2];
bg["bg_" + _local1]._x = follow._x - follow._width;
if (transfer == false) {
bg["bg_" + _local1].gotoAndStop(3);
}
if (transfer) {
bg["bg_" + _local1].nextFrame();
transfer = false;
}
}
_local2++;
}
}
bg["bg_" + _local1]._x = bg["bg_" + _local1]._x + velX;
_local1++;
}
}
this.onEnterFrame = function () {
velX = _parent.bg_speed;
move_bg();
};
Symbol 169 MovieClip [point] Frame 1
stop();
Symbol 169 MovieClip [point] Frame 2
stop();
Symbol 169 MovieClip [point] Frame 3
stop();
Instance of Symbol 175 MovieClip "slider" in Symbol 176 MovieClip Frame 1
onClipEvent (load) {
this._x = this._x - this._width;
startPos = this._x;
var done = 0;
}
onClipEvent (enterFrame) {
total = _parent._parent.getBytesTotal();
sofar = _parent._parent.getBytesLoaded();
percent = Math.floor((sofar / total) * 100);
this._x = (startPos + percent) + 15;
if ((percent == 100) and (done == 0)) {
_parent._parent.gotoAndPlay("in");
done = 1;
}
}
Symbol 180 MovieClip Frame 1
stop();
Symbol 219 MovieClip Frame 1
stop();
Symbol 219 MovieClip Frame 6
play();
Symbol 219 MovieClip Frame 18
stop();
Symbol 220 MovieClip Frame 1
stop();
Instance of Symbol 219 MovieClip "elevationArrow" in Symbol 220 MovieClip Frame 1
onClipEvent (load) {
var sweeping = 1;
var angle = 0;
var amount = 1;
var my_rotation = 5;
var rotation = my_rotation;
}
onClipEvent (enterFrame) {
this._rotation = this._rotation - rotation;
if (this._rotation < -90) {
rotation = -my_rotation;
}
if (this._rotation > 0) {
rotation = my_rotation;
}
angle = this._rotation;
if (angle == -90) {
angle = -85;
}
x = 1 * Math.cos((angle * Math.PI) / 180);
y = 1 * Math.sin((angle * Math.PI) / 180);
_parent._parent._parent._parent.fly_x = x;
_parent._parent._parent._parent.fly_y = y;
_parent._parent._parent._parent.fly_rotation = angle;
}
Symbol 226 MovieClip Frame 30
gotoAndPlay ("loopme");
Symbol 226 MovieClip Frame 33
stop();
this.createEmptyMovieClip("key_L", 0);
key_L = new Object();
key_L.onKeyDown = function () {
if (Key.isDown(32)) {
_parent._parent.dragging = false;
Key.removeListener(key_L);
_parent._parent.nextFrame();
}
};
Key.addListener(key_L);
this.createEmptyMovieClip("power_ctr", 2);
power.power_bar._yscale = 0;
power_ctr.onEnterFrame = function () {
var _local1 = _parent;
power.power_bar._yscale = power.power_bar._yscale - ((power.power_bar._yscale - (_local1._parent.driveSpeed * 2)) / 10);
power.power_bar._yscale = _local1._parent.bar.body._yscale;
_local1._parent.power = power.power_bar._yscale * 2;
};
Instance of Symbol 220 MovieClip "elevationMeter" in Symbol 226 MovieClip Frame 33
/* no clip actions */
Symbol 226 MovieClip Frame 40
gotoAndPlay ("loopme");
Symbol 228 MovieClip Frame 1
stop();
Symbol 228 MovieClip Frame 35
if (_parent._parent._parent.main.character != 5) {
_parent._parent._parent.main.kick_ass();
}
Symbol 228 MovieClip Frame 56
gotoAndStop (1);
Symbol 230 MovieClip Frame 1
_parent.monkeyUp = 1;
_parent.resetHand();
_parent.once = 0;
stop();
Symbol 230 MovieClip Frame 5
apestanding.gotoAndPlay("hithard");
Symbol 230 MovieClip Frame 15
stop();
Symbol 230 MovieClip Frame 20
_parent.result.gotoAndPlay("on");
_parent.gamemain.play();
_parent.animation.gotoAndStop("gaming");
Symbol 230 MovieClip Frame 21
stop();
Symbol 230 MovieClip Frame 123
_parent.result.gotoAndStop("off");
Symbol 230 MovieClip Frame 143
_parent.resetHand();
gotoAndStop (1);
stop();
Symbol 230 MovieClip Frame 150
apestanding.gotoAndPlay("tickle");
Symbol 230 MovieClip Frame 167
gotoAndStop (1);
_parent.once = 0;
Symbol 230 MovieClip Frame 183
gotoAndStop (1);
_parent.once = 0;
Symbol 284 MovieClip Frame 285
stop();
Symbol 288 MovieClip Frame 1
stop();
Symbol 288 MovieClip Frame 3
stop();
Symbol 290 Button
on (release) {
_parent.btn_from = "play";
_parent.total_score = 0;
_parent.nextFrame();
}
on (rollOver) {
playnowmc.gotoAndPlay("in");
}
on (rollOut, dragOut) {
playnowmc.gotoAndPlay("out");
}
Symbol 294 MovieClip Frame 1
stop();
Symbol 294 MovieClip Frame 3
stop();
Symbol 295 Button
on (release) {
gotoAndStop ("intro");
}
on (rollOver) {
instruct.gotoAndPlay("in");
}
on (rollOut, dragOut) {
instruct.gotoAndPlay("out");
}
Symbol 310 Button
on (release) {
_parent.btn_from = "try_again";
_parent.total_score = 0;
_parent.nextFrame();
}
on (rollOver) {
playnowmc.gotoAndPlay("in");
}
on (rollOut, dragOut) {
playnowmc.gotoAndPlay("out");
}
Symbol 317 Button
on (release) {
getURL ("http://www.thelongestyard-dvd.co.uk", "_blank");
}
Symbol 327 MovieClip Frame 1
stop();
Symbol 327 MovieClip Frame 2
stop();
Symbol 332 Button
on (release) {
btn_submit();
}
on (rollOver) {
_root.bleep.start();
}
Symbol 340 MovieClip Frame 1
function checkEmailFormat(email) {
var _local1 = email;
if (((((_local1.indexOf(" ") != -1) || (_local1.indexOf("@") == -1)) || (_local1.indexOf(".") == -1)) || (_local1.length < 6)) || (_local1.lastIndexOf(".") < _local1.indexOf("@"))) {
return(false);
}
return(true);
}
function clearform() {
message = "";
name = "";
email = "";
femail = "";
optin1 = "0";
optin2 = "0";
opt1.gotoAndStop(1);
opt2.gotoAndStop(1);
opt3.gotoAndStop(1);
}
function btn_submit() {
var i = 1;
while (i < 3) {
eval ("alert" + i).gotoAndStop(1);
i++;
}
if (name == "") {
alert1.gotoAndStop(2);
} else if (!checkEmailFormat(email)) {
alert2.gotoAndStop(2);
} else if (!checkEmailFormat(femail)) {
alert3.gotoAndStop(2);
} else {
submitURL = "http://www.thelongestyard-dvd.co.uk/regdetails.php";
formData = new LoadVars();
formData.email = email;
formData.femail1 = femail;
formData.name = name;
formData.message = message;
formData.opt1 = opt1;
formData.opt2 = opt2;
replyData = new LoadVars();
formData.sendAndLoad(submitURL, replyData, "get");
play();
}
}
stop();
clearform();
Symbol 340 MovieClip Frame 2
play();
Symbol 343 MovieClip Frame 1
stop();
Symbol 343 MovieClip Frame 2
stop();
Symbol 347 MovieClip Frame 11
stop();
_parent._parent.gamemain.nextFrame();
Symbol 347 MovieClip Frame 25
stop();
Symbol 348 MovieClip Frame 1
stop();
Symbol 348 MovieClip Frame 2
stop();
total_score_txt = _parent.total_score;
p_a.onPress = function () {
_parent.current_leve = 1;
_parent.total_score = 0;
this._parent.gotoAndStop(1);
};
Symbol 348 MovieClip Frame 11
highScoresText = "Getting High Scores...";
rn = Math.round(Math.random() * 1000000);
loadVariables ("http://www.thelongestyard-dvd.co.uk/cgi-bin/getscores.pl?reload=" + rn, this);
stop();
Symbol 348 MovieClip Frame 35
stop();
_global.PHPObject = function () {
var _local1 = this;
_local1._data = [];
_local1.init.apply(_local1, arguments);
};
PHPObject.prototype = new Object();
PHPObject.prototype.init = function () {
var _local1 = this;
var _local2 = arguments;
_local1._loader = new PHPLoader();
_local1._data = [0, "", [], [], ((_local1._data[4] == undefined) ? "" : (_local1._data[4]))];
if (_local2) {
svc = _local2[0].toString();
if ((svc.indexOf("http://") != -1) || (svc.indexOf("https://") != -1)) {
_local1._data[1] = "WebServiceProxy";
_local1.wsdlLoc = svc;
_local1.params = [];
} else {
_local1._data[1] = svc;
if (_local2[1].length) {
_local1._loader.gateway = _local2[1].toString();
}
if (_local2[2]) {
_local1._data[7] = 1;
}
if (_local2[3].length) {
_local1._data[8] = _local2[3];
}
}
if (_local1._data[1] != undefined) {
_local1[_local1._data[1]]();
}
}
};
PHPObject.prototype.onAbort = function () {
};
PHPObject.prototype.onError = function (error) {
trace(error);
};
PHPObject.prototype.onInit = function () {
};
PHPObject.prototype.onResult = function () {
};
PHPObject.prototype.abortExecute = function () {
var _local1 = this;
if (_local1._loader.isBusy) {
_local1._loader.id++;
_local1._loader.isBusy = false;
_local1._loader.refObj.onAbort();
}
};
PHPObject.prototype.delayExecute = function () {
this._loader.delay = true;
};
PHPObject.prototype.execute = function () {
var _local1 = this;
if (_local1._loader.delay == true) {
_local1._loader.delay = false;
_local1.__connect(_local1._data[2][_local1._data[2].length - 1]);
}
};
PHPObject.prototype.getBytesLoaded = function () {
if (this._loader.isBusy) {
return(this._loader.getBytesLoaded());
}
return(false);
};
PHPObject.prototype.getBytesTotal = function () {
if (this._loader.isBusy) {
return(this._loader.getBytesTotal());
}
return(false);
};
PHPObject.prototype.getOutput = function () {
return(this._loader.output);
};
PHPObject.prototype.setCredentials = function () {
this._data[5] = arguments;
};
PHPObject.prototype.setDefaultGatewayKey = function (key) {
_global.defaultGatewayKey = key;
};
PHPObject.prototype.setDefaultGatewayUrl = function (url) {
_global.defaultGatewayUrl = url;
};
PHPObject.prototype.setGateway = function (url) {
this._loader.gateway = url;
};
PHPObject.prototype.setKey = function (key) {
this._data[4] = key;
};
PHPObject.prototype.setService = function (svc) {
this._data[1] = svc;
};
PHPObject.prototype.utf8encode = function (flag) {
this._data[6] = flag;
};
PHPObject.prototype.__resolve = function (method) {
var _local1 = this;
var _local2 = arguments;
if (method.indexOf("_onResult") != -1) {
return(_local1.onResult(_local1._loader.serverResult));
}
if (method.indexOf("_onError") != -1) {
return(_local1.onResult(_local1._loader.serverResult));
}
var methodExists = true;
if (((typeof(method) != "number") && (_local1._loader.classMethods[_local1._data[1]])) && (_local1._data[1] != "WebServiceProxy")) {
if (_local1._loader.classMethods[method.toLowerCase()] == undefined) {
methodExists = false;
}
}
if (methodExists) {
return(function () {
var _local1 = arguments;
var _local2 = this;
if ((!_local2._loader.isBusy) || (_local2._loader.delay)) {
if (((_local2._data[1] == "WebServiceProxy") && (method != "call")) && (method != "WebServiceProxy")) {
var operation = method;
var _local3 = [];
var x = _local1.length;
i = 0;
while (i < x) {
_local3[_local1[i]] = _local1[i + 1];
i = i + 2;
}
return(_local2.call(operation, _local3));
}
if ((method != undefined) && (method != _local2._data[1])) {
var m = (((typeof(method) == "number") || (!_local2._loader.classMethods[_local2._data[1]])) ? (method) : (_local2._loader.classMethods[method]));
_local2._data[2].push(m);
_local2._data[3].push(_local1);
}
if (_local2._loader.delay) {
return(true);
}
_local2.__connect(method);
}
return(false);
});
}
_local1.onError(("Error - Method " + method) + " does not exist");
return(undefined);
};
PHPObject.prototype.__connect = function (method) {
var _local1 = this;
var _local2 = method;
_local1._loader.gateway = ((_local1._loader.gateway == "") ? (_global.defaultGatewayUrl) : (_local1._loader.gateway));
if (_local1._loader.gateway.length) {
_local1._loader.refObj = _local1;
_local1._data[4] = ((_local1._data[4] == "") ? (_global.defaultGatewayKey) : (_local1._data[4]));
_local1._data[0] = _local1._loader.id;
var obj = _local1._loader._pack(_local1);
_local1._loader._send(obj, _local2);
_local1._data[2] = [];
_local1._data[3] = [];
if (typeof(_local2) == "number") {
for (var _local3 in _local1._loader.classMethods) {
if (_local1._loader.classMethods[_local3] == _local2) {
_local2 = _local3;
break;
}
}
}
_local1._loader.lastMethod = _local2;
return(true);
}
return(undefined);
};
_global.PHPLoader = function () {
this.init();
};
PHPLoader.prototype = new LoadVars();
PHPLoader.prototype.init = function () {
var _local1 = this;
_local1.classMethods = [];
_local1.delay = false;
_local1.gateway = "";
_local1.id = 0;
_local1.isBusy = false;
_local1.refObj = "";
};
PHPLoader.prototype.onData = function (src) {
var _local2 = src;
var _local1 = _local2.substr(0, _local2.indexOf("O"));
if ((_local1 == this.id) || (_local1 == 0)) {
this._parse(_local2.substr(_local1.length), _local1);
}
};
PHPLoader.prototype._parse = function (src, id) {
var _local1 = this;
var _local2 = src;
_global.dlSize = _local2.length;
_local1.isBusy = false;
_local2 = Serializer.unserialize(_local2);
_local1._unpack(_local2, _local1.refObj);
if (_local1.serverError.length) {
_local1.refObj.onError(_local1.serverError);
} else if (id == 0) {
_local1.refObj.onInit();
} else {
_local1.refObj[_local1.lastMethod + "_onResult"](_local1.serverResult);
}
};
PHPLoader.prototype._unpack = function (src, dest) {
var _local1 = dest;
var _local2 = src;
for (var i in _local2) {
if (i == "_loader") {
for (var _local3 in _local2[i]) {
_local1[i][_local3] = _local2[i][_local3];
if (_local3 == "classMethods") {
_local1[i][_local3][_local1._data[1]] = true;
}
}
} else {
_local1[i] = _local2[i];
}
}
};
PHPLoader.prototype._pack = function (obj) {
var _local1 = obj;
var _local2 = new Object();
for (var _local3 in _local1) {
if ((_local3 != "_loader") && (typeof(_local1[_local3]) != "function")) {
_local2[_local3] = _local1[_local3];
}
}
return(_local2);
};
PHPLoader.prototype._send = function (obj, methodName) {
var _local1 = this;
s = new XML(Serializer.serialize(obj));
s.contentType = "text/plain";
s.sendAndLoad(_local1.gateway, _local1, "POST");
if (obj._data[1] != methodName) {
_local1.isBusy = true;
} else {
_local1.id++;
}
_global.ulSize = s.toString().length;
};
_global.Serializer = function () {
};
Serializer.prototype.unserialize = function ($string, debug) {
return(this.$_getValue($string)[0]);
};
Serializer.prototype.$_getNext = function ($string) {
var _local1 = $string;
var _local2;
var _local3;
_local2 = this.$_getValue(_local1);
_local1 = _local2[1];
_local3 = this.$_getValue(_local1);
_local1 = _local3[1];
return([_local2[0], _local3[0], _local1]);
};
Serializer.prototype.$_getValue = function ($string) {
var _local1 = $string;
var type;
var _local3;
var a;
var b;
type = _local1.charAt(0);
switch (type) {
case "s" :
_local3 = _local1.substr(2, _local1.indexOf(":", 3) - 2) * 1;
a = _local1.substr(length(_local3) + 4, _local3).toString();
a = unescape(a);
break;
case "i" :
_local3 = _local1.substr(2, _local1.indexOf(";", 3) - 2) * 1;
a = parseInt(_local3);
break;
case "d" :
_local3 = _local1.substr(2, _local1.indexOf(";", 3) - 2) * 1;
a = parseFloat(_local3);
break;
case "b" :
_local3 = _local1.substr(2, _local1.indexOf(";", 3) - 2) * 1;
a = (((_local3 == "true") || (_local3 == "1")) ? true : false);
break;
case "a" :
case "O" :
var delim1 = (_local1.indexOf(":", _local1.indexOf(":") + 1) + 2);
_local3 = _local1.substr(2, _local1.indexOf(":", 3) - 2) * 1;
if (type == "a") {
a = new Array();
_local1 = _local1.substr(_local1.indexOf(_local3));
} else {
a = new Object();
_local1 = _local1.substr((length(_local1.substr(length(_local3) + 4, _local3)) + _local1.indexOf(_local1.substr(length(_local3) + 4, _local3))) + 2);
}
var objectLength = (_local1.substr(0, _local1.indexOf(":")) * 1);
var counter = 0;
_local1 = _local1.substr(_local1.indexOf(":") + 2);
while (counter < objectLength) {
var _local2 = this.$_getNext(_local1);
_local1 = _local2[2];
a[_local2[0]] = _local2[1];
counter++;
}
return([a, _local1.substr(_local1.indexOf("}") + 1)]);
case "N" :
a = null;
_local3 = "";
_local1 = _local1.substr(1);
}
if (type != "s") {
_local3 = length(_local3);
}
_local1 = _local1.substr(_local1.indexOf(";", _local3) + 1);
return([a, _local1]);
};
Serializer.prototype.serialize = function (v) {
return(escape(this.$_parseValue(v)));
};
Serializer.prototype.$_parseValue = function (v) {
var _local1 = v;
switch (_local1.__proto__) {
case Array.prototype :
case Object.prototype :
case MovieClip.prototype :
var counter = 0;
var arrayValue = "";
for (var a in _local1) {
if (_local1[a].__proto__ != Function.prototype) {
var _local2 = this.$_parseValue(a);
var _local3 = this.$_parseValue(_local1[a]);
arrayValue = arrayValue + (_local2 add _local3);
counter++;
}
}
if (_local1.__proto__ == Array.prototype) {
return(((("a:" + counter) + ":{") + arrayValue) + "}");
}
return(((("O:8:\"stdClass\":" + counter) + ":{") + arrayValue) + "}");
case String.prototype :
if (this.enableMultiByte) {
_local1 = escape(_local1);
}
case undefined :
case Date.prototype :
return(((("s:" + length(_local1)) + ":\"") + _local1) + "\";");
case Number.prototype :
if (isNaN(_local1)) {
return("N;");
}
_local1 = Number(_local1);
if ((_local1 % 1) == 0) {
return(("i:" + _local1) + ";");
}
return(("d:" + _local1) + ";");
case Boolean.prototype :
return(("b:" + ((_local1 == true) ? 1 : 0)) + ";");
}
return(undefined);
};
_global.Serializer = new Serializer();
_global.defaultGatewayKey = "secret";
_global.defaultGatewayUrl = "http://www.thelongestyard-dvd.co.uk/server/gateway.php";
w_obj = new PHPObject("write");
myscore = total_score_txt;
trace(">>>>>>>>>>>>>");
function reStyle(component) {
eval (component).setStyleProperty("textColor", 0);
}
function reStyleForm() {
reStyle("form_rb_m");
reStyle("form_rb_f");
}
function onSubmit() {
error = 0;
formData = new LoadVars();
if (form_name.text == "") {
no1.gotoAndStop(2);
error = 1;
}
if (form_email.text == "") {
no2.gotoAndStop(2);
error = 1;
}
if (error == 0) {
formData.name = form_name.text;
formData.email = form_email.text;
formData.age = form_age.text;
formData.mobile = form_mobile.text;
onNext();
}
}
function onNext() {
if (error == 0) {
optin1 = 0;
optin2 = 0;
if (form_optin1.getValue()) {
optin1 = 1;
}
formData.sendAndLoad(submitURL, replyData, "get");
play();
}
}
stop();
var error = 0;
reStyleForm();
onReset();
setdetails();
Symbol 348 MovieClip Frame 111
gotoAndPlay ("getscores");
Symbol 348 MovieClip Frame 112
stop();
var email = "";
var femail = "";
var message = "";
Symbol 348 MovieClip Frame 165
gotoAndPlay ("getscores");
Symbol 348 MovieClip Frame 166
stop();
Symbol 350 MovieClip Frame 1
function move_bg() {
var _local3 = _parent;
var _local1 = 0;
while (_local1 < 2) {
if (bg["bg_" + _local1]._x > bg["bg_" + _local1]._width) {
var _local2 = 0;
while (_local2 < 2) {
if (_local2 != _local1) {
follow = bg["bg_" + _local2];
bg["bg_" + _local1]._x = follow._x - follow._width;
if (transfer == false) {
bg["bg_" + _local1].gotoAndStop(3);
}
if (transfer) {
bg["bg_" + _local1].nextFrame();
transfer = false;
}
}
_local2++;
}
}
bg["bg_" + _local1]._x = bg["bg_" + _local1]._x + velX;
_local3.monkey._x = _local3.monkey._x + velX;
_local1++;
}
}
_parent.monkey._x = -8000;
this.onEnterFrame = function () {
velX = _parent.bg_speed;
move_bg();
};
Instance of Symbol 169 MovieClip [point] "dummyHead1" in Symbol 359 MovieClip Frame 1
onClipEvent (load) {
var startX = this._x;
}
Symbol 366 MovieClip Frame 1
stop();
Symbol 379 Button
on (release) {
_parent._parent._parent._parent.monkey.gotoAndPlay("show_up");
_parent._parent.play();
}
Symbol 390 Button
on (release) {
_parent._parent._parent._parent.gotoAndStop(3);
_parent._parent._parent._parent.monkey.gotoAndPlay("show_up");
_parent._parent._parent._parent.animation.gotoAndStop("enterscores");
_parent._parent._parent.gotoAndStop("start");
}
Symbol 394 Button
on (release) {
_parent._parent._parent._parent.gotoAndStop(3);
_parent._parent._parent._parent.monkey.gotoAndPlay("show_up");
_parent._parent._parent._parent.animation.gotoAndStop(1);
_parent._parent._parent.gotoAndStop("start");
}
Symbol 395 MovieClip Frame 1
stop();
Symbol 396 MovieClip Frame 1
stop();
Symbol 396 MovieClip Frame 28
stop();
Symbol 396 MovieClip Frame 31
total = (_parent._parent.jump1 + _parent._parent.jump2) + _parent._parent.jump3;
_root.gameScore = total;
banner.gotoAndStop(2);
Symbol 396 MovieClip Frame 58
stop();
Symbol 402 MovieClip Frame 1
stop();
Symbol 402 MovieClip Frame 2
stop();
Symbol 402 MovieClip Frame 3
play();
Symbol 402 MovieClip Frame 31
stop();
Symbol 402 MovieClip Frame 32
play();
Symbol 402 MovieClip Frame 48
stop();
this._parent.newJump();
_parent.gotoAndStop("slaping");
Instance of Symbol 406 MovieClip "spring" in Symbol 507 MovieClip Frame 1
onClipEvent (load) {
gain = 6;
xSpeed = 0;
ySpeed = 0;
this._visible = 0;
}
onClipEvent (enterFrame) {
if (((_parent._parent.bax.handState == "auto") || (_parent._parent.bax.handState == "endAuto")) || (_parent._parent.bax.handState == "autoOff")) {
slow = 6.1 * gain;
var dX = (_parent.destX - _parent._x);
xSpeed = ((xSpeed + dx) * gain) / slow;
var dY = (_parent.destY - _parent._y);
ySpeed = ((ySpeed + dy) * gain) / slow;
_parent._x = _parent._x + xSpeed;
_parent._y = _parent._y + ySpeed;
if ((((dx * dx) + (dy * dy)) < 2) && (_parent._parent.bax.handState != "autoOff")) {
_parent._parent.bax.handState = "endAuto";
}
}
}
Symbol 536 MovieClip Frame 16
gotoAndPlay (1);
Symbol 536 MovieClip Frame 21
stop();
Symbol 549 MovieClip Frame 36
stop();
Symbol 550 MovieClip Frame 1
stop();
Symbol 565 MovieClip Frame 31
_parent._parent._parent._parent._parent.main.ball_mc.gotoAndStop(1);
_parent.gotoAndStop(1);
Symbol 565 MovieClip Frame 35
stop();
Symbol 566 MovieClip Frame 1
stop();
Symbol 578 MovieClip Frame 33
_parent._parent._parent._parent._parent.main.ball_mc.gotoAndStop(1);
_parent.gotoAndStop(1);
Symbol 579 MovieClip Frame 1
stop();
Symbol 594 MovieClip Frame 35
stop();
Symbol 595 MovieClip Frame 1
stop();
Symbol 608 MovieClip Frame 33
_parent._parent._parent._parent._parent.main.ball_mc.gotoAndStop(1);
_parent.gotoAndStop(1);
Symbol 609 MovieClip Frame 1
stop();
Symbol 613 MovieClip Frame 1
stop();
Symbol 621 MovieClip Frame 1
stop();
Symbol 622 MovieClip Frame 1
function randomBetween(a, b) {
return(a + Math.floor(Math.random() * ((b - a) + 1)));
}
stop();
if (pick_num == undefined) {
this._x = this._x + randomBetween(20, -20);
pick_num = randomBetween(0, 5);
char.gotoAndStop(pick_num);
} else {
char.gotoAndStop(pick_num);
}
Symbol 623 MovieClip Frame 1
function randomBetween(a, b) {
return(a + Math.floor(Math.random() * ((b - a) + 1)));
}
stop();
if (pick_num == undefined) {
this._x = this._x + randomBetween(20, -20);
pick_num = randomBetween(0, 5);
char.gotoAndStop(4);
} else {
char.gotoAndStop(4);
}
Symbol 624 MovieClip Frame 1
function randomBetween(a, b) {
return(a + Math.floor(Math.random() * ((b - a) + 1)));
}
stop();
if (pick_num == undefined) {
this._x = this._x + randomBetween(20, -20);
pick_num = randomBetween(0, 5);
char.gotoAndStop(5);
} else {
char.gotoAndStop(5);
}
Symbol 625 MovieClip Frame 1
function randomBetween(a, b) {
return(a + Math.floor(Math.random() * ((b - a) + 1)));
}
stop();
if (pick_num == undefined) {
this._x = this._x + randomBetween(20, -20);
pick_num = randomBetween(0, 5);
char.gotoAndStop(1);
} else {
char.gotoAndStop(1);
}
Symbol 629 MovieClip Frame 35
stop();
_parent._parent._parent._parent._parent.pause_kick = false;
Symbol 630 MovieClip Frame 1
stop();
Symbol 633 MovieClip Frame 1
stop();
Symbol 633 MovieClip Frame 35
if (_parent._parent._parent.main.character != 5) {
_parent._parent._parent.main.pause_kick = false;
}
Symbol 633 MovieClip Frame 56
gotoAndStop (1);
Symbol 635 MovieClip Frame 1
function randomBetween(a, b) {
return(a + Math.floor(Math.random() * ((b - a) + 1)));
}
stop();
if (pick_num == undefined) {
this._x = this._x + randomBetween(20, -20);
pick_num = randomBetween(0, 5);
char.gotoAndStop(5);
} else {
char.gotoAndStop(5);
}
Symbol 636 MovieClip Frame 1
function randomBetween(a, b) {
return(a + Math.floor(Math.random() * ((b - a) + 1)));
}
stop();
if (pick_num == undefined) {
this._x = this._x + randomBetween(20, -20);
pick_num = randomBetween(0, 5);
char.gotoAndStop(3);
} else {
char.gotoAndStop(3);
}
Symbol 637 MovieClip Frame 1
function randomBetween(a, b) {
return(a + Math.floor(Math.random() * ((b - a) + 1)));
}
stop();
if (pick_num == undefined) {
this._x = this._x + randomBetween(20, -20);
pick_num = randomBetween(0, 5);
char.gotoAndStop(2);
} else {
char.gotoAndStop(2);
}
Symbol 681 MovieClip Frame 73
stop();
Symbol 682 MovieClip Frame 1
Symbol 682 MovieClip Frame 20
gotoAndPlay (1);
Symbol 682 MovieClip Frame 90
stop();
trace("slip");
Symbol 682 MovieClip Frame 95
gotoAndPlay ("slipe");
Symbol 682 MovieClip Frame 104
stop();
Symbol 682 MovieClip Frame 167
stop();
Symbol 682 MovieClip Frame 183
gotoAndPlay ("headFirst2");
Symbol 683 MovieClip Frame 1
stop();
Symbol 686 MovieClip Frame 1
stop();
Symbol 687 MovieClip Frame 1
function fly_in() {
var _local1 = _parent;
this.createEmptyMovieClip("timer", 0);
timer.onEnterFrame = function () {
var _local1 = _parent;
p = {x:ball_mc._x, y:ball_mc._y};
this.localToGlobal(p);
_local1.ani._x = p.x + 20;
_local1.ani._y = p.y - 20;
_local1.ani.play();
};
}
function remove_timer() {
removeMovieClip(timer);
}
function set_kick_angle(hit_refer_angle) {
angle_x = 1 * Math.cos((hit_refer_angle * Math.PI) / 180);
angle_y = 1 * Math.sin((hit_refer_angle * Math.PI) / 180);
}
function kick_ass() {
pause_kick = false;
_parent.fly_rotation = 0;
ball_mc.dragging = false;
switch (character) {
case 1 :
ball_mc.velX = old_velX - 15;
ball_mc.velY = old_velY + 5;
trace(ball_mc.velX);
break;
case 2 :
ball_mc.velX = old_velX - 30;
ball_mc.velY = old_velY - 20;
break;
case 3 :
set_kick_angle(0);
power_x = 0;
power_y = 0;
break;
case 4 :
ball_mc.velX = old_velX - 35;
ball_mc.velY = old_velY + 20;
break;
case 5 :
ball_mc.velX = old_velX + 15;
ball_mc.velY = old_velY - 15;
break;
case 6 :
set_kick_angle(-55);
power_x = 60;
power_y = 30;
}
waitting_kick = 0;
}
function move() {
var _local1 = this;
var _local3 = _parent;
hit = "flying";
_local1._parent._parent.shandow._yscale = (_local1._parent._parent.shandow._xscale = Math.abs(_local1._y));
Xsquishforce = Xsquishforce + (100 - _local1._xscale);
Ysquishforce = Ysquishforce + (100 - _local1._yscale);
Xsquishforce = Xsquishforce * jiggle;
Ysquishforce = Ysquishforce * jiggle;
_local1._xscale = _local1._xscale + Xsquishforce;
_local1._yscale = _local1._yscale + Ysquishforce;
if (!_local1._parent._parent.dragging) {
for (i in _local1._parent._parent.springs) {
if (_local1._parent._parent.springs[i].hit.hitTest(_local1.hit_head_point)) {
pause_kick = true;
if (_local1._parent._parent.springs[i]._name == "well") {
_local1.velX = 0;
_local1.velY = 0;
_local1.body.body.gotoAndPlay("hitwall");
_local1._parent._parent.shandow.gotoAndStop(2);
_local1._parent._parent.springs[i].char.char.nextFrame();
_local1._parent._parent.springs[i].char.ani.play();
ball_mc.nextFrame();
_local1._parent._parent.springs[i].hit.gotoAndPlay(2);
} else if ((++waitting_kick) < 2) {
character = _local1._parent._parent.springs[i].char._currentframe;
_local1._parent._parent.springs[i].hit.gotoAndPlay(2);
_local1._parent._parent.springs[i].char.char.nextFrame();
_local1._parent._parent.springs[i].char.ani.play();
if (character != 5) {
ball_mc.nextFrame();
old_velX = _local1.velX;
old_velY = _local1.velY;
_local1.velX = 0;
_local1.velY = 0;
} else {
old_velX = _local1.velX;
old_velY = _local1.velY;
fly_in();
}
}
}
}
_local1.velY = _local1.velY + grav;
_local1.velX = _local1.velX * friction;
_local1.velY = _local1.velY * friction;
_local1._parent._parent.springs._x = _local1._parent._parent.springs._x - _local1.velX;
trace(Math.floor(_local1._parent._parent.springs._x / 140));
_local1._parent._parent.floorTarget._x = _local1._parent._parent.floorTarget._x - _local1.velX;
_local1._y = _local1._y + _local1.velY;
runing_dis = runing_dis + _local1.velX;
move_dot(runing_dis / dis);
var _local2 = 0;
while (_local2 < 2) {
if (Math.round(_local3.bg["bg_" + _local2]._x) > Math.round(_local3.bg["bg_" + _local2]._width)) {
var t = 0;
while (t < 2) {
if (t != _local2) {
current = Math.round(_local3.bg["bg_" + t]._x);
_local3.bg["bg_" + _local2]._x = Math.round(current - _local3.bg["bg_" + _local2]._width);
var cc = 0;
while (cc < 2) {
_local3.bg["bg_" + _local2]["tree_" + cc]._x = randomBetween(_local3.bg["bg_" + _local2]["tree_" + cc].inital_x, 600);
cc++;
}
random_number_1 = randomBetween(0, 100);
if (random_number_1 > 30) {
_local3.bg["bg_" + _local2].tree._y = _local3.bg["bg_" + _local2].tree.inital_y;
} else {
_local3.bg["bg_" + _local2].tree._y = 500;
}
}
t++;
}
}
_local3.bg["bg_" + _local2]._x = _local3.bg["bg_" + _local2]._x + (-Math.round(_local1.velX));
if (_local3.bg["bg_" + _local2].spring.hitTest(_local1)) {
ball_mc.velX = 0;
ball_mc.velY = 0;
}
_local2++;
}
collision = 0;
if (_local1._x > (right - (_local1._width / 2))) {
collision = Math.abs(_local1.oldX - _local1._x);
if (collision < 3) {
collision = 0;
}
_local1._yscale = _local1._yscale + (smoosh * collision);
_local1._xscale = _local1._xscale - (smoosh * collision);
_local1._x = right - (_local1._width / 2);
_local1.velX = _local1.velX * (-1 * restitution);
hit = "right";
playBoing(collision);
}
if (_local1._x < (left + (_local1._width / 2))) {
collision = Math.abs(_local1.oldX - _local1._x);
if (collision < 3) {
collision = 0;
}
_local1._yscale = _local1._yscale + (smoosh * collision);
_local1._xscale = _local1._xscale - (smoosh * collision);
_local1._x = left + (_local1._width / 2);
_local1.velX = _local1.velX * (-1 * restitution);
hit = "left";
}
if (_local1._y > (bottom - (_local1._height / 2))) {
collision = Math.abs(_local1.oldY - _local1._y);
if (collision < 3) {
collision = 0;
}
_local1._y = bottom - (_local1._height / 2);
_local1.velY = _local1.velY * (-1 * restitution);
hit = "bottom";
_local1.velX = _local1.velX * 0.85;
_local1.vely = _local1.vely * 0.95;
playBoing(collision);
}
if (_local1._y < (top + (_local1._height / 2))) {
collision = Math.abs(_local1.oldY - _local1._y);
if (collision < 3) {
collision = 0;
}
hit = "top";
if (_local3.fly_rotation < -60) {
_local1.body.body._rotation = _local1.body.body._rotation + 2;
}
}
if (_local1._xscale < (100 - squishLimit)) {
_local1._xscale = 100 - squishLimit;
} else if (_local1._xscale > (100 + squishLimit)) {
_local1._xscale = 100 + squishLimit;
}
if (_local1._yscale < (100 - squishLimit)) {
_local1._yscale = 100 - squishLimit;
} else if (_local1._yscale > (100 + squishLimit)) {
_local1._yscale = 100 + squishLimit;
}
} else {
hit = "null";
_local1.velX = _local1._x - _local1.oldX;
_local1.velY = _local1._y - _local1.oldY;
}
_local1.oldX = _local1._x;
_local1.oldY = _local1._y;
if (_local1.velX > -1) {
hit = "stop";
_local1.velY = 0;
if ((Math.abs(_local1.velX) < 0.3) and (pause_kick == false)) {
if ((++popups_count) < 2) {
_local1._parent._parent.popups.gotoAndPlay("hitWall");
_local1._parent._parent.current_mark = Math.floor(_local1._parent._parent.springs._x / 140);
_local1._parent._parent.total_score = _local1._parent._parent.total_score + _local1._parent._parent.current_mark;
_local1._parent._parent.popups.nextButton.banner.jump2 = _local1._parent._parent.mark_2 + "";
_local1._parent._parent.popups.nextButton.banner.jump1 = _local1._parent._parent.mark_1 + "";
_local1._parent._parent.popups.nextButton.banner.jump0 = _local1._parent._parent.mark_0 + "";
switch (_local1._parent._parent.total_life) {
case 2 :
_local1._parent._parent.mark_2 = _local1._parent._parent.current_mark;
_local1._parent._parent.popups.nextButton.banner.jump2 = Math.round(_local1._parent._parent.current_mark);
break;
case 1 :
_local1._parent._parent.mark_1 = _local1._parent._parent.current_mark;
_local1._parent._parent.popups.nextButton.banner.jump1 = Math.round(_local1._parent._parent.current_mark);
break;
case 0 :
_local1._parent._parent.mark_0 = _local1._parent._parent.current_mark;
_local1._parent._parent.popups.nextButton.banner.jump0 = Math.round(_local1._parent._parent.current_mark);
}
}
}
if (_local3.fly_rotation < -60) {
_local1.velX = 0;
_local1.velY = 0;
if ((++head_first_land) < 2) {
_local1.body.body.gotoAndPlay("headfirst2");
_local1._parent._parent.shandow.gotoAndStop(2);
}
}
}
if (Math.abs(_local1.velY) < 0.8) {
hit = "stop";
}
if (hit == "bottom") {
_local1.body.body.gotoAndPlay("bounce");
if (_local3.fly_rotation < -60) {
_local1.velX = 0;
_local1.velY = 0;
_local1.body.body.gotoAndPlay("headfirst2");
_local1._parent._parent.shandow.gotoAndStop(2);
}
}
if (_local1.velX > -24) {
if (_local1._y > 304) {
_local1.velY = _local1.velY * 0.5;
}
}
}
function init() {
if (_root.x != 3.14159265) {
return(undefined);
}
head_first_land = 0;
left = 0;
right = 600;
top = 0;
bottom = 350;
ball_mc.onEnterFrame = move;
friction = 0.99;
restitution = 0.99;
grav = 0.9;
smoosh = 2;
squishLimit = 90;
jiggle = 0.61;
}
function drag() {
this.startDrag();
this.dragging = true;
}
function noDrag() {
this.stopDrag();
this.dragging = false;
}
function move_dot(process) {
current_point_mc._x = ((-_parent.radar.bar._width) * process) - adjust;
}
function randomBetween(a, b) {
return(a + Math.floor(Math.random() * ((b - a) + 1)));
}
_root.x = 3.14159265;
waitting_kick = 0;
init();
pause_kick = false;
ball_mc.velX = (-_parent.fly_x) * (_parent.power * 0.9);
ball_mc.velY = _parent.fly_y * 30;
var cc = 0;
while (cc < 2) {
_parent.bg["bg_" + c]["tree_" + cc].inital_x = _parent.bg["bg_" + c]["tree_" + cc]._x;
_parent.bg["bg_" + c]["tree_" + cc].inital_y = _parent.bg["bg_" + c]["tree_" + cc]._y;
cc++;
}
_parent.total_life--;
_parent.radar.attachMovie("point", "point" + _parent.total_life, _parent.total_life);
current_point_mc = _parent.radar["point" + _parent.total_life];
goto = _parent.total_life;
adjust = _parent.radar.dummyHead1._width * 3.4;
current_point_mc._x = _parent.radar.dummyHead1._x - adjust;
current_point_mc._y = _parent.radar.dummyHead1._y;
current_point_mc._xscale = _parent.radar.dummyHead1._xscale;
current_point_mc._yscale = _parent.radar.dummyHead1._yscale;
_this = this;
_parent.toal_level = 3;
if (_parent.toal_level == 1) {
}
if (_parent.toal_level == 1) {
_parent.springs.well._y = 1000;
_parent.floorTarget._x = -15000;
dis = 18000;
}
if (_parent.toal_level == 3) {
_parent.floorTarget._x = -15000;
dis = 18000;
}
start_power = ball_mc.velX;
runing_dis = 0;
popups_count = 0;
move_dot();
stop();
Symbol 699 MovieClip Frame 1
stop();
Symbol 699 MovieClip Frame 10
_parent.main.kick_ass();
_parent.main.remove_timer();
_parent.main.ball_mc.body.body.gotoAndPlay("hitwall");
Symbol 699 MovieClip Frame 17
stop();
Symbol 702 MovieClip Frame 1
stop();
if (level_fail == undefined) {
level_fail = false;
}
if (level_fail) {
animation.gotoAndStop("enterscores");
} else {
animation.gotoAndStop("intro");
}
Instance of Symbol 230 MovieClip "monkey_" in Symbol 702 MovieClip Frame 1
onClipEvent (load) {
this.gotoAndStop(1);
}
Symbol 702 MovieClip Frame 2
function reset_game() {
toal_level = 1;
gotoAndStop (1);
}
if (toal_level == undefined) {
toal_level = 0;
total_score = 0;
}
level_popup._alpha = 0;
if ((total_life <= 0) or (total_life == undefined)) {
level_fail = false;
level_score = (mark_2 + mark_1) + mark_0;
mark_2 = "";
mark_1 = "";
mark_0 = "";
var c = 0;
while (c < 3) {
removeMovieClip(radar["point" + c]);
c++;
}
if (total_life == 0) {
if (level_score < 1500) {
saved_level = toal_level;
level_fail = true;
reset_game();
}
}
toal_level++;
if ((saved_level != undefined) and (level_fail == true)) {
toal_level = saved_level;
}
total_life = 3;
level_popup._alpha = 100;
level_popup.post.level_txt = toal_level;
}
if (toal_level > 3) {
level_fail = true;
reset_game();
}
total_life_txt = 4 - total_life;
kick_broad.gotoAndStop(total_life_txt);
function handHold() {
startDrag ("hand");
Mouse.hide();
hand.dragging = 1;
}
function handRelease() {
stopDrag();
Mouse.show();
hand.dragging = 0;
}
function setDefaults() {
wind = 1.5;
springStrength = 15;
weight = 1;
sway = 0;
slapSpeed = 50;
bigSlapSpeed = 200;
offScreenX = -200;
introText = "HI THERE\rI?M SPANK,\rTHE MONKEY!";
}
function resetHand() {
hand.destX = startX;
hand.destY = startY;
bax.handState = "auto";
}
function offScreenHand() {
hand.destX = offscreenX;
hand.destY = hand._y;
bax.handState = "autoOff";
}
function checkOffscreen() {
if ((((hand._x < -10) || (hand._x > 900)) || (hand._y < 30)) || (hand._y > 310)) {
resetHand();
}
}
function swayHand() {
if (bax.handState != "autoOff") {
checkOffscreen();
}
getAccel();
handFrame = hand._currentframe;
handFrameOffset = (handFrame - 51) * -1;
spring = (handFrameOffset / springStrength) * fps.speedFactor;
if (handFrame < 51) {
spring = Math.max(1, spring);
} else if (handFrame > 51) {
spring = Math.min(-1, spring);
} else {
spring = 0;
}
sway = vNew / wind;
sway = sway + spring;
handFrameNew = handFrame + sway;
handFrameNew = Math.max(handFrameNew, 1);
handFrameNew = Math.min(handFrameNew, 100);
hand.gotoAndStop(Math.round(handFrameNew));
checkHit();
}
function checkHit() {
if ((hand._x > 10) && (hand._x < 350)) {
if (Key.isDown(72)) {
vNew = 690;
} else {
vNew = Math.floor(vNew);
}
if (slapSpeed <= 50) {
if ((++once) < 2) {
monkey.gotoAndPlay("tickle");
}
}
if ((slapSpeed < vNew) && (monkeyUp)) {
if (bigSlapSpeed < vNew) {
resultText = ("NICE ONE !\rYOU SPANKED THE MONKEY AT " + vNew) + " MILES PER HOUR";
monkey.gotoAndPlay("hit");
animation.gotoAndStop("zooming");
} else {
resultText = ("YOU SPANKED THE MONKEY AT " + vNew) + " MILES PER HOUR";
driveSpeed = vNew / 9;
power = vNew / 1.5;
animation.gotoAndStop("zooming");
monkey.gotoAndPlay("hit");
}
monkeyUp = 0;
handRelease();
offScreenHand();
}
}
}
function getAccel() {
xOld = xNew;
xNew = hand._x;
vNew = (xOld - xNew) / fps.speedFactor;
}
stop();
monkey._alpha = 100;
hand._alpha = 100;
monkeyUp = 1;
setDefaults();
handState = "ready";
theListener = new Object();
theListener.onMouseDown = function () {
if ((bax.handState == "ready") || (bax.handState == "endAuto")) {
handHold();
bax.handState = "drag";
}
};
theListener.onMouseUp = function () {
handRelease();
if (bax.handState == "drag") {
resetHand();
}
};
Mouse.addListener(theListener);
this.createEmptyMovieClip("bax", 0);
bax.onEnterFrame = function () {
swayHand();
};
function ZX(root, mc, process_name, depth, total_time, file_root, bar, total_move_frame, hero, ene) {
var _local1 = this;
_local1.file_root = file_root;
_local1.root = root;
_local1.mc = mc;
_local1._this = _local1;
_local1.mc._this = _local1;
_local1.processor = process_name;
_local1.depth = depth;
_local1.gogo = undefined;
_local1.count = 0;
_local1.limitation = 20;
_local1.time_ticker = 0;
_local1.times = total_time;
_local1.bar = bar;
_local1.bar._yscale = 100;
_local1.hero = hero;
_local1.ene = ene;
_local1.dis = _local1.ene._y - _local1.hero._y;
_local1.go_speed = 60;
_local1.setCpu();
_local1.lock = false;
_local1.setTimer();
_local1.create_KeyObj();
_local1.frame_offest = total_move_frame;
_local1.root.game_over._alpha = 0;
}
stop();
ZX.prototype.exe = function () {
var _local1 = this;
_local1._this.visual();
_local1._this.timer();
_local1.setCpu();
};
ZX.prototype.cpu = function () {
var _local1 = this;
_local1.setCpu();
if (_local1.go_speed < 70) {
_local1.ene.nextFrame();
_local1.root.FassadeLi_l.nextFrame();
_local1.root.FassadeLi_r.nextFrame();
_local1.root.Boden_l.nextFrame();
_local1.root.Boden_r.nextFrame();
_local1.root.bottom.nextFrame();
_local1.lock = false;
} else {
_local1.go_speed = 70;
_local1.root.FassadeLi_l.stop();
_local1.root.FassadeLi_r.stop();
_local1.root.bottom.stop();
_local1.ene.gotoAndStop("stop");
_local1.lock = true;
}
};
ZX.prototype.visual = function () {
var _local1 = this;
_local1.root.bg_speed = 70 - _local1.go_speed;
if (_local1.bar._yscale > 0) {
if (_local1.lock == false) {
_local1.go_speed = _local1.go_speed + 0.5;
if (_local1.root.bar.body._yscale > 2) {
_local1.root.bar.body._yscale = _local1.root.bar.body._yscale - 0.7;
}
}
}
if ((_local1.hero._currentframe == 30) and (_local1.bar._yscale < 0)) {
_local1.over();
}
if (_local1.root.pink_mobil.hitTest(_local1.root.monkey)) {
_local1.root.bg_speed = 0;
_local1.root.monkey.gotoAndPlay("hit");
_local1.root.pink_mobil.gotoAndPlay("kick");
_local1.root.animation.gotoAndStop("zooming");
_local1.over();
}
};
ZX.prototype.onkeydown = function () {
var _local1 = this;
if (Key.getCode() == 90) {
zdown = true;
}
if (Key.getCode() == 88) {
xdown = true;
}
if ((zdown == true) and (xdown == true)) {
if (_local1.root.bar.body._yscale < 100) {
_local1.root.bar.body._yscale = _local1.root.bar.body._yscale + 5;
}
if (_local1.go_speed > 30) {
_local1.go_speed = _local1.go_speed - 4;
_local1.setCpu();
} else {
_local1.go_speed = 20;
_local1.setCpu();
}
zdown = (xdown = false);
}
};
ZX.prototype.onkeyup = function () {
};
ZX.prototype.timer = function () {
var _local1 = this;
if ((++_local1.time_ticker) > 30) {
_local1.times++;
_local1.time_ticker = 0;
}
_local1.root.timer_txt = _local1.times;
if (_local1.times < 0) {
_local1.root.timer_txt = 0;
_local1.over();
}
};
ZX.prototype.over = function () {
var _local1 = this;
removeListener(_local1.key_obj);
removeMovieClip(_local1.root[_local1.processor]);
_local1.root.gotoAndStop("game_over");
delete _local1.cpus;
};
ZX.prototype.setTimer = function () {
var _local1 = this;
_local1.root.createEmptyMovieClip(_local1.processor, _local1.depth);
_local1.root[_local1.processor]._this = _local1._this;
_local1.root[_local1.processor].onEnterFrame = _local1._this.exe;
};
ZX.prototype.setCpu = function () {
var _local1 = this;
_local1.cpus = new Object();
_local1.cpus._this = _local1;
_local1.cpus.interval = function () {
this._this.cpu();
};
setInterval(_local1.cpus, "interval", _local1.go_speed);
};
ZX.prototype.create_KeyObj = function () {
var _local1 = this;
_local1.key_obj = _local1.root[_local1.processor];
_local1.key_obj._this = _local1;
_local1.key_obj.onKeyDown = function () {
this._this.onkeydown();
};
_local1.key_obj.onKeyUp = function () {
this._this.onkeyup();
};
Key.addListener(_local1.key_obj);
};
if (life == undefined) {
life = 0;
}
bar_behind.setMask(bar);
cc = new ZX(this, hit, "pc_0", 0, 0, _parent, bar.body, 112, mobil, pink_mobil);
bar.body._yscale = 1;
Instance of Symbol 359 MovieClip "radar" in Symbol 702 MovieClip Frame 2
onClipEvent (load) {
trace("CURRENT JUMP = " + _parent.currentJump);
if (_parent.currentJump == 2) {
duplicateMovieClip (dummyHead1, "dummyHead2", 2);
this.dummyHead2._x = _parent.dummyHeadPositions[1];
this.dummyHead2.gotoAndStop("off1");
} else if (_parent.currentJump == 3) {
duplicateMovieClip (dummyHead1, "dummyHead2", 2);
this.dummyHead2._x = _parent.dummyHeadPositions[1];
this.dummyHead2.gotoAndStop("off1");
duplicateMovieClip (dummyHead1, "dummyHead3", 3);
this.dummyHead3._x = _parent.dummyHeadPositions[2];
this.dummyHead3.gotoAndStop("off2");
}
this.dummyHead1.swapDepths(3);
}
Instance of Symbol 507 MovieClip "hand" in Symbol 702 MovieClip Frame 2
onClipEvent (load) {
gotoAndStop (51);
_parent.startX = this._x;
_parent.startY = this._y;
_parent.xOld = this._x;
_parent.xNew = this._x;
_parent.vNew = 0;
}
Instance of Symbol 230 MovieClip "monkey" in Symbol 702 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop(1);
}
Instance of Symbol 509 MovieClip "fps" in Symbol 702 MovieClip Frame 2
onClipEvent (load) {
targetFPS = 30;
targetDelay = 1000 / targetFPS;
}
onClipEvent (enterFrame) {
currentTicks = getTimer();
frameDelay = currentTicks - oldTicks;
speedFactor = frameDelay / targetDelay;
if (speedFactor <= 0) {
speedFactor = 1;
}
oldTicks = currentTicks;
}
Symbol 702 MovieClip Frame 3
back_btn.onPress = function () {
gotoAndStop (2);
};
Instance of Symbol 689 MovieClip "floorTarget" in Symbol 702 MovieClip Frame 3
onClipEvent (load) {
var endPos = -1000;
var startPos = 760;
}
Instance of Symbol 220 MovieClip "elevationMeter" in Symbol 702 MovieClip Frame 3
/* no clip actions */
Symbol 704 MovieClip Frame 1
stop();
Symbol 705 MovieClip Frame 1
stop();
Symbol 711 Button
on (release) {
_root.gotoSection("home");
}
Instance of Symbol 705 MovieClip in Symbol 712 MovieClip Frame 1
onClipEvent (load) {
function moveEyes() {
a = eye._y - _ymouse;
b = eye._x - _xmouse;
angleA = Math.atan2(a, b);
degrees = angleA / (Math.pi / 180);
setProperty("eye", _rotation , degrees);
a2 = eye2._y - _ymouse;
b2 = eye2._x - _xmouse;
angleA2 = Math.atan2(a2, b2);
degrees2 = angleA2 / (Math.pi / 180);
setProperty("eye2", _rotation , degrees2);
}
}
onClipEvent (enterFrame) {
moveEyes();
}
Symbol 712 MovieClip Frame 49
stop();
Symbol 728 Button
on (release) {
getURL ("http://www.thelongestyard-dvd.co.uk/main.html", "_blank");
}