Hi,
it would be handy to have keyboard support in the simulator for quick testing (eg scrolling around maps etc)
this would want to be something that didn’t increase the device final build size (unless you plan to support phones with flip out keyboards)
this might also help test multitouch on the simulator to some extent
eg
[lua]keyboard=require(“SimulatorKeyboard”)
keyboard.set(“UP”, Key.UP_ARROW)
keyboard.set(“DOWN”, Key.DOWN_ARROW)
keyboard.set(“JUMP”, Key.SPACE)
local function onKeyPress(k)
if(k.command==“UP” or k.key = Key.UP) then
print(“up test”)
end
end
keyboard:addEventListener(“keyboard”, on KeyPress)[/lua] [import]uid: 6645 topic_id: 3674 reply_id: 303674[/import]