Go from app to app
Does anyone know if possible in Air for iOS to create an app and have it also open another app created by same dev. I see apps in the appstore doing it that are created the native way but don't know if possible in Air.
Does anyone know if possible in Air for iOS to create an app and have it also open another app created by same dev. I see apps in the appstore doing it that are created the native way but don't know if possible in Air.
It should work. It is done by registering custom URI schemes in your app:
(within the Info.plist, which you handle in AIR with your app descriptor XML iPhone/InfoAddtions)
If you get your custum URI scheme registered properly, you should be able to call within a different app:
import flash.net.navigateToURL;
navigateToURL(new URLRequest("customAppURI://myapp"))
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.