ActionScript 2.0 :: Vertical Collapsible Menu?

Oct 20, 2010

I have several vertical collapsible menus that open just fine, but I need the code that closes a menu after another's been chosen.If you look at the attachment, you'll see what I mean. In the attachment, the gray 'help topics' nav is open. If I want to rollover and open the blue 'training' nav, I want the gray to close after blue's been selected.

View 1 Replies


Similar Posts:


Actionscript :: Getting A Collapsible Two Tier Vertical Menu?

Nov 9, 2007

I'm looking for help putting together a some website navigation and wondered if i should be doing it action script or not (i'm assuming it should be). Basically i want a collapsible two tier vertical menu. So if you click on Menswear (for example), the rest of the menu buttons move down to reveal the Menswear sub categories (shirts, jeans etc).

View 1 Replies

ActionScript 3.0 :: Collapsible Menu Or Pop Up - Shows On Hover - Onclick

Feb 21, 2012

I wanted to make a menu that shows on hover, on click it will stay displaying on the screen, when clicked again it will disappear.

View 1 Replies

ActionScript 2.0 :: Vertical Menu With Xml Data

Nov 5, 2009

I trying to make list menu with xml file that contain three levels , the third level will be description to the second level , the proplem in the description it not Show properly, i want the third level get data from xml .

View 0 Replies

ActionScript 2.0 :: Change To Vertical Menu?

Feb 17, 2010

I have attached an AS2.0 class file.

I am needing to change the dropdown menu from horizontal to vertical.

View 0 Replies

ActionScript 2.0 :: Vertical Menu With Submenu?

May 15, 2008

i am stuck with this.

Code:
/*some variables*/
var holder_mc:MovieClip;
var menuArray:Array = new Array();
var subMenuArray:Array = new Array();

[Code]...

View 2 Replies

ActionScript 2.0 :: Vertical Xml Menu With Submenu?

Jan 7, 2005

I have a simple vertical xml menu layed out and would like to know how to create submenus that appear below the selected entry and move all other menus down to compensate.[URL]

View 4 Replies

ActionScript 1/2 :: Looking For Good Example Of Vertical Menu Tree?

Mar 4, 2010

We are looking for a vertical style menu tree.  We are trying to replace an old style Java Menu, which you can see at [url]... along the left side of the window.

View 1 Replies

ActionScript 2.0 :: How To Create Vertical Scrolling XML Menu

Dec 22, 2010

I'm trying to create a Vertical scrolling xml menu. This menu is based on [URL] "Creating 3D Carousels tutorial"

