topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Friday April 19, 2024, 6:56 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: Cutting out the taskbar  (Read 3726 times)

Jaikrishna

  • Participant
  • Joined in 2009
  • *
  • Posts: 2
    • View Profile
    • Donate to Member
Cutting out the taskbar
« on: March 22, 2009, 09:36 PM »
Is it possible to display only the system tray of the taskbar without the window buttons.
I already tried cut away, but it doesn't cut the taskbar.
I want it because I have the dock in middle of taskbar, but also want to see the system tray.

r0bertdenir0

  • Supporting Member
  • Joined in 2009
  • **
  • Posts: 50
    • View Profile
    • Donate to Member
Re: Cutting out the taskbar
« Reply #1 on: April 30, 2009, 06:16 PM »
This AHK script should let you toggle the taskbar using Shift-Escape

+Esc::
{
    ControlGet, hWndTaskbarAppsBar, hWnd, , Running Applications, ahk_class Shell_TrayWnd

   boolAppToolbarVisible := DllCall("IsWindowVisible", "UInt", hWndTaskbarAppsBar) 
   if(boolAppToolbarVisible)
   {
      WinHide, ahk_id %hWndTaskbarAppsBar%
   }
   else
   {
      WinShow, ahk_id %hWndTaskbarAppsBar%   
   }

return
}