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...
RachelCannonSD
Community Member
This worked for me in the latest version of SL (March 3, 2020 3.37.21614.0):
- Search in ds-slides.min for
MobileStartOverlay:function()
. - Find this instance:
MobileStartOverlay:function(){var e=this,t=DS.stringTabler,n=DS.vendorOverrides.feDropShadow ...
- It continues on and on until you reach
return c.createElement
. - Just like Mike's old instructions, add
setTimeout(this.onStart, 1);
just before this so it looks like:
l=o.isUnified,u=s.env.is360;setTimeout(this.onStart, 1);return c.createElement
Hope this helps!
KerriBishman-a4
3 years agoCommunity Member
OMG Rachel. You are incredible!! This totally worked and MADE MY DAY!!!