主题:  键盘问题

eos

职务:普通成员
等级:1
金币:0.0
发贴:24
注册:2002/8/15 17:02:21
#12003/7/8 15:27:43
当按下键盘F12时,桢跳转到下一桢。如何写啊?如不按f12,电影将在5秒后自动跳转



D计划-混沌

职务:管理员
等级:6
金币:15.2
发贴:3528
注册:2007/4/9 9:48:37
#22003/7/8 18:17:04
on beginsprite me
starttimer
end
on exitFrame me
if the timer>5*60 then
go to the frame +1
else
go to the frame
end if
end
on keydown me
if keypressed() then
go to the frame +1
end if
end

编辑历史:[这消息被54zq编辑过(编辑时间2003-07-08 18:17:38)]


Hewy

职务:普通成员
等级:1
金币:0.0
发贴:15
注册:2003/6/9 16:33:19
#32003/7/9 17:56:52
应该还有判断是不是按下F12吧:)



D计划-混沌

职务:管理员
等级:6
金币:15.2
发贴:3528
注册:2007/4/9 9:48:37
#42003/7/9 18:32:59
把keycode写在keypressed() 里就可以了