关于应该怎么做呢?的问题
先导入声音文件
步骤:
1 导入声音文件到库
2 选择库中的声音文件 为其加上链接(库的右上角有一链接菜单 为其命名为mySound)
3 在主场景中第一帧添加代码:
s = new Sound();
tachSound(“mySound”);
art();
以上是用代码来链接声音文件
以下是制作音量控制的步骤:
1 制作一个按钮
2 把铵钮拖到场景中
3 选择按钮 右键 – 转为影片剪辑 slide
4 选择slide 为里面的按钮输入代码
on(press){
startDrag(“”,false,left,top,right,bottom);
dragging =true;
}
on(release, releaseOutside){
stopDrag();
dragging = false;
}
5 回到主场景中 选择slide 并添加代码:
onClipEvent(load){ //只允许按钮上下移动
left = _x;
right = _x;
top = _y;
bottom = _y+100;
}
onClipEvent(enterFrame){
if(dragging == true){
_ tVolume(100 – (_y-top)); //设置音量大小的函数
}
}
完成
效果见附件。