How to Disable Text Selection Across All Slides in a Project

Dear ActivePresenter Support Team,

I have a question regarding text selection behavior in ActivePresenter.

In my project, I would like to disable text selection for all text objects across all slides. I know that for individual text captions or shapes, I can uncheck the “Allow Text Selection” option in the Size & Properties tab. However, doing this manually for every text object in a large project is quite time-consuming.

Is there a way to disable text selection globally, for all text objects throughout the project?

I’d appreciate any guidance or best practices you can suggest on this.

Best regards,

Hi,

You can try adding the following scripts to the Project On Load event:

document.body.style.userSelect = 'none';
document.body.style.webkitUserSelect = 'none'; // Safari
document.body.style.msUserSelect = 'none';     // Older IE

BR,

1 Like

Hi,
Thank you very much for your help.