Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash








Floating Menu Options


I´ve searched on the foruns but found nothing about this.

I´d like to make some buttons to "float" over an area of the stage with AS so the movement is random and smooth.

Once one of the buttons is clicked, the others would go to the corner and the pressed button would go to the top so it is the "tittle" of the text the should open.
The other buttons would remain "floating" but in a smaller and pre-defined area of the stage, still beeing clickable.

Hope I´ve be clear and somebody could help me.

thanks




KirupaForum > Flash > ActionScript 1.0/2.0
Posted on: 03-18-2004, 02:34 PM


View Complete Forum Thread with Replies

Sponsored Links:

Floating Menu Options
I´ve searched on the foruns but found nothing about this.

I´d like to make some buttons to "float" over an area of the stage with AS so the movement is random and smooth.

Once one of the buttons is clicked, the others would go to the corner and the pressed button would go to the top so it is the "tittle" of the text the should open.
The other buttons would remain "floating" but in a smaller and pre-defined area of the stage, still beeing clickable.

Hope I´ve be clear and somebody could help me.

thanks

View Replies !    View Related
Menu Options
Hi folks

I need help

When someone float their mouse over the file menu it gets highlighted as I expect but how do I make the rest of my menu appear when they press "File" instead of it appearing when they roll over it? Also, I have the rest of the items that go in the menu and want those to appear once they press "File" giving them the option to select whatever entry which in turn will open a text window.

The site is here
http://www.paraisocz.com/flash/notator.html


Thanks
Dave

View Replies !    View Related
Menu Options
Hi Folks

Can I get some help?

When someone float their mouse over the file menu it gets highlighted as I expect but how do I make the rest of my menu appear when they press "File" instead of it appearing when they roll over it? Also, I have the rest of the items that go in the menu and want those to appear once they press "File" giving them the option to select whatever entry which in turn will open a text window.

Here is the site
http://www.paraisocz.com/flash/notator.html

Thanks

View Replies !    View Related
Right Click Menu Options
OK, this is probably really simple:
When a user right-clicks on my SWF file in the browser, I'd like the only option to be "About Macromedia Flash Player..." etc. Right now a list of several options comes up, including quality, rewind, play, zoom in, forward, back, etc.

Is this a Publish setting? Any advice would be greatly appreciated. Thanks!

View Replies !    View Related
How To Add Right Click Menu Options?
I was visiting this site http://www.drawingart.org/ and I right clicked over the SWF and I saw that they added some custom additions to the normal menu like: Contact Us, Bookmark this site, All rights reserved etc. How do we add things like this??

View Replies !    View Related
Floating Menu
I was wondering if anyone could point me to some sort of tutorial on how to achieve this floating rotating menu that can be seen at this agencies site.

http://www.milla.de/

click on the flash.... really organic ... really cool.

View Replies !    View Related
Floating Menu
Is there a way without having two browser windows open, to have a menu that can be moving around the screen and say minimized.

For moving I would like it to move around and over a standard HTML page.

View Replies !    View Related
Floating Menu
Hey all!
I made this website with a floating menu, (buttons inside movieclips) and when i place the mouse over a button it stops moving. I wanted to when i click a button, it rescales and goes to a specific place in the stage and stops moving, do you guys know how can i do it?

Thanks!

View Replies !    View Related
Floating Menu HELP
Hey all!
I made this website with a floating menu, (buttons inside movieclips) and when i place the mouse over a button it stops moving. That's fine til now, but I want to when i click a button, it rescales smoothly and while it rescale it goes to a specific place in the stage and stops moving, do you guys know how can i do it?
Here's the fla if you want to take a look at it: fla file

Thanks!

View Replies !    View Related
Floating Menu
Hey I need some help making a floating menu that you can drag around the stage. can anyone help out with this. Check out what i'm talking about. www.dweed.com. thanks

View Replies !    View Related
Floating Menu
Hi...

