#42002/11/10 18:23:18
这样吧,按下边这样的as写:
新建立一个mc,写如下as:
onClipEvent (load) {
yoursound=new Sound();
yoursound.attachSound("fs");
}
fs是新声音实例的名称. 它和在Symbol Linkage Properties对话框中输入的用于标识的名称是一样的. 此参数必须包含在 " " (引号)中
在第一祯的按钮写:
on (release) {
this.yoursound.start(0, true);
gotoAndStop(2);
}
第二祯写:
on (release) {
this.yoursound.stop();
gotoAndStop(1);
}