Storyline 360 Module Player Seekbar

Aug 19, 2019

HI 

Is there is an option to customize the modern player seekbar in Storyline 360?  

I want to change the seekbar dimension to match my course dimension. Please refer to the attached images.

 

Thanks & Regards,

Manish Kapoor

5 Replies
Mayuresh Saka

Hi Manish,

If you want to customize the seek-bar to match with the width of the content area as shown in the screenshot you shared, below is a JavaScript to do that.

Add the below script on all slides under Executive JavaScript trigger and publish the course.

---------------------------------------------------------------------------------------------------------------------------

window.addEventListener("resize",function(){

resizeBottomBar();

});

function resizeBottomBar(){

try{
var sl_w = $('.slide-container').width();
$('.control-bar,.grid-row').css({'width':sl_w+'px','margin':'0 auto','max-width':'auto'});

$('.control-bar').css({'position':'absolute',left:0,top:0});

}
catch(e){}

}

resizeBottomBar();