Forum Discussion
MaryGrove
8 years agoCommunity Member
Remove play button on html5 opening screen in Storyline 360
Is there a way of editing the code on one of the files to remove the big play button that appears on the opening screen of a mobile device accessing the html5 file? I've seen threads on how to do it...
MikeMaas
Community Member
This worked for me:
search in app.min.js for MobileStartOverlay:function()
Right after the text that reads var c=a("polyfills/detection");
type this: setTimeout(this.onStart, 1);
The final line should look something like this:
... MobileStartOverlay:function(){var c=a("polyfills/detection");setTimeout(this.onStart, 1);return b.createElement ...
philipsiwinski
8 years agoCommunity Member
Thanks Mike ! Sometimes the text to search is var i=e("polyfills/detection");