flash中音乐的播放暂停偷懒方法
时间:2011-05-09 来源:tangguo0806
flash中音乐的播放暂停偷懒方法
具体步骤
首先在场景的第1帧添加as:
s=new Sound(); //这是绑定声音的代码
s.attachSound("s");
然后在播放按钮上添加:
on (release) {
s.start(p/1000);
}
在暂停按钮上添加:
on (release) {
s.stop();
p = s.position;
}
最后在停止按钮添加:
on (release) {
s.stop();
p = s.position("0");
} 本文作者:
首先在场景的第1帧添加as:
s=new Sound(); //这是绑定声音的代码
s.attachSound("s");
然后在播放按钮上添加:
on (release) {
s.start(p/1000);
}
在暂停按钮上添加:
on (release) {
s.stop();
p = s.position;
}
最后在停止按钮添加:
on (release) {
s.stop();
p = s.position("0");
} 本文作者:
相关阅读 更多 +