Re: [Flashcoders] Removing a displayObject by using removeChild()

2008-04-24 Thread Sidney de Koning
Nice one :) What you do with removeChildAt is that you remove a child at a specific index (number), you get this index by using the getChildIndex ( stringname of displayobject) Cheers, Sid On Apr 24, 2008, at 4:26 PM, ACE Flash wrote: buddy, It works. :) removeChildAt(getChildIndex( targ

Re: [Flashcoders] Removing a displayObject by using removeChild()

2008-04-24 Thread ACE Flash
buddy, It works. :) removeChildAt(getChildIndex( targetToRemove )); should be removeChild @v@ I appreciate that all of your posts in the topic . Thanks ALL! :)) On Thu, Apr 24, 2008 at 10:00 AM, Sidney de Koning <[EMAIL PROTECTED]> wrote: > try doing this, it should work: > > import flash.tex

Re: [Flashcoders] Removing a displayObject by using removeChild()

2008-04-24 Thread Sidney de Koning
try doing this, it should work: import flash.text.TextField; var _pValue:TextField; function createNavigatorButton( txt:String ) { _pValue = new TextField(); _pValue.text = txt; _pValue.backgroundColor = 0x00; _pValue.x = 60; _pValue.y = 400; a

Re: [Flashcoders] Removing a displayObject by using removeChild()

2008-04-24 Thread Andres Garcia
this line: _pValue = DisplayObject("_"+pValue); has the problem you are casting from string to displayObject... you can try something like: createnavigatorButton(pValue:String){ ... _pValue.name = pValue; ... } function removeNavigatorButton( pValue:String ) { ...

[Flashcoders] Removing a displayObject by using removeChild()

2008-04-24 Thread ACE Flash
Hi there, I would like to define a variable, so I could pass any name to createNavigatorButton and using removeNavigatorButton to remove it. I wrote a simple code here http://www.privatepaste.com/e8tI4OgtHg, but I got an error msg => TypeError: Error #1034: Type Coercion failed: cannot convert "

Re: [Flashcoders] Removing a displayObject by using removeChild()

2008-04-24 Thread Sidney de Koning
He ACE, Try casting your string _pValue to a Sprite or MovieClip, because you cannot add a string to the displaylist. Cheers, Sidney On Apr 24, 2008, at 3:30 PM, ACE Flash wrote: Hi there, I would like to define a variable, so I could pass any name to createNavigatorButton and using remo

Re: [Flashcoders] Removing a displayObject by using removeChild()

2008-04-24 Thread Sidney de Koning
When you add it i mean ofcourse. Just like you do when removing it. On Apr 24, 2008, at 3:30 PM, ACE Flash wrote: Hi there, I would like to define a variable, so I could pass any name to createNavigatorButton and using removeNavigatorButton to remove it. I wrote a simple code here http://www