Code: Select all
on Playing
set the backgroundcolor of me to "250,100,100"
end Playing
Code: Select all
on mouseDown
Playing
end mouseDown
Thanks,
Adrian[/code]
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Code: Select all
on Playing
set the backgroundcolor of me to "250,100,100"
end Playing
Code: Select all
on mouseDown
Playing
end mouseDown
Code: Select all
set the backgroundcolor of me to "250,100,100"
Code: Select all
on Playing
if the mouseDown of button"X" is true then
set the backgroundcolor of button "X" to "250,100,100"
end if
if the mouseDown of button"Y" is true then
set the backgroundcolor of button "Y" to "250,100,100"
end if
end Playing
Code: Select all
on mouseDown
set the backgroundcolor of me to "250,100,100"
end mouseDown
you don't want to do this......trying to avoid putting code into the buttons
Code: Select all
on Playing
set the backgroundcolor of the target to "250,100,100"
end Playing