Notifications
Clear all
[Closed] Custom menu to eg Script Editor UI and such?
Feb 10, 2016 7:39 am
Is it possible to add a custom menu to a interface window like MaxScript Editor window, Material Editor window and such?
4 Replies
Feb 10, 2016 7:39 am
to script editor – unlikely, to compact material editor – easy, to such – maybe
Feb 10, 2016 7:39 am
Could you share some code examples to those UI-windows that would support custom menus?
Thanks
Feb 10, 2016 7:39 am
first of all read about menuman in the mxs help
check this example http://forums.cgsociety.org/showpost.php?p=6821806&postcount=18
and it will be better to read its whole thread
Feb 10, 2016 7:39 am
if you want to know all menus where it’s easy to add custom menu item try:
for k=1 to menuman.numMenus() do
(
m = menuman.getmenu k
format "%
" (m.getTitle())
)