Notifications
Clear all

[Closed] Custom menu to eg Script Editor UI and such?

Is it possible to add a custom menu to a interface window like MaxScript Editor window, Material Editor window and such?

4 Replies

to script editor – unlikely, to compact material editor – easy, to such – maybe

Could you share some code examples to those UI-windows that would support custom menus?

Thanks

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

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())
)