multiple button events same time

I have two buttons in stage.
But I cannot get touch events of these buttons at the same time.
I think a multitouch event fires when pressing buttons at the sametime.
How can I solve this?

btn1:addEventListener( "touch", tapFor1 ) btn2:addEventListener( "touch", tapFor2 ) [import]uid: 51730 topic_id: 16026 reply_id: 316026[/import]

I think you should use:

system.activate( “multitouch” )

You can find an example here:
http://developer.anscamobile.com/content/drag-me-multitouch [import]uid: 75034 topic_id: 16026 reply_id: 59481[/import]

adding return true solve my problem

function tapFor1( event ) some code... return true end [import]uid: 51730 topic_id: 16026 reply_id: 59486[/import]

what do you mean you do not get the events at the same time after you have multi-touch enabled?

cheers,

?:slight_smile: [import]uid: 3826 topic_id: 16026 reply_id: 59664[/import]