raedts Posted June 11, 2006 Share Posted June 11, 2006 (edited) First: I used the search function but none of the code's doe what i want.I want the complete taskbar to disappear.No startbutton,no tasktray... nothing...Anyone suggestions?edit: Never mind:Opt("WinTitleMatchMode", 4);advanced classname match If $CmdLine[0] =0 Then Exit;No command line parameters! If $CmdLine[1] = 0 Then WinSetState("classname=Shell_TrayWnd","",@SW_HIDE) Else;non-zero command line arg WinSetState("classname=Shell_TrayWnd","",@SW_SHOW) EndIf>Delete topic< Edited June 11, 2006 by raedts Link to comment Share on other sites More sharing options...
Moderators SmOke_N Posted June 11, 2006 Moderators Share Posted June 11, 2006 (edited) Hide the task bar:Opt('WINTITLEMATCHMODE', 4) ControlHide('classname=Shell_TrayWnd', '', '') Sleep(3000) ControlShow('classname=Shell_TrayWnd', '', '')Or hide each window in the taskbarEdit:P.S. This is the Sripts and Scraps forum, not the support forum Edited June 11, 2006 by SmOke_N Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer. Link to comment Share on other sites More sharing options...
raedts Posted June 11, 2006 Author Share Posted June 11, 2006 Yeah srry, made a mistake. Link to comment Share on other sites More sharing options...
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