Hello all
I want sent a request to an other web and send a request to click "Search" 
button of the web. i done
private function send_request( ):void{
var request:URLRequest = new URLRequest("http://thesaurus. reference. com/");
var variables:URLVariab les = new URLVariables( );
variables.sometext = "patent";
request.data = variables;
sendToURL(request) ;
click_search( );
}
private function click_search( ):void{
var loader:URLLoader = null;
loader = new URLLoader();
var variables:URLVariab les = new URLVariables( )
variables.clicksearch = 'sbut';
variables.textvalue = 'qleft';
....
}

how does it? when i want post value that i want to search to text of the web 
and click "search" button
Can you help me?
Thanks


Reply via email to