I have a movie clip which has 6 text boxes in it that are supposed to be linked to something. This movie clip is part of a flash template provided to me by my client. I am trying to change the “onrollover” , which currently only changes the color of part of the text, to load an image. I am posting the script here so you can see what is currently happening. I have tried everything I know to make the “onrollover” display the image that is currently in the library, but it won’t load. I can however get the rollover to load a “getUrl” but I don’t want to load a blank page into the MC to show an image or text. I want to load the image into the current MC as a roll over. Can anyone help? Here is the current action script for thei MC.
onClipEvent (load) {
this.txt.htmlText = “<b><font color=’#000000’>4.</font></b> <font color=’#606060’><u>Installation</u></font>”;
}
on (rollOver) {
this.txt.htmlText = “<b><font color=’#ff0000’>4.</font></b> <font color=’#606060’>Installation</font>”;
}
on (rollOut) {
this.txt.htmlText = “<b><font color=’#000000’>4.</font></b> <font color=’#606060’><u>Installation </u></font>”;
}
Thanks,
Anna