播放按钮的实例名称.addEventListener(MouseEvent.CLICK,an_a);
function an_a(evt:MouseEvent):void{
play();
}
停止按钮的实例名称.addEventListener(MouseEvent.CLICK,an_b);
function an_b(evt:MouseEvent):void{
stop();
}
以上是我提供的Actionscript3.0代码的,这个是要先给按钮注册侦听器,然后在动作下给按钮指定他的播放与停止的动作,确实as3还是保留了以前AS2的习惯,不过还是可以用的,你试试看看吧
AS3.0,不再在按钮上写代码,直接给按钮命名并在帧上为按钮写代码
下面代码是为名为btn1的按钮写的
btn1.addEventListener(MouseEvent.CLICK,go1);
function go1(event:MouseEvent) {
stop()
}
a_mc.addEventListener(MouseEvent.CLICK,c);
b_mc.addEventListener(MouseEvent.CLICK,d);
function c(event:MouseEvent):void
{
play();
}
function d(event:MouseEvent):void
{
stop();
}
这里的a_mc和b_mc分别改成两个按钮的实例名称。
先给物体运动,新建图层投入按钮,在属性栏中,给鼠标实例名为:sb_btn. 新建图层,在第一帧写代码:sb_btn。addEventListener(MouseEvent.CLICK,sban)
function sban(event:MouseEvent){
this.stop()
}