Hi,

If you really want to launch different browser and send data to it...

Then you can use LoadVars also...


function submitLoging():Void
{

           var form_lv = new LoadVars();
           form_lv.username = "";
           form_lv.password = "";
           form_lv.send("theURL","_self","POST");
} 



Hope that helps!

-abdul

-----Original Message-----
From: [email protected] [mailto:[EMAIL PROTECTED] On
Behalf Of pixelcowboys
Sent: Friday, May 20, 2005 2:39 AM
To: [email protected]
Subject: [flexcoders] HTML form replacement

This is probably a basic question for most of you, but I'll ask
anyway. What is the best method for simply replacing an existing HTML login
form with a 
Flex one? 

I'm currently trying getURL on the submit action (but with no luck):

function submitLogin():Void { 
   var username:String = "";
   var password:String = "";
   getURL("theURL","_self","POST");     
}

The text input ID's are "username" and "password". Any help/tips
appreciated. Thanks!




 
Yahoo! Groups Links



 




 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to