把下面的拷贝到对应的行为通道上就可以了。就不必用等待了,它自动等待。
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