AS3.0中event:MouseEvent和e:MouseEvent的区别?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AS3.0中event:MouseEvent和e:MouseEvent的区别?相关的知识,希望对你有一定的参考价值。

例如function x (event:MouseEvent):void
function x (e:MouseEvent):void

两句话只有 event 和 e 有区别,就只是两个不同的变量名,变量名基本上可以随便取的,叫阿猫阿狗都行,只要用到的时候叫对名字就行。 参考技术A 没区别
变量名不一样而已

AS3 中的循环声音

【中文标题】AS3 中的循环声音【英文标题】:Looping sound in AS3 【发布时间】:2017-01-02 15:13:19 【问题描述】:

在使用我的 Flash 程序时尝试循环播放背景音乐。

到目前为止,我的代码是这样的:

//turn off sound
btnOff.addEventListener(MouseEvent.CLICK, fl_stopsound);

function fl_stopsound(event:MouseEvent):void

    SoundMixer.stopAll();


//turns sound on
btnOn.addEventListener(MouseEvent.CLICK, fl_ClickToPlayStopSound_1);

var fl_SC_1:SoundChannel;

//keeps track of whether the sound should be played or stopped
var fl_ToPlay_1:Boolean = true;

function fl_ClickToPlayStopSound_1(evt:MouseEvent):void

        var mySound:Sound = new background(); 
        mySound.play();
    

btnOff 关闭声音,btnOn 打开声音。我的配乐是 1:50 分钟长。是否可以使用这些按钮在程序中循环播放曲目?

干杯

【问题讨论】:

【参考方案1】:

使用mySound.play(0, int.MAX_VALUE);

【讨论】:

以上是关于AS3.0中event:MouseEvent和e:MouseEvent的区别?的主要内容,如果未能解决你的问题,请参考以下文章

动作脚本 3 event.target

[AIR] AS3.0设置屏保功能

flash cs5 用as3.0给按钮加链接

AS3.0删除数组中指定位置的元素

as3.0 判断圆圈正转还是倒转

[ActionScript 3.0] AS3.0 马赛克效果