flash mouse over question

Associate
Joined
19 Jul 2006
Posts
1,847
ok new to flash,
i got some text and then on the layer above the text i have a circle
i want the circle to disapear when the mouse moves over it and then to reapear when the mouse exites that area.
i think its something like
onMouseover
circle.alpha=0

??
 
make the circle into a movieclip instance if you have not already and give it an instance name.. in this case circle and on the root timeline create a layer called actions and place this code into it's actions:

circle.onRollOver = function():Void {
this._alpha = 0;
}
circle.onRollOut = function():Void {
this._alpha = 100;
}

example:
http://homepage.ntlworld.com/dabar/ocuk/example.fla

oh and another pimp for http://gotoandlearn.com very good, when it's up.. to use the downloads, rclick and save the .flv (flash video) and use this for playback:http://www.download.com/FLVPlayer/3000-2139_4-10413461.html
 
Last edited:
Back
Top Bottom