hello,
can i have please a code in live code that does than if i click mouseUp more than 3 times,
then live code answers me "hello".
best regards,
Itay
Click times
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Re: Click times
in the script of the card
In the script of a button,, or in the card script, whatever...
be well
Dixie
Code: Select all
global theclicks
on clickcount
add 1 to theclicks
if theclicks > 3 then
answer "Hello"
put 0 into theclicks
end if
end clickcount
Code: Select all
on mouseUp
send "clickCount" to this card
end mouseUp
Dixie