Forum Discussion
Remove play button on html5 opening screen in Storyline 360
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 ...
- nicolaslacroix-8 years agoCommunity Member
Tested and working better than sl2's solution for this so far.
Thanks alot!
- AnzeraAnzera8 years agoCommunity Member
Thanks Mike,
This worked for me but with a few changes.
My final line looks like this:
"MobileStartOverlay:function(){var i=e("polyfills/detection");setTimeout(this.onStart, 1);return t.createElement..."
- philipsiwinski8 years agoCommunity Member
Thanks Mike ! Sometimes the text to search is
var i=e("polyfills/detection");
- TerryBell15 years agoCommunity Member
Hi Mike,
Thanks - I have used the solution ever since I saw your post, but now SL has changed the file structure of the published output, and app.min.js doesn't exist anymore, and I couldn't find the text you described above in any of the new js files.
Is there any chance you have discovered the work around for the latest SL360 published output?
Thanks!
edit: adding the text of the post I was replying to.
Mike Maas, almost 3 years ago
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 ...