Forum Discussion
MateuszSzuter-e
4 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
23 hours agoCommunity Member
Nedim if you are willing to share, that would be great!
Nedim
2 hours agoCommunity Member
MateuszSzuter-e
Run this code on a Slide Master (Execute JavaScript when the timeline starts on this slide):
document.querySelectorAll('svg text').forEach(el =>
Object.assign(el.style, {
pointerEvents: 'auto',
userSelect: 'text'
})
);
document.addEventListener('contextmenu', e => e.stopPropagation(), true);
You can still highlight and copy all text using Ctrl + C. The last line of the code re-enables the right-click context menu. If you don’t need this, you can simply comment it out or remove it.