04-03-2012 03:26 AM - edited 04-03-2012 03:27 AM
I am creating the one login form using Sqlite database for show the webview . In webview having two buttons in top of the panel like close and logout . when i press on the close button then they come on the main window of the Tablet but when i again want to continue the apps or click on the app that time it goes on the login form. So I am intrested to know how to save the credentials (Uid and Pass) to show the webview directly.
04-03-2012 05:16 AM
protected function closebtn_Click():void
{
NativeApplication.nativeApplication.exit() ;
}
public function logbtn_Click():void
{
navigator.pushView(AshghalPrimaHomeView);
NativeApplication.nativeApplication.exit() ;
}
this is my code for close and logout button but when i again click on the Launcher that time it goes on the login screen . So please help me , how to save the credentials in tablet application using flex mobile application.