Hi,
I have a set of cards which can be touched and moves.
There is a “Calculate” button which creates a new rectangle with a message on it while the calculations are being processed and this rectangle (actually the whole local display group) have two dummie events, one tap and one touch, assigned to it:
function onTouch(event) return true end function onTap(event) return true end
However, if the cards are being touched during this message the cards are reacting to the touch event _after_ the calculations (and the message removed) have completed.
I added the dummie events after reading this article:
http://coronageek.com/1162/handling-corona-sdk-tap-events-vs-touch-events/
I think it might be because I use DMC TouchManager but I’m not sure.
Can anyone give me some input on this?
Best regards,
Tomas