快速业务通道

Flash CS4如何控制动画声音的停止和播放

作者 凌众技术 来源 网页制作 浏览 发布时间 2012-03-09
txt.x=18;
play_btn.x=50;
play_btn.y=100;
play_txt.selectable = false;
play_btn.addChild(play_txt);
play_btn.filters=[d_filters];
play_btn.addEventListener(MouseEvent.CLICK, soundPlay);
addChild(play_btn);
//创建一个按钮,用于停止音乐
stop_btn = new Sprite();
stop_btn.graphics.beginFill(0xFFCC32);
stop_btn.graphics.drawRoundRect(0, 0, 70, 18, 10, 10);
stop_btn.graphics.endFill();
stop_btn.x=130;
stop_btn.y=100;
var stop_txt:TextField = new TextField();
stop_txt.x=18;
stop_txt.text = "暂停";
stop_txt.selectable = false;
stop_btn.addChild(stop_txt);
stop_btn.filters=[d_filters];
stop_btn.addEventListener(MouseEvent.CLICK, soundStop);
addChild(stop_btn);

}
//监听音乐的播放进度
private function positionTimerHandler(event:TimerEvent):void {
var ybf:int = channel.position.toFixed(0);
var zcd:int = soundFactory.length;
var bfs:int = Math.floor(ybf/zcd*100);
//trace("音乐总长度:"+zcd, "音乐已播放:"+ybf, "播放进度为:"+bfs+"%");
}
//加载音乐完成时
private function completeHandler(event:Event):void {
//trace("加载音乐完成: " + event);
}
//在存在可用于MP3声音的ID3数据时
private function id3Handler(event:Event):void {
//trace("音乐的ID3信息如下:");
for (var s in soundFactory.id3) {
//trace("\t", s, ":", soundFactory.id3[s]);
}
//trace("关于ID3信息介绍,请参见Sound类-->属性-->id3");
}
//加载音乐错误时
private function ioErrorHandler(event:Event):void {
//trace("加载音乐错误,错误信息如下:" + event);
positionTimer.stop();
}
//加载音乐时
private function progressHandler(eventrogressEvent):void {
var yjz:int = event.bytesLoaded;
var zcd:int = event.bytesTotal;
var bfs:int = Math.floor(yjz/zcd*100);
//trace("音乐总长度:"+zcd,"已加载: "+yjz, "加载进度为:"+bfs+"%");
}
//音乐播放完成
private function soundCompleteHandler(event:Event):void {
//trace("音乐播放完成: " + event);
positionTimer.stop();
}
//点击播放按钮事件
private function soundPlay(event:MouseEvent):void {
if (bSoundS

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号