Hi, I was wondering if anyone knows how to popup a browser window while using the POST method to send variables? I understand I need to put the javascript call in the URLRequest but it won’t allow me to POST anything.
[FONT=Courier New][LEFT][COLOR=#000000]**var**[/COLOR] [COLOR=#0000ff]url[/COLOR]:[COLOR=#0000ff]String[/COLOR] = [COLOR=#ff0000]"http://www.urlname.com/file.php"[/COLOR];
[COLOR=#000000]var[/COLOR] request:URLRequest = [COLOR=#000000]new[/COLOR] URLRequestCOLOR=#000000[/COLOR];
[COLOR=#000000]var[/COLOR] variables:URLVariables = [COLOR=#000000]new[/COLOR] URLVariablesCOLOR=#000000[/COLOR];
variables.name = “Kirupa”;
request.[COLOR=#000080]method[/COLOR] = URLRequestMethod.[COLOR=#000080]POST[/COLOR];
request.[COLOR=#0000ff]data[/COLOR] = variables;
navigateToURLCOLOR=#000000[/COLOR];
[/LEFT]
[/FONT]