Search the Community
Showing results for tags 'mnu'.
-
Can I install CUIX file into AutoCAD 2007?
NanGlase posted a topic in The CUI, Hatches, Linetypes, Scripts & Macros
AutoCAD 2007 recognizes cui files only. Can I convert cuix to cui or mnu? I prefer AutoCAD 2007 because it's faster and I don't really need the latest version of it like AutoCAD 2024. -
Hello guys, I have to create and load a simple menu from acaddoc.lsp. This is the mnu file ***MENUGROUP=Cordoli ***POP1 P1-1[Cordoli] P1-2[&Load APP] P1-3[&Help] How can I add istruction to load my lisp in this file? (load "cordoli.vlx") Then i have to load the mnu file via acaddoc.lsp. How can i perform this step? Maybe in this way? (vl-load-com) (setq *mgs* (vla-get-menugroups (vlax-get-acad-object))) (vla-load *mgs* "cordoli") Loading the .mnu file with "_menuload" work with autocad 2009, but with my 2015 it doesn't appear in the menu bar. Thanks for the help! Dennis