ActionScript 3.0 :: Button Menu To Load Swf's
Jan 3, 2010
I am trying to make a menu that loads external swf's into my current movie. Here is the code that I have, which does what I want, except the buttons only work in order... you can't click the last one first, for example... They only work in the order in which the button variables are scripted...
import fl.controls.Button;
var my_loader:Loader = new Loader();addChild(my_loader);
var about_btn:Button = new Button();about_btn.label="ABOUT";about_btn.x=50;
[Code]....
I have been looking at so many snipets and such.. and whats with all the brackets at the end... I kept adding them until it wasn't expecting right bracket at end of program anymore. Like I said, it works but you have to click "about" first and so on down the list, once through, then what ever order after you have loaded them all once.
View 4 Replies
Similar Posts:
Jun 26, 2009
I was getting in to transitioning from AS2 to AS3 a while back and had designed a page that had menu buttons that when clicked, loaded an external swf in to a container. Pretty simple accept for the fact that it was a while ago and my computer crashed so I'm having to redo this and learn it all over again. I have read in to flash on the subject but I am not to sure on the best way to go about this. I know there are a lot of people on here who make thing a lot more simple and structured than I do. I'm so used to putting the actionscript on the button and I'm a little stuck on the best way to combine the actionscript for the button and loading the swf. I would need to make a button load an external swf in to a container when clicked? I figure I just need one and then I can copy it to all the other menu buttons.
View 2 Replies
Jun 20, 2010
Basically, I have a button and on click it displays a menu. I want to click that menu a second time and the menu closes. Currently, every time you click the button, the menu reopens. I pasted the Flex livedoc example below. If you click the button, the menu keeps reopening.Now, I rigged it up by setting a var to open and closed, so when clicking the button it does a check. However, if you click away from the screen, the HIDE event gets dispatched, and the menu closes. This messed up the open close var being set.
How could I make this Flex example below show the menu on button click, and then on a second button click, it closes the menu? Take into affect that if you click away from the menu, it closes it.Also, I played around with the MOUSE_DOWN_OUTSIDE event for the button and set the preventDefault, and the FlexMouseEvent event.cancelable is set to false.Changing to a PopUpMenuButton is not an option. I have to much skinning involved.Here is the Flex example:
<mx:Script>
<![CDATA[
// Import the Menu control.
import mx.controls.Menu;
[code]....
View 1 Replies
Oct 27, 2006
i created an application and it has a menu bar at the top of the stage it also has a loader component below it. i need the loader to load an swf when an item is selected from the menu. Does anybody know how to code this. I am using the following code:
[Code]....
View 1 Replies
Mar 17, 2009
I'm making my new photography site, and it's going to be entirely in flash. I'm an intermediate flash person, but there is something I'd like to do with my menu that I can't figure out how to do. I'm going to have 4 buttons:
[Code]...
View 5 Replies
Sep 16, 2011
I would not have asked the question if I owned an iphone, but so far I only have an android phone for development.
The question is: Should I use the View.viewMenuItems that are provided by flex mobile? Or should I better embed the functionality in another way? I don't know what possibilities might exist on iphone to open the menu, because it has no hardware button "menu".
By the way: How could I open the menu in the Flash-Builder mobile device emulator - there are no buttons, too..
View 2 Replies
Mar 31, 2007
I am building a menu and for each button of the menu, subbuttons apear beneath it along the menu. And I am having some problems. Each of the menu buttons has animations for rollOver and rollOut. What can I do so that when I move over the subbuttons the menu button won't start the rollOut animation. I have to extend the hit state. If I put the subbuttons in the same movie clip as the menu button, the animation would be bad because I am doing width, height, x and y tweenings with ActionScript and addind something the the clip would change these properties. Pls help.
Is it possible to extend the hit state of the menu button in some way ?
View 1 Replies
Jan 12, 2011
i was making asimple menu .
ActionScript Code:
var currentLink:MovieClip = a_mc;
//buttons mode[code]...........
when i click on the button the alpha of this button will be 0.5 , when i click on another button the alpha of the previous button is still 0.5 , and so if i clicked on all buttons the alpha of all buttons will be 0.5,,,i didn't want that , i want when i click on the button , alpha return to 1 for the previous button .
View 5 Replies
Jan 1, 2007
i new to actionscript and am not sure where to begin so i will explin what i would like to do. i have a myspace site that i have created a div overlay with...<a [URL] now what i would like to do is use actionscript so when you click on the menu button a image wil pop up in the ipod screen and when u click the play button something else will pop up
View 6 Replies
Apr 9, 2008
I'm trying to add a back button once I click a main menu button then remove the back button once it is pressed. I get the title error.
[Code]...
View 6 Replies
Aug 3, 2008
This is something that is probably really basic but for the love of gawd I can't remember how to do it.
Example: 3 menu buttons, you press the first button and it executes a function and disables itself leaving the second and third button enabled. You then press the third button and the first button gets enabled while the third button is disabled. Same thing goes for the second button.
View 8 Replies
May 5, 2008
I want to load a menu from a XML-doc.I have:
xStart = 5;
yStart = 48;
bHeight = 15;
[code]....
View 3 Replies
Jun 4, 2009
I had a flash template with nav button menu and sub button menu, in flash player the menu and sub menu works for different pages, but sub menu do not work in web page, whatever page goes, it always load sub menu for home.
[Code]....
View 4 Replies
Feb 28, 2003
how to load external menu into main.swf . do i have to create 2 different empty MC's
View 2 Replies
Jul 24, 2008
i'm using hga77's xml menu you can view here.ok, so i'm trying to load swfs from the menu, what i've got so far is:
Code:
function executeAction()
{
loadMovie("NEWS.swf", _root.content);
trace(NEWS.swf);
[code]....
but the menu stops working. is there anything i can stick in this bit "function executeAction()" that will make the loadmovie load a different swf each time, rather than creating loads of loadmovie functions.
View 2 Replies
Jul 5, 2009
I have a menu that is populated by XML, I'd like to know how I can clear that menu to load another one in it's place.
I can get the other menu to load but it's adding itself to the previously generated menu:
so let's say I have an XML document that has <menuItem> nodes that have nodes within them named [this is the default menu][code]...
how can i clear the XML or for loop that created the buttons so that the newly loaded menu from the newly loaded xml is the only menu that is displayed and not tacked on to the existing menu?
View 3 Replies
Jan 12, 2010
For some reason the menu doesn't load to the URL that I specify in my xml file. When I click on it, it showed up as text underneath the menu itself as Link clicked How can I make it so that the link will actually go to URL that I specify in my xml file?[code]
View 2 Replies
Sep 26, 2003
Below is the code from a siding menu that works fine..............
[AS]onClipEvent (load) {
xcenter = _root.box._x + ( _root.box._width/2);
speed = .03;
[code]....
However after loading this into another movie it wouldn't move, I made some changes and now it scrolls only to the left. Can someone please tell me what I have over looked ?????
[AS]
//**************************************************
onClipEvent (load) {
xcenter = _level0.tops_contain.box._x + ( _level0.tops_contain.box._width/2);
speed = .03;
[code]....
View 1 Replies
Mar 26, 2010
I'm currently working on a flashsite and are trying to figure out rollover menu buttons. The site has 6 menu buttons and are placed next to each other. I want to put a rollover action on the buttons, that when you rollover a button that the whole button image enlarges and moves in front of the other.
View 1 Replies
Jun 5, 2004
I have created this site with a expanding / collapsin menu. When a user selects a menu e.g. "hammers" then the menu is loaded and show the submenues. When the users closes the menu by moving the mouse away from the area the menu collapses. If the user expands the menu again the menu should have remember the last visit menu and show the menu.
View 4 Replies
Jul 22, 2010
I'm making a loader.swf to load a menu.swf file. I'm done this dozens of times the same way and it has worked perfect. But this time...when I load my menu and trace it out, the loader keeps loading and reloading the menu.swf infinitley and I don't know why.
The only thing I've discovered is that my menu.swf file will load just fine IF I delete all of the actionscript from it. If there is even a comment in there the infinite loop starts again.
[Code]...
View 4 Replies
Apr 22, 2011
i have used a purchased site template, everything works fine locally but when the site goes live it starts off fine but the first menu you click on nothing ever happens, if i go to another menu this loads as expected and if i then go back to the previous (non working) menu it also now loads. Everything works fine from now on just never on the intial load, does anyone have any idea why this may happen?
View 15 Replies
Jan 5, 2009
I've used the so-called "Barney's Slide Menu" for some websites I've built. eg: www.mediashox.com
As some of you may know, this is built in AS1. I'd like to load an xml slideshow into this menu [which is on level0, of course]. But it seems all xml slideshows are built in AS2 or later.
Is there any way I can load an xml slideshow into this Barney's menu? Are all xml driven flash movies AS2 or later?
View 9 Replies
Sep 25, 2009
currently, I have a XML menu. I followed the tutorial from here: [URL]. It needs more work and tweaking, but that's for later. The menu.swf is from an external SWF and it's loaded into my index.swf using the loader.My question is how can I have the menu load different external SWFs, in other words, different part of the website. Do I create another loader in the index.swf for loading the website's content? Can I use the existing XML file for the loading the SWFs?
Here are the codes I have so far:
Index.swf
ActionScript Code:
import flash.display.*;
import flash.net.URLRequest;
[code]....
View 3 Replies
Dec 25, 2009
I have a very simple problem here, I have googled around for awhile but it seems that its impossible to find specific flash subjects. What I have is 2 files, one is the intro movie for my flash project and the other is the menu. I need some action script 3 to end the intro and load the menu in the same box,
View 2 Replies
Jan 4, 2007
i need to load a series of variables into a menu. seems easy, i've done many times. the thing is, i have to get them from an asp who asks for a parameter.So i tried this:
loadVariables("/medidores/txtflash.asp?pkey=c0321733a51ffa323f", 0, "GET");
but this not seems to work. So, i tried this instead:
send_data = new LoadVars();
send_data.pkey=c0321733a51e82fadc8b3f081ffa323f;
trace(send_data.pkey);
send_data.sendAndLoad("medidores/txtflash.asp", get_data, "POST");
does flash actually stores whatever is in txtflash.asp into "get_data"?
View 4 Replies
Sep 28, 2009
currently, I have a XML menu. I followed the tutorial from here: http://tutorials.flashmymind.com/200...-menu-via-xml/. It needs more work and tweaking, but that's for later. The menu.swf is from an external SWF and it's loaded into my index.swf using the loader.
how can I have the menu load different external SWFs, in other words, different part of the website. Do I create another loader in the index.swf for loading the website's content? Can I use the existing XML file for the loading the SWFs?Here are the codes I have so far:
Index.swf
Code:
import flash.display.*;
import flash.net.URLRequest;
var menuldr:Loader = new Loader();
[code]....
View 8 Replies
Jan 11, 2005
Would like to know how can i load another .swf file when click on the menu.swf? What is the actionscript like?
View 6 Replies
Feb 27, 2011
i want to add new Menu in flash IDE and i want to add inside the adobe flash menu. How i can add new menu in menubar and new menu item inside the help menu. is it possible to do this things if yes then which language i have to use for this. what is way to start development and what is the .MXP file and how to create this .MXP file.
View 1 Replies
Jan 27, 2010
The menu is like this http:[url]... (the site is in portuguese but it doesnt matter), when I click in on menu the actual menu does an alpha to 0 and the next menu appears using the alpha from 0 to 100 (and some animations like the cellphone going up).Now, how can I do a menu like that, whatever the menu I choose, it does that alpha animation ?
View 1 Replies