I used this script to try to change a WHITE text link to change to a RED upon mouse over and then back to White upon mouse out. There would be no color change when clicked. The background of the movie is black.
My problem is that instead of the text changing color the black background changes color. What am I doing wrong?
I used this script
on mouseUp
go to frame "nameoftheframe"
end
on mouseEnter me
sprite("nameofthesprite".color = rgb(204,0,0,)
end
on mouseLeave me
sprite("nameofthesprite".color = rgb(255,255,255)
end
PLEASE HELP!!!
My problem is that instead of the text changing color the black background changes color. What am I doing wrong?
I used this script
on mouseUp
go to frame "nameoftheframe"
end
on mouseEnter me
sprite("nameofthesprite".color = rgb(204,0,0,)
end
on mouseLeave me
sprite("nameofthesprite".color = rgb(255,255,255)
end
PLEASE HELP!!!