It is possible to create everything you need:
import flash.net.URLRequest; import flash.net.URLLoader; import flash.net.URLVariables; import flash.net.URLRequestMethod; import flash.events.Event; // the path to the backend file var url : String = 'http://youdomain.com/filepath.php'; // url variables all which will appear after ? sign var urlVariables : URLVariables = new URLVariables (); urlVariables['varname'] = 'varvalue'; urlVariables['varname1'] = 'varvalue1'; // here you can add as much as you need // creating new URL Request // setting the url var request : URLRequest = new URLRequest ( url ); // setting the variables it need to cary request.data = urlVariables; // setting method of delivering variables ( POST or GET ) request.method = URLRequestMethod.GET; // creating actual loader var loader : URLLoader = new URLLoader (); loader.addEventListener( Event.COMPLETE, handleLoaderComplete ) loader.load ( request );
source share