GLBasic forum

Main forum => GLBasic - en => Topic started by: ampos on 2010-Nov-24

Title: appstore: seacrh by developer. How?
Post by: ampos on 2010-Nov-24
To launch appstore from my app, for any other app, I just use:

Code (glbasic) Select
netwebend "http://itunes.apple.com/es/app/snowland/id398934107?mt=8"

On my app http page, for example, there is an option, "view more by this developer", with the following link:

http://itunes.apple.com/us/artist/www-diniplay-com/id398934110

that open itunes.

I have try from my app
Code (glbasic) Select

netwebend "http://itunes.apple.com/us/artist/www-diniplay-com/id398934110"


but it says "no baby, no, error"

Any hint on this subject?


If not possible, someone know the link to launch appstore with a search term? Similar to google link:

Code (glbasic) Select
http://www.google.es/search?&q=snow

(as I added my "company" name, "diniplay", as a keyword-tag in the app-data)
Title: Re: appstore: seacrh by developer. How?
Post by: Kitty Hello on 2010-Nov-25
Code (glbasic) Select

NETWEBEND "itms-apps://ax.search.itunes.apple.com/WebObjects/MZSearch.woa/wa/search?media=software&term=glbasic"
Title: Re: appstore: seacrh by developer. How?
Post by: ampos on 2010-Nov-25
Thanks, it works.
Title: Re: appstore: seacrh by developer. How?
Post by: Crivens on 2011-Mar-04
This works fine, but I've got my app setup so that it stays in the background on an iOS device. Using this command will produce what I want in the app store, but it also ends the program so when you run it again it starts from scratch rather than where it left off. Obviously the NETWEBEND is designed to work this way, but is it possible to change it or use a different command so that an iOS app can carry on where it left off when you run it again?

Cheers
Title: Re: appstore: seacrh by developer. How?
Post by: Kitty Hello on 2011-Mar-07
You're right. I should change NETWEBEND to consider ALLOWESCAPE for iOS and WebOS.
Title: Re: appstore: seacrh by developer. How?
Post by: ampos on 2011-Mar-07
Also in PC it should not terminate the program...