Forum Discussion
How to Disable Player Tooltips
Hi Moritz!
It sounds like you were looking for more customization over which Player Tooltips get displayed to a learner! That type of functionality isn't available in Storyline yet, but I've added your feedback to the feature report being tracked.
We'll be sure to update this discussion if it makes it onto our Feature Roadmap!
Thanks for reaching out!
For everybody who needs a quick solution to fix this problem. My team and I found a way to disable these tooltips through JavaScript.
const container = document.querySelector('#app-top');
container.style.display = "none";
Just create an "Execute Javascript" Trigger (when the timeline starts) on the first slide of your training, this trigger only needs to be executed once.
This is a temporary work-around to disable the tool-tips until Articulate comes with a permanent solution that doesn't require Javascript. We tested it in multiple environments (e.g. Review, SCORM, etc.) and it works consistently.
Hope this helps!
- ScottSzymans6639 months agoCommunity Member
Melvin, this is great! Thanks for posting.