Tagged Questions

3
votes
1answer
2k views

Variable addChild is not defined?

i have a problem using AS3 - Flash CS3 gives me this Error message: Error #1065: Variable addChild is not defined. Any ideas what's wrong? This is my code: package coa.application{ import ...
2
votes
2answers
390 views

Flash AS3 dynamically added children . Problem with naming them and calling each separated

I need to access each children after i dynamically added them to the stage , but i`m having problems figuring out how . On click it adds the image to the stage , and I need to make them glow one at a ...
2
votes
5answers
850 views

Getting error when using the removeChild method

Happy Pre-Halloween everyone :) My issue today is a DisplayObject error I'm getting when remove a child object. I have code that will launch(addChild) a video container and video controls as well as ...
2
votes
2answers
460 views

Access of undefined property for timeline addChild code :(

I'm trying to do a simple test to figure out another bug, but I'm getting Access of undefined property tsLogo for addChild(tsLogo); I don't get it because this is simple timeline code on the first ...
1
vote
1answer
91 views

Actionscript3.0 addChild removeChild XML

I dont know if for my problem addChild and removeChild method is what i exactly need but as i read around the web that's the technique i need to work with. This is my Xml file: <projects> ...
1
vote
2answers
272 views

AS3: Detecting when an object gets added to a movieclip

Alright, so I'm trying to figure out when a child is added to a movieclip "x", and handling/detouring this operation from withing this "x" movieclip. I tried overriding addChild and addChildAt at ...
1
vote
1answer
2k views

AS3 Change textfield inside movieclip added from libray

I'm trying to do the following: I have an empty movieClip in my stage called zonaCentral_mc. I use a function that has this code: zonaCentral_DescripcionProceso = new ...
1
vote
3answers
82 views

flash as3: can children not run their own actionscript?

I thought I was being slick by having movieclips that I export for actionscript and then addChild later. I've made this one movieclip that loads html text through as, and it works fine when I drag it ...
1
vote
2answers
2k views

Can an AS2 swf be loaded into an AS3 swf? How can I add this to the stage and interact with it from As3 swf?

I am trying to load a swf written in AS2 into an AS3 swf - using Loader class and listening for Event.COMPLETE. in my onCompleteHandler function i want to add this to the stage so Im trying - ...
0
votes
2answers
41 views

as3 using addChild with an array containing indexes

so i have an array containing many instances. let's say movieclips. and i have another array which contains numbers..in this case those numbers represent selected indices that i've somehow chosen! ...
0
votes
1answer
28 views

ScrollPane doesn't work with dynamic content in as3

scrollPane.setSize(400,400); scrollPane.source=emptyc; Where emptyc is a container in which I add content dynamically (i.e. by addChild method) doesn't work. It simply doesn't scroll at all. ...
0
votes
1answer
27 views

ActionScript3 - addChild() relative to another object

I've seen code where an object can be added relative to another but I can't get it to work. I'm just trying to draw a rectangle and then add another smaller rectangle relative to the first public var ...
0
votes
2answers
47 views

AS3 Global class that can add objects to stage

So I recently learnt that by importing a class into my main class I can access its functions from any other class. BUT.... one of my functions in the imported class needs to add display objects to the ...
0
votes
2answers
91 views

AS3 Removechild Addchild issue/error

I have been looking for an answer for hours: My program: Step I) When I click on a button, it displays a bitmap through addchild; Step II) When I click on another button, it should remove the bitmap ...
0
votes
2answers
59 views

AS3 addChild(). Stack Overflow error

I'm having problems with addChild() from a class. I have a Ball class: package { import flash.display.Sprite; import flash.display.MovieClip; import flash.events.*; import Achievement; public class ...
0
votes
1answer
38 views

Need help understanding AddChild Method

Question: I want to know why I have to add an addChild to both my document class and the External Class in order for my scoreBoard movie clip that I have properly linked from my library to appear on ...
0
votes
0answers
46 views

Unloading SWF file AS3

I need to load a SWF file to my main movie and unload it on frame 2. I was able to add the SWF file but I am having trouble removing it on frame 2. Ill appreciate if anyone could help me out on this ...
0
votes
2answers
160 views

addChild(); - Adding a movieclip to a frame in AS3

I am trying to create a function which adds a text box (a blue rectangle) and a textfield on the box. I have a class in the library named textBox, no external classes used. I started actionscript 3 ...
0
votes
2answers
64 views

addChild is overlaying a MovieClip on the Stage

How do I make sure that a movie clip that starts on the stage has a higher zindex then when I addChild and add a linked movieClip from the library. Really my code is pretty simple background_image ...
0
votes
1answer
129 views

addChild custom class AS3

This is the class I am trying instantiate into my main class: public class Character extends Sprite { [Embed(source='../lib/front1.svg')] private var front1Class:Class; private var ...
0
votes
2answers
258 views

Force screen redraw other than using removeChild() and then addChild() to get image to update?

Here's some code I created as an answer to another question. It pulls a library item out of the library and puts it on stage programmatically. No big deal, except that in order to get the image ...
0
votes
2answers
292 views

Flex 4 UIComponent width and height remains zero after addChild is called

I have a component ObjectHolder which extends UIComponent that holds many children UIComponents. However, after using addChild() to add these children to ObjectHolder, its width and height remain ...
0
votes
0answers
79 views

addChild(mc) doesnt appear, if mc has an own class definition

this is my first question on stackoverflow! :) I'm trying to add a MovieClip from the library to the stage with an external class definition. Let me explain: I drew a green box in Flash CS5 and ...
0
votes
4answers
467 views

AS3 stage.addChild / stage.removeChild << Must be child of caller

If im usin function to add a mc to the stage like so: var myChild:MC= new MC(); function somefunc() { stage.addChild(myMC) } but when I try to remove the mc by: stage.removeChild(myMC) I get ...
0
votes
2answers
145 views

Flash removeChild after few seconds

I'm new on Flash, i don't know if it possible, but i'm adding a random movieclip to the stage, using addChild, and i need to remove them after 10 seconds...how can i do this using removeChild? ...
0
votes
2answers
186 views

Actionscript 3, addChild to stage and addEventListener not working together

I just wanna add an image from my library on the stage and have an event listener on it so when i click on it, it will do something. imgFromMyLib is already set to the image i want from my library. ...
0
votes
2answers
265 views

unload dynamically loaded swf after displaying it AS3

I am doing a presentation on which I need to use a lot of video clips. I load all these videos dynamically using Loader. I use a code snippet like this: var req:URLRequest = new ...
0
votes
3answers
246 views

Overriding addChild() at root?

I've seen methods for overriding addChild inside of movieclips, but can you do it at the upper-most root level? As in, overriding it on the main timeline.
0
votes
2answers
220 views

ActionScript AddChild to Stage from Class

I am trying to add an object to my main stage via the addChild() method. Normally, when working within the FLA itself, using addChild(myObject) works just fine. However, it does not work within an ...
0
votes
1answer
510 views

ActionScript 3.0 loading an external image into a container movieclip?

I am new to AS3 and I need some help with the Senocular Transform Tool (AS3 version) I'm having trouble with loading in an external image such that I can transform with the Senocular Transform Tool ...
0
votes
2answers
233 views

Accessing an instance in a dynamically added MC

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 ...
0
votes
1answer
591 views

TypeError: Error #2007: Parameter child must be non-null. at flash.display::DisplayObjectContainer/addChild()

Created a button, now tried to add it to the screen and im getting this error. The code for the button is - private function submitButton():void { submit_button=new SimpleButton(); ...
0
votes
2answers
134 views

this[String] can't be added into a MovieClip

Lets say I have a MovieClip called "Box", and "String" is actually 'box' just that its not a MovieClip The problem I'm facing now is I can't use something like circle.addChild(this[String]) I've ...
0
votes
1answer
405 views

Actionscript 3 addChild Problem

this is a test for a xml image menu. In the code I create my containers, I have a movie clip in the stage (menu_mc). CODE: import flash.display.MovieClip; import fl.text.TLFTextField; import ...
0
votes
1answer
1k views

AS3: AddChild issue — “TypeError: Error #2007: Parameter child must be non-null.”

   My following code gave me TypeError: Error #2007: Parameter child must be non-null runtime error. not sure why...I would appreciate any help... mySb = new ScrollBar(); mySb.x = ...
0
votes
1answer
117 views

Simple AddChild question

I am checking this guy's code... http://www.codingcolor.com/as3/as3-youtube-chromless-api/ I have download the source code...but I couldn't figure out how he add the play, pause and stop button in ...
0
votes
1answer
595 views

Flash AS3 Mysterious Blinking MovieClip

This is the strangest problem I've faced in flash so far. I have no idea what's causing it. I can provide a .swf if someone wants to actually see it, but I'll describe it as best I can. I'm ...
0
votes
1answer
2k views

actionscript 3 addchild within child and clear the first child

Okay so here is the setup: Within the main timeline I have a menu, which is a MovieClip. This menu is comprised of about 17 "buttons", each of which point to a different section of the site. When a ...
0
votes
2answers
247 views

Help on Removal of Dynamically Created sprites

import flash.display.Sprite; import flash.net.URLLoader; var index:int = 0; var constY = 291; var constW = 2; var constH = 40; hydrogenBtn.label = "Hydrogen"; heliumBtn.label = "Helium"; ...
0
votes
1answer
2k views

Add child to scene from within a class

I'm new to flash in general and have been writing a program with two classes that extend MovieClip (Stems and Star). I need to create a new Stems object as a child of the scene when the user stops ...
0
votes
1answer
3k views

The supplied DisplayObject must be a child of the caller

I am a newbie, and I have seached and tried for weeks on this, and I cannot get the grip on this. The simple code below gives the "The supplied DisplayObject must be a child of the caller" error. var ...
0
votes
1answer
535 views

Flash AS3 - Dispatching Events from Parent Class to Child Class

I think this is a pretty simply problem but I do not seem to be able to pull it off. Basically I have a parent class A, and a child class B. Class A instantiates class B with addChild. There is a ...
0
votes
2answers
940 views

movieClip in Array displays null, and aren't showing up on stage.addChild(Array[i])

i am new to Actionscript3, i need to know why i keep getting Parameter child must be non-null. And my code won't display 5 enemyBlock objects onto the stage but only just one. any tips and help will ...
0
votes
1answer
445 views

AS3 - Can't access properties or methods of a MC child that has been added in script

I am still a bit of a beginner at AS3, so bear with me, please. I have created a loop to instantiate tiles on a board. In the following example, "Gametiles" is an array containing objects of class ...
0
votes
1answer
55 views

External resources in Flash

Hey all. I'm working on an application that was originally intended for HTML, but I've recently concluded that the best thing to do for my purposes is to do it in Flash instead. One of the big things ...
0
votes
1answer
539 views

Using the Loader display object to load X jpegs, then resize each of the images differently while they're on the stage

Hey there, I was wondering if this is possible to do I am able to load the image in and have it displayed easily enough by using addChild(myLoader); where myLoader is in the classWide private scope. ...
0
votes
5answers
21k views

Actionscript 3, addChild from library then access it's children by instance names

So I successfully added a movie clip from the library using addChild(), but now I want to access some movieclips that were in that dynamically added movieclip. I've used standard dot notation and ...