|
主题: 急!请教一个如何等待问题..
|
digikk
职务:普通成员
等级:1
金币:0.0
发贴:5
|
#12003/10/9 18:50:36
请教如何等待3秒后自动继续播放?我用wait或delay,但等待时按钮都无反应请教如何解决谢谢
|
未来的大师
职务:普通成员
等级:2
金币:1.0
发贴:550
|
#22003/10/9 19:06:03
on beginSprite startTimer end on exitFrame if (the timer <60*3) then go to the frame else go to the frame +1 end if end
|
digikk
职务:普通成员
等级:1
金币:0.0
发贴:5
|
#32003/10/9 20:00:59
谢谢..但这样的话我想同时用一个按钮控制整个播放的暂停和继续播放,就不可以用go the frame 了...应该怎样做呢.谢谢..
|
未来的大师
职务:普通成员
等级:2
金币:1.0
发贴:550
|
#42003/10/9 20:45:19
你看看这样行不行!
on mouseUp repeat with i=1 to 1 if the pauseState = FALSE then go to the frame exit repeat end if if the pauseState = TRUE then go the frame + 1 end if end repeat end
|