I´m very keen on finding out how to build a menu like this one that is build on this site, I´m not sure about what I should call it a floating, interaktiv or dynamic menu?? well, anyway would be happy for any answers at all, that would help me solve this problem.

http://www.davidbowie.com/freebowie2/index.html

Does anybody have an idea about where I could find the actionscript to build this or how to do it.... I would be very greatful for any tips, answers or even a source file where I could figure this out?!
:rolleyes:

Thanx...

View Replies !    View Related
Floating Menu?
Hey. I am trying to figure out how to make my menu buttons "float" randomly around and then sort of move away (slightly) from the mouse. I have seen this but can't remember where. I am sure it involves some kind of math/actionscripting thing .. >:|
Any pointers or shoves in the right direction?
muchas gracias.

(flash 5)

View Replies !    View Related
'Floating' Menu - Need Some Help
I'm putting together a floating navigation, basically identical to what's here: http://www.wynnlasvegas.com

I know this is fairly easy and has been used ad nauseum for years, but with my limited scripting skills it's somewhat of a challenge.

Anyone here have a link to an example file I can reference? Or possible have the code handy I can use? I'm using Flash 8 if that makes a difference.

Thanks

View Replies !    View Related
Floating Menu Help - Thanks
Hi Guys, I have a menu on my site which floats in the bottom right side of the page. I want to do the same, but for the top left side, so no matter where on the site the user is, the menu will be in the top left side.

Which part of my script below currently tells my menu.swf to stay at the bottom right hand side, cause i can't work it out.

Thanks for your help.


// Includes the tweening extensions.

#include "mc_tween2.as"


// Assigns each button its own functions.

// Of course, these buttons were created at design time, on the Flash IDE itself.
// Usually, you wouldn't do that with serious projects, you'd create them dinamically from some "template"
// movieclip (or from some component).

// This is an array, a list of the buttons used.
var myButtons = [this.myButton_1, this.myButton_2, this.myButton_3, this.myButton_4,this.myButton_5,this.myButton_6,th is.myButton_7,this.myButton_8,this.myButton_9,this .myButton_10,this.myButton_11,this.myButton_12,thi s.myButton_13,this.myButton_14,this.myButton_15,th is.myButton_16,this.myButton_18];

// Loops on all buttons from the first to the last one
for (var i=0; i<myButtons.length; i++) {
// Sets its original Y value. This will be used later for reference.
myButtons[i].originalX = myButtons[i]._x;

// When the mouse rolls over this menu option... go down just a bit.
// NOTICE: I'm not taking into consideration the problem of having the hit area going down and "moving" the
// mouse area and out of the button (possible rollover flicking). This is just a simple example afterall.
myButtons[i].onRollOver = function() {
this.tween("_x", this.originalX + 10, 1);
this.alphaTo (60, 2);
};
// When the mouse exits the menu option.. go back up.
myButtons.onRollout = myButtons.onReleaseOutside=function () { this.tween("_x",this.originalX,0.5);this.alphaTo(1 0,100);
};;;;;;;;;;
// When the mouse clicks.. activate it!
myButtons.onRelease = function() {
this._parent.activateItem (this);
// *** Add some function here or somewhere else to handle real button actions!
trace ("Hey, button "+this+" was clicked.");
};
}

this.activateItem = function(item) {
// Function that activates a button.

// Checks if there's an activated item already; if so, deactivates it.
if (this.currentItem != false) this.deActivateItem();

// Activates it, finally
this.currentItem = item;
this.currentItem.alphaTo (50, 1); // makes it 'disabled'
this.currentItem.enabled = false; // makes it a disabled button, so it won't receive mouse events
};

this.deActivateItem = function() {
// Deactivates the current activated menu item.
this.currentItem.enabled = true; // back to a normal button/movieclip
this.currentItem.alphaTo (100, 0.5); // back to its original opacity
this.currentItem.tween("_x",this.currentItem.origi nalX,0.5); // back to its original position
this.currentItem = undefined;
};

this.stop();

