fn dumpItem item tab:"" out: =
(
t = item.gettitle()
format (tab + "%\n") t to:out
if not i.getIsSeparator() do
(
s = i.getSubMenu()
if s != undefined do
(
dumpMenu s tab:(tab + "\t") out:out
)
)
)
fn dumpMenu menu tab:"" out: =
(
t = menu.gettitle()
format (tab + "%\n") t to:out
for k=1 to menu.numitems() do
(
i = menu.getitem k
dumpItem i tab:(tab + "\t") out:out
)
)
fn menuInspector menu: tab:"" out: =
(
for k=1 to menuMan.nummenus() do
(
m = menuMan.getmenu k
dumpMenu m tab:(tab + "\t") out:out
)
)
/*
out = newScript()
menuInspector out:out
*/
try this "inspector", uncomment the comments, run, and then use a simple search...
Unfortunately for you, the menu you are looking for goes through a different system (not the Menu Manager) and cannot be extended with pure MXS. The Slate Material Editor has its own set of RC menus.