Hey guys. I've been adding achievments to me game, and want the information box to tell you it's name nd requirements when rolled over.
I've used this;
on(rollOver){
_root.titles.titlename.text= "Wow, you suck";
_root.titles.titlereq.text= "Be defeated by UC";}
on(rollOut){
_root.titles.titlename.text= "View your title history";
_root.titles.titlereq.text= "Roll over any title to view it's requirements";
}
But the text box stays blank.
Anyone know what I'm doing wrong?