Hi!
I want to run an app on Android 9.
Is there a function similar to flushEvent ("mouseUp") that works with Android and touchscreen?
Thank you very much
Antonio
flushEvent on Android
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Re: flushEvent on Android
Hi,
You may use a timer.
Something like that
Best regards
Jean-Marc
You may use a timer.
Something like that
Code: Select all
local sStarTime
on opencard
put the milliseconds into sStarTime
end opencard
on mouseUp
put the milliseconds into tTime
if tTime > sStarTime +500 then
doSomething
else
--
end if
put the milliseconds into sStarTime
end mouseUp
Jean-Marc
https://alternatic.ch
Re: flushEvent on Android
Try mobileClearTouches. It doesn't clear everything but might be enough depending on what you need.
Jacqueline Landman Gay | jacque at hyperactivesw dot com
HyperActive Software | http://www.hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.com
Re: flushEvent on Android
Hi!
Many many thanks! I used the suggestions and was able to solve my problem!
Best regards
Antonio
Many many thanks! I used the suggestions and was able to solve my problem!
Best regards
Antonio