question about ads

I have a game that need to update and i also want to update the interstitial ads

when the game is over in the game.lua, it will jump to gameover.lua, mostly it takes few seconds to load the ads.

and now I want to preload the ads in game.lua ( if gameStarted = true ) then ads.load, however when i test it on the iPhone, the ads.load didn’t work at all. it still need to wait for seconds

Im using storyboard and ads.load in if gameStarted = true and show in gameover.lua (function scene:enterScene( event ))

Am i doing it wrong?

That sounds reasonable.

so I should have no problem loading ads?

another question is about, the rate us

i have a function direct to 

local url = “itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa”

url = url … “/wa/viewContentsUserReviews?”

url = url … “type=Purple+Software&id=”

url = url … “appID”

is this going to work??

since this is the app that first submit to app store and when i try in my device, it says unable to connect to app store

If appID is a variable holding your ID then you need to take the quotes off of it.  You need to make sure you have the right value.  I’m not sure with the URL technique if it’s the iTunes numeric ID you need (pretty sure its this one) or the bundle ID.   You probably can’t test it until the app is live though.

Rob

So I might get rejected by App Store by just using wrong url?

Should I just update the rate me after the game is reviewed

I’m not sure you will get rejected for it.  I would use the app ID of an existing app to test against and then use your ID when you submit.

Rob

Ya!! I’ll test it in the existing app.
thanks!!!

That sounds reasonable.

so I should have no problem loading ads?

another question is about, the rate us

i have a function direct to 

local url = “itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa”

url = url … “/wa/viewContentsUserReviews?”

url = url … “type=Purple+Software&id=”

url = url … “appID”

is this going to work??

since this is the app that first submit to app store and when i try in my device, it says unable to connect to app store

If appID is a variable holding your ID then you need to take the quotes off of it.  You need to make sure you have the right value.  I’m not sure with the URL technique if it’s the iTunes numeric ID you need (pretty sure its this one) or the bundle ID.   You probably can’t test it until the app is live though.

Rob

So I might get rejected by App Store by just using wrong url?

Should I just update the rate me after the game is reviewed

I’m not sure you will get rejected for it.  I would use the app ID of an existing app to test against and then use your ID when you submit.

Rob

Ya!! I’ll test it in the existing app.
thanks!!!