Jump to content

How do you hide the start menu and task bar?


mmavipc
 Share

Recommended Posts

How do you hide the start menu and task bar? I'm making a screen saver and I need the start menu and task bar to be hidden. I tried finding the window name except that the window name is "" so I cant do anything with it. Help please

[size="10"]Pure Au3 crypt funcs(I'm currently also working on making a dll from this)[/size][Y] Be more active in the community[Y] Get 200 posts[N] Get 300 posts[N] Make a Topic in the example scripts forum with at least 50 replies.People who currently hate me:ValikSmOke_N

Link to comment
Share on other sites

I got this on the forum somewhere

Func hideStart($i_show = 1) ;hides the start tray
    $opt = Opt("WinTitleMatchMode", 4)
    If $i_show = 0 Then
        WinSetState("[CLASS:Shell_TrayWnd]", "", @SW_SHOW)
        ControlEnable('classname=DV2ControlHost', '', '')
    EndIf
    If $i_show = 1 Then
        WinSetState("[CLASS:Shell_TrayWnd]", "", @SW_HIDE)
        ControlDisable('classname=DV2ControlHost', '', '')
    EndIf
    Opt("WinTitleMatchMode", $opt)
EndFunc   ;==>hideStart
Edited by SoulA
Link to comment
Share on other sites

If you're making a screensaver why not just do something like this?

$GUI = GUICreate("",@DesktopWidth,@DesktopHeight,-1,-1)
WinSetOnTop($GUI,"",1)

That way it's always on top and it's always as big as the screen.

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...