Forum Discussion
GregFaust
10 years agoCommunity Member
Show and hide seekbar in a slide: Is it possible?
On a single slide, I have:
Layers that ask the learner to read and/or interact, then click a button to move to another part of the slide (no seekbar needed).
Layers that present audio, appeari...
OnodaSakamichi
6 years agoCommunity Member
To hide the seekbar on individual layers, insert a trigger to execute JavaScript and enter this single line of code:
$('div.controls-group.control-bar.cs-seekcontrol.progress-control').hide();
You will need to enter the same code, but change .hide(); to .show(); on layers, including the base layer, where you want the seekbar to display.
$('div.controls-group.control-bar.cs-seekcontrol.progress-control').show();
Please note this works only with HTML5 output, not Flash.