ActionScript 3.0 :: Adding And Removing Child With Multiple Buttons?
Mar 30, 2010
I understand that the major difference between AS2 and AS3 is that in AS3 you have to put all your script in a separate layer, and unlike AS2 you can't add them to buttons or movie clips themselves on their respective layers.
I'm doing a project for school where I'm required to make a flash portfolio.
I have Five buttons, and right now, two of those buttons goes to a frame to display a picture. However, I've made the other buttons dynamic, and they call other swf files to show an image gallery, a game and another image viewer.
What I have a problem with is when I click the first dynamic button, and the swf if added to the parent movie clip, it does not leave the stage when another dynamic button is clicked.
So what I have is all the SWFs loaded on top of each other.
writing a code that will remove child for each button when ANY other button is clicked.
here is the code I have:
stop();
btn3.addEventListener(MouseEvent.CLICK, buttonClick);
function buttonClick(event:MouseEvent):void{
gotoAndStop(3);
[Code].....
View 2 Replies
Similar Posts:
Mar 25, 2009
I have a picture on the stage that has multiple items that have hotspots/links over them that should open a child swf on top of the background and show details about the items. then have a button in the child swf itself that removes the child from over the background so the user can click on another item etc.I found this code in someone's post and I am trying to modify it so that works for multiple swf files...it currently works for a single swf.I wan to pass the name of the button in front of the .swf in the URLRequest to have the same name as the instance name of the referring button. But I can't figure it out. Here is the code I am using on the stage
View 2 Replies
Nov 9, 2009
I have 4 separate photogalleries, they are all swfs called by buttons with UI loaders attached. The problem is when one is called the loader remains on the stage I need to be able to remove any loader on stage BEFORE calling another page weather its a photogallery or not.Easiest explanation is how I used to do it in AS2 example 2 btns /2 load separate swfs into level1 on each btn I would have
unLoadMovie(1)
LoadMovie (xxx.swf) 1
I need to do the same thing in AS3 Also, do I need to use separate loaders or can I use one loader and instance names? Below is the code I have now (btns are in two areas)
main timeline btns (all btns except photogallaries)
stop();
home_btn.addEventListener(MouseEvent.CLICK, onHomeClick);
[code]....
View 0 Replies
Mar 10, 2010
var viewStack:ViewStack = new ViewStack();
viewStack.percentWidth = 100;
viewStack.percentHeight = 100;
[Code]....
Its only displaying canVas3 contents not canVas1 and canVas2
View 1 Replies
Apr 7, 2009
I'm having an issue with MOUSE_OUT triggering before MOUSE_OVER has a chance. I have a global mouse listener class that listens to every mouse event and sends the object involved a message telling it when a mouse event has happened. When a Menu object is opened it adds a bunch of children and when it's closed it removes them all. The problem comes when moving the mouse from the Menu to the Children, Menu receives a MOUSE_OUT event and closes before the Child receives a MOUSE_OVER.
View 2 Replies
Aug 4, 2009
However, either I'm declaring my variables at the wrong bit/way or there is another problem, as I have been able to add the child I want to from the display list (sidepoint: is it right to call the display list everything in the library on stage at runtime plus those things you have exported for actionscript usage??!)...but when I want to remove it at the next cuepoint nothing happens. I feel this is a basic principle that is alluding me here.
Code:
vid.addEventListener(MetadataEvent.CUE_POINT, cueText);
function cueText(e:MetadataEvent): void{
[code]....
View 1 Replies
Dec 8, 2011
I'm creating buttons like so:
for (k=0; k<5; k++) {
myLink = new LinkClass();
myLink.name = "link" + k;
box.boxMC.linksMC.addChild(myLink);
}
This creates 4 movieClips with the names "link0", "link1", etc. How do I remove them? I try this:
box.boxMC.linksMC.removeChild(myLink);
But it just removes the last one made (link3). How do I have all of them removed?
View 2 Replies
Dec 14, 2009
After a little break in AS3 I'm back... and facing a problem. For a school project I'm trying to make a side scroller game in which the player automatically moves right and has to avoid branches.Basically, depending on how well you do your speed (var) gets updated. After certain 'distance' (fake of course, as the player stays centered) I would like a n instance of Branch_MC to appear. Also, when that instance's x property reaches -20 I would like it removed.I'd need approximately 135 branches so creating variables isn't really an option.
View 8 Replies
Nov 24, 2011
The name of my DocumentClass is Main. So, what's the difference between :
var myClass:Main = new Main();
var mcInLibrary:MovieClip ;
/////////////////////////////////////////[code]............
View 1 Replies
Nov 23, 2010
In CS5, I want to create a series of buttons that when clicked will linked to other frames in the same timeline. So one button will link to frame 5, one will link to frame 10, one will link to 15, etc. All the buttons will appear across the top of the stage on a layer, and I want them to appear on all of the frames so the user can click back-and-forth to the different frames/screens.
1. Is the best way to do this to just add the buttons to frame 1 and add a keyframe to the last frame in the timeline, frame 15, so they are copied to all the frames in between?
View 4 Replies
Feb 6, 2011
I made a flash banner + have photo creds on each photo. I want to make it a link to source to the photographer's portfolio.I've got 5 links for 5 buttons, button1, button2, button3, etc, each is named in the library with a matching name for the instance.I got the link working for the first image, but whenever I try and do it for others I keep getting a message of [code]
View 1 Replies
May 12, 2010
I have created 2 sprites each containing a dynamic text field child. I then add this as a child of the stage. (I have done this in order to make the text clickable with a hand cursor on mouseover)It loads in fine, I just run into problems when trying to REMOVE it the sprite containing the text."ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller."Sections concerned in red:
Code:
import fl.transitions.Tween;
import fl.transitions.easing.*;
[code]........
View 2 Replies
Mar 11, 2010
I've seen some discussion on how to load a child swf using swfLoader and accessing it's variables but I am wondering if it is possible to do this without adding any code to the child swf.Either accessing public vars or listening for funciton calls would work fine
View 2 Replies
Jun 6, 2011
i am slightly confused about the parent and child relationship. lets assume we have several different instances, what would be difference of adding them all as children of the stage and creating a parent-child hierarchy between them(other than the access path).
View 5 Replies
Feb 2, 2009
Im using the following code to create a mc from a template iv made stored in the library:
var galleryThumbs:MovieClip = new contentTemplate();
galleryThumbs.x = 710;
galleryThumbs.name = "galleryThumbs";[code].........
that all works fine but then im trying to remove it with this, with no success:
if (galleryBox){
removeChild(galleryThumbs);
}
View 6 Replies
Aug 10, 2011
Here it is:
var ZombieInstanceTimerL:Timer = new Timer(8000,60);
ZombieInstanceTimerL.addEventListener(TimerEvent.TIMER, ZombieTimerLfunction);
ZombieInstanceTimerL.start();
[Code]....
Basicly im first setting a timer of 8 seconds for a zombie to sprawn then it sets the properties and then using the addChild method it adds the zombie every 8 seconds. then i made the zombie move but as if it hits the character i make it stop and go to the attacking scene which is frame 4 and then when it isnt hitting it, it goes back to frame 2 which is walking,, then i made a Zombie death code which works by in the zombie attack class it has hittests for all the weapons and it reduces a varible in a GlobalVaribles class the varible is called ZombieHP and here it says if ZombieHP is below 1 it should go to 3 which is the death scene and add a point to the score but the hp and gotoAndStop affects all of the zombies so when it hits one they all die how can i make it so only the one its hitting can be affected..
View 3 Replies
Feb 8, 2010
I'm trying to remove an instance by name, that was previously captured when it was created. (in a property)
ActionScript Code:
trace(this._blockInstance); //returns instance name, eg "instance203"
But when i try to combine that with the removeChild method, it don't work.
ActionScript Code:
this.removeChild(getChildByName(this._blockInstance));
error:
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at Board/boardBlockClick()
View 7 Replies
Jan 8, 2012
I've run into a problem when trying to move one of my sprites from the stage when it dies.So far what I'm having to do is call the Death method from the main class, which then goes to the Enemy Class in order to play the animation, once the animation has reached the last frame an event is triggered which is situated in the main frame which then removes the now dead enemy from the stage. However it doesn't appear to be able to target the child which I want removed =/Main Class:
Code:
private function hitCheck(e:Event = null):void{
var samuraiPos:Number = SamuraiChar.samuraiPos();
[code].....
View 4 Replies
Oct 6, 2010
Have a rather bizarre issue with Flex throwing an error when teh application is running in the background. I use Selenium and SeleniumFlexApi to run various tests against my app. If the browser window is in the foreground or any part of it is visible to teh screen, the test pass as expected. However, if the window is in the background and not visible, I am getting the following error in 1 part of my app.
ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller. I have a VBOX that creates a number of children and then upon creationComplete(or UpdateComplete, I've tried both) it then needs to remove any of the children that are not visible. Each child has a listener for CreationComplete which checks if the child is visible and if not, adds it to an array which is iterated over when the parent UpdateComplete is fired. I cant seem to find any reason for this behavior and am curious if its an issue with the Flex Component LifeCycle.
View 1 Replies
Jan 26, 2009
In my document class I have assigned the root of fla to theRoot movieclip as theRoot = MovieClip(this.root); And as my program proceeds I have added several childs to theRoot. Now at the end of my program I need to delete all the childs of theRoot. So,how can I do this without individually deleting single childs.
View 1 Replies
Oct 2, 2009
I have these lines of code on frame 55 on the Main Timeline that generates the contact Form :
ActionScript Code:
import com.warmforestflash.ContactForm;
var contactForm:ContactForm = new ContactForm();
contactForm.x = -200;
[Code].....
My problem is, that I want the contact Form to be deleted everytime I change the frame means --> everytime I go to another subpage of the homepage.
So I would need a script to check for instances of the contact Form class on every subpage-frame and to delete them if present.
View 0 Replies
Nov 11, 2010
When I put in this code
ActionScript Code:
stage.removeChild(dementorBlack);
it doesnt work as it says it cannot find dementorBlack basically.Here's my .as file where all this is going on.
ActionScript Code:
//the directory structure to this file
package [code].....
View 3 Replies
Nov 28, 2010
I'm trying to create s simple website by using flash. My idea was to have a series of buttons that when i click will add a child to my stage. Now my problem is that i can only figure how to remove that child again by clicking the same button, i would like that the child could be removed by clicking any given button.
Below you see the code for two of my buttons. It is basically made up of the snippets from Flash CS5. I've restricted the amount of children thath can be added, so that no two subpages (children) can be added at the same time. When i add the child by pressing a button the child will be the seventh child on the stage. Is it possible to then make a piece of code for the button so that given a child number seven is already at the stage this will be removed?
ActionScript Code:
infobtn.addEventListener(MouseEvent.CLICK, fl_ClickToLoadUnloadSWF_info);
var fl_Loader:InfoPage = new InfoPage();
var fl_ToLoad:Boolean = true;
[code]....
View 5 Replies
Jan 2, 2012
I have a main_mc that loads and external xml slideshow on frame 1 via this code:
ActionScript Code:
stop();
import fl.transitions.Tween;
import fl.transitions.easing.*;
[Code].....
View 5 Replies
Jul 24, 2009
I have written this little script, as i want to remove some of the text fields that are currently contained within the Display Objec, however it does not like to see the TextField as a varaible name. How would i convert the object from an array to become a textfield that can be removed, after being added through
addChild()
This is the script
var delayHeading:Number = 1500;var repeatHeading:int = 1;var setShow:Timer = new Timer(delayHeading, repeatHeading);setShow.start();setShow.addEventListener(TimerEvent.TIMER_COMPLETE, maybeLater);
[Code].....
View 5 Replies
Aug 12, 2009
I'm having a problem removing a child from the stage that is added dynamically. Shouldn't this work...
[Code]....
View 3 Replies
Feb 2, 2011
so here goes the description of what i'm (trying) to make : i want to make a slideshow with AS 3, it will load external image which the location will be written in xml after it has load all the image it will play by itself and change beetwen image with transition.. well i manage to : read the xml, load the picture one by one and convert it into a bitmap tipeafter convert it to a bitmap tipe data i save it into an arrayafter all the image has been laoded , converted into bitmap and saved into array to display the image itself i first add the the image which has been save into the array to the container that i specially made to hold this (well actually because transition manager can only have effect on MovieClip).
myMCContainer.addChild(myImageArray[imageIndex]); that's how i display it (of course i have added "myMCContainer to the stage").
well the real problem is when i tried to use remove child fo myMCContainer it give me error #2025, and when i tried to check number of child that myMCContainer has it returned 0 even after adding the image...
[Code]...
View 5 Replies
Oct 5, 2009
I got a Homepage set up and I have a Contact Form on Frame 55 of my main movie clip.The form is created on runtime using AS with the following code:
ActionScript Code:
import com.warmforestflash.ContactForm;
var contactForm:ContactForm = new ContactForm();
[code].....
View 1 Replies
Jan 26, 2010
To give a brief background of what's going on here. I am building a personal site where I have a navigation, and I have other subnavs inside of certain pages. Such as if I go to "work" inside of work i have "motion", "web" & "print".
I'm having a problem with remove child in certain areas.. One would be when I load one page from the navigation then go to the "WORK" link, work won't show. Also..when I remove a movieclip elsewhere(this is under the same circumstance) then click on a link it does not remove that movieclip that is loaded again.
For example, click personal, click a thumbnail,(this adds workpersonalss_mc) then click back(this removes work personalss_mc then adds workpersonal_mc back), the click a navigation button it still remains..
[Code]...
View 0 Replies
Jan 28, 2010
Work_mc has to be removed when you click personal_btn under only one occurrence. When it is loaded from workss_mc. When it is loaded from workss_mc it is done with addChild.So this is the navigation in a whole.
Button
Work -> work_mc(selection of work)(on timeline) -> workss_mc (this contains all work) added as a child Personal -> personal_mc(selection of work)(on timeline) -> persoanlss_mc (this contains all personal work) added as a child
So the goal is here, is once you are in personalss_mc or workss_mc you need to be able to go back to personal_mc or work_mc to look at the selection of work here, so by doing this I am using addChild & removeChild. This is where the problem lies, if a user does this then decides to swap pages then the page overlaps work_mc or personal_mc.
View 1 Replies