Tagged Questions

2
votes
5answers
154 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
2answers
29 views

How do you undo “surroundContents” in javascript?

I'm writing a script that needs to move a wrapping node element around on the page. I find that when I do this, I remove the previously wrapped children. How do I unnest the children of a node, so …
1
vote
3answers
284 views

as3 removeChild issue

Hi there!, I'm loading some swf files at 0 on my stage. They are the pages of my site. To change from page to page I use removeChildAt(0) and then I addChildAt("page_title", 0). The problem is …
0
votes
1answer
28 views

remove element in dom4j

<root> <elm id="1"/> <elm id="2"/> <elm id="3"/> <elm id="4"/> </root> I want to leave id="2" in the dom, how can domj4 to remove the other three ? result: …
0
votes
3answers
55 views

Remove dom element without knowing its parent?

Is it possible to remove a dom element that has no parent other than the body tag? I know this would be easy with a framework like jquery, but I'm trying to stick to straight javascript. Here's the …
0
votes
0answers
15 views

removing a child

anybody please? here's the scenario. i have added a child which is a movieclip from the library, this child has a close button where it should call removeChild which is itself. I am new to AS3 …
0
votes
1answer
42 views

Removing multiple object from array

I place the MC in an array and would like to remove it later on from an index maybe till the end. //Removeing MC from stage, from an index till the end LISTmc.removeChild(listArray[clickedIndex+1]); …
0
votes
2answers
99 views

JavaScript RemoveChild logic/question

I'm using Dojo Drag and Drop. When a user adds an item to a container (div dojoType='dojo.dnd.Source') then I need to get that data into a form so I can later process it on a server when the user …