Forum Discussion
Delete or hide Refresh icon ONLY, but keep Seekbar
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.
I can't believe you only posted this an hour ago and it's completely saving me on a problem I just ran into today. Thank you!