Deselect Text Entry Box

I have a text entry box that I want an answer inputted in. Once the answer is inputted I press Enter and it is marked correct or incorrect. I want to automatically deselect the text box so that you can’t keep accidently typing in it. Is this possible?

Hi Rachel,

For your information, ActivePresenter prioritizes objects with Auto or Specific Value of Tab Order. Consequently, if your slide contains only one object, it will inevitably receive focus.

To achieve your desire, you need to set the Tab Order of the Text Entry to None or Focusable Only. Then, add the following script to the On Correct and On Incorrect events:

this.textNode.blur();

Regards,

Hi Hang,

This works perfectly, thankyou for your help :smiley:

Cheers

1 Like