ActionScript 3.0 :: Accessing Children Added To An Object?
Jan 23, 2010
How do you access a child that has been added to an object?For example if I have a movieClip on the stage and I add a child to it, how do I then access that child?
Code:
var newClip:MovieClip = new MovieClip();
newClip.addEventListener(Event.ADDED, checkClip);
[code]......
View 4 Replies
Similar Posts:
Jan 8, 2011
Code:
function saveAction(evt:MouseEvent):void{
var choice=evt.target.name;
var inputText:String = saveName.text;
}
I have this and I am trying to make a variable from the contents of the input box. Simple ya? The issue is that it is a child of another clip that is being added dynamically, so it doesn't think the input exists. How do I declare the input? How can I target it's contents? Also I have a remove function that is meant to remove this same parent clip.
Code:
function closeSaveWindow(evt:MouseEvent):void{
removeChild(saver);
}
'saver' is a variable created in another function, so I think there is a scope issue there. To try to fix that I declared 'saver' as a movie clip as a global var.
View 1 Replies
Jan 26, 2009
I'm having accessing an object i previously added to my stage. Or at least give me some direction, or tell me if there is an easier way entirely to achieve what I'm doing.
[Code]...
View 3 Replies
Jan 11, 2011
for some reason STORAGE[0].getChildAt(0) works whereas liner.getChildAt(0).getChildAt(0) does not. STORAGE is a movieclip and a child of liner. the error is something about not being able to use getChildAt on a display object. what's wrong? is there any other approach i could use? PS: liner.getChildAt(0) works and does indeed seem to refer to STORAGE[0]
View 2 Replies
Nov 27, 2009
I'm getting a list of movieclips with attached scripts to display, but when I try to put them on the sceen nothing shows up.I can trace the elements in the list and it will tell me there are elements there.I can trace getChildAt(numChildren -1) and it will tell me there is something there but nothing is visible.If I generate the list in the constructor of the class that handles the displaying it does show them, but when I try to load them when they are actually needed they don't show up.Here's a simplification of the code(its a small part of a larger project and I can't put all of it up somewhere public)This code does what it should do(unfortunately that is not what I need done)
Code:
package foo.bar
{
import flash.display.MovieClip;
import flash.display.DisplayObjectContainer;
[code]...
The traces all show up so I know its running the method, the traces tell me it adds stuff the the screen, but what I see on the screen remains completely stagnant, as if nothing is being added.
View 2 Replies
Jan 27, 2011
I have a problem with removing children. First button is adding movieclip each time you click and second button has to remove all of added movieclips, but it just dont work.
Code:
//add 2 euros
buttonDvaEuro.addEventListener(MouseEvent.CLICK, pridatDvaEuro);
function pridatDvaEuro(event:MouseEvent):void{
[code]...
View 9 Replies
Apr 29, 2010
I have a set of movieclips that are added as children to a parent mc. I want to scale the parent mc up but keep one of the mc's in the same place on the stage. I think the easiest way to do that is to scale the mc up, calculate how far the child mc moves and move the parent an equal amount in th opposite direction. Everything works but I can't for the life of me wrap my head around the math required to calculate the distance to move the parent mc. Has anyone else tried this? Is there an easier way that I don't know about?
View 2 Replies
Apr 12, 2011
I'm using the following array to add children to the stage:
for(var i=0;i<6;i++) {
var aCherry=new cCherry()
aCherry.y=10
aCherry.x=10+100*i
stage.addChild(aCherry)
}
Now I want to modify each cherry based on another array. Something like this:
[Code]...
Clearly stage.getChildByName("aCherry")[i] isn't correct, but coming from JavaScript this makes the most sense to me and should accurately portray what I'm trying to achieve for you guys reading this. So, how would I actually do this? This being getting an array of children added to the stage under a certain name or class (so an array of cCherry would work too, if necessary), then using them in a way similar to the above loop.
View 1 Replies
May 11, 2011
I'm adding a series of objects dynamically to my flash movie from xml but they won't appear when I run the movie. I have nearly identical code adding objects in a different swf that works just fine. I have tested this 8 ways from Sunday including ensuring that they were added to the container which is a child of the main MovieClip (tested the display list), that they were added to stage (had a listener for ADDED_TO_STAGE) and that their position was correct (displayed x,y values and compared them to mouseX & mouseY values). They are in the correct place in the display list. Still there are no objects. The class is linked correctly, I have movie clips in the library.[code]
View 3 Replies
Jan 2, 2010
i want to do is to remove all the children (ninge) added with Timer when the user rolls out the mouse. The ideea is when the user moves his mouse over the movieclip it begins to snow and when it moves away i want all the snow to disappear.
ActionScript Code:
rama2_mc.addEventListener(MouseEvent.MOUSE_OVER, rama2);
function rama2(event:MouseEvent):void
{
[Code]....
View 3 Replies
Jan 21, 2011
I would like to pre-process *any* item added to the display list of my main movie clip, so I attached the Event.ADDED event to the stage.
Seems to be working fine for timeline objects and objects loaded from the library (such as addChild(newClass())).
But I don't know how to manage stuff loaded from an external SWF. I'm getting Event.ADDED when I addChild() the loaded swf, but not for its children...
How can I know who are they children? (avoiding ENTER_FRAME if possible).
View 0 Replies
Nov 16, 2011
I'm producing some animations that have movie clips introduced by a video player cue point handler.The video is on a given layer in the timeline scheme. When one uses addChild(); to introduce a movie clip, is there some way of specifying what layer it should appear on? Otherwise, is there a way of controlling the stacking order of the various components on the stage?
View 4 Replies
Feb 19, 2010
I am trying to trace stage.name in child view after addChild:
import flash.events.Event;
import flash.text.TextField;
public class TestView extends TextField {
[code].....
View 3 Replies
Jun 6, 2011
I am trying to add children to a dynamically added swf file, using AS3, before I add it to stage
Here is the code I have thus far,
AS3:
var mLoader:Loader = new Loader();
var mRequest:URLRequest = new URLRequest(glo.bal.base_url+"videos/vid_1.swf");
mLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onCompleteHandler_one);
mLoader.load(mRequest);
[Code].....
Inside the vid_1 swf there is a movie clip called box_one, I would like to append a image to box_one, and only have the swf added to stage after the image file has been added to box_one.
View 1 Replies
Dec 23, 2009
I have a rectangular movieClip named 'container'. In this movieclip, a function generates some number of squares.My problem is that; for example, if I generate 12x12 squares with each width/height of 40; it resizes the container to width/height of 480. If I set the width and the height of the container movieClip to a lower value; then the squares become smaller.I have been struggling for some time on this problem. I tried setting the ScaleMode of container and squares to various values but it did not work.How can I overcome this illogical (for me at least) problem? How can I prevent children from resizing their parent OR how can i prevent parent downsizing the children?
View 2 Replies
Oct 10, 2009
I used to have the checkbox MovieClips in the menuListingClass, but I instead wanted to add them using something like addChild(). However when I try to reference the checkboxs later in the same way as I did before, I get an Error #1010: A term is undefined and has no properties. What do I need to add to reference the checkboxes like I did before?
Code:
for (j=0; j<styles.length; j++)
{
[code]....
View 4 Replies
Jul 1, 2010
I am adding rectangles dynamically and have first added them to movie clips so that they can receive mouse events.But I am having trouble accessing their position on stage.If I set the position of the movie clip that contains them, the x coordinate returned is always 0.Is there a way to get the position of the shape and/or movie clip container.
View 4 Replies
Apr 11, 2011
I've added a movie clip dynamically using the following code:
var apie=new cPie()
apie.x=100
apie.y=100
stage.addChild(apie)
I now have a pie on my stage. Yum. Assuming this works like a movie clip placed on the stage by dragging and dropping, I added this in to change an instance in the pie.
[Code]...
View 2 Replies
Jul 14, 2010
Im loading SWFs into my AS3 application. My SWFS are all the same and contain this structure:
root
-item
--color
--overlay
When i load up a SWF file into AS3, This is analogous to the root. So i can say:
[Code]....
I have tried everything i can think of to access this second depth by instance name. Whats wierd is that MovieClip(loadedSWF.item).numChildren returns 2. So Flash knows that theres 2 MovieClips inside of item.... But it just cant reference them by instance name. Since loadedSWF.item works, i assumed that loadedSwf.item.color would work too.
EDIT: I seem to be able to access the MC via getChildAtIndex(0); However this isnt ideal because it create a rule for the designer that he must follow a layering order. Id prefer to do it by name.
View 0 Replies
Nov 4, 2010
I have a bunch of movieclips which were created by "addChild" method. These movieclips are added to "gamecontainer". There was a dynamic textfield in each movieclip. Now the problem is how can I change the text in the dynamic textfield inside each movieclip outside this function.
Here is the code:
private function arrangeClips():void {
for (var i:uint=0; i<7; i++) {
var tile_mc:whiteTail=new whiteTail();
[Code].....
View 2 Replies
Nov 22, 2010
i have an array containing 4 mc:
Code:
private var notesDefinition:Array = [Note1, Note2, Note3, Note4];
When faceMc moves (while dragging or as a mouse trail), points are created dinamically every 200px and one of the array�s mclips is added there in a random function. Now i need to remove that mc when it reaches its last frame (just the mc on stage, not remove from the array). I tryed the following but its not working.
Code:
private function drawingAPI(event:Event):void{
var addNewNote:Boolean = false;
//add first point
[Code]....
View 1 Replies
May 22, 2009
I have a structure display like this: (brackets shows the depths, within their parent)
my question concerns 'communication' between the highlighted objects - so you don't have to waste time understanding the whole tree! I've just added this to provide some context!
mc_init (0)
___|
___mc_page (0)
[Code]....
Now, its easy to add a mouse event to btn(1), but how do I get this button to set the visible property (say) of 'rectangleBG(0)'
how do I access the paths? of these objects added to the stage?
View 2 Replies
Oct 19, 2010
Okay, here is the relevant files for a game I am making and their structure: -Stage -->MainMenu.as --> NewGame.as --> beachArea -->barrel.as.................................................. ......-->player.as.................................................. ......--> pistolBullet.asSo, am trying to detect when a bullet hits a barrel. I was going to use the hitTestObject() functionI got as far as trying to actually access the properties of an instance of barrel from the pistolBullet.as and seem to be a little confused as to my findings.. Can anyone explain to me why the last trace function returns undefined?pistolBullet.as:
Code:
trace("pistolBullet.parent: " + this.parent);
trace("pistolBullet.parent.beachArea: " + MovieClip(this.parent).beachArea);
[code].....
View 1 Replies
Apr 15, 2010
when I try to loop through the children of a List component that has buttons in it, I can't seem to access those children. I try
for(var btnNum:Number = 0; btnNum < myList.numChildren; btnNum++)
{
trace(myList.getChildAt(btnNum);[code]......
View 1 Replies
Jul 23, 2011
Okay, here is the relevant files for a game I am making and their structure:
[Code]...
View 2 Replies
Nov 6, 2010
I'm using the following code to add movieclip from library to stage...the moviclip holds a background and textfield. now adding it to the stage works fine and i can access the textfield 1 time but after the timer fires again the refrence to the text feild disspepears . I need to access the textFeild every time the timer fires so what am i doing wrong? HOw do i keep refrenct to the text field?
PHP Code:
tim0 = new Timer(1000,30);
private function PrepTime(e:TimerEvent) {
[code].....
View 1 Replies
Mar 15, 2010
enter code hereI am loading an external swf into an component. It loads everything fine and I can see buttons working in the swf, I can add a movieclip to the but I can't then access that movieclip (or don't know how), and it keeps telling me numChildren = null when I try to trace it out. This is set up as a custom component like this:
<cynergy:imageZoom
id="zoomComponent"
borderStyle="solid"
source="{_data.map.@url}"
[code]....
how I would access the children in the loaded movieclip?I have tried
mycomponent.image.getChildAt(2) and it returns and error that the index is out of bounds.
View 1 Replies
Nov 18, 2009
I'm making a OSX-finder-type file browser in CS4.The Structure for the folder and files is being generated by a PHP in a XML, heres an example:(sorry the xml is not sorted, but the command i'm using in php doesn't sort it)
Code:
<root>
<dir name="images">
[code]....
View 2 Replies
Apr 2, 2010
I have an xml say in following format
[Code].....
What I should do is parse an xml and from its node name create object property and then create an object array based on those property. Am I able to make myself clear.
View 4 Replies
Nov 7, 2009
I have 2 classes, Display holds the currently selected Component:
public class Display
{
public static var selectedComponent:Component;
}
Component has an ID string and the selectedComponent variable is set on click:
public class Component extends MovieClip
{
public var id:String;
addEventListener(MouseEvent.CLICK, function() {
[Code]...
Removing the selectedComponent variable type so it reads public static var selectedComponent; removes the conversion error and seems to change the ID variable but it appears to only be a copy of the object.
View 2 Replies