Is there a way to obtain a lisp of the loaded menu ?
(vl-load-com) (setq acadapp (vlax-get-acad-object)) (defun MenuGroups-ListAll ( / out ) (vlax-for each (vla-get-menugroups acadapp) (setq out (cons (vla-get-name each) out)) ) out )