主题:  怎样在倒计时的时候播放声 音,并且结束时到预定帧?

thelcg

职务:普通成员
等级:1
金币:0.0
发贴:106
#12002/9/7 16:46:10
怎样在倒计时的时候播放声音,并且结束时到预定帧?



donlee

职务:普通成员
等级:1
金币:1.0
发贴:271
#22002/9/8 7:24:33
property pPlaystate
on beginsprite me
pPlaystate=false
end

on counterstart
sound playfile 3,"soundfile"
pPlaystate=true
end

on exitframe me
if pPlaystate=true and soundbusy(3) then
go the frame
else
go frame "指定帧"
end if
end

编辑历史:[这消息被donlee编辑过(编辑时间2002-09-08 07:26:40)]


thelcg

职务:普通成员
等级:1
金币:0.0
发贴:106
#32002/9/14 17:59:56
Thank for your help !