Ticket #384 (closed defect: fixed)

Opened 14 months ago

Last modified 13 months ago

Control bar not visible with VPAID ads

Reported by: paul Owned by: paul
Priority: blocker Milestone: OVA for Flowplayer (v1.0.1)
Component: OVA for Flowplayer Version: OVA for Flowplayer (trunk)
Keywords: Cc:
Forum thread:

Description

OVA for Flowplayer - control bar is not visible with VPAID linear ads even though the option is set.

See this example:

 http://localhost/ova/ova.flowplayer/examples/vpaid/example1.8.html

Change History

comment:1 Changed 13 months ago by paul

  • Status changed from new to closed
  • Resolution set to fixed

Fixed in 1.0.1 RC2 (Build 21).

Conditions added to config correct region if control bar to be shown:

if(controlBarIsHidden() == false) {

if(_vastController.config.playerConfig.shouldHideControlsOnLinearPlayback(true)) {

_vastController.config.adsConfig.vpaidConfig.linearRegion = VPAIDConfig.RESERVED_FULLSCREEN_BLACK_WITH_CB_HEIGHT;

}
else {

_vastController.config.adsConfig.vpaidConfig.linearRegion = VPAIDConfig.RESERVED_FULLSCREEN_TRANSPARENT_BOTTOM_MARGIN_ADJUSTED;

}

}
else _vastController.config.adsConfig.vpaidConfig.linearRegion = VPAIDConfig.RESERVED_FULLSCREEN_BLACK_WITH_CB_HEIGHT;

Note: See TracTickets for help on using tickets.