articulate 360
1388 TopicsRise 360: Employee Health and Wellness
Want to see some of the different things you can do in Rise 360? Then check out this employee health and wellness course that uses different lesson and block types to create responsive content and a unique learning experience. Explore this project.469Views0likes15CommentsIssue with score sent to LMS - Storyline 360
I included a final assessment at the end of a module on Storyline 360. It seems there is a discrepancy between the score displayed in the module (results slide) and the score sent to our LMS (Successfactor). For example, if you obtain a score of 88% on the results slide, the score that appears in the LMS is 71%. If you obtain the score of 82%, the score that appears is 65%. I have checked the Storyline file but I didn't find the issue. Could you please help me? I have attached the file below. Kind Regards, Frédéric Dalmas Sonepar4Views0likes0CommentsInsert a picture on a shield/poster of a character
I would like to add an image to the empty space of a character's shield. But there are always hands in the way. Is there a way to insert a picture "behind" the fingers? Or do I have to cut out an image in a separate program? Thanks for help...7Views0likes0CommentsSearchable Database for Help Articles
I am creating help articles for our software applications. Is there a way for me to create or set up in such a way that our end users would be able to search our help articles versus having to scroll through every single "course" or topic?30Views0likes5CommentsEnabling Custom and Player Next Buttons
Hey Everyone- This is the second time I am coming for advice and expertise on Storyline 360 next button functionality (though, this time it is a different issue). I think we are quickly becoming foes 🤜💥🤛 I have set a custom next button and the next arrow on the player toolbar to be disabled until all the buttons have been selected on the slide. I'm not sure what I am doing wrong, but even after all the buttons have been visited, both buttons remain disabled. I've attached the slide in question for review. Thank you in advance!- Susan27Views0likes3CommentsHow to Embed and Track YouTube Videos in Articulate Storyline Projects
Here’s a step-by-step guide to embedding a YouTube video in Articulate Storyline with the video controls hidden, the video fitting the web object, and tracking video completion: Step 1: Prepare the HTML File Create an HTML File: Open a text editor (e.g., Notepad, VS Code) and paste the provided HTML code into a new file. Save this file as video.html. <!DOCTYPE html> <html> <head> <style> body, html { margin: 0; padding: 0; overflow: hidden; /* Hides the scroll bar */ } #player { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } </style> </head> <body> <div id="player"></div> <script> // Load the IFrame Player API code asynchronously var tag = document.createElement('script'); tag.src = "https://www.youtube.com/iframe_api"; var firstScriptTag = document.getElementsByTagName('script')[0]; firstScriptTag.parentNode.insertBefore(tag, firstScriptTag); var player; function onYouTubeIframeAPIReady() { player = new YT.Player('player', { videoId: 'RBtnt1fvpgA', // Replace with your video ID playerVars: { 'enablejsapi': 1, 'controls': 0, 'modestbranding': 1, 'rel': 0, 'showinfo': 0, 'iv_load_policy': 3 }, events: { 'onStateChange': onPlayerStateChange } }); } function onPlayerStateChange(event) { if (event.data == YT.PlayerState.ENDED) { // Video has ended, trigger a Storyline event parent.postMessage('videoEnded', '*'); } } </script> </body> </html> *Replace 'RBtnt1fvpgA' with your YouTube video's ID. Step 2: Embed the HTML in Articulate Storyline Add a Web Object: Open your project in Articulate Storyline. Go to the slide where you want to add the video. Click Insert > Web Object. Choose to link to a local file and browse to your video.html file. Set the web object's dimensions to fit your slide and ensure it matches the aspect ratio of your video. Position the Web Object: Resize and position the web object to fit neatly within your slide layout. Ensure that the web object size matches the desired video display size to avoid scroll bars. Step 3: Track Video Completion Create a Variable: Create a new variable in Storyline, e.g., VideoComplete of type True/False. Set the initial value to False. Add JavaScript to Track Completion: Go to the slide with the video. Add a trigger to execute JavaScript when the timeline starts. function receiveMessage(event) { if (event.data === 'videoEnded') { var player = GetPlayer(); player.SetVar('VideoComplete', true); } } window.addEventListener('message', receiveMessage, false); Completion Trigger: Add a trigger to perform an action (e.g., jump to the next slide, show a layer, or complete the course) when VideoComplete is True. Step 4: Test and Publish Test the Interaction: Preview your slide to ensure the video plays, controls are hidden, and the video fits the web object without scroll bars. Publish the Course: Once everything is working correctly, publish your course. If you're tracking completion via an LMS, ensure that the tracking settings are configured correctly.2Views0likes0CommentsHow to extract email id of an user from LMS?
Hi Saviors, I'm working on a SL course, and I need some customization, wherein I need to segragate/separate the users based on their roles to take a specific part of the course. And, to accomplish this I would want to extract the user email id and then add a logic in the SL file using JavaScript to have the users attempt specific part of the course based on their roles (Associates and Managers). Hence, can anyone help me achieve this requirement? Thanks in advance!11Views0likes0CommentsEditing Creator's Name in Storyline
Hi team, I need some help with a question. Is there a way to edit the creator's name in the review link in Storyline? Or perhaps a way to remove the creator's name entirely? I’m aware of the method involving exporting SCORM packages and openingthe story extensions, but the videos I’ve included aren’t opening in the Chrome extension.15Views0likes1Comment