ultrax
09-13-2005, 04:53 PM
I have a few buttons, they're using movie clips to animate the rollOver and the rollOut process. I want to make a reference button when you press it down color will change and keep it untill you press to another one, so that way they'll know what area of website they are into. Does anyone know how to do that?
I found a website who has those buttons that I'd like to do:
http://www.nsd.ro/index_flash.php
ex:
>Home< | Portfolio | Contact
I have these codes in my Home button :
on(release)
{
loadMovie("home.swf","load");
}
on (rollOver)
{
tellTarget("content") {
gotoAndPlay("start");
}
}
on (rollOut) {
tellTarget ("content") {
gotoAndPlay("continue");
}
}
my rollOver/rollOut animated are working fine.
Reply With Quote
I found a website who has those buttons that I'd like to do:
http://www.nsd.ro/index_flash.php
ex:
>Home< | Portfolio | Contact
I have these codes in my Home button :
on(release)
{
loadMovie("home.swf","load");
}
on (rollOver)
{
tellTarget("content") {
gotoAndPlay("start");
}
}
on (rollOut) {
tellTarget ("content") {
gotoAndPlay("continue");
}
}
my rollOver/rollOut animated are working fine.
Reply With Quote