other
422 TopicsHELP! All of the components in my player is reversed????
I am working in Articulate Storyline 360 and this afternoon when I am working in the player of my post-test lesson all of the player components are reversed??? I am not talking about the sidebar being on the left or right. The play button is now at the bottom right corner of the play instead of the left. Everything along that same navigation strip is in reversed order. The menu is in reverse order...Instead of 1.1 (Name of slide title), the menu now reads, (Name of slide title) 1.1.1. The player tabs are on the upper left-hand corner of the player screen instead of the right.... and the Course title is now on the upper right-hand corner of the play screen. I have a screenshot attached below. Has anyone else ran into this and, if so, how to correct?12Views0likes1CommentIn-lesson progress tracking not working
Recently, in some of the courses we’ve developed in Rise 360, the in-lesson tracking has not been working consistently. One or two interactions in a lesson sometimes fail to register, which prevents the completion wheel in the sidebar from changing to a checkmark. We use “Continue” buttons after each interaction, so users cannot move to the next section without completing the previous one—so how is a lesson ending up as incomplete? If a lesson is not marked as completed, it will not count towards full course completion. In these courses, users must complete 100% of the content; however, even a single incomplete lesson may result in a user appearing only 50% complete, as the full course completion updates only when all lessons are fully completed—not when lessons are partially finished. I’ve seen this issue occur in both the LMS and Review 360, so it is not related to the export or the LMS. We have also hosted previous Rise 360 exports with no issue. It also does not happen every time, but it occurs enough to cause significant issues for our learners. In some cases, learners go through the same module multiple times, yet the lesson still does not show as 100% complete. Through testing, we’ve narrowed the issue down to the in-lesson knowledge questions. If a user completes the question enough times (correct or incorrect), the lesson eventually shows as 100% complete. We do not have the knowledge questions set to require a correct answer; they only need to be answered to move on. We also have continue buttons beneath each question, so the lesson should not allow a user to proceed without completing it—yet it does. I submitted a ticket about this last week, but there has been no response yet. I’m wondering whether anyone else has experienced this issue or has any suggested workarounds. I have attached a screenshot from Review360 of the lessons not showing as complete despite reaching the end of the module and clicking all continue buttons.Rise - Button Stack spacing between the buttons has disappeared
For some reason all my button stacks don't have any space between each other now. It only happened today. The issue is also there where I build a new button stack from scratch. I can manually put the space back in by adding a paragraph space in the description. Additionally I had a heading block lose it bottom padding, but I was able to just input the value manually to fix the issue. Has anyone experienced this before and if there is a fix?Solved101Views3likes6Comments[Issue] AI Localization: TTS Audio fails to auto-regenerate
Hi everyone, I am currently testing the new AI Localization feature (English to Italian) and have encountered a significant workflow issue regarding Text-to-Speech (TTS) audio generation. My Scenario: Source File: English Storyline project using native Text-to-Speech audio. Action: Used File > Localization > Translate Course. Target: Italian (Formal). The Issue: The AI successfully translates the text script inside the Text-to-Speech editor into Italian. However, the actual audio file on the timeline does NOT update automatically. When previewing the translated course: The text on screen is Italian. The script in the TTS editor is Italian. The Audio playback remains the original English voice. Current Workaround: To fix this, I am required to manually open the Text-to-Speech editor for every single slide and click the blue "Update" button. Only then does the audio regenerate into the Italian voice. My Question: I understand this feature is in Beta, but is this expected behavior? Having to manually update every audio clip negates the time-saving benefit of the AI translation. Is there a setting I missed to force "Auto-Regenerate Audio" during the translation process? Or is a "Voice Mapping" feature planned to solve this? Any advice on how to automate this step would be appreciated. Thanks!Storyline Block in Rise 360 Not Saving Progress
I uploaded a Storyline block into my Rise 360 course. My storyline block is interactive and has buttons. However, the Storyline block does not save progress. The following is what I did hoping that the Storyline block would save: Before I published the storyline block to Review 360, I made sure that "Always Resume" was enabled in the player setting. After I added the Storyline block to the Rise 360 course, I published the course as SCORM 2004, 4th edition and uploaded it to our LMS, (we use AIC platform). For the tracking option, I used "Track using course completion" and set it to 100%. When I go to our LMS and launch the course, I go to through the course until I reach the Storyline block. I let at least two slides play and then close the course. When I relaunch the course, the location of where I left off in the Rise 360 portion is saved but the Storyline block restarts to the beginning. I went as far as to test this SCORM file in Scorm Cloud and the same situation happen which leads me to believe that the issue is the Storyline block and not the LMS. How can I get my Storyline block progress to save?Solved419Views0likes9CommentsAuto-generate closed captions does not work in my Storyline 360. However, it works for my colleague
As the title says, this is a unique problem. The CC generation worked for me till yesterday. Now it does not. My colleague does not have this issue. I have restarted my laptop, the issue still persists. Has anybody else encountered this? Any workaround that I could try?91Views0likes7CommentsJavascript Date plus one, plus two etc...
I wonder if any Javascript whizzes can help? I have a very very basic grasp, enough to be able to copy and make some basic edits to get some minor outcomes. I have a slide needing me to calculate and display the date, multiple days before and after today's date. At the moment, I have it working by having multiple individual Execute javascript triggers each with a version of the below for any of the number of days I want (for this slide I want back 4, 5, 6 and 10; and forward 1, 2 and 3): //1DaysAhead var currentDate = new Date(); var oneDaysAhead = new Date(currentDate); oneDaysAhead.setDate(currentDate.getDate() + 1); var oneDaysAheadmonth = oneDaysAhead.getMonth() + 1; var oneDaysAheadDay = oneDaysAhead.getDate(); var oneDaysAheadYear = oneDaysAhead.getFullYear(); const oneDaysAheadMonth = oneDaysAhead.toLocaleString('default', { month: 'short' }); var oneDaysAheadDateString = oneDaysAheadDay + " " + oneDaysAheadMonth + " " + oneDaysAheadYear; let player = GetPlayer(); player.SetVar("oneDaysAhead", oneDaysAheadDateString); When I try combining the multiple working individual javascript triggers versions into one trigger (easier to edit down the line rather than opening multiple triggers), it doesn't work and my Javascript knowledge isn't sufficient to detect the issue. e.g. the below does not work: var currentDate = new Date(); //1DaysAhead var oneDaysAhead = new Date(currentDate); oneDaysAhead.setDate(currentDate.getDate() + 1); var oneDaysAheadmonth = oneDaysAhead.getMonth() + 1; var oneDaysAheadDay = oneDaysAhead.getDate(); var oneDaysAheadYear = oneDaysAhead.getFullYear(); const oneDaysAheadMonth = oneDaysAhead.toLocaleString('default', { month: 'short' }); var oneDaysAheadDateString = oneDaysAheadDay + " " + oneDaysAheadMonth + " " + oneDaysAheadYear; let player = GetPlayer(); player.SetVar("oneDaysAhead", oneDaysAheadDateString); //2DaysAhead var twoDaysAhead = new Date(currentDate); twoDaysAhead.setDate(currentDate.getDate() + 2); var twoDaysAheadmonth = twoDaysAhead.getMonth() + 1; var twoDaysAheadDay = twoDaysAhead.getDate(); var twoDaysAheadYear = twoDaysAhead.getFullYear(); const twoDaysAheadMonth = twoDaysAhead.toLocaleString('default', { month: 'short' }); var twoDaysAheadDateString = twoDaysAheadDay + " " + twoDaysAheadMonth + " " + twoDaysAheadYear; let player = GetPlayer(); player.SetVar("twoDaysAhead", twoDaysAheadDateString); Is anyone able to point me in the right direction? My guesses are the re-use of currentDate and/or the player.SetVar lines.Solved25Views0likes3CommentsHow being neurodivergent shapes my work in learning design
Hi everyone, Something I do not talk about often is how being neurodivergent, specifically ADHD, has shaped the way I approach learning design. For a long time, I thought of it as something I needed to manage quietly. Over time, I realized it has actually helped me see learning experiences in a very unique way. It makes me pay close attention to clarity. It makes me sensitive to moments where a learner might lose their place. It helps me notice when information is doing too much or arriving without enough context. And it reminds me that people process ideas in many different ways. When I build or review a Storyline or Rise course, I often think about: What helps someone stay oriented • What reduces unnecessary cognitive effort • What keeps the experience predictable enough to feel safe • What gives the learner room to pause and understand These are things I learned because I needed them myself. I have come to see neurodivergence as something that sharpens my awareness rather than something separate from my work. It helps me design with more empathy, more structure and more intention. Did you know that ADHD is over-represented in creative and human-centered fields? It often shows up as strengths in structure awareness, flow and learner perspective. If you feel comfortable sharing, I would love to hear how who you are influences the way you design. Which parts of your own lived experience shape your approach to learning?17Views0likes0Comments