Found 25 bookmarks
Custom sorting
Adobe - Developer Center : Using animations to extend Adobe Captivate for right-click capability
Adobe - Developer Center : Using animations to extend Adobe Captivate for right-click capability
It's always been irritating when creating software demos in Captivate that you can't ask users to right click. I've always just animated those actions and done a demo before, but this tutorial shows a way to actually have users do the right click and even score it. The Flash file to embed is included with the tutorial.
·adobe.com·
Adobe - Developer Center : Using animations to extend Adobe Captivate for right-click capability
UMapper / Home
UMapper / Home
Create Flash-based interactive maps with points of interest marked. Some facilitators have asked about a way to create a map of where students are to help build a sense of community in an online class; this looks like it might work for that purpose.
·umapper.com·
UMapper / Home
ClassTools.net: Games for Education
ClassTools.net: Games for Education
Free games, tools, and graphic organizers, including a Venn Diagram, priority chart, timeline, and timer. You can create your own casual games with questions, like a word game based on "Space Invaders."
·classtools.net·
ClassTools.net: Games for Education
Tutorials | elearninglive.com
Tutorials | elearninglive.com
The goal here is to create Flash tutorials specifically for instructional designers and e-learning developers. Right now there's only one tutorial (on creating a drag and drop activity using ActionScript 3.0), but he plans to add more over time.
·elearninglive.com·
Tutorials | elearninglive.com
Ajax Animator Open Source Flash
Ajax Animator Open Source Flash
Web-based open source application for creating animations. Allows for the creation of multiple layers and uses a timeline. Not much documentation or support since it's early in development, but looks like it's worth playing with if you don't have the budget for Flash and do have some time.
·osflash.org·
Ajax Animator Open Source Flash
How to Update an Old Course Without the Source Files
How to Update an Old Course Without the Source Files
With the impending demise of Flash, organizations will need to upgrade their libraries of old Flash elearning to HTML5. If you can't recreate them from scratch, Tom Kuhlmann shares this method using screen captures to quickly convert old courses. You still have to manually add interactions, but you can bring in a lot of content as screen capture images.
·blogs.articulate.com·
How to Update an Old Course Without the Source Files
Extract content from SCORM package - Building Better Courses Discussions - E-Learning Heroes
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 =&gt; {<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>&nbsp;may also be helpful.</p>
·community.articulate.com·
Extract content from SCORM package - Building Better Courses Discussions - E-Learning Heroes