App is not launching from custom URL Schema
I am having 2 apps 1st one is developed in Air for IOS and 2nd one developed in xCode, now i need to open my 2nd app from my 1st app, So i tried custom URL schema. i create URL Schema for my 2nd app and using navigate to URL i call myApp from my 1st app. Unfortunately myApp is not getting launch!
These are the codes i tried
var $gameAppReq:URLRequest = new URLRequest("app:/myApp");
navigateToURL($gameAppReq, "_self");
or
var $gameAppReq:URLRequest = new URLRequest("myApp:/");
navigateToURL($gameAppReq, "_self");
But none of these got worked and its not throwing any errors, Somebody out there to help me ![]()
Thanks.
