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...
OwenHolt
Super Hero
To hide the reset from the bar:
document.getElementById('reset').style.visibility = "hidden";
To show the reset:
document.getElementById('reset').style.visibility = "visible";
GregPoole-b96a7
5 years agoCommunity Member
Thanks Owen, that's great.
I was interested to see that the replay icon is hidden but is still functional -- mouse over the area where it usually shows --> mouse changes to pointer finger --> clicking there replays from slide from start. Just thought it was oddly cool/cooly odd.
Also, and you likely know this, but if the code is executed on Slide X, and then one goes back to Slide X-1, the replay icon is still hidden, so I guess the "visible" code would have to be included on every slide except Slide X when the timeline starts.
Thanks again!
Greg