var url:URLRequest = new URLRequest ("mix");//加载歌曲mix的URLvar sound:Sound = new Sound();//允许程序中应用声音sound.load(url);//加载urlvar position:Number = 0;//当前播放的位置var channel:SoundChannel = new SoundChannel();//声音通道,控制程序中的声音btn.label = "播放";//button按钮label的内容为播放btn.addEventListener(MousrEvent.CLICK,onClick);//为按钮添加单击事件function onClick(e:MousrEvent):void//对单击事件的处理函数{ if(btn.label == "播放")//如果按钮为播放时 { channel = sound.play(position);//声音就会从当前位置开始播放 btn.label = "停止";//这是按钮内容就会变成停止 }else{channel.stop();//否则声音就会停止 position = channel.position;//声音停止在当前位置 btn.label = "播放";//按钮又会变回播放 }}
这是一个音乐的播放与停止的实例