[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.Section 1 (652 B)
//MainTimeline (credits_fla.MainTimeline)
package credits_fla {
import flash.events.*;
import flash.display.*;
public dynamic class MainTimeline extends MovieClip {
public var lbar:MovieClip;
public function MainTimeline(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
this.stop();
this.loaderInfo.addEventListener(ProgressEvent.PROGRESS, PL_LOADING);
}
public function PL_LOADING(_arg1:ProgressEvent):void{
var _local2:Number;
_local2 = ((_arg1.bytesLoaded / _arg1.bytesTotal) * 100);
lbar.scaleX = (_local2 / 100);
if (_local2 == 100){
this.gotoAndPlay(1);
};
}
}
}//package credits_fla