11-14-2012 07:44 AM
I have an image view that changes when it is touched and it changes back to it's original state when the user stops touching it.
The problem is, sometimes the device does not register a touch up on the image, perhaps becuase the user touches the image and drags his/her finger out of the image view. So a touch up is never captured.
Is there a way to do a touch out? So I can turn teh image view back to its original state if the user is no longer touching it.
I'm using C++.
Thnaks!
11-15-2012 09:14 AM
*bump*
Is there no way to do a touch out, seems a little bit of an oversight?
11-15-2012 02:08 PM - edited 11-15-2012 02:10 PM
Put a touch event (Mouse Move) on the container of the image view. this will handle your missing case.
if this event is fired, it means that users moved his finger outside the image view and moved inside the container.
11-18-2012 11:46 AM