Code: Select all
on mouseUp 1
Code: Select all
on mouseUp
if mouseUp is 1 then
blah blah blah
I'm going to try a switch next instead of nesting my ifs.
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Code: Select all
on mouseUp 1
Code: Select all
on mouseUp
if mouseUp is 1 then
blah blah blah
Code: Select all
on mouseUp pWhatButton
switch pWhatButton
case 1
beep
break
end switch
end mouseUp