Hello,

I have a movie clip symbol, say 'X'.
X has a movie clip placed inside, say 'Y'.
There is code on Y i.e. 
onClipEvent(load) {
    _root.func1();
}

Now when I attach X using attachMovie i.e. having following code:

attachMovie("X", "Instance1",1);
_root.func2();


func2 gets called before func1. Which states that attachMovie is not
completely synchronized.


Is there any way by which I can execute func2 after whole X has been
loaded i.e. even load event of movie clips inside X has been triggered?
The condition is that I cannot move call of func2 to load event of Y.

Thanks in advance.
Dhiraj Girdhar
_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to