Display LoadBar : URLLoader « Network « Flash / Flex / ActionScript






Display LoadBar

 

package
{
    import flash.display.Sprite;
    import flash.events.*;
    import flash.net.*;
    public class Main extends Sprite
    {
        private var loader:URLLoader = new URLLoader(new URLRequest("http://example.com/huge.xml"));
        private var total:Sprite = new Sprite();
        private var loaded:Sprite = new Sprite();
    
        public function Main()
        {
            total.graphics.beginFill(0xff0000, 1);
            total.graphics.drawRect(0, 0, 200, 10);
            total.graphics.endFill();
            addChild(total);
            total.y = 200;
            total.x = 100;
    
            addChild(loaded);
            loaded.y = 200;
            loaded.x = 100;
    
            loader.addEventListener(Event.OPEN, openListener);
            loader.addEventListener(Event.COMPLETE, completeListener);
            loader.addEventListener(ProgressEvent.PROGRESS, progressListener);
        }
    
        private function openListener(event:Event):void
        {
            trace(" opened " + loader.bytesLoaded + " but nothing loaded yet ");
        }
    
        private function completeListener(event:Event):void
        {
            trace(" all done loading " + loader.data + " and here's the xml file we loaded ");
        }
    
        private function progressListener(event:Event):void
        {
            var amount:Number = (loader.bytesLoaded / loader.bytesTotal) * 200;
            loaded.graphics.clear();
            loaded.graphics.beginFill(0x00ff00, 1);
            loaded.graphics.drawRect(0, 0, amount, 10);
            loaded.graphics.endFill();
        }
    }
}

        








Related examples in the same category

1.Loading XML
2.Loading Images
3.Add IOErrorEvent, HTTPStatusEvent, SecurityErrorEvent and Event.COMPLETE to URLLoader
4.Trace loader data
5.Listen to the URLLoader complete event
6.Loading a Block of Text (Including HTML and XML)
7.Checking Load Progress
8.Understanding Flash Player Security
9.Load a picture
10.Load an XML file
11.Events and Event Handling for URLLoader
12.Event Listener Registration Examples
13.Accessing the Target Object
14.URLLoader Complete event
15.Accessing the Object That Registered the Listener