Very thorough of you to include a video.
Posted 10 months ago
A simple yet effective vertical menu for your site. Code is well commented and the help file contains a link to a short video online showing you how to rename the buttons, add new buttons, change the way the buttons ease, and change the color of the buttons. This file is very easy to edit and make your own.
ActionScript 2.0 Open with Flash 8+
If you are looking for a quick menu that’s easy to edit, this is the one!
Enjoy!
-drumkeyjw
Posted 10 months ago
i love this file? is this xml? Regardless I’m buying it, it’s just a curiosity 
bunnyhead,
No, this file is not XML . It is however very easy to edit if you have access to Flash.
Thanks everyone for the comments!
Posted 10 months ago
Very nice menu. Was easy to set up. I am not very good at coding.But I have a question. When any of the buttons is pushed how do I get them to go to the frame and play the MC assigned to them? (Whats the code to do that?) Much appreciative for you help.
dj1
Posted 4 months ago
When you open the file in Flash, double-click on the menu to get inside the movieclip named “menu_mc”. There will be a layer named “actions”. Select the first frame in that layer and open up your Actions panel by choosing the “Window” option in the menu bar and then choosing “Actions”.
Starting at line 40 is the code you will change for each button. Right now the code is pointing to a web page:
btn1_mc.onRelease = function()
{
getURL(“http://flashden.net/user/drumkeyjw”, “_blank”
;
}
You can change that code to target a frame instead:
btn1_mc.onRelease = function()
{
gotoAndPlay(“frame label goes here”
;
}
Hope this helps!
Posted 2 months ago