
Код:
dynamic class Butt extends MovieClip {
public function Butt(){
}
private function _onRelease():Void{
}
//инициализация кнопки (присваиваем Label кнопки и функцию при отпускании)
public function init(txt:String,func:Function):Void{
this.text_mc.text_txt.text=txt;
trace(this.text_mc.text_txt.text);
this._onRelease=func;
}
public function onRollOver():Void{
this.gotoAndStop(2);
}
public function onRollOut():Void{
this.gotoAndStop(1);
}
public function onPress():Void{
this.gotoAndPlay(3);
}
public function onRelease():Void{
this.gotoAndPlay(5);
this._onRelease();
}
}