On a blank area of the desktop, right-click Properties --- Appearance --- Advanced --- Item (I) -- select Window from the drop-down menu:
Color (L), select black from the drop-down menu (I recommend green (80 240 88), it's easier on the eyes)
Color (R), select white from the drop-down menu
Then confirm, Apply, OK!
Actually I'm here to ask a question:
I want to use sendkey to do this, but I can't use the traditional method to select the color drop-down menu.
Just run this directly:
-------------------------------------------------------
Best answer: see post #10 (answered by zh159, slore, thanks here)
[ Last edited by plp626 on 2008-4-8 at 02:18 PM ]
Color (L), select black from the drop-down menu (I recommend green (80 240 88), it's easier on the eyes)
Color (R), select white from the drop-down menu
Then confirm, Apply, OK!
Actually I'm here to ask a question:
I want to use sendkey to do this, but I can't use the traditional method to select the color drop-down menu.
Just run this directly:
@echo off
::tested under xp
<%0 more +7>col.vbs
start rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,2
start col.vbs
exit
wscript.sleep 2000
WScript.CreateObject("WScript.Shell").SendKeys "{tab 4}"
WScript.CreateObject("WScript.Shell").SendKeys "{d}"
WScript.CreateObject("WScript.Shell").SendKeys "{left 15}"
WScript.CreateObject("WScript.Shell").SendKeys "{tab}"
wscript.sleep 1500
msgbox "Could some expert please point this out: how do I send the color drop-down menu? Thanks!"
'WScript.CreateObject("WScript.Shell").SendKeys "{l}"-------------------------------------------------------
Best answer: see post #10 (answered by zh159, slore, thanks here)
[ Last edited by plp626 on 2008-4-8 at 02:18 PM ]


