Currently is possible to:
- Keep VLC maximized with system tray icon and taskbar icon
- Keep VLC minimized to systemtray with no taskbar icon
I request possibility to keep VLC maximized, with system tray icon but no taskbar icon.
I temporarily solved this problem with an autohotkey script:
Code: Select all
#NoTrayIcon
DetectHiddenWindows On
sleep, 100
title = VLC Media Player
Control:
ifWinExist, %title%
{
WinHide
WinSet, ExStyle, +0x80
WinShow
}
sleep, 10
Goto, Control