I am dynamically creating a movieclip and loading an image an external JPEG image into it on mouseover using a routine like the following:
_root.final.clip1.btn1.onRollover= function(){
_root.createEmptyMovieClip("container", 2);
_root.container.loadMovie("images_home/image1.jpg")
_root.container._x = 10;
_root.container._y = 20;
trace("Over btn1")
_root.container.onLoad = fadeIn;
}
My qustion is how can I display the amount (kb) loaded for that externally loaded movie/image... I want to use a dynamic text field 'holder' on the stage that displays the the total number of kb that is loaded until it has fully loaded.
Help?!?!
_root.final.clip1.btn1.onRollover= function(){
_root.createEmptyMovieClip("container", 2);
_root.container.loadMovie("images_home/image1.jpg")
_root.container._x = 10;
_root.container._y = 20;
trace("Over btn1")
_root.container.onLoad = fadeIn;
}
My qustion is how can I display the amount (kb) loaded for that externally loaded movie/image... I want to use a dynamic text field 'holder' on the stage that displays the the total number of kb that is loaded until it has fully loaded.
Help?!?!