Forum Discussion
OwenHolt
11 years agoSuper Hero
Create a Course Certificate in StoryLine! (with Java and HTML)
I noticed in Stephanie Harnett's most excellent post on user notes that can be printed or emailed that much of the java for the printing function was really just filling the print window with conte...
AllisunOConnell
9 years agoCommunity Member
For everyone having the issue with images not loading in Chrome's print preview - I worked with a developer to find a fix that I'd like to share. At the end of the javascript in Owen's project file, remove the line: //myWindow.print and instead, input this code:
if (window.navigator.userAgent.indexOf('Chrome') != -1) {
setTimeout(function () {
myWindow.print();
}, 450);
}
else {
myWindow.print();
}