Tagged Questions

2
votes
5answers
833 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 ...
1
vote
1answer
83 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> ...
0
votes
2answers
47 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
0answers
36 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
4answers
346 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
125 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
0answers
48 views

can I add same ccspirit object after remove it?

I have total 20 images in NSMutableArray of ccspirit objects, and I want to show them on screen moving moving upward, I add them to as [self addChild:p] as below -(void) callMethod { static int x = ...
0
votes
2answers
241 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
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 ...