I have a button with the following code. I detected that the response time from the user touch the button until the card move from one to another is very high.
Any tip for a fast response? I still waiting more than 1 second...
I found quite often mouserelease is being called instead of mouseup due to finger movement and that caused a delay, or the impression the button didnt do anything when clicked.
Adding
on mouserelease
send mouseup to me
end mouserelease
in the parent stack made things infinitely faster!
You mentioning that sometimes you have to 'touch' twice made me think that it might be worth trying to issue an iphoneClearTouches command in 'mouseDown' prior to your 'mouseUp'... it's worth a try.
Just a thought, are you using a device or simulator???? They can behave quite differently.
Another option instead of lock screen is..
set the lockmoves to true
That way, the screen is not locked, but all the moves only happen together at the end of the function rather than individually.
No idea one is better than the other (or even it if will help you), but it seems to help in some cases with a slightly better user experience when lock screen can sometimes give a definite effect of a stall followed by something happening fast.