View Replies !    View Related
3d Floating Menu ?
At the website allmusic.com there is a floating rotating 3d menu !

I've looked at the tutorial 3d under the advanced section, but I think that there is more to it than that !

Can anyone help me with the logic here, please !

Regards
Shihan

View Replies !    View Related
Floating Menu - Help
Hi, all

I tried to reproduce an original example that I downloaded from internet (Original - MENU) in (Mi - Intento) but I can reach the sub_buttons because when I move the mouse pointer out of the main button, the other sub_buttons hides, however in the original it works.

Also I realized that when the configuration of the publication is Flash5 the example does work but with Flash8 it doesn't
I don't realize how do it with flash8, I hope you can help me...

Thanks in advantage...

PD:
The address is: http://www.threemstrade.com/pub/
Save the link with right clic and save link as ..., their extensions are .fla

View Replies !    View Related
Floating Menu
I'm creating a froating menu. when i click on a button the menu appears (using attachMovie).

How can I make that when users click outside the menu it desappear?

tks,































Edited: 01/29/2007 at 06:16:59 PM by oscmejia

View Replies !    View Related
Floating Menu?
hello,
I´m trying to build a floating menu, wich comes out of a logo by clicking on it.
I mean that little squares are flying out of the logo and are floating ore moving with random on the stage.
When You klick on one menu point, the other ones are going into the selected one and out of the selectet one are flying the submenus.

I think I´ve seen somethimg like that ones but I can´t remeber where.
Maybe somebody can give me a hint where I can find something like that or how I can realize that.

Thnx

View Replies !    View Related
Floating Menu?
Tried to search but not sure what you call this. Basically, I need a menu that is always justified to the right no matter how the browser window is scaled. I dont want the menu to scale, just to remain in the top right corner at all times.

I am open to any suggestions on how to pull this off but I will be building the site in Flash. And refs or links to tuts are greatly appreciated.

View Replies !    View Related
Arrrrrrrgh Options Menu Woes
Sigh... I want to create an options menu for my game that has the options to toggle sound on or off, music on or off, and high quality graphics on or off. This is currently a nightmare.

For starters, at first I just put the main menu (with the PLAY and OPTIONS buttons) on the timeline, and then put an instance of the options movieclip on the layer above it. I set the options movieclip's alpha to 0. Then I created actionscript that did this: when the OPTIONS button was pressed, the alpha of the main menu became 0 and the alpha of the options movieclip became 100. I thought this was working great, but for some stupid reason, even though they are on SEPARATE layers, even when the main menu's alpha is 0, you can click through the options menu that's up and press the main menu buttons. This is bad.

So, I decided to have the options menu be "attached" via actionscript when the OPTIONS button is pressed instead of being one layer above with alpha tweaking. THIS STILL DOESN'T SOLVE ANYTHING. I can still press buttons on the main menu through the solid background of the options menu

Furthermore, instead of buttons, inside my options menu I have movie clips that have 1 frame that says "on" and one frame that says "off", so they toggle when pressed (via a nextFrame / prevFrame setup within the movieclip). There are some problems here, too. If I have to attach the movie, it keeps getting unloaded when the user goes back to the main menu, so all the settings reset, which completely nullifies the point. Furthermore, even if I give the three instances of the "ON - OFF BUTTON" movieclip different instance names, they all responsd to any command made to any of their instances, which is confusing and annoying. So, toggling things is physically impossible also, it seems.

I am sorry for the long, flustered explanation. I am just really frustrated by this whole menu mess, especially since my game was going so well before I started messing with the menus and stuff. If I forgot some information you need to help me, just let me know. I'm really tired, and I'm almost done and would really like to complete my game but at the moment these menu problems make no sense to me and I cannot figure out a solution.

Thank you very much for reading all that and for any help you provide!
- wobbly

View Replies !    View Related
Why Are Certain Options In The Action Menu Unselectable?
I am new to Flash5 and this is what I am trying:

