Page 1 of 1

[Solved] Icon for Submenu in Hamburger Menu?

Posted: 05 Feb 2025 22:06
by Garonne
Is it possible, to assign icons to the submenu entry of a hamburger menu?

Code: Select all

//H

[...]
  LibreOffice // Icon?
    "LibreOffice" ?:\PortableApps\LibreOfficePortable\LibreOfficePortable.exe
[...]
An Icon for that "LibreOffice" Menu? Or a similar menu?
Attaching a Path separated with semicolon didn't work.

Re: Icon for Submenu in Hamburger Menu?

Posted: 06 Feb 2025 10:13
by admin
The icon is at position 3, so try a double semicolon.

Re: Icon for Submenu in Hamburger Menu?

Posted: 06 Feb 2025 14:24
by Garonne
admin wrote: 06 Feb 2025 10:13 The icon is at position 3, so try a double semicolon.
Working.

BTW: I didn't find any info on how to specify a specific icon if you're accessing a multi-icon resource (like an exe file with multiple icons stored). How do I select the second icon stored (or any other besides the first)?

Re: [Solved] Icon for Submenu in Hamburger Menu?

Posted: 06 Feb 2025 16:45
by admin
Like this:

Code: Select all

#101;;%winsysdir%\shell32.dll /160  //multi-icon resources are supported in Hamburger

Re: [Solved] Icon for Submenu in Hamburger Menu?

Posted: 06 Feb 2025 17:04
by Garonne
admin wrote: 06 Feb 2025 16:45 Like this:

Code: Select all

#101;;%winsysdir%\shell32.dll /160  //multi-icon resources are supported in Hamburger
Ahhh... Nice.