Bunker-design ! -How-Menu

Hello !

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 ?

If you so kind and creat a .fla file for this !

Thank you very much for your help !

-Millad- :slight_smile:

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.
(-:

Yeah Nice !

Thanx cool *****:wink: