Are banners reusable?

Hi,

I’m wondering if banners are reusable?
Let’s say, I would load a banner when starting the game and then show it between levels. User won’t tap on it. I would just hide this banner and show it again after the next level. Is it ok? Are there any “sessions” that would get screwed because of the delay between loading/showing the banner for the first time and tapping on it 10mins later?

Thanks
Krystian [import]uid: 109453 topic_id: 37138 reply_id: 67138[/import]

Hi,

I actually re-use the banners.

The problem is that sometimes banners are hidden by other elements, so you will have send them to back in order the to make the banner visible.

banner_handle = RevMob.createBanner() – load a new banner (loading delay)

–… 

banner_handle:hide() – hides the current banner

banner_handle:show() – shows the current banner (no delay)

–…

banner_handle:hide() – hides the current banner

banner_handle:show() – shows the current banner (no delay)

– etc

Hi,

I actually re-use the banners.

The problem is that sometimes banners are hidden by other elements, so you will have send them to back in order the to make the banner visible.

banner_handle = RevMob.createBanner() – load a new banner (loading delay)

–… 

banner_handle:hide() – hides the current banner

banner_handle:show() – shows the current banner (no delay)

–…

banner_handle:hide() – hides the current banner

banner_handle:show() – shows the current banner (no delay)

– etc

Hi Krystian.

You can do this. There is no “sessions” or other stuff that may cause problems for you.

Best regards

Paulo

http://about.me/paulocheque

Hi Krystian.

You can do this. There is no “sessions” or other stuff that may cause problems for you.

Best regards

Paulo

http://about.me/paulocheque