Hi All,
Was running into something that's driving me a little nuts. I know a VPAID ad is supposed to have the adSkippableState property set to true in order to display the skip ad button (which it is). I don't have any problems with the skip functionality when it comes to a standard vast tag with a progressive download media file, but with VPAID, i don't get the skip button. My setup is below...
Handshake version:
public function handshakeVersion(playerVPAIDVersion:String) : String {
return "2.0";
}
Inside my VPAID Creative:
public function get adSkippableState() : Boolean {
return true
};
Linear node of my VAST response
<Linear skipoffset="5%">
<Duration>00:00:30</Duration>
<TrackingEvents>
<Tracking event="skip">
</Tracking>
<Tracking event="progress" offset="5%">
</Tracking>
</TrackingEvents>
<VideoClicks/>
<MediaFiles>
<MediaFile type="application/x-shockwave-flash" width="640" height="360" delivery="progressive" id="8522588" bitrate="320" maintainAspectRatio="true" apiFramework="VPAID"><![CDATA[
https://MEDIA_FILE_HERE]]></MediaFile>
</MediaFiles>
</Linear>
This seems to be correct according the IAB specs but is there something that I'm possibly overlooking?? Looking forward to your response.