Frame 1
loaded = getBytesLoaded();
total = getBytesTotal();
pc = int((100 * loaded) / total);
stop();
Mouse.hide();
startDrag ("crosshair", true);
Instance of Symbol 163 MovieClip "crosshair" in Frame 1
onClipEvent (mouseDown) {
tellTarget ("_root.crosshair") {
gotoAndPlay (2);
};
}
Frame 207
stop();
Mouse.hide();
startDrag ("crosshair", true);
Instance of Symbol 163 MovieClip "crosshair" in Frame 207
onClipEvent (mouseDown) {
tellTarget ("_root.crosshair") {
gotoAndPlay (2);
};
}
Frame 208
stop();
stop();
Mouse.hide();
startDrag ("crosshair", true);
i = 1;
amount = 50;
while (amount > 0) {
duplicateMovieClip (follow, "follow" + i, i);
setProperty("follow" + i, _alpha , i * 2);
i++;
amount--;
}
Instance of Symbol 163 MovieClip "crosshair" in Frame 208
onClipEvent (mouseDown) {
tellTarget ("_root.crosshair") {
gotoAndPlay (2);
};
}
Frame 215
function swatchDrop() {
with (chip) {
if (car.hitTest(_x, _y, true)) {
carColor.setRGB(rgb);
}
_y = -20;
stopDrag();
}
}
stop();
carColor = new Color(car);
color1 = new Color(previewbox);
color2 = new Color(chip.chipfill);
this.onEnterFrame = function () {
i = 1;
while (i <= 3) {
this["color" + i].setRGB(rgb);
this[("hexc" + i) + "Text"].onKillFocus = function () {
hexMode = false;
};
this[("hexc" + i) + "Text"].onSetFocus = function () {
hexMode = true;
};
fader = this["fader" + i].knob;
if (dragging) {
this["c" + i] = fader._y;
this["hc" + i] = this["c" + i].toString(16);
} else if (hexMode) {
fader._y = parseInt("0x" + this["hc" + i]);
this["c" + i] = parseInt("0x" + this["hc" + i]);
} else {
fader._y = this["c" + i];
this["hc" + i] = Number(this["c" + i]).toString(16);
if (this["c" + i] > 255) {
this["c" + i] = 255;
}
}
i++;
}
rgb = ((c1 << 16) | (c2 << 8)) | c3;
};
previewBox.onRelease = swatchDrop;
previewBox.onReleaseOutside = swatchDrop;
apply.onRelease = function () {
carColor.setRGB(rgb);
};
swatch1.onRelease = function () {
c1 = 127;
c2 = 0;
c3 = 97;
};
swatch2.onRelease = function () {
c1 = 130;
c2 = 0;
c3 = 0;
};
swatch3.onRelease = function () {
c1 = 10;
c2 = 106;
c3 = 0;
};
swatch4.onRelease = function () {
c1 = 255;
c2 = 236;
c3 = 0;
};
swatch5.onRelease = function () {
c1 = 0;
c2 = 51;
c3 = 102;
};
swatch6.onRelease = function () {
c1 = 255;
c2 = 153;
c3 = 0;
};
stop();
Mouse.hide();
startDrag ("crosshair", true);
Instance of Symbol 163 MovieClip "crosshair" in Frame 215
onClipEvent (mouseDown) {
tellTarget ("_root.crosshair") {
gotoAndPlay (2);
};
}
Instance of Symbol 562 MovieClip in Frame 241
onClipEvent (enterFrame) {
function shake() {
shakex = random(20) - 10;
shakey = random(20) - 10;
shakex = shakex * 0.7;
shakey = shakey * 0.7;
if ((shakex < 1) && (shakey < 1)) {
_parent._x = 0;
_parent._y = 0;
}
}
setInterval(shake, 100);
_parent._x = _parent._x - shakex;
_parent._y = _parent._y - shakey;
}
Frame 242
stop();
Mouse.hide();
startDrag ("crosshair", true);
Frame 243
stop();
Mouse.hide();
startDrag ("scope", true);
Frame 244
stop();
Mouse.hide();
startDrag ("crosshair", true);
Frame 253
stop();
Mouse.hide();
startDrag ("scope", true);
Frame 254
stop();
Mouse.hide();
startDrag ("crosshair", true);
Frame 255
stop();
Mouse.hide();
startDrag ("scope", true);
Frame 256
stop();
Mouse.hide();
startDrag ("crosshair", true);
Frame 266
_root.health = 10;
Frame 267
_root.health = 15;
Frame 268
_root.health = 50;
Frame 269
_root.health = 10;
Frame 271
_root.health = 30;
Frame 272
_root.health = 50;
Frame 273
_root.health = 10;
Frame 274
_root.health = 20;
Frame 275
_root.health = 35;
Frame 290
stop();
stop();
Mouse.hide();
startDrag ("crosshair", true);
Instance of Symbol 163 MovieClip "crosshair" in Frame 290
onClipEvent (mouseDown) {
tellTarget ("_root.crosshair") {
gotoAndPlay (2);
};
}
Frame 291
function swatchDrop() {
with (chip) {
if (car.hitTest(_x, _y, true)) {
carColor.setRGB(rgb);
}
_y = -20;
stopDrag();
}
}
stop();
_root.onEnterFrame = function () {
myDate = new Date();
hourHand._rotation = (myDate.getHours() * 30) + (myDate.getMinutes() / 2);
minuteHand._rotation = (myDate.getMinutes() * 6) + (myDate.getSeconds() / 10);
secondHand._rotation = myDate.getSeconds() * 6;
};
carColor = new Color(car);
color1 = new Color(previewbox);
color2 = new Color(chip.chipfill);
this.onEnterFrame = function () {
i = 1;
while (i <= 3) {
this["color" + i].setRGB(rgb);
this[("hexc" + i) + "Text"].onKillFocus = function () {
hexMode = false;
};
this[("hexc" + i) + "Text"].onSetFocus = function () {
hexMode = true;
};
fader = this["fader" + i].knob;
if (dragging) {
this["c" + i] = fader._y;
this["hc" + i] = this["c" + i].toString(16);
} else if (hexMode) {
fader._y = parseInt("0x" + this["hc" + i]);
this["c" + i] = parseInt("0x" + this["hc" + i]);
} else {
fader._y = this["c" + i];
this["hc" + i] = Number(this["c" + i]).toString(16);
if (this["c" + i] > 255) {
this["c" + i] = 255;
}
}
i++;
}
rgb = ((c1 << 16) | (c2 << 8)) | c3;
};
previewBox.onRelease = swatchDrop;
previewBox.onReleaseOutside = swatchDrop;
apply.onRelease = function () {
carColor.setRGB(rgb);
};
swatch1.onRelease = function () {
c1 = 127;
c2 = 0;
c3 = 97;
};
swatch2.onRelease = function () {
c1 = 130;
c2 = 0;
c3 = 0;
};
swatch3.onRelease = function () {
c1 = 10;
c2 = 106;
c3 = 0;
};
swatch4.onRelease = function () {
c1 = 255;
c2 = 236;
c3 = 0;
};
swatch5.onRelease = function () {
c1 = 0;
c2 = 51;
c3 = 102;
};
swatch6.onRelease = function () {
c1 = 255;
c2 = 153;
c3 = 0;
};
stop();
Mouse.hide();
startDrag ("crosshair", true);
Instance of Symbol 163 MovieClip "crosshair" in Frame 291
onClipEvent (mouseDown) {
tellTarget ("_root.crosshair") {
gotoAndPlay (2);
};
}
Frame 299
stop();
stop();
Mouse.hide();
startDrag ("crosshair", true);
i = 1;
amount = 50;
while (amount > 0) {
duplicateMovieClip (follow, "follow" + i, i);
setProperty("follow" + i, _alpha , i * 2);
i++;
amount--;
}
Instance of Symbol 163 MovieClip "crosshair" in Frame 299
onClipEvent (mouseDown) {
tellTarget ("_root.crosshair") {
gotoAndPlay (2);
};
}
Symbol 3 MovieClip Frame 1
var component = _parent;
component.registerSkinElement(track_mc, "scrollTrack");
Symbol 4 MovieClip [FScrollBarSymbol] Frame 1
#initclip 5
FScrollBarClass = function () {
if (this._height == 4) {
return(undefined);
}
this.init();
this.minPos = (this.maxPos = (this.pageSize = (this.largeScroll = 0)));
this.smallScroll = 1;
this.width = (this.horizontal ? (this._width) : (this._height));
this._xscale = (this._yscale = 100);
this.setScrollPosition(0);
this.tabEnabled = false;
if (this._targetInstanceName.length > 0) {
this.setScrollTarget(this._parent[this._targetInstanceName]);
}
this.tabChildren = false;
this.setSize(this.width);
};
FScrollBarClass.prototype = new FUIComponentClass();
FScrollBarClass.prototype.setHorizontal = function (flag) {
if (this.horizontal && (!flag)) {
this._xscale = 100;
this._rotation = 0;
} else if (flag && (!this.horizontal)) {
this._xscale = -100;
this._rotation = -90;
}
this.horizontal = flag;
};
FScrollBarClass.prototype.setScrollProperties = function (pSize, mnPos, mxPos) {
if (!this.enable) {
return(undefined);
}
this.pageSize = pSize;
this.minPos = Math.max(mnPos, 0);
this.maxPos = Math.max(mxPos, 0);
this.scrollPosition = Math.max(this.minPos, this.scrollPosition);
this.scrollPosition = Math.min(this.maxPos, this.scrollPosition);
if ((this.maxPos - this.minPos) <= 0) {
this.scrollThumb_mc.removeMovieClip();
this.upArrow_mc.gotoAndStop(3);
this.downArrow_mc.gotoAndStop(3);
this.downArrow_mc.onPress = (this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = null));
this.upArrow_mc.onPress = (this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = null));
this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onRelease = null);
this.scrollTrack_mc.onDragOut = (this.scrollTrack_mc.onRollOut = null);
this.scrollTrack_mc.useHandCursor = false;
} else {
var _local2 = this.getScrollPosition();
this.upArrow_mc.gotoAndStop(1);
this.downArrow_mc.gotoAndStop(1);
this.upArrow_mc.onPress = (this.upArrow_mc.onDragOver = this.startUpScroller);
this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = this.stopScrolling);
this.downArrow_mc.onPress = (this.downArrow_mc.onDragOver = this.startDownScroller);
this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = this.stopScrolling);
this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onDragOver = this.startTrackScroller);
this.scrollTrack_mc.onRelease = this.stopScrolling;
this.scrollTrack_mc.onDragOut = this.stopScrolling;
this.scrollTrack_mc.onRollOut = this.stopScrolling;
this.scrollTrack_mc.useHandCursor = false;
this.attachMovie("ScrollThumb", "scrollThumb_mc", 3);
this.scrollThumb_mc._x = 0;
this.scrollThumb_mc._y = this.upArrow_mc._height;
this.scrollThumb_mc.onPress = this.startDragThumb;
this.scrollThumb_mc.controller = this;
this.scrollThumb_mc.onRelease = (this.scrollThumb_mc.onReleaseOutside = this.stopDragThumb);
this.scrollThumb_mc.useHandCursor = false;
this.thumbHeight = (this.pageSize / ((this.maxPos - this.minPos) + this.pageSize)) * this.trackSize;
this.thumbMid_mc = this.scrollThumb_mc.mc_sliderMid;
this.thumbTop_mc = this.scrollThumb_mc.mc_sliderTop;
this.thumbBot_mc = this.scrollThumb_mc.mc_sliderBot;
this.thumbHeight = Math.max(this.thumbHeight, 6);
this.midHeight = (this.thumbHeight - this.thumbTop_mc._height) - this.thumbBot_mc._height;
this.thumbMid_mc._yScale = (this.midHeight * 100) / this.thumbMid_mc._height;
this.thumbMid_mc._y = this.thumbTop_mc._height;
this.thumbBot_mc._y = this.thumbTop_mc._height + this.midHeight;
this.scrollTop = this.scrollThumb_mc._y;
this.trackHeight = this.trackSize - this.thumbHeight;
this.scrollBot = this.trackHeight + this.scrollTop;
_local2 = Math.min(_local2, this.maxPos);
this.setScrollPosition(Math.max(_local2, this.minPos));
}
};
FScrollBarClass.prototype.getScrollPosition = function () {
return(this.scrollPosition);
};
FScrollBarClass.prototype.setScrollPosition = function (pos) {
this.scrollPosition = pos;
if (this.scrollThumb_mc != undefined) {
pos = Math.min(pos, this.maxPos);
pos = Math.max(pos, this.minPos);
}
this.scrollThumb_mc._y = (((pos - this.minPos) * this.trackHeight) / (this.maxPos - this.minPos)) + this.scrollTop;
this.executeCallBack();
};
FScrollBarClass.prototype.setLargeScroll = function (lScroll) {
this.largeScroll = lScroll;
};
FScrollBarClass.prototype.setSmallScroll = function (sScroll) {
this.smallScroll = sScroll;
};
FScrollBarClass.prototype.setEnabled = function (enabledFlag) {
var _local3 = this.enable;
if (enabledFlag && (!_local3)) {
this.enable = enabledFlag;
if (this.textField != undefined) {
this.setScrollTarget(this.textField);
} else {
this.setScrollProperties(this.pageSize, this.cachedMinPos, this.cachedMaxPos);
this.setScrollPosition(this.cachedPos);
}
this.clickFilter = undefined;
} else if ((!enabledFlag) && (_local3)) {
this.textField.removeListener(this);
this.cachedPos = this.getScrollPosition();
this.cachedMinPos = this.minPos;
this.cachedMaxPos = this.maxPos;
if (this.clickFilter == undefined) {
this.setScrollProperties(this.pageSize, 0, 0);
} else {
this.clickFilter = true;
}
this.enable = enabledFlag;
}
};
FScrollBarClass.prototype.setSize = function (hgt) {
if (this._height == 1) {
return(undefined);
}
this.width = hgt;
this.scrollTrack_mc._yscale = 100;
this.scrollTrack_mc._yscale = (100 * this.width) / this.scrollTrack_mc._height;
if (this.upArrow_mc == undefined) {
this.attachMovie("UpArrow", "upArrow_mc", 1);
this.attachMovie("DownArrow", "downArrow_mc", 2);
this.downArrow_mc.controller = (this.upArrow_mc.controller = this);
this.upArrow_mc.useHandCursor = (this.downArrow_mc.useHandCursor = false);
this.upArrow_mc._x = (this.upArrow_mc._y = 0);
this.downArrow_mc._x = 0;
}
this.scrollTrack_mc.controller = this;
this.downArrow_mc._y = this.width - this.downArrow_mc._height;
this.trackSize = this.width - (2 * this.downArrow_mc._height);
if (this.textField != undefined) {
this.onTextChanged();
} else {
this.setScrollProperties(this.pageSize, this.minPos, this.maxPos);
}
};
FScrollBarClass.prototype.scrollIt = function (inc, mode) {
var _local3 = this.smallScroll;
if (inc != "one") {
_local3 = ((this.largeScroll == 0) ? (this.pageSize) : (this.largeScroll));
}
var _local2 = this.getScrollPosition() + (mode * _local3);
if (_local2 > this.maxPos) {
_local2 = this.maxPos;
} else if (_local2 < this.minPos) {
_local2 = this.minPos;
}
this.setScrollPosition(_local2);
};
FScrollBarClass.prototype.startDragThumb = function () {
this.lastY = this._ymouse;
this.onMouseMove = this.controller.dragThumb;
};
FScrollBarClass.prototype.dragThumb = function () {
this.scrollMove = this._ymouse - this.lastY;
this.scrollMove = this.scrollMove + this._y;
if (this.scrollMove < this.controller.scrollTop) {
this.scrollMove = this.controller.scrollTop;
} else if (this.scrollMove > this.controller.scrollBot) {
this.scrollMove = this.controller.scrollBot;
}
this._y = this.scrollMove;
var _local2 = this.controller;
_local2.scrollPosition = Math.round(((_local2.maxPos - _local2.minPos) * (this._y - _local2.scrollTop)) / _local2.trackHeight) + _local2.minPos;
this.controller.isScrolling = true;
updateAfterEvent();
this.controller.executeCallBack();
};
FScrollBarClass.prototype.stopDragThumb = function () {
this.controller.isScrolling = false;
this.onMouseMove = null;
};
FScrollBarClass.prototype.startTrackScroller = function () {
this.controller.trackScroller();
this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "page", -1);
};
FScrollBarClass.prototype.scrollInterval = function (inc, mode) {
clearInterval(this.scrolling);
if (inc == "page") {
this.trackScroller();
} else {
this.scrollIt(inc, mode);
}
this.scrolling = setInterval(this, "scrollInterval", 35, inc, mode);
};
FScrollBarClass.prototype.trackScroller = function () {
if ((this.scrollThumb_mc._y + this.thumbHeight) < this._ymouse) {
this.scrollIt("page", 1);
} else if (this.scrollThumb_mc._y > this._ymouse) {
this.scrollIt("page", -1);
}
};
FScrollBarClass.prototype.stopScrolling = function () {
this.controller.downArrow_mc.gotoAndStop(1);
this.controller.upArrow_mc.gotoAndStop(1);
clearInterval(this.controller.scrolling);
};
FScrollBarClass.prototype.startUpScroller = function () {
this.controller.upArrow_mc.gotoAndStop(2);
this.controller.scrollIt("one", -1);
this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", -1);
};
FScrollBarClass.prototype.startDownScroller = function () {
this.controller.downArrow_mc.gotoAndStop(2);
this.controller.scrollIt("one", 1);
this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", 1);
};
FScrollBarClass.prototype.setScrollTarget = function (tF) {
if (tF == undefined) {
this.textField.removeListener(this);
delete this.textField[(this.horizontal ? "hScroller" : "vScroller")];
if ((this.textField.hScroller != undefined) && (this.textField.vScroller != undefined)) {
this.textField.unwatch("text");
this.textField.unwatch("htmltext");
}
}
this.textField = undefined;
if (!(tF instanceof TextField)) {
return(undefined);
}
this.textField = tF;
this.textField[(this.horizontal ? "hScroller" : "vScroller")] = this;
this.onTextChanged();
this.onChanged = function () {
this.onTextChanged();
};
this.onScroller = function () {
if (!this.isScrolling) {
if (!this.horizontal) {
this.setScrollPosition(this.textField.scroll);
} else {
this.setScrollPosition(this.textField.hscroll);
}
}
};
this.textField.addListener(this);
this.textField.watch("text", this.callback);
this.textField.watch("htmlText", this.callback);
};
FScrollBarClass.prototype.callback = function (prop, oldVal, newVal) {
clearInterval(this.hScroller.synchScroll);
clearInterval(this.vScroller.synchScroll);
this.hScroller.synchScroll = setInterval(this.hScroller, "onTextChanged", 50);
this.vScroller.synchScroll = setInterval(this.vScroller, "onTextChanged", 50);
return(newVal);
};
FScrollBarClass.prototype.onTextChanged = function () {
if ((!this.enable) || (this.textField == undefined)) {
return(undefined);
}
clearInterval(this.synchScroll);
if (this.horizontal) {
var _local3 = this.textField.hscroll;
this.setScrollProperties(this.textField._width, 0, this.textField.maxhscroll);
this.setScrollPosition(Math.min(_local3, this.textField.maxhscroll));
} else {
var _local3 = this.textField.scroll;
var _local2 = this.textField.bottomScroll - this.textField.scroll;
this.setScrollProperties(_local2, 1, this.textField.maxscroll);
this.setScrollPosition(Math.min(_local3, this.textField.maxscroll));
}
};
FScrollBarClass.prototype.executeCallBack = function () {
if (this.textField == undefined) {
super.executeCallBack();
} else if (this.horizontal) {
this.textField.hscroll = this.getScrollPosition();
} else {
this.textField.scroll = this.getScrollPosition();
}
};
Object.registerClass("FScrollBarSymbol", FScrollBarClass);
#endinitclip
Symbol 8 MovieClip [FBoundingBoxSymbol] Frame 1
var component = _parent;
component.registerSkinElement(boundingBox, "background");
stop();
Symbol 8 MovieClip [FBoundingBoxSymbol] Frame 2
component.registerSkinElement(boundingBox2, "backgroundDisabled");
stop();
Symbol 12 MovieClip [FScrollPaneSymbol] Frame 1
#initclip 7
function FScrollPaneClass() {
function boolToString(str) {
if (str == "false") {
return(false);
}
if (str == "true") {
return(true);
}
return(str);
}
this.init();
this.width = this._width;
this.height = this._height;
this._xscale = (this._yscale = 100);
this.contentWidth = (this.contentHeight = 0);
if (this.hScroll == undefined) {
this.hScroll = (this.vScroll = "auto");
this.dragContent = false;
}
this.offset = new Object();
this.vScroll = boolToString(this.vScroll);
this.hScroll = boolToString(this.hScroll);
this.attachMovie("FScrollBarSymbol", "hScrollBar_mc", 100, {hostStyle:this.styleTable});
this.hScrollBar_mc.setHorizontal(true);
this.hScrollBar_mc.setSmallScroll(5);
this.hScrollBar_mc.setChangeHandler("onScroll", this);
this.attachMovie("FScrollBarSymbol", "vScrollBar_mc", 99, {hostStyle:this.styleTable});
this.vScrollBar_mc.setSmallScroll(5);
this.vScrollBar_mc.setChangeHandler("onScroll", this);
this.setSize(this.width, this.height);
if (this.scrollContent != "") {
this.setScrollContent(this.scrollContent);
}
this.setDragContent(this.dragContent);
}
FScrollPaneClass.prototype = new FUIComponentClass();
Object.registerClass("FScrollPaneSymbol", FScrollPaneClass);
FScrollPaneClass.prototype.getScrollContent = function () {
return(this.content_mc);
};
FScrollPaneClass.prototype.getPaneWidth = function () {
return(this.width);
};
FScrollPaneClass.prototype.getPaneHeight = function () {
return(this.height);
};
FScrollPaneClass.prototype.getScrollPosition = function () {
var _local3 = ((this.hScrollBar_mc == undefined) ? 0 : (this.hScrollBar_mc.getScrollPosition()));
var _local2 = ((this.vScrollBar_mc == undefined) ? 0 : (this.vScrollBar_mc.getScrollPosition()));
return({x:_local3, y:_local2});
};
FScrollPaneClass.prototype.setScrollContent = function (target) {
this.offset.x = 0;
this.offset.y = 0;
if (this.content_mc != undefined) {
if (target != this.content_mc) {
this.content_mc._visible = false;
this.content_mc.removeMovieClip();
this.content_mc.unloadMovie();
}
}
if (typeof(target) == "string") {
this.attachMovie(target, "tmp_mc", 3);
this.content_mc = this.tmp_mc;
} else if (target == undefined) {
this.content_mc.unloadMovie();
} else {
this.content_mc = target;
}
this.localToGlobal(this.offset);
this.content_mc._parent.globalToLocal(this.offset);
this.content_mc._x = this.offset.x;
this.content_mc._y = this.offset.y;
var _local3 = this.content_mc.getBounds(this);
this.offset.x = -_local3.xMin;
this.offset.y = -_local3.yMin;
this.localToGlobal(this.offset);
this.content_mc._parent.globalToLocal(this.offset);
this.content_mc._x = this.offset.x;
this.content_mc._y = this.offset.y;
this.contentWidth = this.content_mc._width;
this.contentHeight = this.content_mc._height;
this.content_mc.setMask(this.mask_mc);
this.setSize(this.width, this.height);
};
FScrollPaneClass.prototype.setSize = function (w, h) {
if (((arguments.length < 2) || (isNaN(w))) || (isNaN(h))) {
return(undefined);
}
super.setSize(w, h);
this.width = Math.max(w, 60);
this.height = Math.max(h, 60);
this.boundingBox_mc._xscale = 100;
this.boundingBox_mc._yscale = 100;
this.boundingBox_mc._width = this.width;
this.boundingBox_mc._height = this.height;
this.setHandV();
this.initScrollBars();
if (this.mask_mc == undefined) {
this.attachMovie("FBoundingBoxSymbol", "mask_mc", 3000);
}
this.mask_mc._xscale = 100;
this.mask_mc._yscale = 100;
this.mask_mc._width = this.hWidth;
this.mask_mc._height = this.vHeight;
this.mask_mc._alpha = 0;
};
FScrollPaneClass.prototype.setScrollPosition = function (x, y) {
x = Math.max(this.hScrollBar_mc.minPos, x);
x = Math.min(this.hScrollBar_mc.maxPos, x);
y = Math.max(this.vScrollBar_mc.minPos, y);
y = Math.min(this.vScrollBar_mc.maxPos, y);
this.hScrollBar_mc.setScrollPosition(x);
this.vScrollBar_mc.setScrollPosition(y);
};
FScrollPaneClass.prototype.refreshPane = function () {
this.setScrollContent(this.content_mc);
};
FScrollPaneClass.prototype.loadScrollContent = function (url, handler, location) {
this.content_mc.removeMovieClip();
this.content_mc.unloadMovie();
this.content_mc._visible = 0;
this.loadContent.duplicateMovieClip("loadTemp", 3);
this.dupeFlag = true;
this.contentLoaded = function () {
this.loadReady = false;
this.content_mc = this.loadTemp;
this.refreshPane();
this.executeCallBack();
};
this.setChangeHandler(handler, location);
this.loadTemp.loadMovie(url);
};
FScrollPaneClass.prototype.setHScroll = function (prop) {
this.hScroll = prop;
this.setSize(this.width, this.height);
};
FScrollPaneClass.prototype.setVScroll = function (prop) {
this.vScroll = prop;
this.setSize(this.width, this.height);
};
FScrollPaneClass.prototype.setDragContent = function (dragFlag) {
if (dragFlag) {
this.boundingBox_mc.useHandCursor = true;
this.boundingBox_mc.onPress = function () {
this._parent.startDragLoop();
};
this.boundingBox_mc.tabEnabled = false;
this.boundingBox_mc.onRelease = (this.boundingBox_mc.onReleaseOutside = function () {
this._parent.pressFocus();
this._parent.onMouseMove = null;
});
} else {
delete this.boundingBox_mc.onPress;
this.boundingBox_mc.useHandCursor = false;
}
};
FScrollPaneClass.prototype.setSmallScroll = function (x, y) {
this.hScrollBar_mc.setSmallScroll(x);
this.vScrollBar_mc.setSmallScroll(y);
};
FScrollPaneClass.prototype.setHandV = function () {
if ((((this.contentHeight - this.height) > 2) && (this.vScroll != false)) || (this.vScroll == true)) {
this.hWidth = this.width - this.vScrollBar_mc._width;
} else {
this.hWidth = this.width;
}
if ((((this.contentWidth - this.width) > 2) && (this.hScroll != false)) || (this.hScroll == true)) {
this.vHeight = this.height - this.hScrollBar_mc._height;
} else {
this.vHeight = this.height;
}
};
FScrollPaneClass.prototype.startDragLoop = function () {
this.tabFocused = false;
this.myOnSetFocus();
this.lastX = this._xmouse;
this.lastY = this._ymouse;
this.onMouseMove = function () {
this.scrollXMove = this.lastX - this._xmouse;
this.scrollYMove = this.lastY - this._ymouse;
this.scrollXMove = this.scrollXMove + this.hScrollBar_mc.getScrollPosition();
this.scrollYMove = this.scrollYMove + this.vScrollBar_mc.getScrollPosition();
this.setScrollPosition(this.scrollXMove, this.scrollYMove);
if ((this.scrollXMove < this.hScrollBar_mc.maxPos) && (this.scrollXMove > this.hScrollBar_mc.minPos)) {
this.lastX = this._xmouse;
}
if ((this.scrollYMove < this.vScrollBar_mc.maxPos) && (this.scrollYMove > this.vScrollBar_mc.minPos)) {
this.lastY = this._ymouse;
}
this.updateAfterEvent();
};
};
FScrollPaneClass.prototype.initScrollBars = function () {
this.hScrollBar_mc._y = this.height - this.hScrollBar_mc._height;
this.hScrollBar_mc.setSize(this.hWidth);
this.hScrollBar_mc.setScrollProperties(this.hWidth, 0, this.contentWidth - this.hWidth);
this.vScrollBar_mc._visible = ((this.hWidth == this.width) ? false : true);
this.vScrollBar_mc._x = this.width - this.vScrollBar_mc._width;
this.vScrollBar_mc.setSize(this.vHeight);
this.vScrollBar_mc.setScrollProperties(this.vHeight, 0, this.contentHeight - this.vHeight);
this.hScrollBar_mc._visible = ((this.vHeight == this.height) ? false : true);
};
FScrollPaneClass.prototype.onScroll = function (component) {
var _local2 = component.getScrollPosition();
var _local4 = ((component._name == "hScrollBar_mc") ? "x" : "y");
if (component._name == "hScrollBar_mc") {
this.content_mc._x = (-_local2) + this.offset.x;
} else {
this.content_mc._y = (-_local2) + this.offset.y;
}
};
FScrollPaneClass.prototype.myOnKeyDown = function () {
var _local3 = this.hScrollBar_mc.getScrollPosition();
var _local2 = this.vScrollBar_mc.getScrollPosition();
if (this.hScrollBar_mc.maxPos > this.hScrollBar_mc.minPos) {
if (Key.isDown(37)) {
this.setScrollPosition(_local3 - 3, _local2);
} else if (Key.isDown(39)) {
this.setScrollPosition(_local3 + 3, _local2);
}
}
if (this.vScrollBar_mc.maxPos > this.vScrollBar_mc.minPos) {
if (Key.isDown(38)) {
this.setScrollPosition(_local3, _local2 - 3);
} else if (Key.isDown(40)) {
this.setScrollPosition(_local3, _local2 + 3);
} else if (Key.isDown(34)) {
this.setScrollPosition(_local3, _local2 + this.vScrollBar_mc.pageSize);
} else if (Key.isDown(33)) {
this.setScrollPosition(_local3, _local2 - this.vScrollBar_mc.pageSize);
}
}
};
#endinitclip
this.deadPreview._visible = false;
Instance of Symbol 4 MovieClip [FScrollBarSymbol] "scrollBarAsset" in Symbol 12 MovieClip [FScrollPaneSymbol] Frame 1
//component parameters
onClipEvent (construct) {
_targetInstanceName = "";
horizontal = false;
}
Instance of Symbol 9 MovieClip "loadContent" in Symbol 12 MovieClip [FScrollPaneSymbol] Frame 1
onClipEvent (load) {
if (this._parent.loadReady) {
this._parent.contentLoaded();
delete this._parent.loadReady;
} else if (this._name != "loadContent") {
this._parent.loadReady = true;
}
}
Symbol 15 MovieClip [FHighlightSymbol] Frame 1
var component = _parent.controller;
component.registerSkinElement(highlight_mc, "selection");
stop();
Symbol 15 MovieClip [FHighlightSymbol] Frame 2
component.registerSkinElement(highlight_mc2, "selectionDisabled");
stop();
Symbol 15 MovieClip [FHighlightSymbol] Frame 3
component.registerSkinElement(highlight_mc3, "selectionUnfocused");
stop();
Symbol 18 MovieClip [FLabelSymbol] Frame 1
#initclip 1
_global.FLabelClass = function () {
if (this.hostComponent == undefined) {
this.hostComponent = ((this._parent.controller == undefined) ? (this._parent) : (this._parent.controller));
}
if (this.customTextStyle == undefined) {
if (this.hostComponent.textStyle == undefined) {
this.hostComponent.textStyle = new TextFormat();
}
this.textStyle = this.hostComponent.textStyle;
this.enable = true;
}
};
FLabelClass.prototype = new MovieClip();
Object.registerClass("FLabelSymbol", FLabelClass);
FLabelClass.prototype.setLabel = function (label) {
var _local2 = this.hostComponent.styleTable.embedFonts.value;
if (_local2 != undefined) {
this.labelField.embedFonts = _local2;
}
this.labelField.setNewTextFormat(this.textStyle);
this.labelField.text = label;
this.labelField._height = this.labelField.textHeight + 2;
};
FLabelClass.prototype.setSize = function (width) {
this.labelField._width = width;
};
FLabelClass.prototype.setEnabled = function (enable) {
this.enable = enable;
var _local2 = this.hostComponent.styleTable[(enable ? "textColor" : "textDisabled")].value;
if (_local2 == undefined) {
_local2 = (enable ? 0 : 8947848);
}
this.setColor(_local2);
};
FLabelClass.prototype.getLabel = function () {
return(this.labelField.text);
};
FLabelClass.prototype.setColor = function (col) {
this.labelField.textColor = col;
};
#endinitclip
Symbol 19 MovieClip [FListItemSymbol] Frame 1
#initclip 9
function FListItemClass() {
this.init();
}
FListItemClass.prototype = new FSelectableItemClass();
Object.registerClass("FListItemSymbol", FListItemClass);
#endinitclip
Symbol 20 MovieClip [DataProviderSymbol] Frame 1
#initclip 2
_global.DataProviderClass = function () {
this.init();
};
DataProviderClass.prototype.init = function () {
this.items = new Array();
this.uniqueID = 0;
this.views = new Array();
};
DataProviderClass.prototype.addView = function (viewRef) {
this.views.push(viewRef);
var _local2 = {event:"updateAll"};
viewRef.modelChanged(_local2);
};
DataProviderClass.prototype.addItemAt = function (index, value) {
if (index < this.getLength()) {
this.items.splice(index, 0, "tmp");
}
this.items[index] = new Object();
if (typeof(value) == "object") {
this.items[index] = value;
} else {
this.items[index].label = value;
}
this.items[index].__ID__ = this.uniqueID++;
var _local4 = {event:"addRows", firstRow:index, lastRow:index};
this.updateViews(_local4);
};
DataProviderClass.prototype.addItem = function (value) {
this.addItemAt(this.getLength(), value);
};
DataProviderClass.prototype.removeItemAt = function (index) {
var _local4 = this.items[index];
this.items.splice(index, 1);
var _local3 = {event:"deleteRows", firstRow:index, lastRow:index};
this.updateViews(_local3);
return(_local4);
};
DataProviderClass.prototype.removeAll = function () {
this.items = new Array();
this.updateViews({event:"deleteRows", firstRow:0, lastRow:this.getLength() - 1});
};
DataProviderClass.prototype.replaceItemAt = function (index, itemObj) {
if ((index < 0) || (index >= this.getLength())) {
return(undefined);
}
var _local4 = this.getItemID(index);
if (typeof(itemObj) == "object") {
this.items[index] = itemObj;
} else {
this.items[index].label = itemObj;
}
this.items[index].__ID__ = _local4;
this.updateViews({event:"updateRows", firstRow:index, lastRow:index});
};
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) {
this.items.sortOn(fieldName);
if (order == "DESC") {
this.items.reverse();
}
this.updateViews({event:"sort"});
};
DataProviderClass.prototype.updateViews = function (eventObj) {
var _local2 = 0;
while (_local2 < this.views.length) {
this.views[_local2].modelChanged(eventObj);
_local2++;
}
};
#endinitclip
Symbol 21 MovieClip [FSelectableItemSymbol] Frame 1
#initclip 8
function FSelectableItemClass() {
this.init();
}
FSelectableItemClass.prototype = new FUIComponentClass();
FSelectableItemClass.prototype.init = function () {
if (this._name != "itemAsset") {
this.highlighted = false;
this.layoutContent(100);
}
};
FSelectableItemClass.prototype.drawItem = function (itmObj, selected) {
this.displayContent(itmObj, selected);
if ((this.highlighted != selected) || ((this.controller.focused != this.oldFocus) && (selected))) {
this.setHighlighted(selected);
}
this.oldFocus = this.controller.focused;
};
FSelectableItemClass.prototype.setSize = function (width, height) {
var _local2 = -16384;
this.width = width;
this.layoutContent(width);
this.attachMovie("FHighlightSymbol", "highlight_mc", _local2);
this.highlight_mc._x = 0.5;
this.highlight_mc._width = width - 0.5;
this.highlight_mc._height = height;
this.highlight_mc.controller = this;
this.highlight_mc._alpha = 0;
this.highlight_mc.trackAsMenu = true;
this.highlight_mc.onPress = function () {
if (this.controller.enable) {
this.controller.controller.clickHandler(this.controller.itemNum);
}
};
this.highlight_mc.onDragOver = function () {
if (this.controller.controller.focused) {
this.onPress();
}
};
this.highlight_mc.useHandCursor = false;
this.highlight_mc.trackAsMenu = true;
};
FSelectableItemClass.prototype.setEnabled = function (enabledFlag) {
this.enable = enabledFlag;
this.fLabel_mc.setEnabled(enabledFlag);
this.highlight_mc.gotoAndStop((enabledFlag ? "unfocused" : "disabled"));
};
FSelectableItemClass.prototype.layoutContent = function (width) {
this.attachMovie("FLabelSymbol", "fLabel_mc", 2, {hostComponent:this.controller});
this.fLabel_mc._x = 2;
this.fLabel_mc._y = 0;
this.fLabel_mc.setSize(width - 2);
this.fLabel_mc.labelField.selectable = false;
};
FSelectableItemClass.prototype.displayContent = function (itmObj, selected) {
var _local2 = "";
if (itmObj.label != undefined) {
_local2 = itmObj.label;
} else if (typeof(itmObj) == "object") {
for (var _local4 in itmObj) {
if (_local4 != "__ID__") {
_local2 = (itmObj[_local4] + ", ") + _local2;
}
}
_local2 = _local2.substring(0, _local2.length - 2);
} else {
_local2 = itmObj;
}
if (this.fLabel_mc.labelField.text != _local2) {
this.fLabel_mc.setLabel(_local2);
}
var _local5 = (selected ? (this.controller.styleTable.textSelected.value) : (this.controller.styleTable.textColor.value));
if (_local5 == undefined) {
_local5 = (selected ? 16777215 : 0);
}
this.fLabel_mc.setColor(_local5);
};
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) {
fade = this.controller.styleTable.fadeRate.value;
if (((fade == undefined) || (fade == 0)) || (!flag)) {
this.highlight_mc._alpha = (flag ? 100 : 0);
delete this.onEnterFrame;
} else {
this.fadeN = fade;
this.fadeX = 1;
this.highLight_mc._alpha = 20;
this.onEnterFrame = function () {
this.highLight_mc._alpha = (60 * Math.sqrt((this.fadeX++) / this.fadeN)) + 40;
if (this.fadeX > this.fadeN) {
delete this.onEnterFrame;
}
};
}
this.highlighted = flag;
};
#endinitclip
Symbol 22 MovieClip [FSelectableListSymbol] Frame 1
#initclip 4
function FSelectableListClass() {
this.init();
}
FSelectableListClass.prototype = new FUIComponentClass();
FSelectableListClass.prototype.init = function () {
super.init();
this.enable = true;
this.selected = new Array();
this.topDisplayed = (this.numDisplayed = 0);
this.lastSelected = 0;
this.tabChildren = false;
if (this._name != undefined) {
this.dataProvider = new DataProviderClass();
this.dataProvider.addView(this);
}
};
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) {
this.selectHolder = this.getSelectedIndex();
var _local2 = this.getItemAt(index);
this.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) {
this.lastSelID = this.dataProvider.getItemID(this.lastSelected);
this.dataProvider.sortItemsBy(fieldName, order);
};
FSelectableListClass.prototype.getLength = function () {
return(this.dataProvider.getLength());
};
FSelectableListClass.prototype.getSelectedIndex = function () {
for (var _local3 in this.selected) {
var _local2 = this.selected[_local3].sIndex;
if (_local2 != undefined) {
return(_local2);
}
}
};
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 _local2 = this.getSelectedItem();
return(((_local2.data == undefined) ? (_local2.label) : (_local2.data)));
};
FSelectableListClass.prototype.setSelectedIndex = function (index, flag) {
if (((index >= 0) && (index < this.getLength())) && (this.enable)) {
this.clearSelected();
this.selectItem(index, true);
this.lastSelected = index;
this.invalidate("updateControl");
if (flag != false) {
this.executeCallBack();
}
}
};
FSelectableListClass.prototype.setDataProvider = function (obj) {
this.setScrollPosition(0);
this.clearSelected();
if (obj instanceof Array) {
this.dataProvider = new DataProviderClass();
var _local2 = 0;
while (_local2 < obj.length) {
var _local4 = ((typeof(obj[_local2]) == "string") ? ({label:obj[_local2]}) : (obj[_local2]));
this.dataProvider.addItem(_local4);
_local2++;
}
} else {
this.dataProvider = obj;
}
this.dataProvider.addView(this);
};
FSelectableListClass.prototype.setItemSymbol = function (linkID) {
this.tmpPos = this.getScrollPosition();
this.itemSymbol = linkID;
this.invalidate("setSize");
this.setScrollPosition(this.tmpPos);
};
FSelectableListClass.prototype.setEnabled = function (enabledFlag) {
this.cleanUI();
super.setEnabled(enabledFlag);
this.enable = enabledFlag;
this.boundingBox_mc.gotoAndStop((this.enable ? "enabled" : "disabled"));
var _local4 = Math.min(this.numDisplayed, this.getLength());
var _local3 = 0;
while (_local3 < _local4) {
this.container_mc[("fListItem" + _local3) + "_mc"].setEnabled(this.enable);
_local3++;
}
if (this.enable) {
this.invalidate("updateControl");
}
};
FSelectableListClass.prototype.updateControl = function () {
var _local2 = 0;
while (_local2 < this.numDisplayed) {
this.container_mc[("fListItem" + _local2) + "_mc"].drawItem(this.getItemAt(this.topDisplayed + _local2), this.isSelected(this.topDisplayed + _local2));
_local2++;
}
};
FSelectableListClass.prototype.setSize = function (w, h) {
super.setSize(w, h);
this.boundingBox_mc._xscale = (this.boundingBox_mc._yscale = 100);
this.boundingBox_mc._xscale = (this.width * 100) / this.boundingBox_mc._width;
this.boundingBox_mc._yscale = (this.height * 100) / this.boundingBox_mc._height;
var _local3 = 0;
while (_local3 < this.numDisplayed) {
this.container_mc.attachMovie(this.itemSymbol, ("fListItem" + _local3) + "_mc", 10 + _local3, {controller:this, itemNum:_local3});
var _local4 = this.container_mc[("fListItem" + _local3) + "_mc"];
var _local5 = ((this.scrollOffset == undefined) ? 0 : (this.scrollOffset));
_local4.setSize(this.width - _local5, this.itmHgt);
_local4._y = (this.itmHgt - 2) * _local3;
_local3++;
}
this.updateControl();
};
FSelectableListClass.prototype.modelChanged = function (eventObj) {
var _local4 = eventObj.firstRow;
var _local6 = eventObj.lastRow;
var _local8 = eventObj.event;
if (_local8 == "addRows") {
for (var _local2 in this.selected) {
if ((this.selected[_local2].sIndex != undefined) && (this.selected[_local2].sIndex >= _local4)) {
this.selected[_local2].sIndex = this.selected[_local2].sIndex + ((_local6 - _local4) + 1);
this.setSelectedIndex(this.selected[_local2].sIndex, false);
}
}
} else if (_local8 == "deleteRows") {
if (_local4 == _local6) {
var _local5 = _local4;
if (this.selectHolder == _local5) {
this.selectionDeleted = true;
}
if (((this.topDisplayed + this.numDisplayed) >= this.getLength()) && (this.topDisplayed > 0)) {
this.topDisplayed--;
if (this.selectionDeleted && ((_local5 - 1) >= 0)) {
this.setSelectedIndex(_local5 - 1, false);
}
} else if (this.selectionDeleted) {
var _local7 = this.getLength();
if (((_local5 == (_local7 - 1)) && (_local7 > 1)) || (_local5 > (_local7 / 2))) {
this.setSelectedIndex(_local5 - 1, false);
} else {
this.setSelectedIndex(_local5, false);
}
}
for (var _local2 in this.selected) {
if (this.selected[_local2].sIndex > _local4) {
this.selected[_local2].sIndex--;
}
}
} else {
this.clearSelected();
this.topDisplayed = 0;
}
} else if (_local8 == "sort") {
var _local7 = this.getLength();
var _local2 = 0;
while (_local2 < _local7) {
if (this.isSelected(_local2)) {
var _local3 = this.dataProvider.getItemID(_local2);
if (_local3 == this.lastSelID) {
this.lastSelected = _local2;
}
this.selected[String(_local3)].sIndex = _local2;
}
_local2++;
}
}
this.invalidate("updateControl");
};
FSelectableListClass.prototype.measureItmHgt = function () {
this.attachMovie(this.itemSymbol, "tmpItem_mc", 0, {controller:this});
this.tmpItem_mc.drawItem({label:"Sizer: PjtTopg"}, false);
this.itmHgt = this.tmpItem_mc._height;
this.tmpItem_mc.removeMovieClip();
};
FSelectableListClass.prototype.selectItem = function (index, selectedFlag) {
if (selectedFlag && (!this.isSelected(index))) {
this.selected[String(this.dataProvider.getItemID(index))] = {sIndex:index};
} else if (!selectedFlag) {
delete this.selected[String(this.dataProvider.getItemID(index))];
}
};
FSelectableListClass.prototype.isSelected = function (index) {
return(this.selected[String(this.dataProvider.getItemID(index))].sIndex != undefined);
};
FSelectableListClass.prototype.clearSelected = function () {
for (var _local3 in this.selected) {
var _local2 = this.selected[_local3].sIndex;
if (((_local2 != undefined) && (this.topDisplayed <= _local2)) && (_local2 < (this.topDisplayed + this.numDisplayed))) {
this.container_mc[("fListItem" + (_local2 - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(_local2), false);
}
}
delete this.selected;
this.selected = new Array();
};
FSelectableListClass.prototype.selectionHandler = function (itemNum) {
var _local2 = this.topDisplayed + itemNum;
if (this.getItemAt(_local2 == undefined)) {
this.changeFlag = false;
return(undefined);
}
this.changeFlag = true;
this.clearSelected();
this.selectItem(_local2, true);
this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(_local2), this.isSelected(_local2));
};
FSelectableListClass.prototype.moveSelBy = function (incr) {
var _local3 = this.getSelectedIndex();
var _local2 = _local3 + incr;
_local2 = Math.max(0, _local2);
_local2 = Math.min(this.getLength() - 1, _local2);
if (_local2 == _local3) {
return(undefined);
}
if ((_local3 < this.topDisplayed) || (_local3 >= (this.topDisplayed + this.numDisplayed))) {
this.setScrollPosition(_local3);
}
if ((_local2 >= (this.topDisplayed + this.numDisplayed)) || (_local2 < this.topDisplayed)) {
this.setScrollPosition(this.topDisplayed + incr);
}
this.selectionHandler(_local2 - this.topDisplayed);
};
FSelectableListClass.prototype.clickHandler = function (itmNum) {
this.focusRect.removeMovieClip();
if (!this.focused) {
this.pressFocus();
}
this.selectionHandler(itmNum);
this.onMouseUp = this.releaseHandler;
};
FSelectableListClass.prototype.releaseHandler = function () {
if (this.changeFlag) {
this.executeCallBack();
}
this.changeFlag = false;
this.onMouseUp = undefined;
};
FSelectableListClass.prototype.myOnSetFocus = function () {
super.myOnSetFocus();
var _local3 = 0;
while (_local3 < this.numDisplayed) {
this.container_mc[("fListItem" + _local3) + "_mc"].highlight_mc.gotoAndStop("enabled");
_local3++;
}
};
FSelectableListClass.prototype.myOnKillFocus = function () {
super.myOnKillFocus();
var _local3 = 0;
while (_local3 < this.numDisplayed) {
this.container_mc[("fListItem" + _local3) + "_mc"].highlight_mc.gotoAndStop("unfocused");
_local3++;
}
};
#endinitclip
Instance of Symbol 20 MovieClip [DataProviderSymbol] "dPAsset" in Symbol 22 MovieClip [FSelectableListSymbol] Frame 1
//component parameters
onClipEvent (construct) {
}
Instance of Symbol 21 MovieClip [FSelectableItemSymbol] "ItemAsset" in Symbol 22 MovieClip [FSelectableListSymbol] Frame 1
//component parameters
onClipEvent (construct) {
}
Symbol 23 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) {
if (this.enable) {
pos = Math.min(pos, this.getLength() - this.numDisplayed);
pos = Math.max(pos, 0);
this.scrollBar_mc.setScrollPosition(pos);
}
};
FScrollSelectListClass.prototype.setAutoHideScrollBar = function (flag) {
this.permaScrollBar = !flag;
this.setSize(this.width, this.height);
};
FScrollSelectListClass.prototype.setEnabled = function (enabledFlag) {
super.setEnabled(enabledFlag);
this.scrollBar_mc.setEnabled(this.enable);
};
FScrollSelectListClass.prototype.setSize = function (w, h) {
var _local3 = this.getScrollPosition();
super.setSize(w, h);
if (this.scrollBar_mc != undefined) {
this.removed = true;
}
this.scrollBar_mc = undefined;
this.initScrollBar();
this.setScrollPosition(_local3);
};
FScrollSelectListClass.prototype.modelChanged = function (eventObj) {
super.modelChanged(eventObj);
this.invalidate("initScrollBar");
};
FScrollSelectListClass.prototype.initScrollBar = function () {
if ((!this.permaScrollBar) && (this.getLength() <= this.numDisplayed)) {
if (this.removed) {
this.scrollBar_mc.removeMovieClip();
this.scrollBar_mc = undefined;
this.scrollOffset = undefined;
this.invalidate("setSize");
}
} else {
if (this.scrollBar_mc == undefined) {
this.container_mc.attachMovie("FScrollBarSymbol", "scrollBar_mc", 3000, {hostStyle:this.styleTable});
this.scrollBar_mc = this.container_mc.scrollBar_mc;
this.scrollBar_mc.setChangeHandler("scrollHandler", this);
this.scrollBar_mc.setSize(this.height);
this.scrollBar_mc._x = this.width - this.scrollBar_mc._width;
this.scrollBar_mc._y = 0;
this.scrollBar_mc.setLargeScroll(this.numDisplayed - 1);
this.scrollOffset = this.scrollBar_mc._width;
this.invalidate("setSize");
}
this.scrollBar_mc.setScrollProperties(this.numDisplayed, 0, this.getLength() - this.numDisplayed);
}
};
FScrollSelectListClass.prototype.scrollHandler = function (scrollBar) {
var _local2 = scrollBar.getScrollPosition();
this.topDisplayed = _local2;
if (this.lastPosition != _local2) {
this.updateControl();
}
this.lastPosition = _local2;
};
FScrollSelectListClass.prototype.clickHandler = function (itmNum) {
super.clickHandler(itmNum);
if ((this.dragScrolling == undefined) && (this.scrollBar_mc != undefined)) {
this.dragScrolling = setInterval(this, "dragScroll", 15);
}
};
FScrollSelectListClass.prototype.releaseHandler = function () {
clearInterval(this.dragScrolling);
this.dragScrolling = undefined;
super.releaseHandler();
};
FScrollSelectListClass.prototype.dragScroll = function () {
clearInterval(this.dragScrolling);
if (this.container_mc._ymouse < 0) {
this.setScrollPosition(this.getScrollPosition() - 1);
this.selectionHandler(0);
this.scrollInterval = Math.max(25, (-23.8 * (-this.container_mc._ymouse)) + 500);
this.dragScrolling = setInterval(this, "dragScroll", this.scrollInterval);
} else if (this.container_mc._ymouse > ((this.itmHgt - 2) * this.numDisplayed)) {
this.setScrollPosition(this.getScrollPosition() + 1);
this.selectionHandler(this.numDisplayed - 1);
this.scrollInterval = Math.max(25, (-23.8 * Math.abs((this.container_mc._ymouse - ((this.itmHgt - 2) * this.numDisplayed)) - 2)) + 500);
this.dragScrolling = setInterval(this, "dragScroll", this.scrollInterval);
} else {
this.dragScrolling = setInterval(this, "dragScroll", 15);
}
};
FScrollSelectListClass.prototype.myOnKeyDown = function () {
if (this.focused) {
this.keyCodes = new Array(40, 38, 34, 33, 36, 35);
this.keyIncrs = new Array(1, -1, this.numDisplayed - 1, -(this.numDisplayed - 1), -this.getLength(), this.getLength());
var _local2 = 0;
while (_local2 < this.keyCodes.length) {
if (Key.isDown(this.keyCodes[_local2])) {
this.moveSelBy(this.keyIncrs[_local2]);
return(undefined);
}
_local2++;
}
this.findInputText();
}
};
FScrollSelectListClass.prototype.findInputText = function () {
var _local2 = Key.getAscii();
if ((_local2 >= 33) && (_local2 <= 126)) {
this.findString(String.fromCharCode(_local2));
}
};
FScrollSelectListClass.prototype.findString = function (str) {
if (this.getLength() == 0) {
return(undefined);
}
var _local4 = this.getSelectedIndex();
var _local6 = 0;
var _local2 = _local4 + 1;
while (_local2 != _local4) {
var _local3 = this.getItemAt(_local2).label.substring(0, str.length);
if ((str == _local3) || (str.toUpperCase() == _local3.toUpperCase())) {
_local6 = _local2 - _local4;
break;
}
if (_local2 >= (this.getLength() - 1)) {
_local2 = -1;
}
_local2++;
}
if (_local6 != 0) {
this.moveSelBy(_local6);
}
};
#endinitclip
Instance of Symbol 4 MovieClip [FScrollBarSymbol] "scrollBarAsset" in Symbol 23 MovieClip [FScrollSelectListSymbol] Frame 1
//component parameters
onClipEvent (construct) {
_targetInstanceName = "";
horizontal = false;
}
onClipEvent (load) {
this._width = (this._height = 1);
}
Instance of Symbol 22 MovieClip [FSelectableListSymbol] "superClassAsset" in Symbol 23 MovieClip [FScrollSelectListSymbol] Frame 1
//component parameters
onClipEvent (construct) {
}
Symbol 26 MovieClip [FListBoxSymbol] Frame 1
#initclip 10
function FListBoxClass() {
this.itemSymbol = "FListItemSymbol";
this.init();
this.permaScrollBar = true;
var _local2 = 0;
while (_local2 < this.labels.length) {
this.addItem(this.labels[_local2], this.data[_local2]);
_local2++;
}
this.boundingBox_mc.gotoAndStop(1);
this.width = this._width;
this.height = this._height;
this._yscale = (this._xscale = 100);
this.setSize(this.width, this.height);
if (this.changeHandler.length > 0) {
this.setChangeHandler(this.changeHandler);
}
}
FListBoxClass.prototype = new FScrollSelectListClass();
Object.registerClass("FListBoxSymbol", FListBoxClass);
FListBoxClass.prototype.getSelectedIndices = function () {
var _local2 = new Array();
for (var _local3 in this.selected) {
_local2.push(this.selected[_local3].sIndex);
}
return(((_local2.length > 0) ? (_local2) : undefined));
};
FListBoxClass.prototype.getSelectedItems = function () {
var _local3 = this.getSelectedIndices();
var _local4 = new Array();
var _local2 = 0;
while (_local2 < _local3.length) {
_local4.push(this.getItemAt(_local3[_local2]));
_local2++;
}
return(((_local4.length > 0) ? (_local4) : undefined));
};
FListBoxClass.prototype.getSelectMultiple = function () {
return(this.selectMultiple);
};
FListBoxClass.prototype.getRowCount = function () {
return(this.numDisplayed);
};
FListBoxClass.prototype.setSelectedIndices = function (indexArray) {
this.clearSelected();
var _local2 = 0;
while (_local2 < indexArray.length) {
this.selectItem(indexArray[_local2], true);
_local2++;
}
this.updateControl();
};
FListBoxClass.prototype.setSelectMultiple = function (flag) {
this.selectMultiple = flag;
};
FListBoxClass.prototype.setRowCount = function (count) {
var _local2 = (count * (this.itmHgt - 2)) + 2;
this.setSize(this.width, _local2);
};
FListBoxClass.prototype.setWidth = function (wdt) {
this.setSize(wdt, this.height);
};
FListBoxClass.prototype.setSize = function (w, h) {
if (!this.enable) {
return(undefined);
}
w = Math.max(w, 20);
h = Math.max(h, 40);
this.container_mc.removeMovieClip();
this.container_mc = this.createEmptyMovieClip("container", 3);
this.measureItmHgt();
this.numDisplayed = Math.floor(h / (this.itmHgt - 2));
this.height = (this.numDisplayed * (this.itmHgt - 2)) + 2;
super.setSize(w, this.height);
};
FListBoxClass.prototype.removeItemAt = function (index) {
this.selectHolder = this.getSelectedIndices();
return(super.removeItemAt(index));
};
FListBoxClass.prototype.selectionHandler = function (itemNum) {
if (this.clickFilter) {
var _local3 = this.topDisplayed + itemNum;
if (this.getItemAt(_local3) == undefined) {
this.changeFlag = false;
return(undefined);
}
this.changeFlag = true;
if (((!this.selectMultiple) && (!Key.isDown(17))) || ((!Key.isDown(16)) && (!Key.isDown(17)))) {
this.clearSelected();
this.selectItem(_local3, true);
this.lastSelected = _local3;
this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(_local3), this.isSelected(_local3));
} else if (Key.isDown(16) && (this.selectMultiple)) {
if (this.lastSelected == -1) {
this.lastSelected = _local3;
}
var _local4 = ((this.lastSelected < _local3) ? 1 : -1);
this.clearSelected();
var _local2 = this.lastSelected;
while (_local2 != _local3) {
this.selectItem(_local2, true);
if ((_local2 >= this.topDisplayed) && (_local2 < (this.topDisplayed + this.numDisplayed))) {
this.container_mc[("fListItem" + (_local2 - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(_local2), this.isSelected(_local2));
}
_local2 = _local2 + _local4;
}
this.selectItem(_local3, true);
this.container_mc[("fListItem" + (_local3 - this.topDisplayed)) + "_mc"].drawItem(this.getItemAt(_local3), this.isSelected(_local3));
} else if (key.isDown(17)) {
var _local6 = this.isSelected(_local3);
if (!this.selectMultiple) {
this.clearSelected();
}
if (!((!this.selectMultiple) && (_local6))) {
this.selectItem(_local3, !_local6);
this.container_mc[("fListItem" + itemNum) + "_mc"].drawItem(this.getItemAt(this.topDisplayed + itemNum), this.isSelected(this.topDisplayed + itemNum));
}
this.lastSelected = _local3;
}
} else {
this.clickFilter = true;
}
};
FListBoxClass.prototype.moveSelBy = function (itemNum) {
super.moveSelBy(itemNum);
this.releaseHandler();
};
#endinitclip
this.deadPreview._visible = false;
Instance of Symbol 23 MovieClip [FScrollSelectListSymbol] "superClassAsset" in Symbol 26 MovieClip [FListBoxSymbol] Frame 1
//component parameters
onClipEvent (construct) {
}
Symbol 27 MovieClip [FUIComponentSymbol] Frame 1
#initclip 3
function FUIComponentClass() {
this.init();
}
FUIComponentClass.prototype = new MovieClip();
FUIComponentClass.prototype.init = function () {
this.enable = true;
this.focused = false;
this.useHandCursor = false;
this._accImpl = new Object();
this._accImpl.stub = true;
this.styleTable = new Array();
if (_global.globalStyleFormat == undefined) {
_global.globalStyleFormat = new FStyleFormat();
globalStyleFormat.isGlobal = true;
_global._focusControl = new Object();
_global._focusControl.onSetFocus = function (oldFocus, newFocus) {
oldFocus.myOnKillFocus();
newFocus.myOnSetFocus();
};
Selection.addListener(_global._focusControl);
}
if (this._name != undefined) {
this._focusrect = false;
this.tabEnabled = true;
this.focusEnabled = true;
this.tabChildren = false;
this.tabFocused = true;
if (this.hostStyle == undefined) {
globalStyleFormat.addListener(this);
} else {
this.styleTable = this.hostStyle;
}
this.deadPreview._visible = false;
this.deadPreview._width = (this.deadPreview._height = 1);
this.methodTable = new Object();
this.keyListener = new Object();
this.keyListener.controller = this;
this.keyListener.onKeyDown = function () {
this.controller.myOnKeyDown();
};
this.keyListener.onKeyUp = function () {
this.controller.myOnKeyUp();
};
for (var _local3 in this.styleFormat_prm) {
this.setStyleProperty(_local3, this.styleFormat_prm[_local3]);
}
}
};
FUIComponentClass.prototype.setEnabled = function (enabledFlag) {
this.enable = ((arguments.length > 0) ? (enabledFlag) : true);
this.tabEnabled = (this.focusEnabled = enabledFlag);
if ((!this.enable) && (this.focused)) {
Selection.setFocus(undefined);
}
};
FUIComponentClass.prototype.getEnabled = function () {
return(this.enable);
};
FUIComponentClass.prototype.setSize = function (w, h) {
this.width = w;
this.height = h;
this.focusRect.removeMovieClip();
};
FUIComponentClass.prototype.setChangeHandler = function (chng, obj) {
this.handlerObj = ((obj == undefined) ? (this._parent) : (obj));
this.changeHandler = chng;
};
FUIComponentClass.prototype.invalidate = function (methodName) {
this.methodTable[methodName] = true;
this.onEnterFrame = this.cleanUI;
};
FUIComponentClass.prototype.cleanUI = function () {
if (this.methodTable.setSize) {
this.setSize(this.width, this.height);
} else {
this.cleanUINotSize();
}
this.methodTable = new Object();
delete this.onEnterFrame;
};
FUIComponentClass.prototype.cleanUINotSize = function () {
for (var _local2 in this.methodTable) {
this[_local2]();
}
};
FUIComponentClass.prototype.drawRect = function (x, y, w, h) {
var _local4 = this.styleTable.focusRectInner.value;
var _local5 = this.styleTable.focusRectOuter.value;
if (_local4 == undefined) {
_local4 = 16777215 /* 0xFFFFFF */;
}
if (_local5 == undefined) {
_local5 = 0;
}
this.createEmptyMovieClip("focusRect", 1000);
this.focusRect.controller = this;
this.focusRect.lineStyle(1, _local5);
this.focusRect.moveTo(x, y);
this.focusRect.lineTo(x + w, y);
this.focusRect.lineTo(x + w, y + h);
this.focusRect.lineTo(x, y + h);
this.focusRect.lineTo(x, y);
this.focusRect.lineStyle(1, _local4);
this.focusRect.moveTo(x + 1, y + 1);
this.focusRect.lineTo((x + w) - 1, y + 1);
this.focusRect.lineTo((x + w) - 1, (y + h) - 1);
this.focusRect.lineTo(x + 1, (y + h) - 1);
this.focusRect.lineTo(x + 1, y + 1);
};
FUIComponentClass.prototype.pressFocus = function () {
this.tabFocused = false;
this.focusRect.removeMovieClip();
Selection.setFocus(this);
};
FUIComponentClass.prototype.drawFocusRect = function () {
this.drawRect(-2, -2, this.width + 4, this.height + 4);
};
FUIComponentClass.prototype.myOnSetFocus = function () {
this.focused = true;
Key.addListener(this.keyListener);
if (this.tabFocused) {
this.drawFocusRect();
}
};
FUIComponentClass.prototype.myOnKillFocus = function () {
this.tabFocused = true;
this.focused = false;
this.focusRect.removeMovieClip();
Key.removeListener(this.keyListener);
};
FUIComponentClass.prototype.executeCallBack = function () {
this.handlerObj[this.changeHandler](this);
};
FUIComponentClass.prototype.updateStyleProperty = function (styleFormat, propName) {
this.setStyleProperty(propName, styleFormat[propName], styleFormat.isGlobal);
};
FUIComponentClass.prototype.setStyleProperty = function (propName, value, isGlobal) {
if (value == "") {
return(undefined);
}
var _local17 = parseInt(value);
if (!isNaN(_local17)) {
value = _local17;
}
var _local16 = ((arguments.length > 2) ? (isGlobal) : false);
if (this.styleTable[propName] == undefined) {
this.styleTable[propName] = new Object();
this.styleTable[propName].useGlobal = true;
}
if (this.styleTable[propName].useGlobal || (!_local16)) {
this.styleTable[propName].value = value;
if (this.setCustomStyleProperty(propName, value)) {
} else if (propName == "embedFonts") {
this.invalidate("setSize");
} else if (propName.subString(0, 4) == "text") {
if (this.textStyle == undefined) {
this.textStyle = new TextFormat();
}
var _local18 = propName.subString(4, propName.length);
this.textStyle[_local18] = value;
this.invalidate("setSize");
} else {
for (var _local15 in this.styleTable[propName].coloredMCs) {
var _local4 = new Color(this.styleTable[propName].coloredMCs[_local15]);
if (this.styleTable[propName].value == undefined) {
var _local5 = {ra:"100", rb:"0", ga:"100", gb:"0", ba:"100", bb:"0", aa:"100", ab:"0"};
_local4.setTransform(_local5);
} else {
_local4.setRGB(value);
}
}
}
this.styleTable[propName].useGlobal = _local16;
}
};
FUIComponentClass.prototype.registerSkinElement = function (skinMCRef, propName) {
if (this.styleTable[propName] == undefined) {
this.styleTable[propName] = new Object();
this.styleTable[propName].useGlobal = true;
}
if (this.styleTable[propName].coloredMCs == undefined) {
this.styleTable[propName].coloredMCs = new Object();
}
this.styleTable[propName].coloredMCs[skinMCRef] = skinMCRef;
if (this.styleTable[propName].value != undefined) {
var _local4 = new Color(skinMCRef);
_local4.setRGB(this.styleTable[propName].value);
}
};
_global.FStyleFormat = function () {
this.nonStyles = {listeners:true, isGlobal:true, isAStyle:true, addListener:true, removeListener:true, nonStyles:true, applyChanges:true};
this.listeners = new Object();
this.isGlobal = false;
if (arguments.length > 0) {
for (var _local3 in arguments[0]) {
this[_local3] = arguments[0][_local3];
}
}
};
_global.FStyleFormat.prototype = new Object();
FStyleFormat.prototype.addListener = function () {
var _local3 = 0;
while (_local3 < arguments.length) {
var _local4 = arguments[_local3];
this.listeners[arguments[_local3]] = _local4;
for (var _local5 in this) {
if (this.isAStyle(_local5)) {
_local4.updateStyleProperty(this, _local5.toString());
}
}
_local3++;
}
};
FStyleFormat.prototype.removeListener = function (component) {
this.listeners[component] = undefined;
for (var _local4 in this) {
if (this.isAStyle(_local4)) {
if (component.styleTable[_local4].useGlobal == this.isGlobal) {
component.styleTable[_local4].useGlobal = true;
var _local3 = (this.isGlobal ? undefined : (globalStyleFormat[_local4]));
component.setStyleProperty(_local4, _local3, true);
}
}
}
};
FStyleFormat.prototype.applyChanges = function () {
var _local6 = 0;
for (var _local5 in this.listeners) {
var _local3 = this.listeners[_local5];
if (arguments.length > 0) {
var _local4 = 0;
while (_local4 < arguments.length) {
if (this.isAStyle(arguments[_local4])) {
_local3.updateStyleProperty(this, arguments[_local4]);
}
_local4++;
}
} else {
for (var _local4 in this) {
if (this.isAStyle(_local4)) {
_local3.updateStyleProperty(this, _local4.toString());
}
}
}
}
};
FStyleFormat.prototype.isAStyle = function (name) {
return((this.nonStyles[name] ? false : true));
};
#endinitclip
Symbol 40 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 50 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 59 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 60 MovieClip [UpArrow] Frame 1
stop();
Symbol 60 MovieClip [UpArrow] Frame 2
stop();
Symbol 60 MovieClip [UpArrow] Frame 3
stop();
Symbol 67 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 74 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 79 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 80 MovieClip [ScrollThumb] Frame 1
stop();
Symbol 88 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 96 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 104 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 105 MovieClip [DownArrow] Frame 1
stop();
Symbol 105 MovieClip [DownArrow] Frame 2
stop();
Symbol 105 MovieClip [DownArrow] Frame 3
stop();
Symbol 114 Button
on (press) {
nextFrame();
}
Symbol 118 MovieClip Frame 1
stop();
var i = 0;
while (i < 10) {
duplicateMovieClip ("chunk", "chunk" + i, i);
i++;
}
Instance of Symbol 117 MovieClip "chunk" in Symbol 118 MovieClip Frame 1
onClipEvent (load) {
xspeed = random(20) - 10;
yspeed = (-random(10)) - 5;
_xscale = (random(140) + 25);
_yscale = _xscale;
bv = 37;
}
onClipEvent (enterFrame) {
yspeed = yspeed + 0.5;
_rotation = ((Math.atan2(yspeed, xspeed) * 360) / Math.PI);
_x = (_x + xspeed);
_y = (_y + yspeed);
if ((_x > 180) or (_x < -180)) {
bv = 200;
}
}
Symbol 119 MovieClip Frame 1
stop();
Symbol 119 MovieClip Frame 2
stop();
Symbol 123 Button
on (press) {
gotoAndStop ("top");
}
Symbol 125 Button
on (press) {
gotoAndStop ("middle");
}
Symbol 127 Button
on (press) {
gotoAndStop ("bottom");
}
Symbol 129 Button
on (press) {
gotoAndStop ("cap");
}
Symbol 133 MovieClip Frame 1
stop();
Instance of Symbol 132 MovieClip "bottlecap" in Symbol 133 MovieClip Frame 1
onClipEvent (load) {
xspeed = random(16) - 8;
yspeed = (-random(10)) - 5;
bv = 150;
}
onClipEvent (enterFrame) {
yspeed = yspeed + 0.5;
_rotation = ((Math.atan2(yspeed, xspeed) * 360) / Math.PI);
_x = (_x + xspeed);
_y = (_y + yspeed);
}
Symbol 135 MovieClip Frame 7
stop();
Symbol 140 MovieClip Frame 1
stop();
var i = 0;
while (i < 5) {
duplicateMovieClip ("shard", "shard" + i, i);
target = eval ("shard" + i);
target._x = target._x + (random(20) - 10);
target._y = target._y + (random(30) - 15);
i++;
}
Instance of Symbol 139 MovieClip "shard" in Symbol 140 MovieClip Frame 1
onClipEvent (load) {
xspeed = random(16) - 8;
yspeed = (-random(10)) - 5;
_xscale = (random(120) + 20);
_yscale = _xscale;
bv = 130;
}
onClipEvent (enterFrame) {
yspeed = yspeed + 0.5;
_rotation = ((Math.atan2(yspeed, xspeed) * 360) / Math.PI);
_x = (_x + xspeed);
_y = (_y + yspeed);
if ((_x > 180) or (_x < -180)) {
bv = 300;
}
}
Symbol 145 MovieClip Frame 1
stop();
var i = 0;
while (i < 7) {
duplicateMovieClip ("chunk", "chunk" + i, i);
target = eval ("chunk" + i);
target._x = target._x + (random(20) - 10);
target._y = target._y + (random(30) - 15);
i++;
}
Instance of Symbol 144 MovieClip "chunk" in Symbol 145 MovieClip Frame 1
onClipEvent (load) {
xspeed = random(14) - 7;
yspeed = (-random(10)) - 5;
_xscale = (random(125) + 20);
_yscale = _xscale;
bv = 110;
}
onClipEvent (enterFrame) {
yspeed = yspeed + 0.5;
_rotation = ((Math.atan2(yspeed, xspeed) * 360) / Math.PI);
_x = (_x + xspeed);
_y = (_y + yspeed);
if ((_x > 184) or (_x < -184)) {
bv = 275;
}
}
Symbol 148 MovieClip Frame 1
stop();
var i = 0;
while (i < 10) {
duplicateMovieClip ("chunk", "chunk" + i, i);
target = eval ("chunk" + i);
target._x = target._x + (random(20) - 10);
target._y = target._y + (random(30) - 15);
i++;
}
Instance of Symbol 147 MovieClip "chunk" in Symbol 148 MovieClip Frame 1
onClipEvent (load) {
xspeed = random(14) - 7;
yspeed = (-random(10)) - 5;
_xscale = (random(125) + 20);
_yscale = _xscale;
bv = 110;
}
onClipEvent (enterFrame) {
yspeed = yspeed + 0.5;
_rotation = ((Math.atan2(yspeed, xspeed) * 360) / Math.PI);
_x = (_x + xspeed);
_y = (_y + yspeed);
if ((_x > 184) or (_x < -184)) {
bv = 275;
}
}
Symbol 152 MovieClip Frame 1
stop();
var i = 0;
while (i < 7) {
duplicateMovieClip ("chunk", "chunk" + i, i);
target = eval ("chunk" + i);
target._x = target._x + (random(20) - 10);
target._y = target._y + (random(30) - 15);
i++;
}
Instance of Symbol 151 MovieClip "chunk" in Symbol 152 MovieClip Frame 1
onClipEvent (load) {
xspeed = random(20) - 10;
yspeed = (-random(10)) - 5;
_xscale = (random(140) + 25);
_yscale = _xscale;
bv = 37;
}
onClipEvent (enterFrame) {
yspeed = yspeed + 0.5;
_rotation = ((Math.atan2(yspeed, xspeed) * 360) / Math.PI);
_x = (_x + xspeed);
_y = (_y + yspeed);
if ((_x > 180) or (_x < -180)) {
bv = 200;
}
}
Symbol 153 MovieClip Frame 1
stop();
Symbol 153 MovieClip Frame 2
_root.death++;
stop();
Symbol 153 MovieClip Frame 3
stop();
Symbol 153 MovieClip Frame 4
stop();
Symbol 153 MovieClip Frame 5
stop();
Symbol 155 Button
on (press) {
play();
}
Symbol 163 MovieClip Frame 1
stop();
Symbol 163 MovieClip Frame 2
_root.shots++;
Symbol 176 MovieClip Frame 1
stop();
Symbol 181 Button
on (press) {
gotoAndStop (215);
}
Symbol 182 Button
on (press) {
gotoAndStop (208);
}
Symbol 183 Button
on (press) {
gotoAndStop (290);
}
Symbol 187 Button
on (release) {
_root.pos = sharedobject.getLocal("bottleblaster4save");
_root.pos.data.death = _root.death;
_root.pos.data.spent = _root.spent;
_root.pos.data.shots = _root.shots;
_root.pos.data.dmg = _root.dmg;
_root.pos.data.time = _root.time;
_root.savedgame.gotoAndPlay(2);
}
Symbol 189 Button
on (release) {
_root.pos = sharedobject.getLocal("bottleblaster4save");
_root.death = _root.pos.data.death;
_root.shots = _root.pos.data.shots;
_root.spent = _root.pos.data.spent;
_root.dmg = _root.pos.data.dmg;
_root.time = _root.pos.data.time;
_root.loadedgame.gotoAndPlay(2);
}
Symbol 192 MovieClip Frame 1
stop();
Symbol 213 Button
on (press) {
toggleHighQuality();
}
Symbol 215 Button
on (press) {
gotoAndStop (207);
}
Symbol 220 MovieClip Frame 1
time = getTimer() / 1000;
thistime = time - oldtime;
if (thistime >= 1) {
fps = frames;
frames = 0;
oldtime++;
} else {
frames++;
}
Symbol 220 MovieClip Frame 2
gotoAndPlay (1);
Symbol 228 Button
on (release) {
prevFrame();
}
Symbol 231 Button
on (release) {
nextFrame();
}
Symbol 233 MovieClip Frame 1
stop();
Symbol 233 MovieClip Frame 2
stop();
Symbol 235 Button
on (press) {
gotoAndStop ("top");
}
Symbol 236 Button
on (press) {
gotoAndStop ("middle");
}
Symbol 237 Button
on (press) {
gotoAndStop ("bottom");
}
Symbol 238 Button
on (press) {
gotoAndStop ("cap");
}
Symbol 242 MovieClip Frame 1
stop();
Symbol 242 MovieClip Frame 2
_root.death++;
stop();
Symbol 242 MovieClip Frame 3
stop();
Symbol 242 MovieClip Frame 4
stop();
Symbol 242 MovieClip Frame 5
stop();
Symbol 254 Button
on (release) {
nextFrame();
}
Symbol 257 Button
on (release) {
gotoAndStop ("75");
}
Symbol 282 Button
on (release) {
gotoAndStop ("1");
}
Symbol 283 Button
on (release) {
_root.death = _root.death - 2;
prevFrame();
}
Symbol 304 Button
on (press) {
nextFrame();
}
Symbol 306 Button
on (press) {
nextFrame();
}
Symbol 308 MovieClip Frame 1
stop();
Symbol 308 MovieClip Frame 2
stop();
Symbol 308 MovieClip Frame 3
stop();
Symbol 308 MovieClip Frame 4
stop();
Symbol 310 Button
on (release) {
play();
}
Symbol 311 MovieClip Frame 1
stop();
Symbol 320 Button
on (press) {
gotoAndPlay (37);
}
Symbol 328 MovieClip Frame 1
_root.death = _root.death - 5;
Symbol 328 MovieClip Frame 2
stop();
Symbol 335 MovieClip Frame 36
stop();
Symbol 335 MovieClip Frame 45
stop();
Symbol 342 Button
on (release) {
nextFrame();
}
Symbol 345 MovieClip Frame 1
_root.death = _root.death + 10;
Symbol 345 MovieClip Frame 10
stop();
Symbol 363 MovieClip Frame 17
stop();
Symbol 364 MovieClip Frame 1
stop();
Symbol 364 MovieClip Frame 2
stop();
Symbol 368 Button
on (press) {
gotoAndPlay (32);
}
Symbol 369 MovieClip Frame 31
stop();
Symbol 369 MovieClip Frame 50
stop();
Symbol 387 Button
on (press) {
play();
}
Symbol 398 MovieClip Frame 1
stop();
Symbol 398 MovieClip Frame 38
stop();
Symbol 406 MovieClip Frame 1
stop();
Symbol 406 MovieClip Frame 2
stop();
Symbol 406 MovieClip Frame 3
stop();
Symbol 410 Button
on (press) {
gotoAndPlay (22);
}
Symbol 419 MovieClip Frame 21
gotoAndPlay (1);
Symbol 419 MovieClip Frame 37
stop();
Symbol 426 MovieClip Frame 1
stop();
Symbol 426 MovieClip Frame 20
stop();
Symbol 439 MovieClip Frame 1
stop();
Symbol 439 MovieClip Frame 21
stop();
Symbol 442 Button
on (press) {
_root.death = _root.death + 100;
}
Symbol 479 MovieClip Frame 1
stop();
Symbol 479 MovieClip Frame 38
stop();
Symbol 497 MovieClip Frame 1
stop();
Symbol 497 MovieClip Frame 127
stop();
Symbol 500 Button
on (press) {
gotoAndPlay (40);
}
Symbol 514 MovieClip Frame 39
gotoAndPlay (1);
Symbol 514 MovieClip Frame 49
stop();
Symbol 533 Button
on (press) {
gotoAndPlay (6);
}
Symbol 537 MovieClip Frame 1
stop();
var i = 0;
while (i < 5) {
duplicateMovieClip ("chunk", "chunk" + i, i);
target = eval ("chunk" + i);
target._x = target._x + (random(20) - 10);
target._y = target._y + (random(30) - 15);
i++;
}
Instance of Symbol 536 MovieClip "chunk" in Symbol 537 MovieClip Frame 1
onClipEvent (load) {
xspeed = random(20) - 10;
yspeed = (-random(10)) - 5;
_xscale = (random(140) + 25);
_yscale = _xscale;
bv = 37;
}
onClipEvent (enterFrame) {
yspeed = yspeed + 0.5;
_rotation = ((Math.atan2(yspeed, xspeed) * 360) / Math.PI);
_x = (_x + xspeed);
_y = (_y + yspeed);
if ((_x > 180) or (_x < -180)) {
bv = 200;
}
}
Symbol 544 MovieClip Frame 1
stop();
Symbol 544 MovieClip Frame 36
stop();
Symbol 558 MovieClip Frame 1
stop();
Symbol 558 MovieClip Frame 30
stop();
Symbol 570 Button
on (press) {
gotoAndPlay ("saved");
}
Symbol 573 MovieClip Frame 93
stop();
Symbol 573 MovieClip Frame 119
stop();
Symbol 585 Button
on (press) {
gotoAndPlay (61);
}
Symbol 588 Button
on (release) {
gotoAndPlay (61);
}
Symbol 589 Button
on (release) {
gotoAndPlay (61);
}
Symbol 597 MovieClip Frame 60
stop();
Symbol 597 MovieClip Frame 84
stop();
Symbol 603 Button
on (press) {
gotoAndPlay (102);
}
Symbol 611 MovieClip Frame 101
stop();
Symbol 611 MovieClip Frame 120
stop();
Symbol 615 MovieClip Frame 1
stop();
Symbol 615 MovieClip Frame 2
stop();
Symbol 624 Button
on (press) {
gotoAndPlay ("12oclock");
}
Symbol 627 MovieClip Frame 1
_root.death = _root.death + 20;
Symbol 627 MovieClip Frame 10
stop();
Symbol 628 MovieClip Frame 36
gotoAndPlay (1);
Symbol 628 MovieClip Frame 51
stop();
Symbol 629 Button
on (press) {
gotoAndPlay ("12oclock");
}
Symbol 630 MovieClip Frame 67
gotoAndPlay (1);
Symbol 630 MovieClip Frame 82
stop();
Symbol 637 Button
on (press) {
gotoAndPlay ("mrbond");
}
Symbol 644 MovieClip Frame 9
stop();
Symbol 648 MovieClip Frame 10
stop();
Symbol 649 MovieClip Frame 76
stop();
Symbol 649 MovieClip Frame 95
stop();
Symbol 664 MovieClip Frame 1
stop();
Symbol 664 MovieClip Frame 19
stop();
Symbol 670 Button
on (press) {
gotoAndPlay ("hunted");
}
Symbol 671 MovieClip Frame 70
stop();
Symbol 671 MovieClip Frame 111
stop();
Symbol 676 Button
on (press) {
gotoAndPlay ("free!");
}
Symbol 683 Button
on (press) {
gotoAndPlay ("kill");
}
Symbol 690 MovieClip Frame 1
stop();
Symbol 690 MovieClip Frame 22
stop();
Symbol 690 MovieClip Frame 41
stop();
Symbol 704 MovieClip Frame 1
stop();
target._x = target._x + (random(20) - 10);
target._y = target._y + (random(30) - 15);
Instance of Symbol 703 MovieClip "chunk" in Symbol 704 MovieClip Frame 1
onClipEvent (load) {
xspeed = random(20) - 10;
yspeed = (-random(10)) - 5;
}
onClipEvent (enterFrame) {
yspeed = yspeed + 0.5;
_rotation = ((Math.atan2(yspeed, xspeed) * 360) / Math.PI);
_x = (_x + xspeed);
_y = (_y + yspeed);
if ((_x > 180) or (_x < -180)) {
bv = 200;
}
}
Symbol 705 MovieClip Frame 1
stop();
Symbol 705 MovieClip Frame 2
stop();
Symbol 716 MovieClip Frame 1
stop();
Symbol 731 Button
on (press) {
gotoAndPlay (2);
}
Symbol 732 MovieClip Frame 1
stop();
Symbol 732 MovieClip Frame 8
stop();
Symbol 750 MovieClip Frame 140
stop();
Symbol 782 Button
on (press) {
gotoAndPlay ("dontmakemeangry");
}
Symbol 783 Button
on (release) {
gotoAndPlay ("dontmakemeangry");
}
Symbol 784 Button
on (release) {
gotoAndPlay ("dontmakemeangry2");
}
Symbol 787 MovieClip Frame 1
_root.death = _root.death + 30;
Symbol 787 MovieClip Frame 10
stop();
Symbol 788 MovieClip Frame 1
stop();
Symbol 788 MovieClip Frame 10
stop();
Symbol 788 MovieClip Frame 21
stop();
Symbol 788 MovieClip Frame 45
stop();
Symbol 790 Button
on (press) {
gotoAndStop (21);
}
Symbol 793 MovieClip Frame 10
if (_root.health < 0) {
gotoAndStop (22);
}
Symbol 793 MovieClip Frame 20
_root.health = _root.health - 1;
gotoAndPlay (10);
Symbol 793 MovieClip Frame 21
stop();
_root.death = _root.death + 25;
Symbol 797 MovieClip Frame 2
gotoAndPlay ("shazaan");
if (_root.health < 0) {
gotoAndPlay ("whack");
}
Symbol 797 MovieClip Frame 3
if (_root.health > 1) {
gotoAndPlay ("shazaan");
}
Symbol 797 MovieClip Frame 15
gotoAndPlay ("shazaan");
_root.health = 1;
Symbol 798 Button
on (press) {
gotoAndStop (21);
}
Symbol 800 MovieClip Frame 10
if (_root.health < 0) {
gotoAndStop (22);
}
Symbol 800 MovieClip Frame 20
_root.health = _root.health - 1;
gotoAndPlay (10);
Symbol 800 MovieClip Frame 21
stop();
_root.death = _root.death + 25;
Symbol 809 Button
on (press) {
gotoAndStop (14);
}
Symbol 814 MovieClip Frame 10
if (_root.health < 0) {
gotoAndStop (15);
}
Symbol 814 MovieClip Frame 13
_root.health = _root.health - 0.5;
gotoAndPlay (10);
Symbol 814 MovieClip Frame 14
stop();
_root.death = _root.death + 25;
Symbol 824 MovieClip Frame 1
stop();
Symbol 824 MovieClip Frame 2
stop();
Symbol 843 Button
on (press) {
gotoAndStop (5);
}
Symbol 844 MovieClip Frame 1
if (_root.health < 0) {
gotoAndStop (6);
}
Symbol 844 MovieClip Frame 4
_root.health = _root.health - 0.5;
gotoAndPlay (1);
Symbol 844 MovieClip Frame 5
stop();
_root.death = _root.death + 25;
Symbol 845 MovieClip Frame 68
stop();
Symbol 851 Button
on (press) {
gotoAndStop (37);
}
Symbol 854 MovieClip Frame 10
if (_root.health < 0) {
gotoAndStop (38);
}
Symbol 854 MovieClip Frame 36
_root.health = _root.health - 5;
gotoAndPlay (10);
Symbol 854 MovieClip Frame 37
stop();
_root.death = _root.death + 25;
Symbol 862 MovieClip Frame 35
stop();
Symbol 863 MovieClip Frame 60
stop();
Symbol 875 MovieClip Frame 1
stop();
Symbol 875 MovieClip Frame 35
stop();
Symbol 877 Button
on (press) {
gotoAndPlay ("blue");
}
Symbol 878 Button
on (press) {
gotoAndPlay ("red");
}
Symbol 886 MovieClip Frame 1
stop();
Symbol 886 MovieClip Frame 25
stop();
Symbol 886 MovieClip Frame 45
stop();
Symbol 890 Button
on (press) {
gotoAndPlay ("middle");
}
Symbol 903 MovieClip Frame 8
gotoAndPlay ("begin");
Symbol 903 MovieClip Frame 9
_root.death++;
Symbol 903 MovieClip Frame 24
gotoAndPlay ("end");
Symbol 908 MovieClip Frame 1
stop();
Symbol 908 MovieClip Frame 7
stop();
Symbol 911 Button
on (press) {
play();
}
Symbol 916 MovieClip Frame 1
stop();
Symbol 916 MovieClip Frame 21
stop();
Symbol 919 Button
on (press) {
play();
}
Symbol 921 MovieClip Frame 1
stop();
Symbol 921 MovieClip Frame 6
stop();
Symbol 924 Button
on (press) {
play();
}
Symbol 926 MovieClip Frame 1
stop();
Symbol 926 MovieClip Frame 10
stop();
Symbol 929 Button
on (press) {
play();
}
Symbol 931 MovieClip Frame 1
stop();
Symbol 931 MovieClip Frame 10
stop();
Symbol 946 MovieClip Frame 1
stop();
Symbol 962 Button
on (press) {
gotoAndPlay (14);
}
Symbol 964 MovieClip Frame 1
stop();
Symbol 964 MovieClip Frame 55
stop();
Symbol 986 MovieClip Frame 1
stop();
target._x = target._x + (random(20) - 10);
target._y = target._y + (random(30) - 15);
Instance of Symbol 985 MovieClip in Symbol 986 MovieClip Frame 1
onClipEvent (load) {
xspeed = random(20) - 10;
yspeed = (-random(10)) - 5;
}
onClipEvent (enterFrame) {
yspeed = yspeed + 0.5;
_rotation = ((Math.atan2(yspeed, xspeed) * 360) / Math.PI);
_x = (_x + xspeed);
_y = (_y + yspeed);
if ((_x > 180) or (_x < -180)) {
bv = 200;
}
}
Symbol 987 MovieClip Frame 1
stop();
Symbol 987 MovieClip Frame 2
stop();
Symbol 993 Button
on (press) {
gotoAndPlay ("usuck");
}
Symbol 997 MovieClip Frame 30
stop();
Symbol 997 MovieClip Frame 41
stop();
Symbol 1010 Button
on (press) {
if (_root.death < 250) {
} else {
gotoAndStop (299);
_root.death = _root.death - 250;
_root.spent = _root.spent + 250;
}
}
Symbol 1014 Button
on (press) {
if (_root.death < 1000) {
} else {
gotoAndStop (291);
_root.death = _root.death - 1000;
_root.spent = _root.spent + 1000;
}
}
Symbol 1021 Button
on (release) {
gotoAndStop ("BB28");
}
Symbol 1032 Button
on (release) {
stopAllSounds();
}
Symbol 1038 Button
on (release) {
gotoAndStop ("BB21");
}
Symbol 1060 Button
on (press) {
nextFrame();
}
Symbol 1064 MovieClip Frame 1
stop();
var i = 0;
while (i < 10) {
duplicateMovieClip ("chunk", "chunk" + i, i);
target = eval ("chunk" + i);
target._x = target._x + (random(20) - 10);
target._y = target._y + (random(30) - 15);
i++;
}
Instance of Symbol 1063 MovieClip "chunk" in Symbol 1064 MovieClip Frame 1
onClipEvent (load) {
xspeed = random(20) - 10;
yspeed = (-random(10)) - 5;
_xscale = (random(140) + 25);
_yscale = _xscale;
bv = 37;
}
onClipEvent (enterFrame) {
yspeed = yspeed + 0.5;
_rotation = ((Math.atan2(yspeed, xspeed) * 360) / Math.PI);
_x = (_x + xspeed);
_y = (_y + yspeed);
if ((_x > 180) or (_x < -180)) {
bv = 200;
}
}
Symbol 1066 MovieClip Frame 1
stop();
var i = 0;
while (i < 30) {
duplicateMovieClip ("chunk", "chunk" + i, i);
target = eval ("chunk" + i);
target._x = target._x + (random(20) - 10);
target._y = target._y + (random(30) - 15);
i++;
}
Instance of Symbol 1063 MovieClip "chunk" in Symbol 1066 MovieClip Frame 1
onClipEvent (load) {
xspeed = random(20) - 10;
yspeed = (-random(10)) - 5;
_xscale = (random(140) + 25);
_yscale = _xscale;
bv = 37;
}
onClipEvent (enterFrame) {
yspeed = yspeed + 0.5;
_rotation = ((Math.atan2(yspeed, xspeed) * 360) / Math.PI);
_x = (_x + xspeed);
_y = (_y + yspeed);
if ((_x > 180) or (_x < -180)) {
bv = 200;
}
}
Symbol 1067 MovieClip Frame 1
stop();
Symbol 1073 MovieClip Frame 1
stop();
Symbol 1076 Button
on (press) {
nextFrame();
}
Symbol 1079 MovieClip Frame 1
stop();