B4J Question B4jPackager .. how to define Start Menu Group name ?

Starchild

Active Member
Licensed User
Longtime User
When I run the B4j Packager I end up with the Start Menu Group "Unknown" which contains the generated EXE shortcut.
I went through the tutorial but can't find reference to declaring my own name for the start menu group.

Any ideas?
 

Starchild

Active Member
Licensed User
Longtime User
You can use the parameter -Bwin.menuGroup for this.
I added this line
args.Add("-Bwin.menuGroup=ThisGroup")
after the agr.AddAll in the B4jPackager code
but It still installs into the "Unknown" start menu group.

Is there another way to specify the start menu group?
I am surprised others have not had the same problem.
I must be missing something obvious to others.
 
Upvote 0

Lahksman

Active Member
Licensed User
Longtime User
Sorry, my mistake. You need to use the parameter -Bwin.menuGroup in combination with -BmenuHint=True
if -BmenuHint = False the menuGroup parameter is ignored.

Check the javapackager documentation for more info.
 
Upvote 0
Top