Message 1 of 10
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm not very good at Lisp so I cannot figure out why this routine prompts me for a customization file. I think I have that already set but after starting AutoCAD you are prompted to enter a file name. Any help is much appreciated. Thanks
(defun find-menu-file (menu / mnuFile)
(if (or (setq mnuFile (findfile (strcat menu ".cuix")))
); or
mnuFile
)
)
(if (setq mnuFile (find-menu-file "f:\\autocad\\ba-menu\\barton"))
(command "menuload" mnuFile)
)
Solved! Go to Solution.