Forum Discussion
Need learners to be able to copy text from Storyline module inserted in Rise course
- 11 months ago
I understand that accessible text in storyline meets the needs of WCAG 2.2 and that using helper bird extension allows scale. WCAG 3.0 implementation as a standard is at least a year away if not more.
For that reason I would expect this to age on Articulate's radar and hopefully is implemented sooner rather than later.
Ich got a solution, that works with at least with shortcut Strg + C. Because Storyline deactivates right mouse click.
The solution deletes the input of the first inputfield on the slide and then fills it again with text.
So the text is selectable and copyable with Strg + C.
1. Create an input field
2. Create trigger "Excecute Javascript if timeline starts"
3. Fill in Javascript and replace the variablename that is connected to the input field.
var player = GetPlayer();
// Setzt das Eingabefeld zunächst auf leer
player.SetVar('YOUR-VARIABLE-NAME-BEHIND-INPUTFIELD', '');
// Kurzer Delay, damit das Feld wirklich zurückgesetzt wird
setTimeout(function(){
player.SetVar('VARIABLE-NAME-BEHIND-INPUTFIELD', 'YOUR-COPYABLE-TEXT-HERE'');
}, 100);
Related Content
- 10 months ago
- 10 months ago