menuMan in 3ds Max 2025
I'm used to install some scripts directly in the Quad Menu but since max 2025 it seems like they've removed "menuMan" functionality, even it's page on the documentation it's gone (I was used to refeer to this: https://help.autodesk.com/view/MAXDEV/2024/ENU/?guid=GUID-258F6015-6B45-... )
Anyone else has encountred this problem or it's just me? And have anybody figured out how to access the quad menu via maxscript?
Comments
Hi
The menu system has been updated in 2025, you need to go to customize/Menu Editor then Quad tabs, you will find the available script by their category names, you have three columns "Action","Group" and "Category", you can sort the Category columns by clicking on "Category" then scroll til you find your script category then you drag it into the quad menu on the right as with previous 3dsmax version, same with Keyboard shortcuts (Customize/HotKey Editor)
Hi Simon
This was clear to me, my concern is about the "menuMan" functionality via Maxscript that until version 2024 allowed to access and modify the menus. Now it is not clear how to add items to the menus via maxscript.
Hi,
Have you read this : https://help.autodesk.com/view/MAXDEV/2025/ENU/?guid=GUID-FF48D0EC-6669-... and https://help.autodesk.com/view/MAXDEV/2025/ENU/?guid=GUID-FFE6591D-2FA7-...
The new system seems much more complicated, i've copied the provided example for the quad menu in script/startup folder and after rebooting i was able to access the new quad menu by control+shift+rightclick.
to get your own script loaded you need to edit line " menu.CreateAction (genGUID()) 647394 "MXS_Demo_Action_Item`Menu Demo Category"",
"MXS_Demo_Action_Item`Menu Demo Category" need to be replaced by "yourScriptName`yourScriptCategory"
I've made a simplified example:
Note that the script need to be launch at 3dsmax start up so copy it to Autodesk\3ds Max 2025\scripts\Startup, and the called script (your own script macro) must be installed.
This script will add a new quad menu accessible with Ctrl+Shift+right click, i still have to figure out how to add item to existing quad menu...
Also it would be better to generate an ID and use it instead of generatring an ID each time (with genGUID()), use "print (genGUID())" to generate an ID and replace "genGUID()"with the result to always use the same ID.
you can also find additional info here:
https://forums.autodesk.com/t5/3ds-max-programming/poor-documenation-for...
and for main menus (not for quadmenus) here:
https://forums.autodesk.com/t5/3ds-max-programming/3ds-max-2025-the-menu...
Edit:
I've been able to add a script to the existing main viewport right click quad menu:
or an other one that also add to existing quad menu on different menu (top left and top right):
In this example i replace the genGUID() by actual ID (pré-generated with "print ( genGUID())").
If you need other menu (bottom left or bottom right) use #BottomRight or #BottomLeft, for additional info check here: https://help.autodesk.com/view/MAXDEV/2025/ENU/?guid=GUID-B815B3FC-6C5A-...