Hello.
I have a strange bug under Windows (or the simulator)
In the following code,
if I press down-arrow and right-arrow then space key do not fire event !!!
function onKeyEvent(event)
if event.phase == 'down' then
local key = event.keyName
print (key)
end
end
Runtime:addEventListener( "key", onKeyEvent )
Do you have the same problem ?