Search code examples
actionscript-3air

Opening cPanel (web host server) in Adobe AIR Application


I am working on application to open cPanel (web host server) in Adobe AIR. I know how to open a web page in Adobe AIR, but I don't know how to open cPanel with username and password?


Solution

  • It'll be like that:

    html.location = "http://" + txtDomain.text.toString() + ":2095/login/?user=" + txtUsername.text.toString() + "&pass=" + txtPassword.text.toString();