Forum Discussion
How to get rid of the 'Big Black Play button' when publishing Storyline.
Math, thank you for the suggested fix to the Black Play Button on Mobile devices, but I just tried this solution with the latest version Storyline 360 (as of 6/7/2022) and it is causing the player to get stuck. The player shows that it is loading and it never shows the actual slide.
I am going into the "slides.min.js" javascript file that comes with the storyline install and am doing the following find & replace:
FIND
u.trigger(c.startOverlay.READY)}))
REPLACE with
u.trigger(c.startOverlay.READY)});this.onStart()
Any suggestions from anyone on how to fix this, or are there any new solutions for removing the Big Black Play Button on Mobile Devices?
Thanks so much,
David K.
a quick look at your lines of code...you probably miss a ) at the end of c.startOverlay.READY...u.trigger(c.startOverlay.READY)}));this.onStart();
Going to test it.