标题: [DR11] FLASH动画循环播放问题 [打印本页] 作者: 五星上将 时间: 2014-12-26 21:36 标题: [DR11] FLASH动画循环播放问题 把下面的拷贝到对应的行为通道上就可以了。就不必用等待了,它自动等待。
on exitFrame me
go to the frame
end
on keyDown
put the keyCode
case (the keyCode) of
116: go to previous --Page Up
121: go to next --Page Down
50: go to "0" --~
18: go to "1" --1
19: go to "2" --2
20: go to "3" --3
21: go to "4" --4
23: go to "5" --5
22: go to "6" --6
26: go to "7" --7
28: go to "8" --8
51: go to "a" of movie "000"
35: go to the frame + 1 --回车
49: go to the frame + 1 --空格
end case
end
on mousedown
go to the frame + 1
end 作者: yipingzi 时间: 2014-12-27 01:46
谢谢楼主提供的分享。作者: gxj000 时间: 2014-12-27 06:38
谢谢超版提供分享作者: vcall 时间: 2015-12-25 09:51
多谢楼主提供的分享。