I have a checkbox on a card. The script on the card has this code to imitate Android long press:
Code: Select all
on mouseDown
wait 700 millisecs with messages
if the mouse is down then
## treat like long mouseClick
-- do something
end if
end mouseDown
Of course it has to do with the mouseDown handler in the card. I just cannot figure out how to bypass that handler for the checkbox.
How to do it?
keram
EDIT: added a stack that shows what I want to fix