Code: Select all
on mouseDown
doSomething
add 1 to gCount
if gCount = 10 then
doSomethingElse
go to next card
else
--pass
end if
Code: Select all
on mouseDown
doSomething
add 1 to gCount
if gCount = 10 then
DISABLE MOUSE
doSomethingElse
go to next card
else
--pass
end if
Adrian