Extract content from SCORM package - Building Better Courses Discussions - E-Learning Heroes
I'm bookmarking this for Matthew Bibby's reply. If you have only the published SCORM files for a course published in Storyline 3 or 360, you can use this Javascript code snippet to select the onscreen text. That at least lets you copy and paste rather than retyping everything.
<p>If the course was published with SL3 or SL360 then dropping this code in the JS console will allow you to select the text onscreen (so it can be copied):</p>
<pre>document.querySelectorAll('text').forEach(node => {<br> node.style.pointerEvents = 'all';<br> node.style.userSelect = 'all'<br>});</pre>
<p><a href="https://blogs.articulate.com/rapid-elearning/how-to-copy-text-from-flash-e-learning-courses-html5/" target="_blank">This article</a> may also be helpful.</p>