I can make a link with a roll over effect by making a movie clip from a text box (called tekst) and assigning this action to it:
on (rollOver) {
tekst.textColor=0x00cc00;
}
on (rollOut) {
tekst.textColor=0x000000;
}
I hope this is the right way to do it. Now I would like to know how I can load a list of links and display them as rollover links. Example: go to http://www.quidante.com/versie2/go.html and click future -> links. A tutorial for the fading rollover effect is also very welcome!
Thanks!