Support
All support resources for our products. Here you can find answers to frequently asked questions, discuss with other users, recover a lost license code or file a support request.
Forum closed
This forum was closed and turned into an archive effective April 21, 2018. It is no longer possible to create new topics or reply to existing topics.

Thanks everyone for all the great questions and contributions over the years.

Please use the Contact form to get in touch.

Remote Buddy Forum

Overview 

AuthorThread
User

08.11.2010 19:38:13
Re: Enabling/Disablig display with switchresx

This posting is older than 6 months and can contain outdated information.
If you are using SwitchResX, you can use this Applescript to enable/disable a display

tell application "SwitchResX Daemon" 
if enabled of display 2 is false then 
set enabled of display 2 to true 
else 
set enabled of display 2 to false 
end if 
end tell

you need to change the number of the display to that appropriate.

I use this in combination with a very small other script

Tell Application "Plex" 
activate 
end tell

to start and activate plex. 

Thread-display::