nginoza
12 years agoFrequent Contributor
Problem with focus when launching my iPad Application
Hi Everyone,
I am able to launch my iPad using the example in the help file:
I am able to launch my iPad using the example in the help file:
function RunGOApp()
{
var appManagerObj = Mobile.Device().ApplicationManager;
// Retrieve application info from the device
var appObj = appManagerObj.GetApplicationByBundleId("ent.costar.AztecTest");
// Verify whether the application is found
if (appObj != null)
// Run the application
appManagerObj.RunApplication(appObj);
}
The App flashes briefly, then minimizes and my iPad desktop displays. I do see that the app has started but is minimized.
My question is how to launching the app and make is active so I can start executing my functional test?
TIA,
Nathan