Frame 1 (12 B)
amount = 1;
Frame 2 (321 B)
var total = _root.getBytesTotal();
var loaded = _root.getBytesLoaded();
var perc = ((loaded / total) * 100);
percent = Math.round(perc) + "%";
setProperty("progress", _xscale , perc);
if (loaded == total) {
percent = "complete";
gotoAndPlay (4);
}
_root.spinnermov._rotation = amount;
amount = amount + perc;
Frame 3 (17 B)
gotoAndPlay (2);
Frame 5 (8 B)
stop();
Instance of Symbol 12 MovieClip "video" in Frame 5 (403 B)
onClipEvent (load) {
frameIncrement = _root.frameMeter._width / this._totalframes;
scrubIncrement = this._totalframes / _root.frameMeter._width;
}
onClipEvent (enterFrame) {
if (!scrubbing) {
_root.frameScrubber._x = _root.frameScrubber.initx + (this._currentframe * frameIncrement);
} else {
gotoAndStop(Math.ceil((_root.frameScrubber._x - _root.frameScrubber.initx) * scrubIncrement) +4);
}
}
Instance of Symbol 32 MovieClip "frameScrubber" in Frame 5 (111 B)
onClipEvent (load) {
initx = _x;
left = _x;
right = _x + _root.frameMeter._width;
top = _y;
bottom = _y;
}
Symbol 12 MovieClip Frame 960 (8 B)
stop();
Symbol 15 Button (67 B)
on (release) {
_root.video.stopped = false;
_root.video.play();
}
Symbol 19 Button (125 B)
on (release) {
if (_root.embeddedVideo.stopped) {
_root.video.gotoAndStop(1);
} else {
_root.video.gotoAndPlay(1);
}
}
Symbol 23 Button (66 B)
on (release) {
_root.video.stopped = true;
_root.video.stop();
}
Symbol 26 Button (68 B)
on (release) {
_root.video.gotoAndStop(_root.video._totalframes);
}
Symbol 31 Button (211 B)
on (press) {
_root.video.scrubbing = true;
startDrag ("", false, left, top, right, bottom);
}
on (release) {
stopDrag();
_root.video.scrubbing = false;
if (!_root.video.stopped) {
_root.video.play();
}
}
Symbol 37 Button (67 B)
on (release) {
getURL ("http://www.weebls-stuff.com", "_blank");
}