Wb-FreeKill 0 Posted February 21, 2005 (edited) I know it is possible to disable/hide the start butten, and clock.. so it aint visible. I guess you have to change something in regedit? but how is it possible? Edited February 21, 2005 by Wb-FreeKill Share this post Link to post Share on other sites
bshoenhair 0 Posted February 21, 2005 (edited) ControlHide ( "title", "text", controlID ) ControlDisable ( "title", "text", controlID) Use "C:\Program Files\AutoIt3\AU3Info.exe" to get the Title, Text & controlID. Edited February 21, 2005 by bshoenhair Share this post Link to post Share on other sites
bastel123 0 Posted February 21, 2005 ControlHide ( "title", "text", controlID )ControlDisable ( "title", "text", controlID)Use "C:\Program Files\AutoIt3\AU3Info.exe" to get the Title, Text & controlID.<{POST_SNAPBACK}>Try this:Opt("WinTitleMatchMode", 4)Opt("WinDetectHiddenText", 1) Controlhide ( "classname=Shell_TrayWnd", "Start", "TrayClockWClass1")Controlhide ( "classname=Shell_TrayWnd", "Start", "Button1")sleep(5000)Controlshow ( "classname=Shell_TrayWnd", "Start", "TrayClockWClass1")Controlshow ( "classname=Shell_TrayWnd", "Start", "Button1")Sebastian Share this post Link to post Share on other sites
Wb-FreeKill 0 Posted February 21, 2005 Try this:Opt("WinTitleMatchMode", 4)Opt("WinDetectHiddenText", 1) Controlhide ( "classname=Shell_TrayWnd", "Start", "TrayClockWClass1")Controlhide ( "classname=Shell_TrayWnd", "Start", "Button1")sleep(5000)Controlshow ( "classname=Shell_TrayWnd", "Start", "TrayClockWClass1")Controlshow ( "classname=Shell_TrayWnd", "Start", "Button1")Sebastian<{POST_SNAPBACK}>nothings happends? Share this post Link to post Share on other sites
bastel123 0 Posted February 22, 2005 nothings happends? <{POST_SNAPBACK}>oops.... on my system it works. What OS do you use? Share this post Link to post Share on other sites
Wb-FreeKill 0 Posted February 22, 2005 oops.... on my system it works. What OS do you use?<{POST_SNAPBACK}>The system i tested it on was a Win XP Danish version with Service pack 2 Share this post Link to post Share on other sites
Wb-FreeKill 0 Posted February 22, 2005 Just tried a Win2k, and still nothing happends Share this post Link to post Share on other sites
Andre 0 Posted February 22, 2005 Hi, Remove the 'text' part and it works... Opt("WinTitleMatchMode", 4) Opt("WinDetectHiddenText", 1) Sleep(1000) Controlhide ( "ClassName=Shell_TrayWnd", "", "TrayClockWClass1") Controlhide ( "ClassName=Shell_TrayWnd", "", "Button1") sleep(5000) Controlshow ( "ClassName=Shell_TrayWnd", "", "TrayClockWClass1") Controlshow ( "ClassName=Shell_TrayWnd", "", "Button1") Andre What about Windows without using AutoIt ?It would be the same as driving a car without an steering Wheel! Share this post Link to post Share on other sites
Wb-FreeKill 0 Posted February 22, 2005 its working know, thx Share this post Link to post Share on other sites