PDA

View Full Version : Unknown MenuMacroID: MMU_1686 in MacroRef



rmoore
2006-04-25, 03:02 PM
Hi all,

When AutoCAD starts, or when I modify the CUI file, I receive several of this type or error message (Approximately 100) displayed on the command line.

Unknown MenuMacroID: MMU_1616 in MacroRef
Unknown MenuMacroID: MMU_1618 in MacroRef
Unknown MenuMacroID: MMU_1620 in MacroRef
Unknown MenuMacroID: MMU_1622 in MacroRef
....
....
....
Unknown MenuMacroID: MMU_2396 in MacroRef
Unknown MenuMacroID: MMU_2398 in MacroRef
Unknown MenuMacroID: MMU_2400 in MacroRef
Unknown MenuMacroID: deub_001 in MacroRef

These Unknown MenuMacroID errors don't seem to be causing any real issue with the way the menus work but it is annoying seeing these displayed everyday.

Can anyone tell me what I'm doing to cause these error messages and is there a way to purge the unknown MenuMacroID's from the CUI file?

Thanks,

Mike.Perry
2006-04-25, 08:44 PM
Hi

Maybe have a browse of the following results ( 8 number ) obtained via an Autodesk Discussion Groups "All AutoCAD Groups" search...

Unknown AND MenuMacroID (http://discussion.autodesk.com/search.jspa?numResults=25&inputEntered=true&source=forumlist%7C8&q=Unknown+AND+MenuMacroID&objID=c8&search.x=0&search.y=0)

Have a good one, Mike

kewltoyz
2012-04-25, 11:52 PM
Open up the CUIx file with WinRAR or WinZip.
You can Edit/Update any of the cui files with notepad then save them back to the cuix file through update in WinRAR/WinZIP when done fixing it. I used Textpad for my default windows editor of cui file extensions in Windows 7.

Meaning, you can find the PopMenu segment that is causing problems and delete the tree it is in.
My Menu errors were this:
Unknown MenuMacroID: MM_0088 in MacroRef
Unknown MenuMacroID: MMU_0280 in MacroRef
Unknown MenuMacroID: ID_XrefClip in MacroRef

I searched in NotePad/TextPad for 0088 and found the guilty portion in the PopMenuRoot.cui

<PopMenu hasDiesel="false" UID="PMU_0088">
<ModifiedRev MajorVersion="18" MinorVersion="0" UserVersion="1" />
<Name xlate="true" UID="XLS_0600">KTA XREF's</Name>
<PopMenuItem IsSeparator="false" hasDiesel="false" UID="PMIU_0646">
<ModifiedRev MajorVersion="18" MinorVersion="0" UserVersion="1" />
<NameRef UID="XLS_0601" xlate="true">Open Xref</NameRef>
<MenuItem>
<MacroRef MenuMacroID="MM_0088" />
</MenuItem>
</PopMenuItem>
<PopMenuItem IsSeparator="false" hasDiesel="false" UID="PMIU_0647">
<ModifiedRev MajorVersion="18" MinorVersion="0" UserVersion="1" />
<NameRef UID="XLS_0602" xlate="true">Attach Xref</NameRef>
<MenuItem>
<MacroRef MenuMacroID="MMU_0280" />
</MenuItem>
</PopMenuItem>
<PopMenuItem IsSeparator="false" hasDiesel="false" UID="PMIU_0648">
<ModifiedRev MajorVersion="18" MinorVersion="0" UserVersion="1" />
<NameRef UID="XLS_0603" xlate="true">Clip, Xref</NameRef>
<MenuItem>
<MacroRef MenuMacroID="ID_XrefClip" />
</MenuItem>
</PopMenuItem>
</PopMenu>


Make sure you grab the opening and closing brackets of the tree you remove.
I removed <PopMenu ...> contents to </PopMenu> to rid myself of the error and let the XML compile still.

And voila, problem should be resolved instead of drowning in the clumsy slow CUI editor that won't find or fix the error for you.

cadpoobah
2012-09-26, 03:20 PM
Open up the CUIx file with WinRAR or WinZip.
You can Edit/Update any of the cui files with notepad then save them back to the cuix file through update in WinRAR/WinZIP when done fixing it.

Beautiful, kewltoyz!!! :beer: Thanks.