#comments-start This script will swap w/b colors in the text and background for the perfect screens program. It's assumed you've got perfect screens on left next to a vertical 'start menu' The mouse coordinates are initially screen -- then, window based #comments-end Dim $debug;="Y" MouseClick("left",134,14) ; This should work regardless of your screen orientation Sleep(1250) Send("M") ; Sleep(250) ;Window WinActivate("Settings") If WinActive("Settings") Then If Not $debug="Y" Then BlockInput(1) EndIf ;Switch to 'window' mode Opt("MouseCoordMode",0) ; Window coordinate MouseClick("main",131,319) ; Background Color Sleep(250) MouseClick("main",196,170) ; white Sleep(250) MouseClick("main",40,303) ; ok Sleep(250) WinActivate("Settings") MouseClick("main",205,317) ; Text Color Sleep(250) MouseClick("main",20,172) ; black Sleep(250) MouseClick("main",40,303) ; ok Sleep(250) WinActivate("Settings") MouseClick("main",213,375) Sleep(250) Opt("MouseCoordMode",1) ; Absolute (screen) coordinate If Not $debug="Y" Then BlockInput(0) EndIf EndIf