当前位置: 代码迷 >> Web前端 >> 播放按钮统制代码
  详细解决方案

播放按钮统制代码

热度:263   发布时间:2012-09-02 21:00:34.0
播放按钮控制代码
//【播放按钮代码】
function playmovie(event:MouseEvent):void
{
	play();
}
but_play.addEventListener(MouseEvent.CLICK,playmovie);
//暂停
function stopmovie(event:MouseEvent):void
{
	stop();
}
but_stop.addEventListener(MouseEvent.CLICK,stopmovie);

?

  相关解决方案