Ticket #127 (closed defect: fixed)

Opened 3 years ago

Last modified 3 years ago

OVA doesn't work with Skins

Reported by: paul Owned by: paul
Priority: blocker Milestone: OVA for JW Player 5 (0.4.4)
Component: OVA for JW Player 5 Version: OVA for JW Player 5 (trunk)
Keywords: Skins Cc:
Forum thread:

Description

Make sure OVA works with Skins

Change History

comment:1 Changed 3 years ago by paul

  • Status changed from new to assigned

comment:2 Changed 3 years ago by paul

The issue is with the mechanism that the JW5 plugin uses to turn the control bar on and off. It's causing the plugin to fail on load when the first attempt to turn on the control bar occurs within loadJWClip()

comment:3 Changed 3 years ago by paul

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

The issue is with the Slider - the following code resolves the issue.

if(cb.getButton('time') != null) {

if(cb.getButton('time') is ComponentButton) {

ComponentButton(cb.getButton('time')).enabled = false;

}
else if(cb.getButton('time') is Slider) {

Slider(cb.getButton('time')).unlock();

}

}

Closing.

Note: See TracTickets for help on using tickets.