Thanks for the info
I found here
http://www.iab.net/media/file/IAB_MRAID_v2_FINAL.pdf
(page 28)
the “useCustomClose” property
Can you confirm, if I set this property to true, the default X button will disappear and we will only use our home made custom close button ?
( while using MRAID of course )
Thanks
Thanks for the info
I found here
http://www.iab.net/media/file/IAB_MRAID_v2_FINAL.pdf
(page 28)
the “useCustomClose” property
Can you confirm, if I set this property to true, the default X button will disappear and we will only use our home made custom close button ?
( while using MRAID of course )
Thanks
De : google-admob-ads-sdk@googlegroups.com <google-admob-ads-sdk@googlegroups.com> de la part de Vu Chau (MobileAds SDK Team) <mobileadssdk-advisor+vu@google.com>
Envoyé : 7 juillet 2015 10:52
À : google-admob-ads-sdk@googlegroups.com; Charles-Jeremy Colnet
Objet : Re: Custom X button on interstitial
Hi Charles,--
It is possible to customize the close button of the interstitial ad. However, it can't be done at the developer level, as creatives are based on templates. You can do it as an advertiser by using MRAID when developing the creative.
Vu ChauMobileAds SDK Team
On Monday, July 6, 2015 at 3:14:37 PM UTC-4, charles-jeremy Colnet wrote:Hello (Eric Leichtenschlag) adMob
I have been looking over the forum for a solution to my close X button, here is what I found :
- You replied to a post in 2013 that the close button ( X ) can't be moved ( except to the upper right side )Now in 2015, I would like to know if we can move it the the bottom right or bottom left side of an interstitial banner ?
- In 2014 you replied that the X button can't be hiddenwhat if we add another ( custom made close button ) to the banner, in that case, can we hide the native X button ?
If we can't move or can't hide the native X button,can we customized it in anyway ? replace by a jpg or something ?
Thanks
---
You received this message because you are subscribed to a topic in the Google Groups "Google Mobile Ads SDK Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-admob-ads-sdk/rADWzZDJNnQ/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-admob-ads-sdk+unsub...@googlegroups.com.
Thanks for your answer,
I am currently using
mraid.useCustomClose(true);
and sometimes the native x button disappear sometimes it is still there, do I need to add something to permanently fix this ?
In order to remove the x button at all times ?
Thanks
PS :
here is the code
if (mraid.getState() === 'loading') {
mraid.addEventListener('ready', hideClose);
} else {
hideClose();
}
function hideClose(){
mraid.useCustomClose(true);
}
Envoyé : 7 juillet 2015 10:52
À : google-adm...@googlegroups.com; Charles-Jeremy Colnet
Objet : Re: Custom X button on interstitial
Hi Charles,--
It is possible to customize the close button of the interstitial ad. However, it can't be done at the developer level, as creatives are based on templates. You can do it as an advertiser by using MRAID when developing the creative.
Vu ChauMobileAds SDK Team
On Monday, July 6, 2015 at 3:14:37 PM UTC-4, charles-jeremy Colnet wrote:Hello (Eric Leichtenschlag) adMob
I have been looking over the forum for a solution to my close X button, here is what I found :
- You replied to a post in 2013 that the close button ( X ) can't be moved ( except to the upper right side )Now in 2015, I would like to know if we can move it the the bottom right or bottom left side of an interstitial banner ?
- In 2014 you replied that the X button can't be hiddenwhat if we add another ( custom made close button ) to the banner, in that case, can we hide the native X button ?
If we can't move or can't hide the native X button,can we customized it in anyway ? replace by a jpg or something ?
Thanks
---
You received this message because you are subscribed to a topic in the Google Groups "Google Mobile Ads SDK Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-admob-ads-sdk/rADWzZDJNnQ/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-admob-ads...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hi Vu
Yes we are supplying a custom close button.
Since yesterday I made few changes to better handle exceptions
here is the code
<script type="text/javascript" src="mraid.js"></script>
<script type="text/javascript">
function documentReadyFn()
{
if(document.readyState === 'complete') {
if (typeof mraid !== 'undefined') {
if (mraid.getState() === 'loading') {
mraid.addEventListener('ready', hideClose);
}else if (mraid.getState() === 'default') {
hideClose();
}
}else{
setTimeout(documentReadyFn,100);
}
}else{
setTimeout(documentReadyFn,100);
}
}
documentReadyFn();
function hideClose(){
mraid.useCustomClose(true);
}
function closeButton(){
mraid.close();
//admob.opener.close();
}
</script>