I have an instance of a movie clip in layer two, frame one of my movie. I right click the instance and pull up the actions menu. I want to add this code the instance as per a tutorial on this site:

onClipEvent(enterFrame){
_root.line._x=random(400);
for (i=0; i<=2; i++)
{
_root.circle.duplicateMovieClip( "circle"+i, i+1);
}
if (i=2){
i=0;
}
}


The problem is when I look into the actions menu the "OnClipEvent" option is grayed out and it will not let me select it. There are a few others grayed out as well:

else
else if
on

Why won't Flash let me select these options?

Can anyone help me?

Thanks in advance!

View Replies !    View Related
Specific Display Menu Options?
Hi everybody! Hope you're all doing just peachy.

I am, with the one exception being that I just created a flash animation website and I have some "easter egg" type jokes hidden around the pages and cartoons. Most of them require some severe zooming in, however I have included some so that you must be quick to access them. Obviously if you can pause the movie, it's not how I intended it so here's my question:

How can I disable some (play, pause, rewind) features of the right-click Display Menu but keep others (like zoom in/out)? Or can I just enable the zooms?

Hey thanks everybody, I really appriciate the help.

-Space Chicken

View Replies !    View Related
Right Clicking On Movie/menu Options
What determines on how the right click menu is displayed when clicking a movie? Most of the time you get all the options like Zoom In, Zoom Out, Show All etc. but sometimes all you see is About Macromedia Flash 7...

Thanks

View Replies !    View Related
Options Menu On Library Panel
Hi
1. am a starter with flash mx 2004. i do'nt see the options menu at all on the library panel. i do'nt see it in a grayed out mode too. can somebody help me with this please!

2. can you also recommend some good tutorial sites for beginners.

thanks
Sharada

View Replies !    View Related
Floating Menu/button
I'm not sure how to phrase this, but here it goes.

Can someone tell me what I should look under in the tutorials, or movies, or basically tell me how to do the following;

I created a map in flash, the map is much to large to display the entire map on one screen, even at 1600 X 1200 resolution. I want to create a smaller key map plan of the entire map in the upper left hand corner. When the user clicks on a location of the smaller map, it'll bring the user to the location on the much larger map. The small key map would have to be able to scroll with the user up, down, left or right, but would have to stay fixed in the upper left hand corner. Can someone direct me to the right location on learning how to do this, or what to look under?. Thanks.



p.s. if what I'm explaining isint clear, I'll post a pic of what I'm trying to do.

View Replies !    View Related
[F8] Floating Flash Menu
I have taken over a Flash project and am wondering how to proceed. Any input/links/tutorials would be greatly appreciated.


There are 4 separate areas to the site (all separate Flash movies) and a 5th movie that acts as a "communicator" between the sites. The communicator should pop up and float over the open site (with the open site still visible underneath) and contain the links to the 4 areas.


What are the methods to accomplish this? Is it done with ActionScripts and layers in Flash?



Thanks

