Welcome!

Welcome to the Official BlackBerry Support Community Forums. This is your resource to discuss support topics with your peers, and learn from each other. New to the forum? Please visit the ‘Getting Started’ link below.
inside custom component

Adobe AIR Development

Reply
Contributor
vinodhp18
Posts: 10
Registered: ‎08-26-2011
My Carrier: student

How to save the Credentials when close the application in the Blackberry Tablet ??.

[ Edited ]

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.

Please use plain text.
Contributor
vinodhp18
Posts: 10
Registered: ‎08-26-2011
My Carrier: student

Re: How to save the Credentials when close the application in the Blackberry Tablet ??.

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.

Please use plain text.