Показать сообщение отдельно
Старый 16.10.2006, 12:18
motor4ik вне форума Посмотреть профиль Отправить личное сообщение для motor4ik Посетить домашнюю страницу motor4ik Найти все сообщения от motor4ik
  № 4  
Ответить с цитированием
motor4ik
 
Аватар для motor4ik

Регистрация: Jun 2005
Адрес: Moscow - immigrate from Volgodonsk
Сообщений: 2,534
Код:
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();
	}
		
}