Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

using getbytesloaded

Status
Not open for further replies.

aamaker

Programmer
Jan 20, 2002
222
US
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?!?!
 
Hey, we work with what info (or lack thereof) we're given around here. ;-)

frozenpeas
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top