Bl4ckSh33p, I think I figured this out and got it working. You need to have browser--> Open newURL window --> instead of https:// in your URL, use itms-apps://
Then it opens the iOS app store app directly w/o safari getting involved
Also note that this functionality doesn't work in preview mode...It works after the app is installed on your iPhone/iPad. Hope you will find this information useful.
Although the above approach works, Apple's recommended way of doing this is -
--------------------------------------------------------------------------------------------------------------------
NSString *iTunesLink = "https://itunes.apple.com/us/app/apple-store/id375380948?mt=8";
[
[UIApplication sharedApplication] openURL:[NSURL URLWithString:iTunesLink]];
But I am not sure how to make this kind of code work in Construct2 for iOS. IF ANYONE HAS A BETTER WAY OF DEALING WITH THIS, PLEASE SHARE....