Opening appstore from within app without having 2 or 3 screenflashes/popups/popunders
Hi,
I would like to link from within my application to another application on the apple appstore.
Here on the forum I found the following code
navigateToURL(new URLRequest(http://itunes.com/apps/appname));
This works nicely, but when you execute it, you get some window onscreen and that switches a couple of times before you get to the actual appstore screen.
On the net I found also that you could eliminate that flickering/redirecting/whatever... by not using http:// , but itms:// or itms-apps://
Like below
navigateToURL(new URLRequest("itms://itunes.com/apps/appname"));
navigateToURL(new URLRequest("itms-apps://itunes.com/apps/appname"));
But if I use any of the 2 lines below, then there happens absolutely nothing.
Does anyone know a solution for this ?
Kind regards,
Bart
