[Flashcoders] Building my application

2006-02-23 Thread Patrick Matte
I usually put all my movieclips on stage with a linkage to an as2 class extending MovieClip. The problem I have with this technique is that sometimes, nested movieclips are not loaded when I try to call a function from their parent. Does anyone have an idea for a workaround this? I know that if

Re: [Flashcoders] Building my application

2006-02-23 Thread Aaron Smith
clip.onLoad(); usually works fine for me. Unless your attaching a substantial amount of clips at run time. Then what you need to do is attach one. wait for a load event to be fired. then load the next clip. loading a substantial amount of clips at one time will get varied results when it

Re: [Flashcoders] Building my application

2006-02-23 Thread Patrick Matte
flashcoders@chattyfig.figleaf.com Sent: Thursday, February 23, 2006 5:46 PM Subject: Re: [Flashcoders] Building my application clip.onLoad(); usually works fine for me. Unless your attaching a substantial amount of clips at run time. Then what you need to do is attach one. wait for a load event