I was trying to creat a (main) menu like the http://www.bunker-design.com But i canot do it I whant the same stuff I mean like the animation and the nice on roll over effeckt on button with the On roll over animation on the menu it self how to do this ?
The rollover effects are using animation that isnβt directly on the main timeline and called from button instances:
[AS]
on(rollOver){
_root.instance.gotoAndPlay(2);
}
on(rollOut){
_root.instance.gotoAndPlay(10);
}
[/AS]
I learned how to do this with electrongeek help and this tut: http://www.kirupa.com/developer/flash5/advroll.htm
This is a flash 5 tut, but you can use it to figure out more about advanced buttons. I use the code above instead of frame labels and tellTarget.
(-: