Frame 1
stop();
Frame 2
stop();
Frame 3
stop();
Frame 5
stop();
t2._accProps = new Object();
t2._accProps.silent = true;
Instance of Symbol 83 MovieClip [FScrollBarSymbol] in Frame 5
//component parameters
onClipEvent (initialize) {
_targetInstanceName = "t2";
horizontal = false;
}
Symbol 1 MovieClip [FUIComponentSymbol] Frame 1
#initclip 1
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 i in this.styleFormat_prm) {
this.setStyleProperty(i, this.styleFormat_prm[i]);
}
}
};
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 funct in this.methodTable) {
this[funct]();
}
};
FUIComponentClass.prototype.drawRect = function (x, y, w, h) {
var inner = this.styleTable.focusRectInner.value;
var outer = this.styleTable.focusRectOuter.value;
if (inner == undefined) {
inner = 16777215 /* 0xFFFFFF */;
}
if (outer == undefined) {
outer = 0;
}
this.createEmptyMovieClip("focusRect", 1000);
this.focusRect.controller = this;
this.focusRect.lineStyle(1, outer);
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, inner);
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 tmpValue = parseInt(value);
if (!isNaN(tmpValue)) {
value = tmpValue;
}
var global = ((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 || (!global)) {
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 textProp = propName.subString(4, propName.length);
this.textStyle[textProp] = value;
this.invalidate("setSize");
} else {
for (var j in this.styleTable[propName].coloredMCs) {
var myColor = new Color(this.styleTable[propName].coloredMCs[j]);
if (this.styleTable[propName].value == undefined) {
var myTObj = {ra:"100", rb:"0", ga:"100", gb:"0", ba:"100", bb:"0", aa:"100", ab:"0"};
myColor.setTransform(myTObj);
} else {
myColor.setRGB(value);
}
}
}
this.styleTable[propName].useGlobal = global;
}
};
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 myColor = new Color(skinMCRef);
myColor.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 i in arguments[0]) {
this[i] = arguments[0][i];
}
}
};
_global.FStyleFormat.prototype = new Object();
FStyleFormat.prototype.addListener = function () {
var arg = 0;
while (arg < arguments.length) {
var mcRef = arguments[arg];
this.listeners[arguments[arg]] = mcRef;
for (var i in this) {
if (this.isAStyle(i)) {
mcRef.updateStyleProperty(this, i.toString());
}
}
arg++;
}
};
FStyleFormat.prototype.removeListener = function (component) {
this.listeners[component] = undefined;
for (var prop in this) {
if (this.isAStyle(prop)) {
if (component.styleTable[prop].useGlobal == this.isGlobal) {
component.styleTable[prop].useGlobal = true;
var value = (this.isGlobal ? undefined : (globalStyleFormat[prop]));
component.setStyleProperty(prop, value, true);
}
}
}
};
FStyleFormat.prototype.applyChanges = function () {
var count = 0;
for (var i in this.listeners) {
var component = this.listeners[i];
if (arguments.length > 0) {
var j = 0;
while (j < arguments.length) {
if (this.isAStyle(arguments[j])) {
component.updateStyleProperty(this, arguments[j]);
}
j++;
}
} else {
for (var j in this) {
if (this.isAStyle(j)) {
component.updateStyleProperty(this, j.toString());
}
}
}
}
};
FStyleFormat.prototype.isAStyle = function (name) {
return((this.nonStyles[name] ? false : true));
};
#endinitclip
Symbol 14 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 24 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 33 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 34 MovieClip [UpArrow] Frame 1
stop();
Symbol 34 MovieClip [UpArrow] Frame 2
stop();
Symbol 34 MovieClip [UpArrow] Frame 3
stop();
Symbol 41 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 48 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 53 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 54 MovieClip [ScrollThumb] Frame 1
stop();
Symbol 62 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 70 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 78 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 79 MovieClip [DownArrow] Frame 1
stop();
Symbol 79 MovieClip [DownArrow] Frame 2
stop();
Symbol 79 MovieClip [DownArrow] Frame 3
stop();
Symbol 82 MovieClip Frame 1
var component = _parent;
component.registerSkinElement(track_mc, "scrollTrack");
Symbol 83 MovieClip [FScrollBarSymbol] Frame 1
#initclip 2
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 tmp = 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;
tmp = Math.min(tmp, this.maxPos);
this.setScrollPosition(Math.max(tmp, 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 wasEnabled = this.enable;
if (enabledFlag && (!wasEnabled)) {
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) && (wasEnabled)) {
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 delt = this.smallScroll;
if (inc != "one") {
delt = ((this.largeScroll == 0) ? (this.pageSize) : (this.largeScroll));
}
var newPos = (this.getScrollPosition() + (mode * delt));
if (newPos > this.maxPos) {
newPos = this.maxPos;
} else if (newPos < this.minPos) {
newPos = this.minPos;
}
this.setScrollPosition(newPos);
};
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 c = this.controller;
c.scrollPosition = Math.round(((c.maxPos - c.minPos) * (this._y - c.scrollTop)) / c.trackHeight) + c.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 pos = this.textField.hscroll;
this.setScrollProperties(this.textField._width, 0, this.textField.maxhscroll);
this.setScrollPosition(Math.min(pos, this.textField.maxhscroll));
} else {
var pos = this.textField.scroll;
var pageSize = (this.textField.bottomScroll - this.textField.scroll);
this.setScrollProperties(pageSize, 1, this.textField.maxscroll);
this.setScrollPosition(Math.min(pos, 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 93 Button
on (press) {
gotoAndStop (2);
}
Symbol 97 Button
on (press) {
getURL ("http://www.opfergabe.sub.cc", "_blank", "GET");
}
Symbol 100 Button
on (press) {
gotoAndPlay (5);
}
Symbol 104 Button
on (press) {
startDrag (l2);
}
on (release) {
stopDrag();
}
Symbol 107 Button
on (press) {
startDrag (stk);
}
on (release) {
stopDrag();
}
Symbol 114 Button
on (press) {
startDrag (BHead);
}
on (release) {
stopDrag();
}
Symbol 117 Button
on (press) {
startDrag (lz);
}
on (release) {
stopDrag();
}
Symbol 120 Button
on (press) {
startDrag (gz);
}
on (release) {
stopDrag();
}
Symbol 123 Button
on (press) {
startDrag (deagle);
}
on (release) {
stopDrag();
}
Symbol 134 Button
on (press) {
startDrag (fts);
}
on (release) {
stopDrag();
}
Symbol 137 Button
on (press) {
startDrag (door);
}
on (release) {
stopDrag();
}
Symbol 140 Button
on (press) {
startDrag (_ant);
}
on (release) {
stopDrag();
}
Symbol 143 Button
on (press) {
startDrag (afro);
}
on (release) {
stopDrag();
}
Symbol 150 Button
on (press) {
startDrag (tnt);
}
on (release) {
stopDrag();
}
Symbol 153 Button
on (press) {
startDrag (bad);
}
on (release) {
stopDrag();
}
Symbol 156 Button
on (press) {
startDrag (cool);
}
on (release) {
stopDrag();
}
Symbol 159 Button
on (press) {
startDrag (duff);
}
on (release) {
stopDrag();
}
Symbol 162 Button
on (press) {
startDrag (l1);
}
on (release) {
stopDrag();
}
Symbol 165 Button
on (press) {
startDrag (rings);
}
on (release) {
stopDrag();
}
Symbol 171 Button
on (press) {
startDrag (camo1);
}
on (release) {
stopDrag();
}
Symbol 174 Button
on (press) {
startDrag (t800);
}
on (release) {
stopDrag();
}
Symbol 177 Button
on (press) {
startDrag (bayern1);
}
on (release) {
stopDrag();
}
Symbol 180 Button
on (press) {
startDrag (lolli);
}
on (release) {
stopDrag();
}
Symbol 185 Button
on (press) {
startDrag (gstell);
}
on (release) {
stopDrag();
}
Symbol 192 Button
on (press) {
startDrag (hillbilli);
}
on (release) {
stopDrag();
}
Symbol 195 Button
on (press) {
startDrag (pimp);
}
on (release) {
stopDrag();
}
Symbol 198 Button
on (press) {
startDrag (x1);
}
on (release) {
stopDrag();
}
Symbol 201 Button
on (press) {
startDrag (fez);
}
on (release) {
stopDrag();
}
Symbol 204 Button
on (press) {
startDrag (bier);
}
on (release) {
stopDrag();
}
Symbol 207 Button
on (press) {
startDrag (kr);
}
on (release) {
stopDrag();
}
Symbol 213 Button
on (press) {
startDrag (tuttu);
}
on (release) {
stopDrag();
}
Symbol 216 Button
on (press) {
startDrag (bb1);
}
on (release) {
stopDrag();
}
Symbol 219 Button
on (press) {
startDrag (bb2);
}
on (release) {
stopDrag();
}
Symbol 225 Button
on (press) {
startDrag (nixon2);
}
on (release) {
stopDrag();
}
Symbol 228 Button
on (press) {
startDrag (toup);
}
on (release) {
stopDrag();
}
Symbol 231 Button
on (press) {
startDrag (brill);
}
on (release) {
stopDrag();
}
Symbol 235 Button
on (press) {
startDrag (flx);
}
on (release) {
stopDrag();
}
Symbol 238 Button
on (press) {
startDrag (x2);
}
on (release) {
stopDrag();
}
Symbol 241 Button
on (press) {
startDrag (ch);
}
on (release) {
stopDrag();
}
Symbol 245 Button
on (press) {
startDrag (zig);
}
on (release) {
stopDrag();
}
Symbol 248 Button
on (press) {
gotoAndStop (3);
}
Symbol 253 Button
on (press) {
getURL ("http://www.opfergabe.sub.cc", "_blank", "GET");
}
Symbol 258 Button
on (press) {
gotoAndPlay (1);
}
Symbol 261 Button
on (press) {
startDrag (blunt);
}
on (release) {
stopDrag();
}
Symbol 266 Button
on (press) {
startDrag (kicka);
}
on (release) {
stopDrag();
}
Symbol 269 Button
on (press) {
startDrag (hook);
}
on (release) {
stopDrag();
}
Symbol 272 Button
on (press) {
startDrag (penis);
}
on (release) {
stopDrag();
}
Symbol 275 Button
on (press) {
startDrag (sh1);
}
on (release) {
stopDrag();
}
Symbol 278 Button
on (press) {
startDrag (tgz);
}
on (release) {
stopDrag();
}
Symbol 281 Button
on (press) {
startDrag (tgus);
}
on (release) {
stopDrag();
}
Symbol 288 Button
on (press) {
startDrag (ski2);
}
on (release) {
stopDrag();
}
Symbol 291 Button
on (press) {
startDrag (at);
}
on (release) {
stopDrag();
}
Symbol 325 Button
on (press) {
startDrag (tatoo);
}
on (release) {
stopDrag();
}
Symbol 331 Button
on (press) {
startDrag (titt);
}
on (release) {
stopDrag();
}
Symbol 334 Button
on (press) {
startDrag (maso);
}
on (release) {
stopDrag();
}
Symbol 337 Button
on (press) {
startDrag (sado);
}
on (release) {
stopDrag();
}
Symbol 340 Button
on (press) {
startDrag (ski1);
}
on (release) {
stopDrag();
}
Symbol 343 Button
on (press) {
startDrag (bag);
}
on (release) {
stopDrag();
}
Symbol 346 Button
on (press) {
startDrag (at);
}
on (release) {
stopDrag();
}
Symbol 349 Button
on (press) {
startDrag (sm2);
}
on (release) {
stopDrag();
}
Symbol 353 Button
on (press) {
startDrag (t_ng);
}
on (release) {
stopDrag();
}
Symbol 358 Button
on (press) {
startDrag (txs);
}
on (release) {
stopDrag();
}
Symbol 361 Button
on (press) {
startDrag (reagenz);
}
on (release) {
stopDrag();
}
Symbol 364 Button
on (press) {
startDrag (hs2);
}
on (release) {
stopDrag();
}
Symbol 368 Button
on (press) {
startDrag (t_og);
}
on (release) {
stopDrag();
}
Symbol 371 Button
on (press) {
startDrag (tntx);
}
on (release) {
stopDrag();
}
Symbol 375 Button
on (press) {
startDrag (ah);
}
on (release) {
stopDrag();
}
Symbol 378 Button
on (press) {
startDrag (fry);
}
on (release) {
stopDrag();
}
Symbol 383 Button
on (press) {
startDrag (sm1);
}
on (release) {
stopDrag();
}
Symbol 386 Button
on (press) {
startDrag (pac);
}
on (release) {
stopDrag();
}
Symbol 389 Button
on (press) {
startDrag (tt);
}
on (release) {
stopDrag();
}
Symbol 392 Button
on (press) {
startDrag (st);
}
on (release) {
stopDrag();
}
Symbol 395 Button
on (press) {
startDrag (net);
}
on (release) {
stopDrag();
}
Symbol 398 Button
on (press) {
startDrag (cwo2);
}
on (release) {
stopDrag();
}
Symbol 401 Button
on (press) {
startDrag (tanga);
}
on (release) {
stopDrag();
}
Symbol 404 Button
on (press) {
startDrag (fl);
}
on (release) {
stopDrag();
}
Symbol 407 Button
on (press) {
startDrag (mtl);
}
on (release) {
stopDrag();
}
Symbol 410 Button
on (press) {
startDrag (cwo);
}
on (release) {
stopDrag();
}
Symbol 413 Button
on (press) {
startDrag (osama1);
}
on (release) {
stopDrag();
}
Symbol 416 Button
on (press) {
startDrag (osama2);
}
on (release) {
stopDrag();
}
Symbol 420 Button
on (press) {
gotoAndStop (4);
}
Symbol 422 Button
on (press) {
getURL ("http://www.opfergabe.sub.cc", "_blank", "GET");
}
Symbol 424 Button
on (press) {
startDrag (zp);
}
on (release) {
stopDrag();
}
Symbol 427 Button
on (press) {
startDrag (peggy1);
}
on (release) {
stopDrag();
}
Symbol 430 Button
on (press) {
startDrag (zopf);
}
on (release) {
stopDrag();
}
Symbol 438 Button
on (press) {
startDrag (hhr);
}
on (release) {
stopDrag();
}
Symbol 441 Button
on (press) {
startDrag (pst);
}
on (release) {
stopDrag();
}
Symbol 444 Button
on (press) {
startDrag (_codec);
}
on (release) {
stopDrag();
}
Symbol 447 Button
on (press) {
startDrag (str);
}
on (release) {
stopDrag();
}
Symbol 450 Button
on (press) {
startDrag (lsm2);
}
on (release) {
stopDrag();
}
Symbol 453 Button
on (press) {
startDrag (sport1);
}
on (release) {
stopDrag();
}
Symbol 456 Button
on (press) {
startDrag (tato2);
}
on (release) {
stopDrag();
}
Symbol 459 Button
on (press) {
startDrag (lth2);
}
on (release) {
stopDrag();
}
Symbol 462 Button
on (press) {
startDrag (lth1);
}
on (release) {
stopDrag();
}
Symbol 465 Button
on (press) {
startDrag (lth3);
}
on (release) {
stopDrag();
}
Symbol 468 Button
on (press) {
startDrag (lsm1);
}
on (release) {
stopDrag();
}
Symbol 472 Button
on (press) {
startDrag (remote);
}
on (release) {
stopDrag();
}
Symbol 475 Button
on (press) {
startDrag (lsh);
}
on (release) {
stopDrag();
}
Symbol 478 Button
on (press) {
startDrag (lbr1);
}
on (release) {
stopDrag();
}
Symbol 481 Button
on (press) {
startDrag (pH);
}
on (release) {
stopDrag();
}
Symbol 484 Button
on (press) {
startDrag (bt1);
}
on (release) {
stopDrag();
}
Symbol 487 Button
on (press) {
startDrag (lbr2);
}
on (release) {
stopDrag();
}
Symbol 490 Button
on (press) {
startDrag (lbr3);
}
on (release) {
stopDrag();
}
Symbol 493 Button
on (press) {
startDrag (sh2);
}
on (release) {
stopDrag();
}
Symbol 496 Button
on (press) {
startDrag (wS);
}
on (release) {
stopDrag();
}
Symbol 500 Button
on (press) {
startDrag (niK);
}
on (release) {
stopDrag();
}
Symbol 503 Button
on (press) {
startDrag (ltt1);
}
on (release) {
stopDrag();
}
Symbol 506 Button
on (press) {
startDrag (ltt2);
}
on (release) {
stopDrag();
}
Symbol 509 Button
on (press) {
startDrag (tomU);
}
on (release) {
stopDrag();
}
Symbol 512 Button
on (press) {
startDrag (colt);
}
on (release) {
stopDrag();
}
Symbol 515 Button
on (press) {
startDrag (ice);
}
on (release) {
stopDrag();
}
Symbol 518 Button
on (press) {
startDrag (pTT);
}
on (release) {
stopDrag();
}
Symbol 526 Button
on (press) {
startDrag (nBr);
}
on (release) {
stopDrag();
}
Symbol 529 Button
on (press) {
startDrag (boxa2);
}
on (release) {
stopDrag();
}
Symbol 532 Button
on (press) {
startDrag (karat);
}
on (release) {
stopDrag();
}
Symbol 535 Button
on (press) {
startDrag (goshark);
}
on (release) {
stopDrag();
}
Symbol 538 Button
on (press) {
startDrag (blf);
}
on (release) {
stopDrag();
}
Symbol 541 Button
on (press) {
startDrag (belt);
}
on (release) {
stopDrag();
}
Symbol 544 Button
on (press) {
startDrag (peit);
}
on (release) {
stopDrag();
}
Symbol 548 Button
on (press) {
startDrag (nipps);
}
on (release) {
stopDrag();
}
Symbol 550 Button
on (press) {
gotoAndPlay (2);
}
Symbol 552 Button
on (press) {
getURL ("http://www.opfergabe.sub.cc", "_blank", "GET");
}
Symbol 554 Button
on (press) {
startDrag (cutH);
}
on (release) {
stopDrag();
}
Symbol 557 Button
on (press) {
startDrag (supa);
}
on (release) {
stopDrag();
}
Symbol 561 Button
on (press) {
startDrag (eih);
}
on (release) {
stopDrag();
}
Symbol 564 Button
on (press) {
startDrag (boxa1);
}
on (release) {
stopDrag();
}
Symbol 567 Button
on (press) {
startDrag (clown);
}
on (release) {
stopDrag();
}