Ticket #306 (new defect)
onStart function not working on Flowplayer clips with OVA
| 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
When OVA is configured, the onStart() javascript methods on a clip no longer work.
Raised by Patrice.
Change History
Note: See
TracTickets for help on using
tickets.

True.. this seems to be because OVA creates a new playlist and the javascript settings aren't carried through to the show clips in the new playlist. Need to find out how to carry them through.
In the meantime, there is a work-around with an approach like:
<script>
flowplayer(your-usual-flowplayer-setup-here);
$f().onStart(function(clip) {
});
</script>