[Tools][Expand/Collapse All]Note that automatic extraction of ActionScript 3 is still pretty much unsupported by swfchan. AS1/AS2 works okay most of the time.Frame 1 (399 B)
var bT = Math.round(this.getBytesTotal() / 1024);
var pc;
this.onEnterFrame = function () {
var bL = Math.round(this.getBytesLoaded() / 1024);
_parent.video_loader_mc.bar_mc._xscale = Math.round((bL / bT) * 100);
if (bL == bT) {
this.play();
_parent.video_loader_mc._visible = false;
delete this.onEnterFrame;
} else {
_parent.video_loader_mc._visible = true;
}
};
stop();
Frame 1579 (28 B)
_root.prevFrame();
stop();