Hi Flashcoders,

Learning AS3 in the deep end at the moment, so excuse the questions if
too newb for this list.

In AS2 I may have done something like the following.

_1___________________________________

if(myObject){

 myObject.removeMovieClip();

}

this.attachMovie("MyObject","myObject",1);
_____________________________________


What would similar code look like in AS3? As 


_2____________________________________

removeChild(myObject); 
_____________________________________

fails if myObject doesn't exist yet as does 


_3___________________________________

if(myObject) 
_____________________________________

Which I don't think you can do anyway?

It's the last one I'm really interested in, how do you detect if
something exists?

Thanks

Michael
_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to