Visited link in Flash

Hello.

How can I change the alpha value of the visited link’s?

Please post a link to a tutorial or a source file.

thanks

Here is a link to a thread that discusses this very thing.
vistied link state

hi,

Create a button and convert the same button to movie Clip and give the instance name as myMovieClip.

come back to the main stage and assign the following script in the frame one or where ever the movie clip is created.

myColor=new Color(myMovieClip);

Second step:

go inside the movie clip and select the following script on the button:

on(release)
{
_root.myColor.setRGB(0xcc0000);
}

this must work definetly

Prathap