Forum Discussion
Hide or Show Seekbar in slide
Now that the latest version of Storyline 360 doesn't support Jquery, what will be the best way to do this?
Hi Claudio,
I recently encountered this as well. I'm no expert in JavaScript but a workaround that worked for me was defining the DIV ID of the player controls as a variable to hide and show it. Here is what I used in the execute Java trigger:
To hide:
var x = document.getElementById("playback-controls");
{x.style.display = "none";
}
To show:
var x = document.getElementById("playback-controls");
{x.style.display = "block";
}
Again, this worked for me but I'm no Java expert so hopefully someone else in the community can give you a better solution.
- ClaudioFayngolz6 years agoCommunity Member
Not working….:(
But thanks!Claudio Fayngolz
claudiofayngolz@gmail.com
203.247.7406
skype: cfayngolz
www.claudiofayngolz.com
Related Content
- 2 months ago