View Replies !    View Related
Randomly Floating Menu
i have a menu (as seen here: http://topic101.com) that is floating but not how i want. its just a fake thing i did up really quickly.

i would like it to appear as if it were really in water, floating around randomly. i'm also wondering if there is a way to have the image change when the menu hits the edges of the image.

any help would be very very much appreciated.

thanks.

View Replies !    View Related
3D Floating Carosel Menu
In trouble and in need of actionscript help.....!

I have created a 3D floating carosel menu from a tutorial ...which moves around as you click on the individual "balls"(couldnt think of a better word-will make sense if you see the file...) but basically I need to attach each individual ball to its own function ie(loading a Movie clip on the main timeline)....

I would imagine this is possible but am struggling to get it working...

anyone up for the challenge>?????

View Replies !    View Related
I Need To Create A Floating Menu
BEGINNER; PLEASE HELP!!!

I have created a menu at the bottom of my webpage but it sometimes doesnt appear if opened on a computer with a small screen. How can I tell this menu (which is a self contained movie clip symbol) to always appear at the bottom of the page without creating a scroll bar.

Should I make the menu into a floating menu and if so what is the actionscript to do this?

Thanks in advance

View Replies !    View Related
3D Floating Menu With Perspective
Anybody knows a thread or link to a tutorial for making a 3d menu system where the buttons are floating on the screen like around a globe and they move closer to the mouse cursor when they are selected?
Thanks

View Replies !    View Related
Floating Menu System
I've been trying to develop this menu system in which you can collapse/drag and rearrange menus. I've attached what I have so far, but I've been running into problems and I'm hoping someone can guide me in the right direction.

One of the larger problems I'm at right now is rearranging the menus. If, for example, I move the top menu to the bottom, the other 3 menus don't shift up and I can't seem to figure it out.

Any help would be really appreciated.

View Replies !    View Related
Floating Sticky Menu
Hello all
I need to come up w/ some sort of small nav bar for a cd portfolio I have to do for school. There was something I saw a while back on this site (I found through here) that I really liked. I put this in my favorites, but it won't load anymore. Anyways, the buttons were like "floating" and moving around, and when the mouse went over one, the button like "stuck" to it, and followed the cursor, unless you "yanked" it away from the button. It was way cool. Anyone know where I can learn how to do this? You can try the link, but I doubt it will work, maybe some of y'all even know this guy, I have to say that his site is one of my top 5 favs.

Thanks, out.

http://raf.lavaland.net/

View Replies !    View Related
3D Floating Menu With Perspective
Anybody knows a thread or link to a tutorial for making a 3d menu system where the buttons are floating on the screen like around a globe and they move closer to the mouse cursor when they are selected?
Thanks

View Replies !    View Related
Floating Menu W/ Flash?
Is it possible to blend/alpha/opacity a part of a website (in this case a drop-down menu) with flash (like have flash over the text thats semi transparent)

View Replies !    View Related
Floating Motion Menu HELP
wot Im trying 2 do is thus

a menu of seven graphics/buttons floating around

when you mouse over one of them it STOPS

if you follow thought and click it gets bigger and then the fuctionality to link out.

I guess it sounds easy, but im having a bit of thouble.

I tried puting a button into a clip, the clip onto a motion path in a clip and then gave the command on mouse over stop to the button... do you think it worked NOT A CHANCE

Any help please would be great a .FLA would be better

cheers

Jason

jason@roomone.com

View Replies !    View Related
Add To Menu Options On Macromedia Flash Player 6
Hello everyone

Is it possibles to add a option to the Macromedia Flash Player 6? I want to be able to control the sound of my movie from there.

View Replies !    View Related
How To Prevent Right Clicking, Or Reduce Menu Options.
I basically want to diable right clicking, or if that isn't possible, at least prevent people from going forawrd or back through my game I'm making, I can't find the action script for that, can anyone help? Thanks a lot everyone!

View Replies !    View Related
How To Disable Some Menu Options And Enable When Needed
i want to know how to disable a menu option and enable it when needed. i have included the file here. please help me out!

View Replies !    View Related
Floating Menu Won't Stop At Ends?
Hi,
I'm trying to do a floating navigation bar at the top of the screen. I've combined three different scripts, so that when I roll out of the menu, it stops, instead of continuing to scroll. Problem is, I can't get it to stop when it reaches the end of the menu on both sides. It just keeps on scrolling, and gets lost off screen. Is there some way I can tell it to stop, or set speed to 0, or something like that? It's controlled by a follow mouse movie clip. The second frame of the follow mouse clip has this script

:drag = "/dragControl";
/:w = getProperty("/nav", _width);
/:xPos = getProperty(drag, _x);
/:yPos = getProperty(drag, _y);
// next 2 lines center the menu drag to the screen
/:yPos = /:yPos-50;
/:xPos = /:xPos-200;
// SET DRAG SPEED (inverse)
speed = 45;
setProperty ("/nav", _x, getProperty("/nav", _x)-(/:xPos/speed));
if (Number(getProperty("/nav", _x))<Number(-(/:w/2))) {
setProperty ("/nav", _x, _x+1);
} else if (Number(getProperty("/nav", _x))>0) {
setProperty ("/nav", _x, -/:w/2);
}

The movie clip is called "dragControl" and the menu is "nav"
I've been staring at this clip for a week and I don't know which way to go. I would really appreciate any thought, ideas! Thanks!
miakazi

View Replies !    View Related
How Can I Stop A Floating Menu On A Rollover?
I have a menu that floats around the screen counter to where the mouse is positioned. Within the menu movie clip there are four buttons housed in a single movie clip of their own. What I'm trying to do is stop the menu mc from floating when the mouse rolls over any part of the menu mc.

I can accomplish it on the main timeline by putting a stop action on the first frame of the menu mc instance but this makes my four buttons inactive.

Is there any way to adjust the commands within the floating menu timeline? Here is the code on the first frame of the menu MC:


xspan = getProperty("_root.menu", _x)-getProperty("_root.center", _x);
yspan = getProperty("_root.menu", _y)-getProperty("_root.center", _y);
setProperty(_root.menu.balls, _rotation, (360-xspan)+(360-yspan));

if ((xspan*xspan)>0) {
setProperty("", _x, Number(getProperty("_root.center", _x))+Number((xspan*0.9)));
xspan = xspan-1;
} else {
setProperty("", _x, getProperty("_root.center", _x));
}
if ((yspan*yspan)>0) {
setProperty("", _y, Number(getProperty("_root.center", _y))+Number((yspan*0.9)));
yspan = yspan-1;
} else {
setProperty("", _y, getProperty("_root.center", _y));
}
_x += (getProperty("_root.center", _x)-_root._xmouse)*.1;
_y += (getProperty("_root.center", _y)-_root._ymouse)*.1;


I'm not sure where to put a rollover conditional statement within the code. Any help would be greatly appreciated.

Here is a link to show you how it works without the rollover effect:

http://www.robpedini.com/floatingMenu.html

View Replies !    View Related
Fuzzy Menu And Floating Movies
A couple of questions. I am using FlashMX 6.0 on XP in Dreamweaver MX.

I am creating a bar with several buttons for the top which I am including on
all of my other pages for navigation. When I preview the movie in Flash it
looks good and crisp, however, when I preview in Dreamweaver or IE6 it is
fuzzy. I have been able to reproduce the fuzzy problem in Flash by
selecting Show All when I preview and I can correct it by selecting 100%
from the right-click menu. I believe the problem would be solved if I could
set the movie to 100% automatically either in Dreamweaver or Flash. I have
not been able to locate where to set the movie to default at 100% in the
publish settings of Flash and the option is not available in Dreamweaver.
Can I hardcode it in Dreamweaver?

My other question is about Flash movies that go outside of the designated
"stage" area. I have seen movies on Amazon.com and other sites that have,
for instance, a dropdown menu that drops down into the html area of the
browser. How do I do this? My menu I spoke of above is a dropdown and as
of right now, when it drops down, you can't see it because the movie
dimensions are not extended to the length of the dropdown. If it were, the
Flash movie would be huge vertically. Thanks for the help.

JB

View Replies !    View Related
Any Ideas On How To Do This? - Floating Menu Which Follows The User
Hello,

I have been asked to come up with a similar interface to this one:
www.unit9.com/moon/
What I am trying to recreate is the floating menu which follows the user around wherever the screen goes. Any ideas appreciated.

Stephen

View Replies !    View Related
Floating Menu (Avoid Mouse)
I am trying to create a simple menu that basically floats on screen, and it moves opposite the mouse, speeding up as you move the mouse further from the menu. to recreate what i have so far, simple create a circle, convert to symbol (movie clip, named 'circle'). Then create a new layer and on the first frame, paste this in your Actions:

_root.onEnterFrame = function(){
positionX = _root._xmouse - 50;
positionY = _root._ymouse - 50;
circle._x = circle._x - (positionX - circle._x)/50
}


I have it floating just fine, moving from my mouse just as i want it, but unfortunately i cannot for the life of me figure out how to get it to stop at the document bounds. I have tried everything i can think of and have been searching tutorials all over the place but with no success. If anyone can help me out, i would greatly appreciate it. BTW, this is my first Flash project, so i'm new to the program and actionscripting, please bare with me. (btw, my motivation for this menu is the xmen 3 dvd site. . .http://www.xmenthelaststanddvd.com/# Once you click 'enter site', skip intro, and click the navigate button, you'll see what i mean).





























