Wb-FreeKill Posted February 21, 2005 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
bshoenhair Posted February 21, 2005 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
bastel123 Posted February 21, 2005 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
Wb-FreeKill Posted February 21, 2005 Author 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?
bastel123 Posted February 22, 2005 Posted February 22, 2005 nothings happends? <{POST_SNAPBACK}>oops.... on my system it works. What OS do you use?
Wb-FreeKill Posted February 22, 2005 Author 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
Wb-FreeKill Posted February 22, 2005 Author Posted February 22, 2005 Just tried a Win2k, and still nothing happends
Andre Posted February 22, 2005 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!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now