Forum Discussion
ChrissyChamberl
12 years agoCommunity Member
Delete or hide Refresh icon ONLY, but keep Seekbar
With the way my course is setup and with everything I've read here in the forums, the refresh button that comes with the seekbar simply won't work. Most of my slides are set to "resume saved state...
StephenFeren348
Community Member
For anyone using the modern player, you can hide the rewind/replay/reset button using javascript for any slides that you need to have the "Resume saved state" property enabled.
Set a trigger that Executes the following javascript when the timeline starts on any slide you want to hide the button.
document.querySelector('#reset').style.display = 'none';
Doing it this way currently doesn't require you to manually re-show the button on subsequent slides.
Ideally, we wouldn't have to do it this way because it's a flimsy workaround, so add me down as another vote for making this work as end users of the software and end users of the published files expect a rewind/replay/reset button to work.
AndreaGrasso
3 years agoCommunity Member
Hi Stephen, if I want to put this code in the CSS, in wich point I have to? Thanks