Is it possible, with AIR app, to automatically open the phone app on IOS when the user clicks on the number ?
I've managed to do so with Android :
phoneNumber.addEventListener(MouseEvent.CLICK, phoneClick, false, 0, true);
function phoneClick(event:MouseEvent):void
{
navigateToURL(new URLRequest("tel:255050"));
}
But it's not working on IOS.
Thank you for your help,