instructional design
233 TopicsPause, Confirm, Continue: A Confirmation Prompt Demo
For my demo, I explored how confirmation prompts can do more than just validate an action. Throughout the course, learners encounter simple prompts that encourage them to pause and confirm before moving forward—whether it's understanding the course navigation, acknowledging key concepts, or preparing for a quiz. I often use these types of prompts in my eLearning projects, especially for navigation. They help learners feel more in control of their experience while ensuring they don't miss important information. Sometimes, a simple "Are you sure?" can improve engagement and create a smoother learning journey. Demo: https://sarkgcreation.com/ELC555C/Translate Freely with Articulate Localization—No Sign-Up Needed
If you work with a global audience, you’ve likely run into the time consuming task of translating content. Even if you haven’t had to translate a course yourself, you’ve almost certainly heard how time, energy, and knowledge intensive the process is. Add in needing to shift things for regional context? You may as well ask for the moon. Fortunately for the stars of e-learning, Articulate Localization is now available to all users! There is no sign-up required. Users can instantly translate content and share it directly with language validators within Rise and only pay when you are ready to publish. You no longer have to hope someone will understand the difference between a work function and a party, or has the time to correct every instance a translation tool replaces “logged in” with something about timber. 🌍No Global Audience? One in five people in the United States, and nearly half of Canada is multilingual. The chances of your audience benefiting from localization is significant, and goes up with every new learner. Still not sure if localizing your course is the right decision? Check out this article with three simple questions to help. You can also review our recent case study about Global-First approaches. “If you have one course in multiple languages, it means you are connecting people even inside your own corporation.” 🔎The Details How to Get Started and What is the Cost? Getting started with Articulate Localization is simple: you can instantly access it within Rise without any required sign-up! While localization typically begins at $5,000 per year, we strongly encourage you to contact our sales team for pricing customized to your specific needs. Need help with buy in? Don’t just take our word for it. Customer case studies show the ease, utility, and advantages of localization in action. 👟Get started localizing your courses today! Log into Articulate to get instant access to Localization. Start an Articulate 360 trial to try Localization—no credit card required.289Views2likes1Comment8 Business Use Cases for Microlearning
Are you excited to try out microlearning, but unsure when to use it? Below, we outline eight common workplace situations that benefit from a short-form course. Each situation includes a sample microlearning. At the end, learn how you can customize these templates for your own company and training needs. 1. Create Organizational Alignment To hit a business target, everyone needs to be moving in the same direction. Creating that alignment starts with clear, frequent communication of the shared mission, vision, and values. Microlearning can help. The following editable template shows how you can align employees through regular executive “micro” updates: Executive Update 2. Highlight HR Information, Notices, or Reminders Educating employees about annual events like open enrollment, tax season, and compliance training is a critical function of HR teams. The problem? Important announcements often get missed when they’re embedded in long paragraphs or endless emails. Grab the following templates to see how microlearning makes HR communications more digestible and engaging: A Quick Guide To Open Enrollment Internal Company Newsletter 3. Strengthen Company Culture and DEI Initiatives Fostering an inclusive company culture is a continuous process—not a one-time effort. A series of microlearnings can support your larger culture-building and DEI efforts. Check out the following examples for ideas on how to get started: Are You an Ally? Try Taking on These 5 Roles How To Identify and Stop Using Ableist Language Gossip-Proof Your Workplace 4. Streamline Business Processes You can also use microlearning to document and streamline business processes or workflows—such as employee onboarding or performance management. Notice how the following examples make it easy for employees to work through the steps of a process independently: New Hire Pre-Hire Checklist Performance Review and Feedback 5. Increase Security Awareness Most successful data breaches, phishing attacks, and other cybersecurity incidents are caused by human error. Adding refresher microlearnings throughout the year can fortify your defenses. See an example for safeguarding against phishing attacks below: Spot the Phish 6. Enhance Employee Wellness A successful business needs thriving employees. But employee wellness training often ends up buried under competing priorities. Microlearning makes it easy for employees to fit in short breaks for self-care throughout the workday. Check out these two wellness-related microlearning examples: 3 Desk Stretches to Instantly Improve Your Day 5 Tips for Better Naps 7. Provide Quick-Reference Guides Microlearning is the perfect resource for one-off training questions: Employees can quickly find the answers they need—when they need them. Below, we’ve created templates for product and software training. But you could easily create quick-reference guides for sales, customer service, and other teams. Get To Know [Name of Product] Software Training 8. Reinforce and Assess Key Takeaways Finally, who says you have to choose between a more sizable course and microlearning? Repetition aids retention. Consider following up longer training sessions with a microlearning quiz, scenario, or summary. The examples listed below demonstrate how you might do this: Can You Recover From a Workplace Mistake? Training Refresher Wrap-Up There’s no shortage of creative ways you can use microlearning to achieve your business training objectives. The examples above are just a starter list. You might also check out submissions to one of our weekly community challenges, 40+ Microlearning Examples Created in Rise 360 #407. Interested in customizing one of these examples for your team? If you’re an Articulate 360 subscriber or trialer, you can edit all of the examples linked throughout this post by choosing the course from our Rise 360 microlearning content templates. Here’s a short video showing how to do that: What’s the latest microlearning course you’ve created? Tell us about it in the comments—and feel free to ask any questions you might have! Like this article? Subscribe to our newsletter to get the latest e-learning inspiration and insights directly in your inbox. You can also find us on LinkedIn and Twitter.4.2KViews0likes11CommentsThink About It!! Quiz, with Quiz Builder
💡My take on the challenge: I looked at this from a slightly different perspective. Building a quiz is easy! so I wanted to create something useful for the entire community. I didn't just create a quiz, I built an app right inside Rise that allows users to craft, preview, and export their own high-impact, standalone quiz right inside Rise for use in their own courses. Everything in the quiz is customisable! Use it along with the native rise style and format block controls to create something amazing! 🖥️ The tech bit! The tool is a dynamic, client-side web application built using standard web technologies (HTML5, CSS3, and Vanilla JavaScript). It allows you to build, configure, and export self-contained, interactive quiz blocks engineered specifically for iframe integration within Rise. ⚙️The really techy bit! The system relies on a centralized State Management Pattern (const S). Every interaction, from a slider adjustment to an input keypress or color hex alteration, fires a non-blocking UI update sequence: Mutates the values directly inside the global state object. Formats strings safely using contextual HTML/JS escaping helpers (esc() / escJs()) to prevent injection or rendering errors in the exported markup. Automatically serialises the state to compile a completely isolated, valid HTML document inside a data URI stream (srcdoc). 😤Problems encountered! Because the live preview runs inside an iframe wrapper to preserve strict CSS sandboxing and style isolation, standard DOM access is blocked. To solve this, a robust cross-document messaging pipeline was implemented: The Frame: Houses an active ResizeObserver API loop monitoring its own document height. The Message: The child window securely transmits payload data (window.parent.postMessage({type:'frameHeight', ...})) upward to the host application window upon asset load. The Host: Automatically catches the event listener and dynamically resizes the frame height down to the exact pixel, eliminating double scrollbars and layout shifting entirely. 🔎LMS/Rise Compatibility & Performance The exported codebase is mathematically pure Vanilla JavaScript (ES5 standard for runtime compatibility). It relies on no external dependencies, CDNs, or UI libraries, ensuring lightning-fast load times. It also features a programmatic native browser hook that fires standard completion messages ({type: 'complete'}) across to the parent window automatically upon a user hitting the customisable passing threshold. I hope you enjoy it 😊 Think About It!! Quiz With Quiz Builder“Are You Sure?” in E-Learning #555
This week I wanted to lean into the spirit of the confirmation prompt, that moment of pause, of reconsideration, and ask: what if that pause wasn't entirely on your side? The scenario: you're an internal team member who's just come back from a learning design course. You have the master learning design authoring tool. Before you're allowed near the authoring tool, the org's AI guide HARMONY needs to run a quick "Confirmation Test." Three scenarios. Shouldn't take long. HARMONY is very helpful. The "Are you sure?" mechanic does something a little different here. I'll leave it at that. 🙂 A few craft notes for anyone interested in the build: The confirmation prompt UX is deliberately asymmetric; the buttons don't behave the same way depending on which answer you're leaning toward HARMONY has two states that shift based on your choices throughout Three different endings based on your answer tally The fake "analysis" stage has a silent jury. You'll see. I have a lot of fun with Claude Design, Code and all things Claude Would love to know which ending you hit, and whether any of the scenarios felt a little too close to home. 👀 Are you a conformist or a rebel? Find out here Confirmation Test Thanks to DavidAnderson and the Articulate 360 team for the prompt; this one was a lot of fun. #ElearningChallengePatient Safety Reflection Pop Out
Hello Fellow eLearning Developing Friends. 🙂 Below I've designed a hospital safety interaction in Rise ( Code Block) and Storyline using an “Are you sure?” prompt. Instead of moving straight to feedback, learners pause, review risk cues and reflect before submitting. I may also add subtle correct and incorrect sound effects, plus two or three linked questions within the case study to deepen reflection. I hope you like it, and I’d welcome any ideas to improve it further. I will update the link later with the remaining work also. Best N DEMO LINKA Cozy Minute
In this example, my goal is to create a gentle, learner-centered pause that feels supportive and caring 🤗 Techniques Used Friendly microcopy and positive reinforcement. A cozy coffee-break metaphor. Personification of the LMS as a supportive presence. Impact on the Learner The approach acknowledges potential cognitive overload and normalizes short pauses during learning. By making the LMS feel attentive and caring, it reinforces that the learner’s effort and answers matter. As a result, a waiting moment becomes an opportunity for reflection and greater confidence in the final answer.