Question:
How can I enable/disable task switching (Alt + Tab) at runtime?
Solution:
To do so, you must write a script to edit the application’s Exclusive property. For example:
Example of script for disabling task switching: Application.exclusive = 1
Example of script for enabling task switching: Application.exclusive = 0