Edited: 05/29/2007 at 12:40:14 PM by maverick21383

View Replies !    View Related
Floating Dynamic Menu, How Was It Made?
how was this site menu made? it looks pretty amazing.
http://www.screenvader.com/root.html

thanks

View Replies !    View Related
Floating Menu, Blocking Other Buttons
Hi there,

I have created a floating menu that follows the mouse around, promlem is the buttons in the navigation rollOver even when they are not rolledOver. Also no other buttons function with the floating menu working. Rather than try to explain the code and avoid any confusion I have uploaded the file to http://www.onnpoint.co.uk/cs-gallery2.zip

Should anyone think they know the answer, any help would be much appreciated as the clock is ticking!!

View Replies !    View Related
Possibility To Mark Options In Right Click Context Menu
Is there possibility to mark options in right click context menu ?

For example, if you right click on Windows bar, Lock the Taskbar is checked (marked).

Thanks,

View Replies !    View Related
Floating Flash Menu Centered At Top Of Screen. How?
Hey,

You all have seen those annoying flash advertisements that float over the webpage. I know that they are made using a swf with a transparent background. I want to put that to good use by creating a stationary menu at the top of the screen that is centered on the page but will allow parts of the menu to expand over the webpage when in use. However, I do not know how to get the swf positioned where I want it to be (top center). All explanations and examples are welcome.

