Jump to content

Hide Taskbar


raedts
 Share

Recommended Posts

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 by raedts
Link to comment
Share on other sites

  • Moderators

Hide the task bar:

Opt('WINTITLEMATCHMODE', 4)
ControlHide('classname=Shell_TrayWnd', '', '')
Sleep(3000)
ControlShow('classname=Shell_TrayWnd', '', '')

Or hide each window in the taskbar

Edit:

P.S. This is the Sripts and Scraps forum, not the support forum :D

Edited 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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...