How to Print Slides in Articulate Storyline 360 in HTML5
To print your slides in Articulate Storyline 360, add the following script to a JavaScript trigger: if (document.location.href.indexOf(‘html5’) < 0) { GetPlayer().printSlide() } else { if(!window.hasPrintStyle){ window.hasPrintStyle = true; var css = “@media print {div.controls.grid-row.inflexible,div.area-secondary.cs-left.inflexible,header.header-primary.centered-title.extended-height,div.presentation-wrapper:after {display:none !important; visibility:hidden !important;}}”; head = document.head || document.getElementsByTagName(‘head’)[0]; style = document.createElement(‘style’); style.type = ‘text/css’; if (style.styleSheet){ style.styleSheet.cssText = css; … Read more