Forum Discussion
Making text copyable during course
I know this is old but I also found a roundabout way to do this:
1. Create a text entry box to hold the text you want to be copy-able (let's call it 'TextEntry').
2. Create a text variable with the text you want to be copy-able as the default value (let's call this variable 'CopyText' with the default text as 'DefaultText').
3. Create the following trigger:
Action: Adjust variable
Variable: Set TextEntry to variable CopyText
When: When the timeline starts on
Object: This slide
Doing these things will make the text copy-able, but will also allow users to edit and delete it on accident, which is not ideal. To remedy this, I created this additional trigger, which ensures that even if they delete/edit the text on accident, once they click out of the box, the default text will appear again.
4. Create the following trigger:
Action: Adjust variable
Variable: Set TextEntry to variable CopyText
When: When the variable changes
Variable: TextEntry
Conditions: If TextEntry doesn't equal variable CopyText
I hope this is helpful!
You are amazing!!!! Thanks so much this is exactly what we needded