hey all,
I am trying to load an external swf into a target. when the swf is completely loaded, i want to execute the next set of actions.
Now here is the bit i’m stuck. I am trying to develop my flash websites so that no coding is done within the child swfs.
so i would assume some code like this would work:
_root.holder.loadMovie (“child.swf”);
if(_root.holder.getBytesLoaded ==_root.holder.getBytesTotal){
_execute some other command;
}
However it doesn’t work!!!
So is there a way to detect when a specific child swf has fully loaded into a target (not _framesLoaded please!) and then set a variable to allow some other actionscript to kick in?
please help if you know,
using mx btw
cheers,
Kd