I am sorry but I have another question about Playhaven!
This time i am trying to use different placements. Maybe one when the app start (gameStart) and maybe another after each gameplay (gamePlay) but I am confuse on how to do that?
The thing I do not get is how the code above allows to show an ad for a specific “placement”? It seems to me that the parameter that “playHaven.doContentRequest(“interstitial”)” send to the function doContentRequest(placement) is “interstitial”??
So basically is where can I pass the placement “gameStart” or “gamePlayEnd” placement string? Of course I did add those two placements in the Playhaven dashboard.
I have to admit that I am impress with PlayHaven support so far. Here a response from Thomas at PlayHaven (thanks Thomas!) It answered my question so I hope it will help some of you as well.
Cheers.
Mo
Hello Mo,
Basically to call different content units you simply pass in different placement ids.
So for game start
playHaven.doContentRequest(“gamestart”)
and for game play
playHaven.doContentRequest(“gameplay”)
Personally I created a function for this so I didn’t have to write playhaven.functionname every time
I have to admit that I am impress with PlayHaven support so far. Here a response from Thomas at PlayHaven (thanks Thomas!) It answered my question so I hope it will help some of you as well.
Cheers.
Mo
Hello Mo,
Basically to call different content units you simply pass in different placement ids.
So for game start
playHaven.doContentRequest(“gamestart”)
and for game play
playHaven.doContentRequest(“gameplay”)
Personally I created a function for this so I didn’t have to write playhaven.functionname every time