thebigjibb
11-09-2004, 10:27 PM
Hi, thanks for considering my inquiry. :)
I want to know how to track the load progress of external swfs which, in turn, load external swfs/jpgs.
The solution may be that I am not selecting the best methods to achieve what i'm trying to do. Please fill me in. This is what I have so far:
MainMovie:
_root.loadMovie("JPGLoadingMovie.swf");
trace(_root.getBytesLoaded());
JPGLoadingMovie (compiled into an SWF in advance):
this.loadMovie("LargePicture.jpg");
With this code, I've found that MainMovie will track the loading progress of itself excluding any files that JPGLoadingMovie will be loading.
What I want, however, is to know exactly when the entire MainMovie as well as it's JPGLoadingMovie.swf, including the jpgs or swfs that it will load, have completed loading.
Any ideas?
I want to know how to track the load progress of external swfs which, in turn, load external swfs/jpgs.
The solution may be that I am not selecting the best methods to achieve what i'm trying to do. Please fill me in. This is what I have so far:
MainMovie:
_root.loadMovie("JPGLoadingMovie.swf");
trace(_root.getBytesLoaded());
JPGLoadingMovie (compiled into an SWF in advance):
this.loadMovie("LargePicture.jpg");
With this code, I've found that MainMovie will track the loading progress of itself excluding any files that JPGLoadingMovie will be loading.
What I want, however, is to know exactly when the entire MainMovie as well as it's JPGLoadingMovie.swf, including the jpgs or swfs that it will load, have completed loading.
Any ideas?