"artist","歌手:",new Rectangle(153,3,97)));
base.addChild(getTextField("special","专辑:",new Rectangle(253,3,147)));
bmp = new Bitmap(new BitmapData(preWidth-4,preHeight-54,false,0));
bmp.x = 2;
bmp.y = 27;
addChild(bmp);
button = new Button();
button.x = (preWidth - button.width)/2;
button.y = 40;
button.label = "PLAY MUSIC";
button.enabled = false;
button.addEventListener(MouseEvent.CLICK, clickHandler);
addChild(button);
}
private function clickHandler(event:MouseEvent):void{
if(channel != null){
channel.removeEventListener(Event.SOUND_COMPLETE, soundCompleteHandler);
channel = null;
}
|