GLBasic forum

Main forum => GLBasic - en => Topic started by: kwagner on 2011-Mar-25

Title: Making a button open a webpage on iPod?
Post by: kwagner on 2011-Mar-25
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?
Title: Re: Making a button open a webpage on iPod?
Post by: BdR on 2011-Mar-25
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"
Title: Re: Making a button open a webpage on iPod?
Post by: kwagner on 2011-Mar-25
Excellent, thanks!