ActionScript 2.0 :: XML Driven Menu - Display AttachMovie'd Items In A Logical Row / Column Fashion

Jul 28, 2005

I'm trying to create an XML driven menu for my portfolio site. I'm basing the code concept off Senocular's tutorial on this site, but I'm basing the aesthetic/operational idea off portfolio menus such as those seen on [URL] and basically every other portfolio site that uses small thumbnails as icons to present larger versions of the work.

Functionally, I think I've got it down (it's basically the tutorial code with the submenu functions stripped out), but I'm struggling with trying to figure out how to display my attachMovie'd items in a logical row/column fashion... i.e. if I had 7 items in my XML file and wanted the row to exist in threes, I'd have two rows of three and one row of one.

I'm sure there's a very simple solution to this that I'm simply overlooking. I was just thinking about trying to implement this via some type of counter/multiplier for the _y property.

View 2 Replies


Similar Posts:


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

Flash 8 :: Display A Two Column Menu In It?

Aug 21, 2010

I have a flash 8 template and i am using Macromedia Flash Professional 8. I want to create a menu in a scrollable text box, which has two columns exactly aligned like so[code]...

View 5 Replies

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 :: Column Chart That Displays Several Items

Oct 5, 2009

I have a column chart that displays several items. When you click the bar of one of the items, the chart changes to display a new chart of details of that item. However, if the mouse is not moved, the datatip from the first chart is now visible on the second chart. Is there a way to hide the datatip when the first bar is clicked and then show the new datatip for the second chart once it's visible?

View 0 Replies

ActionScript 2.0 :: Access DataGrid Column Items ?

Nov 3, 2006

I was wondering if anyone knew how to access column items...

ie if i made a column named "Info" and wanted to get the 5th item how would i go by doing so.. i though it was just an array something like this my_dg[Info][i] were i is the index counter.. but that wasn't it.. i can get it to display the column name but thats about[code]...

View 1 Replies

ActionScript 2.0 :: AttachMovie Of Dynamic Created Items In MX?

Feb 23, 2004

What I want is the following. Based on an XML file and one empty movie clip, I create about 80 different items (menu items). By drag and dropping these menu items you can create a scene with objects. These objects are copies of the menu items.But I want to use the attachMovie command to have control over the path of the objects. But by creating the menu items dynamically, I cannot say in the library, export for actionscript.So my question is, how can I use the attachMovie command on items that are dynamically created.

View 6 Replies

ActionScript 2.0 :: Dynamic Column Of Items - Handle The Drag And Drop Part

Feb 21, 2004

I basically want to be able to drag any item out of that list, and when doing so, have it that item automatically go to the bottom, and have the remaining items scroll up. I can handle the drag and drop part of it, but I'm confused on how I could get the remaining column of items to dynamically move up depending on which item is taken out. I'm thinking mayble along the lines of an array?

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

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 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

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

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

Professional :: Photoshop CS4 - Make The Menu Items To Light Up When The Pointer Is Touching The Menu Icon

Jul 4, 2010

I am working on a DVD User Interface for my final project in Photoshop. For extra credit points I am trying to figure out how to make the menu items to light up when the pointer is touching the menu icon.

View 1 Replies

ActionScript 3.0 :: Add A Couple Menu Items To An Existing Flash Menu?

Sep 21, 2009

I need to add a couple menu items to an existing Flash menu that I did not create, but I am having trouble figuring out how to make the buttons stay highlighted until you click another one. Best way to simply describe my problem since is to simple show you. The first 5 links work exactly as they should. But the last 2 (Careers and Client login) do not stay go highlighted on the loaded page. [URL]

View 9 Replies

ActionScript 3.0 :: Scroll The Left Menu And The Menu Where All The Items Are Added

Sep 1, 2010

scrolling 2 sprites. Look at the image below. [URL] FLA LINK (please take a quick look)[URL] I have this entire program working but i need to scroll the left menu and the menu where all the items are added. One more thing, the right menu can have only an few items at a time that do not need scrolling but when more are added then the scrolling will need to take effect.

View 0 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

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







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