Hello,
I've set 'Multitouch event' of touch handler to true. I've ticked retarget condition including long press. I've assigned a value to retarget delay.
that is not necessary unless you have two touch handlers stacked one above another. Usually following steps are sufficient:
1. Implement a slot method and connect it to Simple Touch Handler OnRelease property.
2. In the slot method evaluate the hold period of the handler. For example:
With this implementation the decision between short/long press is made when the user released the finger. You can additionally:
3. Add a second slot method and connect it to the property OnHold of the Simple Touch Handler.
4. In the slot method you can react when the user holds the handler for a longer time without releasing it:
I hope it helps you further. See also the documentation of the Simple Touch Handler.
Best regards
Paul Banach