Yes, you can.
Open installed "Wikitude" app can be done via this script
import flash.events.MouseEvent; btn.addEventListener(MouseEvent.CLICK, callURL); function callURL(e:MouseEvent):void{ navigateToURL(new URLRequest("wikitude://")); } |
Same way you can open your app from any other. In example above Wikitude app it's URI id. The same as below iPadARIconAppB
Here is part of Application-xml.xml descriptor from my old project:
<iPhone> <InfoAdditions><![CDATA[ <key>UIDeviceFamily</key> <array> <string>1</string> <string>2</string> </array> <key>CFBundleURLTypes</key> <array> <dict> <key>CFBundleURLName</key> <string>com.camel.geo.iPadARIconAppB.iPadARIconAppB-scheme</string> <key>CFBundleURLSchemes</key> <array> <string>iPadARIconAppB</string> </array> </dict> </array> <key>UIApplicationExitsOnSuspend</key> <true/> ]]></InfoAdditions> <requestedDisplayResolution>standard</requestedDisplayResolution> </iPhone> |
You need to change CFBundleURLName to your app ID by my sample and CFBundleURLSchemes put there your own app name.
If you want open your app from any other - you must open "iPadARIconAppB://" and if you need pass params - just make "iPadARIconAppB://myparams" and read it via Invoke from Adobe Air.
Air is great and allow many things 