Hi
I'm using the Adtonomy Video plugin to play pre-roll ads before my videos. Due to advertisers' request, I must disable the "skip ad" option,but I didn't find how to hide this feature.
Any ideas?
Thanks,
Danny
Hi
I'm using the Adtonomy Video plugin to play pre-roll ads before my videos. Due to advertisers' request, I must disable the "skip ad" option,but I didn't find how to hide this feature.
Any ideas?
Thanks,
Danny
Hi Danny,
You can use the show_skip attribute for the control tag to control this behavior. Here's an example:
<ad-program><ad id="ad2" type="video" title="Ad 2" description="Description for Ad 2">
<ad_video length="0:30" url="http://www.your-site-here.net/ad2.flv"
type="video/x-flv" scalable="true"/>
<destination url="http://www.your-site-here.net/trackers/?clickthrough"/>
</ad>
<spot id="preroll_spot" type="video" timing="pre"/>
<controls show_skip="false" static_message="A message from our sponsors"
countdown_message="Your video will resume in 00 seconds." countdown_key="00"/>
</ad-program>
Thanks.