Making a button open a webpage on iPod?

Previous topic - Next topic

kwagner

Is there a way to make the 'lite version' of a game have a button to 'buy now' on the paid version, and either open the app store page in safari or the 'app store' app?

BdR

The command NETWEBEND will end the program and open an url. Also, on iPod/phone it will recognise appstore-urls (I guess Safari does this?) and automatically open them in the App Store app. :)
Code (glbasic) Select
NETWEBEND "http://itunes.apple.com/us/app/triple-dutch/id412427239"
DEBUG "program flow will never get to here!\n"

kwagner