Forum Discussion
EricDeclerck
2 months agoCommunity Member
Summary configuration
Hello, I have an issue with the menu. I'm struggling to configure the following: If the learner clicks on the home icon while they are in Part 1, I want them to be directed to the summary, with Pa...
Nedim
2 months agoCommunity Member
Attached is a simplified version of the menu functionality as described in your post. This implementation is based on Alex's suggestion and uses four True/False variables: Part1Complete, Part2Complete, and so on.
- Initialization: Initially, all variables are set to "False," indicating that none of the parts are complete.
- Updating Variables: At the end of each part, the corresponding variable is set to "True." For example:
- The Part1Complete variable is set to True when the timeline starts on the last slide of Part 1.
- Enabling Buttons: When a variable is set to True, it enables the corresponding button for the next part on the Summary slide. For instance, if Part1Complete is True, the button for Part 2 will be enabled.
- Consistent Logic: This logic is consistently applied to all variables across different parts, ensuring that the menu reflects the learner's progress accurately.