ActionScript 2.0 :: XML-driven Drop-down Menu

Aug 29, 2006

I've been taking advantage of kirupa's excellent tutorials for quite a while now, and lurked in the forums from time to time, but not registered until now. I'm finding myself having some problems that I seem to be unable to overcome, I've been trying to create a variant of the XML-driven drop-down menu that instead of displaying the submenus to the right of the mainmenu inserts them inbetween the mainmenu elements.[code]

View 2 Replies


Similar Posts:


ActionScript 2.0 :: Menu Versus Submenu Appearance : XML-Driven Drop-Down Menu?

Apr 16, 2004

I love Senocular's XML-Driven Drop-Down Tutorial. But I can't seem to get it to make the menu headers look different from the submenus.

View 5 Replies

ActionScript 2.0 :: Menu Vs. Submenu Appearance : XML-Driven Drop-Down Menu?

Apr 16, 2004

I love Senocular's XML-Driven Drop-Down Tutorial. But I can't seem to get it to make the menu headers look different from the submenus.

(and if anyone is interested, i've turned it into a horizonal menu... reply and i'll post the code. better yet, help me fix the GUI issue and i'll post it )

View 5 Replies

ActionScript 3.0 :: Set Up Drop Down In Xml Driven Menu?

Apr 23, 2010

I have been working on building a XML menu and I have been able to create the main menu but I am not sure how to add the sub menu items in a drop down. I have included a zip file of my little test project which is CS4 and includes the fla and xml file.

The menu items consist of the following and the sub menu options are listed. As I said I have been able to create the main menu but I am not sure how to add and display the sub menus.[code]...

View 2 Replies

IDE :: XML-Driven Drop-Down Menu How To Do Horizontally

Mar 25, 2009

I have checked this tutorial in kirupa website but this is vertical xml drop down menuI would like to change this into horizontallybut when i try to do this through change the codethe submenu also goes horizontally which i dont want that Basically i want main menus to be horizontal and submenus to be verticallyAs which code has to be changed so that main menu will be horizontal and submenu's will be vertical

View 2 Replies

IDE :: Add Actions To XML Driven Drop Down Menu?

Dec 9, 2009

I want to add actions (other than "gotoURL") to the XML Driven Drop Down Menu (tutorial on this site) - particularly internal site navigation - ie, gotoAndStop().

View 1 Replies

ActionScript 2.0 :: XML-Driven Drop-Down Menu?

Jan 21, 2004

I'm having truble understanding it all really... if anyone managed to complete the tutorial start to finish without scratching their heads

View 3 Replies

Make XML-Driven Drop-Down Menu Horizontal?

Oct 13, 2009

How do you make the XML-Driven Drop-Down Menu[url]...

View 1 Replies

ActionScript 3.0 :: XML-Driven Drop-Down Menu Tutorial Available?

Apr 22, 2010

is there an AS3 version of the XML-Driven Drop-Down Menu tutorial available.

View 3 Replies

ActionScript 2.0 :: Kirupa's XML Driven Drop Down Menu?

Dec 30, 2005

I have followed Kirupa's tutorial on an XML driven drop down menu. On this menu, when a submenu is opened, it opens next to the button the mouse is hovering over. I need the submenus to open at the top of my flash page, does anyone know how to do this?

View 3 Replies

ActionScript 2.0 :: Senocular's Xml Driven Drop Down Menu Tute?

Oct 25, 2004

I'm slowly trying to get my pea sized brain wrapped around using xml in flash.my question is how do i convert what senocular has here:

Code:
Actions = Object();
Actions.gotoURL = function(urlVar){

[code].....

View 3 Replies

ActionScript 2.0 :: [flash8] XML-Driven Drop-Down Menu - Vertical

Dec 9, 2005

whats up everyone, awsome tutorial but i don't like the menu being vertical so i changed it to horizontal. bold parts i changed...

[Code]...

View 1 Replies

ActionScript 2.0 :: Calling Childnodes From XML Driven Drop Down Menu?

Jun 9, 2008

I am trying to use Kirupa's XML drop down menu(action script 2.0): aka: [URL] however I cannot have it output the childNode. This is because it is using a for loop with the curr_item variable. when I try to trace the for loop count variable, it just returns the last for loop variable. I basically want it so that when I click on a button on the 3rd tier submenu, I want it to output all the prior tiers that the button belongs in.

View 2 Replies

ActionScript 2.0 :: Hide Items In XML-Driven Drop-Down Menu?

Jan 14, 2010

I would like to add a "show/hide" command to an item in this menu.For instance:

<item name="home" action="gotoURL" variables="http://www.kirupa.com"/>

to:

<item name="home-1" action="gotoURL" variables="http://www.kirupa.com" show="true"/>
<item name="home-2" action="gotoURL" variables="http://www.kirupa.com" show="false"/>

View 2 Replies

ActionScript 2.0 :: XML-driven Drop-down Menu - Width Of Text Field Dynamic?

Feb 5, 2007

Question regarding the tuturial:[URL]

change the width of the dynamic text field that each text nav item from the xml loads into so that the width changes depending on what is in the xml.

So the width of the button would change depending on the ammount of characters entered.

View 4 Replies

ActionScript 2.0 :: "active" State In XML Driven Drop Down Menu?

Dec 11, 2005

I've used the tutorial for the XML Driven Drop Down Menu to create the main navigation for a site i'm doing, it's all working fine except I want to keep the 'current' area highlighted after it's clicked on. The rollOver events are defined in the AS but when I tried adding a function to change the colour of the item it either had no effect or broke the nav eHere is the code (from Sen's tutorial modified with new actions):

Code:
// generates a list of menu items (effectively one menu)
// given the inputted parameters. This makes the main menu

[code].....

View 4 Replies

ActionScript 3.0 :: XML Driven Menu Into Flash

Feb 28, 2012

I've been hunting for tutorials on XML driven AS3 menus. I've found some really cool stuff, but nothing that does what I want, and most don't really explain the "hows' involved in getting the XML into the flash. I want to dynamically load menu buttons based upon an xml document in horizontal fashion with sub menus that load 10px down and to the right of the main menu button. With each item in the sub menu filing to the right. I'd also like to have that light up bar track the main buttons so that as the mouse moves over the bar slides to it.

Here's the code for the bar:
ActionScript Code:
import fl.transitions.Tween;
import fl.transitions.easing.*;
button_mc.buttonMode = true;
button2_mc.buttonMode = true;
button_mc.addEventListener(MouseEvent.ROLL_OVER, hover);
button2_mc.addEventListener(MouseEvent.ROLL_OVER, hover);
function hover(e:MouseEvent):void {
new Tween(bar_mc,"x",Strong.easeOut,bar_mc.x,e.currentTarget.x,1,true);
}

Most of the XML driven code I have found obviously doesn't have a static instance name and use addChild()

View 9 Replies

ActionScript 2.0 :: Horizontal XML Driven Menu?

Apr 24, 2004

I've read Sen's tut. on making the xml menu, but I couldn't spot and/or find a way to make the menu horizontal rather than vertical. I would very much like to use this effect as it would make my site so much easier to update as far as more or less links go.Here is the code from Sen's tutorial:

Code:
GenerateMenu = function(container, name, x, y, depth, node_xml) {
var curr_node;

[code]......

View 7 Replies

ActionScript 2.0 :: Xml Driven Horizontal Menu

Mar 17, 2008

I have this xml driven menu with submenus that works horizontally and i want to space the menu items and submenu by getting the textWidth of the first item and placing the 2nd item next to it and then the 3rd item next to the 2nd and 4th next to the 3rd etc etc so they all sit side by side horizontally without using a fixed space for all of them. here is my code:

Code:
this._lockroot = true;
//
_level0.fmt_container = _level0.text_formats_container || {};

[Code].....

View 3 Replies

ActionScript 3.0 :: Develop An Xml Driven Menu System

Nov 19, 2009

I'm new to actionscript 3 and could really use some help to develop an xml driven menu system. I would like to make the menu system similar to the navigation used in this site. [URL] I just need a simple version of this maybe 2 - 3 categories on the left and all of the children for them on the right.

View 0 Replies

ActionScript 1/2 :: Adding Submenus To An Xml Driven Main Menu?

Sep 10, 2010

I have been following and bastardising a computer arts tutorial for a dynamic flash site, its a really good tutorial and I'd like to keep going with that format/style, but I'm pretty new to the whole scripting thing and am finding it a bit of a headache, so was wondering if any kind souls would help me work out how to add submenus to the code below.the main menu button is a movie file(btn_projects_main) consisting of a button (button) and a text box(txt) and is 3 frames long to allow for the different states: What I'm looking for is a set of sub menus which load horizontally below the main menu buttons, here is the code which has been altered slightly (thanks to Ned Murphy for his help and patience with that)

// Setup some initial variables
// Hide the button that will display a web link_root.theUrl._visible = 0;
// Hide the image icons in the project loader// The image icons are simply there to make

[code].......

View 4 Replies

ActionScript 3.0 :: Kill Broswer Cache In XML-driven Menu?

Jan 6, 2011

I would like to use an XML-driven menu on my site and everything works fine so far, but the XML is connected to a CMS, meaning new menu items can be created through the CMS and added to the Flash menu. That's works, too. Here is the problem: Browsers usually caches XML files,to modify the line where Flash retrieves the XML file:e.g. instead of getting: 'menu.xml'. It should more look like this: menu.xml?'+Math.random(),(or whatever is the exact syntax for a random number is in AS. This would kill the cache, correct?Here is the AS code:

// declare the package
package com {
// import the needed AS packages

[code]....

View 4 Replies

ActionScript 2.0 :: Basic XML Driven Menu - Button Pointing To Same SWF

Sep 12, 2007

I'm trying to make a real simple flash menu, and I am using the "Squirrel Finder"-tutorial as a base. Problem is, when I trace my variables desc and swfURL they are correct, and the numbers on the buttons work fine as well, only when I click on the buttons all of them point to the last post in my XML, i.e., buttons 1,2,3,4,5 all point to swf 5.

Code:
function skapaMeny(menu_xml) {
var proj:Array = menu_xml.firstChild.firstChild.childNodes;
for (var i=0; i<proj.length; i++) {
var desc = proj[i].firstChild.childNodes;
var swfURL = proj[i].firstChild.nextSibling.childNodes;
[Code] .....

View 2 Replies

ActionScript 3.0 :: Create Url Link With Xml File That Menu Is Driven By

Oct 19, 2009

I have been trying to understand how to create a url link with the xml file that my menu is driven by. what I have is a menu with text amd images reading from an xml file, I have created a third text field which I would like to use as a button/link that when click it goes to a url.[code]but this doesn't seem to work, am I missing something within the flash movie.URL...

View 1 Replies

ActionScript 3.0 :: Use ADDED_TO_STAGE Event To Load An External Xml Driven Swf Menu?

Feb 7, 2010

well i have a problem to which there are lots of related searches over the net but none could solve it. well the problem is that i have an XML driven carousel menu that needs to be loaded using the preloader. After the load is complete i can find my swf menu's backgound and the static buttons getting loaded but the buttons that should load in the carousel using xml are not present.

I have come across the even ADDED_TO_STAGE to load the swf once it has completed its dynamic loading. But they have used it in the documentation class for thier project. I am not using any separate actionscript file.All my code is written in the 1st frame of my project .... I really need a solution to this problem

View 3 Replies

ActionScript 2.0 :: XML Drop Down Menu - Get The Submenus To Push The Rest Of The Main Menu Down On Rollover?

Mar 10, 2006

I have created an XML driven Drop Down menu using the kirupa tut by Senocular found here. I am trying to figure out how to get the submenus to push the rest of the main menu down on rollover kind of like this. Not sure where to start to get the AS to get the button created fromt he XML nodes to move down.I haven't changed the code found int he tut too much and the menu works fine except that the rollovers just go over the main menu.

View 1 Replies

Navigation Button Drop Down Menu Won't Drop Down

Aug 13, 2009

Can somebody take a look at my .fla file and tell me why exactly my menu is not dropping down at all?If you download my file go to scene 3. that is where my Navigation Bar is.URL...

View 1 Replies

ActionScript 2.0 :: Senoc's Drop-down Menu - Only Disappear If Click On Another Menu Item Or When Click Outside The Menu

Jan 17, 2004

ive followed Senoculars drop-down menu tute [URL], awsome stuff, but it seems the submenu's dont disappear to well when you roll out. ..They only disappear if you click on another menu item or when you click outside the menu.

View 12 Replies

ActionScript 3.0 :: Drop Down Menu Tweening The Menu Gets Stuck, Or Starts Flickering?

Mar 17, 2010

Each time I make a drop down menu I face some problems, For example, when I use tweening to roll out a menu ( via ROLL_OVER/ ROLL_OUT), sometimes the menu gets stuck, or starts flickering after it is rolled out if I move the cursor away, and move back on it.
 
How could I solve this, should I use a timer to disable the button until the tween finishes (or this would be good for nothing)?

[code]...

View 5 Replies

ActionScript 2.0 :: Created Xml Driven Menu That Works Perfectly On Html Page

May 3, 2010

I created a xml driven menu that works perfectly on a html page but would like to use it in a flash site. I loaded the the external menu movie in by using the:loadMovie(); reference but when I try to point the movie link from the menu to the empty movieclip it wont work. below is the code for the button action:[code]

View 0 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved