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
变量名不一样而已
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的区别?的主要内容,如果未能解决你的问题,请参考以下文章