mouseDoubleUp not working properly for iOS
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
-
- Posts: 2
- Joined: Mon Aug 08, 2016 11:17 am
mouseDoubleUp not working properly for iOS
I have a scrolling field in an app and I want to allow users to select from the scrolling field by double tapping. mouseDoubleUp works perfectly for this on Windows and Mac OS apps but not on iOS. I believe this is because it's much harder to double tap the exact same spot using your finger than with a mouse. Does anyone have an effective workaround?
Re: mouseDoubleUp not working properly for iOS
Hi 25Apalachi ,
I met same problem to display images, mousedoubleUp works often but not ever.
In some cases I use mousedoubledown sometimes works better than mousedoubleUp on iOS
Best regards
Jean-Marc
I think mousedoubleUp doesn't need exact same spot.I believe this is because it's much harder to double tap the exact same spot using your finger than with a mouse.
I met same problem to display images, mousedoubleUp works often but not ever.
In some cases I use mousedoubledown sometimes works better than mousedoubleUp on iOS
Best regards
Jean-Marc
https://alternatic.ch
-
- Posts: 135
- Joined: Thu Sep 13, 2012 10:25 pm
Re: mouseDoubleUp not working properly for iOS
You can get around this problem by doing this in your PreOpenStack:
It's always worked great for me. You might want to monkey with the number of pixels
Peace.
Joel
Code: Select all
set the doubleClickDelta to 40
Peace.
Joel
Re: mouseDoubleUp not working properly for iOS
Sorry,
I said
Jean-Marc
I said
but Joel is rightI think mousedoubleUp doesn't need exact same spot.
Jean-Marc
https://alternatic.ch
-
- Posts: 2
- Joined: Mon Aug 08, 2016 11:17 am
Re: mouseDoubleUp not working properly for iOS
This is exactly what I needed. Thank you.joel.epsteinBUS31vi wrote:You can get around this problem by doing this in your PreOpenStack:
It's always worked great for me. You might want to monkey with the number of pixelsCode: Select all
set the doubleClickDelta to 40
Peace.
Joel