Skip to main content
This topic has been closed for replies.
Correct answer jadams602

It should work.  It is done by registering custom URI schemes in your app:

http://help.adobe.com/en_US/air/build/WSfffb011ac560372f7e64a7f12cd2dd1867-8000.html#WS901d38e593cd1bac354f4f7b12e260e3e67-8000

(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"))

1 reply

jadams602
jadams602Correct answer
Inspiring
September 26, 2013

It should work.  It is done by registering custom URI schemes in your app:

http://help.adobe.com/en_US/air/build/WSfffb011ac560372f7e64a7f12cd2dd1867-8000.html#WS901d38e593cd1bac354f4f7b12e260e3e67-8000

(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"))

4morroneAuthor
Inspiring
September 28, 2013

Thank you. that tutorial was what I needed, don't know why I didn't find it myself.

Inspiring
April 30, 2014

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