I have tested the GestureRecognizer class/examples and it's great.
However, I would need for my app to receive the multitouch pointer events from a view, in a similar way as it is done in B4A GestureDetector, in order to customise its behaviour.
It seems that it replaces the event in ALL the panels in the app, doesn't matter if you set the multitouchEnabled to True or False in any of them (it seems it is by default), but it's easy to replace the previous _Touch with the new events
It seems that it replaces the event in ALL the panels in the app, doesn't matter if you set the multitouchEnabled to True or False in any of them (it seems it is by default)
Nothing really interesting. You need to check in the OBJC code whether multitouch is enabled and raise the standard event instead of the multitouch event.
I'd like to use two panels with a different handling of the touch events on the same page: - The first panel uses the MultiTouch implementation from here https://www.b4x.com/android/forum/threads/multitouch-event.87027/ . - The second panel should use the standard touch event. At the moment, the...