below is the code i have that displays bytes loaded vs bytes total
i prefer to have a simple % loaded text display
function progressHandler(event:ProgressEvent):void {
trace(“progress:”, event.bytesLoaded, event.bytesTotal, int(event.currentTarget.percentComplete) + “%”);
myLabel.text = event.bytesLoaded + " of " + event.bytesTotal + " bytes loaded.";
how can this be accomplished ?
thanks