Creating Printable Course Notes in Storyline Using JavaScript
Автор: Learning Dojo
Загружено: 2025-09-01
Просмотров: 6227
Let’s explore a handy JavaScript snippet to efficiently print all the course notes in Articulate Storyline. In this video, we'll walk you through the entire process from modifying storyline files and creating an HTML file, to generating necessary variables and utilizing ChatGPT for code generation. Learn how to organize notes per page, save them into variables, and ultimately print them out in a formatted HTML file. Discover professional tips to enhance the code with ChatGPT, and see how to employ Visual Studio Code to preview your project. Perfect for both coding beginners and advanced users, this guide ensures you leverage JavaScript to improve your eLearning development. Check out more at Learning Dojo Ninja for full courses and additional resources. Don't forget to like, subscribe, and hit the bell for more tutorials!
Link to Snippets Website: https://learningdojo.ninja/javascript...
Code Used in Video:
var notes = [
{ title: "Page 1 Notes", body: getVar("note1") },
{ title: "Page 2 Notes", body: getVar("note2") },
{ title: "Page 3 Notes", body: getVar("note3") }
];
// Build query string with repeated parameters: t= for title, n= for note body
var params = new URLSearchParams();
notes.forEach(function (item) {
params.append("t", item.title || "");
params.append("n", item.body || "");
});
// Open the printable notes HTML in a new tab
var url = "pagenotes.html?" + params.toString();
window.open(url, "_blank");
Chapters
00:00 Introduction to JavaScript Note-Taking Snippet
00:21 Setting Up the HTML and JavaScript
00:34 Using ChatGPT for Code Generation
00:52 Creating and Managing Variables in Storyline
03:47 Implementing the Note-Taking Feature in Storyline
05:59 Executing JavaScript for Note Printing
08:53 Publishing and Testing the Course
11:59 Conclusion and Additional Resources
🥷 Link to Full Courses
Articulate Storyline 360: https://courses.learningdojo.ninja/c/...
Storyline & JavaScript: https://courses.learningdojo.ninja/c/...
Adobe Captivate: https://www.udemy.com/course/adobe-ca...
xAPI Fundamentals: https://courses.learningdojo.ninja/c/...
Camtasia: https://www.udemy.com/course/masterin...
Articulate Rise 360: https://courses.learningdojo.ninja/c/...
If you would like learn more visit https://learningdojo.ninja.
Доступные форматы для скачивания:
Скачать видео mp4
-
Информация по загрузке: