all groups > flash actionscript > march 2004 >
You're in the

flash actionscript

group:

alt text on rollover


alt text on rollover Donovan_R
3/31/2004 9:59:43 PM
flash actionscript:
I have created a menu for a web page I am working on. The menu buttons react
to rollover and press (the text changes colors) but I also would like something
similar to HTML's alt tag so that I can put alt text in for these items. Is
this possible and if so how can I do this?

Thanks

Donovan
Re: alt text on rollover kglad
3/31/2004 11:23:21 PM
you want the text to change on rollover and on press. if so, you'll need ot
make a movieclip button. on a movieclip timeline put a dynamic textfield and
give it an instance name, say tbox. then when you place your movieclip (say
mc1) onto the main timeline you can use:

mc1.onPress=function(){
this.tbox.text="whatever";
}
mc1.onRollOver=function(){
this.tbox.text="whatever else";
}

and so on.
AddThis Social Bookmark Button