Code: Select all
on mouseUp
set the cursor to empty
end mouseUp
This prove to have rather more consequences than I expected as, to QUIT LiveCode I had to perform a 'force quit' (send a KILL signal).
What IS interesting is that this did not work:
Code: Select all
on openStack
set the cursor to empty
end openStack
Code: Select all
on openStack
set the cursor to empty
set the lockCursor to true
end openStack
What interests me is why, in those scripts one had to set the lockCursor, but that was not necessary in the button.