-
1. Re: Go from app to app
jadams602 Sep 26, 2013 8:00 AM (in response to 4morrone)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"))
-
2. Re: Go from app to app
4morrone Sep 27, 2013 7:02 PM (in response to jadams602)Thank you. that tutorial was what I needed, don't know why I didn't find it myself.
-
3. Re: Go from app to app
simonjkendrew Apr 30, 2014 9:26 AM (in response to 4morrone)Hello,
Did you manage to get an AIR iOS app to open another AIR iOS app via a URL scheme? I am currently requiring this functionality. The documentation I have read so far suggests that an AIR app can receive and respond to a URL scheme, but that AIR apps cannot send URL schemes to launch other apps, due to security restrictions.
Can you advise?
Kind regards
Simon

