Understanding Flash Player Security : URLLoader « Network « Flash / Flex / ActionScript

Home
Flash / Flex / ActionScript
1.Animation
2.Array
3.Class
4.Data Type
5.Development
6.Function
7.Graphics
8.Language
9.Network
10.Regular Expressions
11.Statement
12.String
13.TextField
14.XML
Flash / Flex / ActionScript » Network » URLLoader 
Understanding Flash Player Security
 

PHPCommunication
package
{
    import flash.display.Sprite;
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.events.Event;
    public class Main extends Sprite
    {
        private var _username:String = "josh";
        private var _id:String = "143";
        private var loader:URLLoader;
    
        public function Main()
        {
            loader = new URLLoader();
            loader.addEventListener(Event.COMPLETE, dataLoaded);
            var request:URLRequest = new URLRequest("http://localhost:8888/PHPScript.php?username=" + _username + "&id=" + _id);
            loader.load(request);
        }
    
        public function dataLoaded(event:Event):void
        {
            var xmlResponse:XML = XML((event.target as URLLoader).data);
            trace(xmlResponse);
        }
    }
}

        
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.Load a picture
9.Display LoadBar
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
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.