How do I make a 'more games' button

I want to have a button in my game called ‘more games’ that will take the user to the iTunes page of my other game. I know how to do the button, I don’t know the other part. Any help will be much appreciated!

russell [import]uid: 75779 topic_id: 28994 reply_id: 328994[/import]

This is how I do it. First, go to: http://itunes.apple.com/linkmaker/. In the search box, enter the app name you want to link to. Be sure to select “iOS Apps” as the Media Type. It will then provide you with an iPhone App Link that you can copy and paste. If you want to link directly to your Developer page and have it list out all your apps, you can enter your company name in the search box instead of the app name. However, I found a bug with this where that link will work on an iPad, but on an iPod it will not. For iPods, I use the following code:

http://ax.search.itunes.apple.com/WebObjects/MZSearch.woa/wa/search?media=software&restrict=false&submit=media&term=Company+Name

Make sure to use the “+” if there is a space in your company name. Hope that helps. [import]uid: 82194 topic_id: 28994 reply_id: 116721[/import]

I’m not sure is this for websites only? I want it inside my app I pasted the code it gave me into my corona game project and it didn’t work because it was http://… i assume. I might be overlooking something here it does say ‘Link to app’ but it only gives me the name.

thanks,
Russ [import]uid: 75779 topic_id: 28994 reply_id: 116737[/import]

The links will work inside your app. Use this code to add a link within your app:

system.openURL( "http://www.yourLinkHere.com" )

[import]uid: 82194 topic_id: 28994 reply_id: 116743[/import]

aha!, thank you works perfect!

russell [import]uid: 75779 topic_id: 28994 reply_id: 116745[/import]