[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 (512 B)
//MainTimeline (Schneider_fla.MainTimeline)
package Schneider_fla {
import flash.events.*;
import flash.display.*;
public dynamic class MainTimeline extends MovieClip {
public var SchneiderButton:SimpleButton;
public function MainTimeline(){
addFrameScript(0, frame1);
}
function frame1(){
this.SchneiderButton.addEventListener(MouseEvent.MOUSE_DOWN, mausKlick);
stop();
}
public function mausKlick(_arg1:MouseEvent):void{
this.gotoAndPlay("Klick");
}
}
}//package Schneider_fla