Thanks,
Kendall

View Replies !    View Related
Simple Question: Floating Menu Box Related
I'm having trouble figuring this out, and I'm sure it's simple and just evading me. How do I make a button that, when clicked, makes a box appear that's filled with numbers corresponding to frames in the main stage, and then also a button in that box that makes the box disappear. I've seen this so many times, but usually in those situations, the box is floating around or whatever. I don't need something that fancy. It's actually to create a table of contents that appears and disappears when a button is clicked. The button to make it disappear doesn't even have to be in that white box, it could be as simple as clicking the same button once to make the box appear then again to make it disappear. Many thanks to anyone who can help out or point me to the right tutorial!

View Replies !    View Related
Collapsing/floating/Draggable Menu System
i'm trying to develop this menu system that allows the user to collapse,drag and rearrange menus.

i've managed to get the collapsing, dragging and snapping (partially), the problem i have here is the rearranging part, i need the menus to be able to "snap" into specific spots, the hard part is that the menus are all different heights

a good example of this would be google's personalized home page, where you can personalize google with weather updates, a calendar, etc in these little containers that are draggable/collapsible and snap into specific locations

i'll attach what i have so far so you can see what i'm talking about lol

any help would be appreciated!

what i have so far: http://img529.imageshack.us/my.php?i...lemenusqw4.swf

View Replies !    View Related
Floating Menu System? Can U Point Me In The Correct Direction?
Ello,
I would really like to know how you creat the floating menu pallets that you can move any where on the screen.
Can anybody point me in the direction of one?
thankyou please!
Aidan

View Replies !    View Related
Floating Menu With Just Circle Nodes As Button And From Node Randomly Generated Lines
Hi guys,


Can you please help me out in creating a scripted menu with 10 nodes


Floating menu with just circle nodes as button and from node Randomly generated lines. The lines should generate like a tread. Both the lines and the buttons at the end should float in the menu. I want 10 nodes.



Please help me

Thanx in advance

View Replies !    View Related
Copyright © 2005-08 www.BigResource.com, All rights reserved