Simultanious mouse event and key event

Hi,

   My question is short. I have two runtime listeners; one for tap events, and one for key events. They both register independently. However, if I hold down a key (key event) and then try to tap the mouse/touchpad (tap event) it does not register ( the key event does register ). Is there a method to resolve this dilemma?

That doesn’t sound right.

Put this in main.lua by itself and re-try your experiment:

local function onTap( event ) for k,v in pairs( event ) do print( "onTap()", k, v ) end end Runtime:addEventListener("tap",onTap) local function onKey( event ) for k,v in pairs( event ) do print( "onKey()", k, v ) end end Runtime:addEventListener("key",onKey)

That doesn’t sound right.

Put this in main.lua by itself and re-try your experiment:

local function onTap( event ) for k,v in pairs( event ) do print( "onTap()", k, v ) end end Runtime:addEventListener("tap",onTap) local function onKey( event ) for k,v in pairs( event ) do print( "onKey()", k, v ) end end Runtime:addEventListener("key",onKey)