Ask a Question related to Macromedia Flash Ad Development, Design and Development.
-
mailidr #1
AS for menu bar
I have simple menu with menu bar component can someone tell me how to link to url
[url]http://idchristian.org/menu_bar_component.html[/url]
can anyone help me with this
mailidr Guest
-
Context Menu menu items Language Independent names
Hi everyone, Can somebody provide me the language independent names of menu items of the context menu(right click menu). I tried very hard to find... -
JavaScript for menu bars or side menu for an externalweb page
I have designed some web pages with top menn bars and drop-down menu buttons for web page linkings. So far all the web pages I have coded showed... -
Help wiht converting this actionscript vertical menu to a horizontal menu?
I've been fiddling around with this script and I think my ActionScript is a bit too rusty for accomplishing what I want to change. I've been... -
How do I build Drop Down menu using Menu magic with Database result
Hi Every One. I resently purched Menu Magic Dropdown System. I would like to list my database content like news( few sentense with link ), Authers... -
ANNC: PVII Menu Magic II Multi-Level Menu Tutorial.
Hello All, Menu Magic II by Project Seven is probably the coolest menu creation tool there is for Dreamweaver. While PVII chose to provide a... -
scouser1984 #2
Re: AS for menu bar
Hi if anyone has this problem using the menu bar component in flash mx 2004
drag the menu bar component onto the work space and add in this code into the
action script
box on layer one of the timeline. Make sure the component has an instance name
as myMenuBar. just add your own labels and change the URL to match yours.
REMEMBER THIS IS TO CREATE A MENU BAR WITHOUT ANY SUBMENU's
import mx.controls.MenuBar;
myMenuBar.setStyle ("themeColor", "haloBlue")
myMenuBar.setStyle ("fontFamily", "Verdana")
myMenuBar.setStyle ("fontSize", "12")
myMenuBar.setStyle ("fontWeight", "bold")
homemenu = myMenuBar.addMenu("Home");
homemenu.addEventListener( "menuShow", function(evt) { getURL("home.htm"); }
);
homemenu = myMenuBar.addMenu("About");
homemenu.addEventListener( "menuShow", function(evt) { getURL("about.htm"); }
);
homemenu = myMenuBar.addMenu("Portfolio");
homemenu.addEventListener( "menuShow", function(evt) {
getURL("portfolio.htm"); } );
homemenu = myMenuBar.addMenu("Support");
homemenu.addEventListener( "menuShow", function(evt) { getURL("support.htm");
} );
homemenu = myMenuBar.addMenu("Contact");
homemenu.addEventListener( "menuShow", function(evt) { getURL("contact.htm");
} );
scouser1984 Guest



Reply With Quote