This is my code
Select all
var Items:Number;
var xml:XML = new XML ();
xml.onLoad = function () {
_root.createEmptyMovieClip ("mc_Control", this.getNextHighestDepth ());
mc_Control._x = 0;
mc_Control._y = 0;
[Code] ......

My problem is when I add a new item in the xml file, I can't see it in the .swf file. My xml file have 37 items. I only see 24 buttons! in the .swf file and I' m stuck at this point my buttons have 26 px (_height).

View 6 Replies

ActionScript 2.0 :: Flash/xml Vertical Menu Difficulty?

Apr 16, 2007

I am pretty new to Flash and XML and I am having a problem mapping to the correct nodes. I have built a vertical menu using one of Senoculors tutorials, which I have had to adapt a bit to make it fit in with my xml. The problem is I need to be able to map to a different set of nodes to the ones in the tutorial. I have posted my menu so that you can see what I mean.

View 2 Replies

ActionScript 2.0 :: SWF Containing Vertical Scrolling Infinite Menu

Jan 29, 2009

I am working on a very minimal site that consists of a swf containing a vertical scrolling infinite menu that loads other swfs into the main timeline: [URL].I am building this in MX, and it is based on this tutorial: [URL]. I figured out how to change this to a vertical format that fit my needs. This is the actionscript I attached to the main menu movie clip:

onClipEvent (load) {
ycenter=600;
speed=1/10;
} onClipEvent (enterFrame) {
var distance=_root._ymouse-ycenter;
_y+=(distance*speed);
if (_y > 0) _y=-2323;
if (_y < -2323) _y=0;
}

The swfs are sized large as the end result is a private site dealing mostly with clients using very large monitors. I am creating the swfs to be loaded in with Flash CS4, and they contain large images that have smoothing enabled. As I know nothing about Actionscript 3.0 and very little about 2.0, I am creating the main swf in MX as I am more familiar with it.

Anyway, what I need to know is:
1. How to add something to the code that will stop the timeline's scrolling where you left it when you roll off of it,
2. Any other vertical scrolling menus I can take a look at to compare this with?

View 2 Replies

ActionScript 3.0 :: Flash - Vertical Scaling Menu?

Feb 20, 2009

Im trying to make a Vertical Scaling menu. So when you roll over a text item it goes from a .5 scale to a 1. scale and all the other text items below will move down accordingly to make room for the scale. Im using tweenlite to scale and trying to keep the code dynamic without having to hard code in positions

View 3 Replies

ActionScript 3.0 :: Flash - 2D Vertical Rotating Menu?

Mar 29, 2009

I've been having a spot of trouble working with this menu. My goal is to create this rotating menu with buttons that expand another movieclip with text/detailed information when you roll over it. What I'm having trouble with is making it usable, since it also needs to slow down/stop the frames of both movieclip's animations as the user approached/rolled over the button.I've searched for a couple of tutorials, but I don't understand them well enough to really manipulate the code for my uses. Especially since I seem to mostly find 3D Carousel tutorials that seem to be a little different

View 3 Replies

IDE :: Vertical Menu Of Questions The Viewer Clicks On?

May 12, 2010

So I have an animation I'm working on, its dialog driven and I want a vertical menu of questions the viewer clicks on. When its clicked it plays a specific sequence of animation, that part I have covered. Depending on the question clicked however, I want the menu to update with follow up questions.

-several menu items need to open up new menu items.
-the new menu items appear beneath the previous item.
-each new menu item needs to highlight text.
-each used menu item needs to dim text.

I'm mostly a script kiddy, I find stuff similar to what I need and take it apart and rebuild it to my needs. But I haven't found anything of this sort. The closest thing I have is creating a menu with an array.

I thought to assign the initial array values to questions as they would appear on a complete list. The idea is at the end of a string of dialog to run a check on a specific array value, if it comes up false, create that value and hence the new menu item is in it's proper place on the list (including appropriate highlight/dim text color). The problem is that when I run a trace I get a bunch of undefined values in-between. I don't want a menu with "undefined" text labels/buttons, is there a way to run a check for undefined during the menu loop and tell it to skip to the next value?

is this the best way to handle this project? I'd rather not create a complex movie clip of every possible menu configuration and run a ton of value checks with goto frames.

View 3 Replies

ActionScript 2.0 :: Flash Vertical Navigation Menu

Jul 6, 2011

I just want to know how to do a vertical navigation menu using flash as2. there are methods to do in as3. but as i am working in as2 project i just want to know it in as2.the below link show an example of the menu style what i want.URL..

View 2 Replies

ActionScript 3.0 :: How To Create Vertical Navigation Menu With Submenu

Aug 11, 2011

Any tutorial for a simple vertical navigation menu with a submenu. Like a drop down menu but vertical where the main links are on the left and the submenues come out the right side of the menu. I don't need any bells and whistles and I am just learning so it doesn't need anything but a button link when rolled over more link options appear to the right. Is there a tutorial that is not a place trying to sell me this capability and actually works (CS3), no errors, broken links etc...just a how to for a simple menu with submenus.

View 1 Replies

ActionScript 2.0 :: Creating Vertical Menu Draggable On Y Axis

Sep 3, 2010

I am building a vertical menu that is draggable on the Y axis.
1.How do I add easing? Can I use fuse?
2.If the button that is being dragged reaches a point on the y axis it would trigger a function. If it is let go before reaching that point the button would snap back to the original position. I guess a simple (if statement) would work - but not working for me
3.Last thing. It is a vertical menu, so when a button is being dragged everything above it would drag with it. Cannot seem to get that to happen

View 1 Replies

ActionScript 3.0 :: Vertical Menu - Set The Timeline.reverse(); On All The Months

Sep 9, 2010

I'm using greensock to create the tweens, but I need to be able to have the months continue their animation if I ROLL_OUT of 2008 Additionally, I need to set the timeline.reverse(); on all the months, but that doesn't seem to be working, and I think it's because I have it set to pause. is anyone familiar with tweening libraries? Can this be fixed? I tried doing timeline.duration but that just sends the animation to the end and I want it to animate to the end-not just go there.

View 1 Replies

ActionScript 2.0 :: Converting Vertical To Horizontal Format Menu?

Oct 18, 2005

change into a horizontal menu format. Script was from kirupa forum and it is called 'flashnav' and it reads 'images.xml' . Its a great script but only if it couild me converted to display horizontally.

MovieClip.prototype.easeY = function(y){
this.onEnterFrame = function(){
this._y = y-(y-this._y)/1.2;

[Code].....

View 4 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 3.0 :: Make Flash Vertical Tsunami Menu

May 16, 2011

i have downloaded this flash file [URL] and i'm trying to make my own tsunami menu based on that one. but i have an issue. in the file there is a movie clip called "menuitem". i can only see it in the library and not on the satge. so i don't know where to place it.

View 2 Replies

Professional :: Flash - Text On The Vertical Menu Doesnt All Show?

Jan 10, 2011

I am learning flash and recently bought a flash template so I could see how it was structured etc. The vertical menu on the flash template plays fine when ran locally but when I upload it to the web the text on the vertical menu doesnt all show (i.e. the text is half cut off).

View 5 Replies

ActionScript 3.0 :: How To Generated Dynamically Vertical Tree Menu With Xml  File

Apr 15, 2011

How to generated dynamically vertical tree menu with xml file

View 2 Replies

ActionScript 2.0 :: Horizontal Scrolling Menu With Vertical Drop-down Menus?

Aug 11, 2010

I have designed a horizontal scrolling menu that currently contains buttons that load external swfs when pressed. Works great.What I'd like to do is have the buttons open vertical drop down menus instead of loading external files.

View 0 Replies

ActionScript 2.0 :: Horizontal Dock Menu To Be Vertical And Not Pivoting From Center

Jul 22, 2008

Trying to get this horizontal dock menu to be vertical and not pivoting from the center. I want to have the frist item of the array (holding the menu to be at a fixed position e.g (0,0). And i want to be able to hover vertically along the y axis [code]I have attached the fla i am working on. I think i am almost there, just need some tweaks to make it 100%.

View 6 Replies

ActionScript 3.0 :: Create A Vertical Accordion Menu With A Genie Effect?

Nov 23, 2009

I was going to attempt to create a vertical accordion menu with a genie effect this week.So it'll be like your normal text based accordion menu but the entries will shrink and grow depending on where your mouse is.I've never ever seen this specific type of menu before and I'd quite like to get a look at one to visualize how it should behave.

View 7 Replies

ActionScript 2.0 :: Dragable Menu - Make It Go Vertical Instead Of Horizontal It Doesnt Work?

Aug 11, 2004

i hav found a tutorial about dragable on ur site and i played w/ it for while, however, when i tried to make it go vertical instead of horizontal it doesnt work any more...heres the code, can any1 explain to me whats wrong w/ it?

actionscripts under dragger, <drag>
onClipEvent (load) {
_y = _root.box._y-_root.box._height/2+_height/2 ;[code]..

View 1 Replies

Flex :: Getting The Collapsible Layouts?

Jul 6, 2010

I'm just finished my first month of getting to grips with flex. All of my projects so far have be very small fixed sized containers with everything in the application resting in an absolute position.The next up and coming project is going to require a more dynamic layout and need some advice.The app will consist of 3 container (not sure what ones to use yet)

Container 1Will be the entire width of the app and a quater of its height.

Container 2Will be beneath Container 1. It will be half the width of the app and 3 quaters of its height.

Container 3 will be the same as container 2.

I want to be able to collapse each container and have the other containers respond to this.For example, I would like to collapse container 1 so that container 2 and 3 go from 3 quaters height to 100% height.

If I collapse container 2 conatainer 1 remains the same but container 3 goes from half thes apps width to 100% of the width.

View 1 Replies

ActionScript 3.0 :: Way To Make A Collapsible Panel With Only CSS?

Jan 7, 2010

I am trying to make a drop down menu in my about section check out the pic that are attached for more information.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>

[code].....

View 1 Replies

ActionScript 1/2 :: Vertical Scrolling Menu / Seamless Scrolling?

Nov 13, 2009

I have created a vertical menu that scrolls through menu items in a movie clip.There is a big white gap when the movie clip runs out, and it snaps back to the beginning.I would like it to scroll seamlessly, having the end join up with the beginning again without any space.I would like it to scroll to one end of the list and STOP, and scroll back the other way and STOP - without any white space.URL...

View 1 Replies







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