Forum Discussion
MateuszSzuter-e
29 days agoCommunity Member
Ability to copy texts from Storyline course on Review platform
Hello,
Maybe with the all recent, positive changes it is a good moment to ask for this feature :)
So when it comes to review, our stakeholders often comes to one conclusion - it is not particular...
MateuszSzuter-e
24 days agoCommunity Member
Thank you Nadim! That's really useful.
I've built on that :) Your version works if there's no Accessible text enabled and it sometimes produces some strange glyphs.
Inspired by you, I did a similar script for Accessible text, and it copies straight the HTML Text.
function unlockText() {
document.querySelectorAll('.textlib, .textlib *').forEach(el => {
el.style.userSelect = 'text';
el.style.webkitUserSelect = 'text';
el.style.pointerEvents = 'auto';
});
}
unlockText();
new MutationObserver(unlockText).observe(document.body, {
childList: true,
subtree: true
});
That's a game changer for reviewing content, thank you very much for the inspiration.
Articulate team - you can take take that simple codes and maybe add an switchable option to the Review "Allow copying text" or something like that?
Related Content
- 10 months ago