<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-menuload-on-a-menu-button/m-p/899366#M163902</link>
    <description>David,&lt;BR /&gt;
&lt;BR /&gt;
Good Tip!&lt;BR /&gt;
&lt;BR /&gt;
Question: Can you also replace the ***ACCELERATORS section the same way,&lt;BR /&gt;
with the (menucmd) syntax? This would be very helpful to replace Accelerator&lt;BR /&gt;
Hotkeys from a Partial menu.&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
--&lt;BR /&gt;
Phillip Kenewell&lt;BR /&gt;
CAD Systems Technician&lt;BR /&gt;
Air Gage Company&lt;BR /&gt;
pkenewell@airgage.com&lt;BR /&gt;
===================&lt;BR /&gt;
&amp;gt; Not &amp;lt; a Member of the AutoDESK&lt;BR /&gt;
Discussion Forum Moderator Program&lt;BR /&gt;
&lt;BR /&gt;
David Doane &lt;LECTRO-MECH&gt; wrote in message&lt;BR /&gt;
news:01bf10d2$6a921b80$2a57d2d0@lms-1...&lt;BR /&gt;
&amp;gt; and create a MNL file with the same name as your menu, and use the&lt;BR /&gt;
&amp;gt; following as a guide for the contents, and your pull downs should appear&lt;BR /&gt;
&amp;gt; automatically.  You can also put autoloading statements in the MNL file.&lt;BR /&gt;
&amp;gt; Replace AC_LMS with yourmenu name.&lt;BR /&gt;
&amp;gt; (menucmd "B1=AC_LMS.buttons1") ;replaces ACAD.mnu buttons1&lt;BR /&gt;
&amp;gt; (menucmd "B2=AC_LMS.buttons2") ;replaces ACAD.mnu buttons2&lt;BR /&gt;
&amp;gt; (menucmd "B3=AC_LMS.buttons3") ;replaces ACAD.mnu buttons3&lt;BR /&gt;
&amp;gt; (menucmd "B4=AC_LMS.buttons4") ;replaces ACAD.mnu buttons4&lt;BR /&gt;
&amp;gt; (menucmd "A2=AC_LMS.aux2")     ;replaces ACAD.mnu aux2&lt;BR /&gt;
&amp;gt; (menucmd "P13=+AC_LMS.pop1")   ;adds AC_LMS.mnu Pop1 to ACAD.mnu as Pop13&lt;BR /&gt;
&amp;gt; (menucmd "P14=+AC_LMS.pop2")   ;adds AC_LMS.mnu Pop2 to ACAD.mnu as Pop14&lt;BR /&gt;
&amp;gt; (menucmd "P15=+AC_LMS.pop3")   ;adds AC_LMS.mnu Pop3 to ACAD.mnu as Pop15&lt;BR /&gt;
&amp;gt; (menucmd "P16=+AC_LMS.pop4")   ;adds AC_LMS.mnu Pop4 to ACAD.mnu as Pop16&lt;/LECTRO-MECH&gt;</description>
    <pubDate>Fri, 08 Oct 1999 15:07:09 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>1999-10-08T15:07:09Z</dc:date>
    <item>
      <title>using menuload on a menu button</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-menuload-on-a-menu-button/m-p/899362#M163898</link>
      <description>Hi,&lt;BR /&gt;
I have written a partially loadable menu for use in R13. The menu is for the&lt;BR /&gt;
use of the autocad designers at work, is there any way that I can load the&lt;BR /&gt;
menu with a button on the toolbar either using a lisp routine or menu macro&lt;BR /&gt;
rather than doing it manually through menuload? if so how?&lt;BR /&gt;
&lt;BR /&gt;
thanks in advance&lt;BR /&gt;
MICK</description>
      <pubDate>Wed, 06 Oct 1999 14:41:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-menuload-on-a-menu-button/m-p/899362#M163898</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>1999-10-06T14:41:10Z</dc:date>
    </item>
    <item>
      <title>Re: using menuload on a menu button</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-menuload-on-a-menu-button/m-p/899363#M163899</link>
      <description>I don't know about the toolbar part, but from the command line you can use&lt;BR /&gt;
something like this in your ACAD.lsp:&lt;BR /&gt;
&lt;BR /&gt;
(defun C:MNUL ()&lt;BR /&gt;
  (setvar "cmdecho" 0)&lt;BR /&gt;
  (setvar "filedia" 0)&lt;BR /&gt;
  (command "menuload" "yourmenu")&lt;BR /&gt;
  (setvar "filedia" 1)&lt;BR /&gt;
  (princ)&lt;BR /&gt;
)&lt;BR /&gt;
&lt;BR /&gt;
HTH&lt;BR /&gt;
--&lt;BR /&gt;
Dave D&lt;BR /&gt;
&lt;BR /&gt;
Mick &lt;MICK.BUCKLEY&gt; wrote in article&lt;BR /&gt;
&amp;lt;7tfmuq$bn84@adesknews2.autodesk.com&amp;gt;...&lt;BR /&gt;
&amp;gt; Hi,&lt;BR /&gt;
&amp;gt; I have written a partially loadable menu for use in R13. The menu is for&lt;BR /&gt;
the&lt;BR /&gt;
&amp;gt; use of the autocad designers at work, is there any way that I can load&lt;BR /&gt;
the&lt;BR /&gt;
&amp;gt; menu with a button on the toolbar either using a lisp routine or menu&lt;BR /&gt;
macro&lt;BR /&gt;
&amp;gt; rather than doing it manually through menuload? if so how?&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; thanks in advance&lt;BR /&gt;
&amp;gt; MICK&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt;&lt;/MICK.BUCKLEY&gt;</description>
      <pubDate>Wed, 06 Oct 1999 21:05:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-menuload-on-a-menu-button/m-p/899363#M163899</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>1999-10-06T21:05:59Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-menuload-on-a-menu-button/m-p/899364#M163900</link>
      <description>Thaks for the reply Dave,&lt;BR /&gt;
that loads the menu, but how can i load the pull down menu into my standard&lt;BR /&gt;
menu from that point using code?&lt;BR /&gt;
&lt;BR /&gt;
thanks in advance mick</description>
      <pubDate>Thu, 07 Oct 1999 07:30:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-menuload-on-a-menu-button/m-p/899364#M163900</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>1999-10-07T07:30:16Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-menuload-on-a-menu-button/m-p/899365#M163901</link>
      <description>Mick &lt;MICK.BUCKLEY&gt; wrote in article&lt;BR /&gt;
&amp;lt;7thi2p$g0m15@adesknews2.autodesk.com&amp;gt;...&lt;BR /&gt;
&amp;gt; Thaks for the reply Dave,&lt;BR /&gt;
&amp;gt; that loads the menu, but how can i load the pull down menu into my&lt;BR /&gt;
standard&lt;BR /&gt;
&amp;gt; menu from that point using code?&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; thanks in advance mick&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
I'm not sure whether you are overwriting the standard menu or adding to it,&lt;BR /&gt;
but this is what I use to do both.  Make sure that you have the menugroup&lt;BR /&gt;
declaration in your menu, such as:&lt;BR /&gt;
&lt;BR /&gt;
***MENUGROUP=AC_LMS&lt;BR /&gt;
&lt;BR /&gt;
and create a MNL file with the same name as your menu, and use the&lt;BR /&gt;
following as a guide for the contents, and your pull downs should appear&lt;BR /&gt;
automatically.  You can also put autoloading statements in the MNL file.&lt;BR /&gt;
Replace AC_LMS with yourmenu name.&lt;BR /&gt;
&lt;BR /&gt;
;;; AutoLISP routines used by the AC_LMS conversion Menu.&lt;BR /&gt;
&lt;BR /&gt;
;;; This file is loaded automatically following the menu AC_LMS&lt;BR /&gt;
&lt;BR /&gt;
;;; Overrides the ACAD Menu buttons and places the&lt;BR /&gt;
;;; LMS pulldown menus after the help pulldown menu&lt;BR /&gt;
;;; POP0 is handled on an individual basis in menus&lt;BR /&gt;
&lt;BR /&gt;
(princ "\nAC_LMS menu loaded ")                  ;indicates that menu&lt;BR /&gt;
loaded&lt;BR /&gt;
(princ "\nAC_LMS menu conversion &amp;amp; utilities ")  ;indicates that your&lt;BR /&gt;
mnl...&lt;BR /&gt;
&lt;BR /&gt;
(menucmd "B1=AC_LMS.buttons1") ;replaces ACAD.mnu buttons1&lt;BR /&gt;
(menucmd "B2=AC_LMS.buttons2") ;replaces ACAD.mnu buttons2&lt;BR /&gt;
(menucmd "B3=AC_LMS.buttons3") ;replaces ACAD.mnu buttons3&lt;BR /&gt;
(menucmd "B4=AC_LMS.buttons4") ;replaces ACAD.mnu buttons4&lt;BR /&gt;
(menucmd "A2=AC_LMS.aux2")     ;replaces ACAD.mnu aux2&lt;BR /&gt;
(menucmd "P13=+AC_LMS.pop1")   ;adds AC_LMS.mnu Pop1 to ACAD.mnu as Pop13&lt;BR /&gt;
(menucmd "P14=+AC_LMS.pop2")   ;adds AC_LMS.mnu Pop2 to ACAD.mnu as Pop14&lt;BR /&gt;
(menucmd "P15=+AC_LMS.pop3")   ;adds AC_LMS.mnu Pop3 to ACAD.mnu as Pop15&lt;BR /&gt;
(menucmd "P16=+AC_LMS.pop4")   ;adds AC_LMS.mnu Pop4 to ACAD.mnu as Pop16&lt;BR /&gt;
&lt;BR /&gt;
(princ "loaded.")                                ;...is loaded&lt;BR /&gt;
&lt;BR /&gt;
Hope this gives you some ideas.&lt;BR /&gt;
--&lt;BR /&gt;
Dave D&lt;/MICK.BUCKLEY&gt;</description>
      <pubDate>Thu, 07 Oct 1999 14:46:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-menuload-on-a-menu-button/m-p/899365#M163901</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>1999-10-07T14:46:39Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-menuload-on-a-menu-button/m-p/899366#M163902</link>
      <description>David,&lt;BR /&gt;
&lt;BR /&gt;
Good Tip!&lt;BR /&gt;
&lt;BR /&gt;
Question: Can you also replace the ***ACCELERATORS section the same way,&lt;BR /&gt;
with the (menucmd) syntax? This would be very helpful to replace Accelerator&lt;BR /&gt;
Hotkeys from a Partial menu.&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
--&lt;BR /&gt;
Phillip Kenewell&lt;BR /&gt;
CAD Systems Technician&lt;BR /&gt;
Air Gage Company&lt;BR /&gt;
pkenewell@airgage.com&lt;BR /&gt;
===================&lt;BR /&gt;
&amp;gt; Not &amp;lt; a Member of the AutoDESK&lt;BR /&gt;
Discussion Forum Moderator Program&lt;BR /&gt;
&lt;BR /&gt;
David Doane &lt;LECTRO-MECH&gt; wrote in message&lt;BR /&gt;
news:01bf10d2$6a921b80$2a57d2d0@lms-1...&lt;BR /&gt;
&amp;gt; and create a MNL file with the same name as your menu, and use the&lt;BR /&gt;
&amp;gt; following as a guide for the contents, and your pull downs should appear&lt;BR /&gt;
&amp;gt; automatically.  You can also put autoloading statements in the MNL file.&lt;BR /&gt;
&amp;gt; Replace AC_LMS with yourmenu name.&lt;BR /&gt;
&amp;gt; (menucmd "B1=AC_LMS.buttons1") ;replaces ACAD.mnu buttons1&lt;BR /&gt;
&amp;gt; (menucmd "B2=AC_LMS.buttons2") ;replaces ACAD.mnu buttons2&lt;BR /&gt;
&amp;gt; (menucmd "B3=AC_LMS.buttons3") ;replaces ACAD.mnu buttons3&lt;BR /&gt;
&amp;gt; (menucmd "B4=AC_LMS.buttons4") ;replaces ACAD.mnu buttons4&lt;BR /&gt;
&amp;gt; (menucmd "A2=AC_LMS.aux2")     ;replaces ACAD.mnu aux2&lt;BR /&gt;
&amp;gt; (menucmd "P13=+AC_LMS.pop1")   ;adds AC_LMS.mnu Pop1 to ACAD.mnu as Pop13&lt;BR /&gt;
&amp;gt; (menucmd "P14=+AC_LMS.pop2")   ;adds AC_LMS.mnu Pop2 to ACAD.mnu as Pop14&lt;BR /&gt;
&amp;gt; (menucmd "P15=+AC_LMS.pop3")   ;adds AC_LMS.mnu Pop3 to ACAD.mnu as Pop15&lt;BR /&gt;
&amp;gt; (menucmd "P16=+AC_LMS.pop4")   ;adds AC_LMS.mnu Pop4 to ACAD.mnu as Pop16&lt;/LECTRO-MECH&gt;</description>
      <pubDate>Fri, 08 Oct 1999 15:07:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-menuload-on-a-menu-button/m-p/899366#M163902</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>1999-10-08T15:07:09Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-menuload-on-a-menu-button/m-p/899367#M163903</link>
      <description>Not that I know of.  Actually I have been unable to find any info in 'help'&lt;BR /&gt;
on just what sections of the menu may be partially loaded.&lt;BR /&gt;
&lt;BR /&gt;
To my knowledge, P is for pulldowns, A for Auxilliary, B for buttons, S for&lt;BR /&gt;
Screen, and T for tablet.  I don't know of a key for Accelerators.&lt;BR /&gt;
&lt;BR /&gt;
It seems like there was a thread on that some time ago.&lt;BR /&gt;
&lt;BR /&gt;
Dave D&lt;BR /&gt;
&lt;BR /&gt;
Phil Kenewell &lt;PKENEWELL&gt; wrote in article&lt;BR /&gt;
&amp;lt;7tl1ec$plu6@adesknews2.autodesk.com&amp;gt;...&lt;BR /&gt;
&amp;gt; David,&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; Good Tip!&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; Question: Can you also replace the ***ACCELERATORS section the same way,&lt;BR /&gt;
&amp;gt; with the (menucmd) syntax? This would be very helpful to replace&lt;BR /&gt;
Accelerator&lt;BR /&gt;
&amp;gt; Hotkeys from a Partial menu.&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; Regards,&lt;BR /&gt;
&amp;gt; --&lt;BR /&gt;
&amp;gt; Phillip Kenewell&lt;BR /&gt;
&amp;gt; CAD Systems Technician&lt;BR /&gt;
&amp;gt; Air Gage Company&lt;BR /&gt;
&amp;gt; pkenewell@airgage.com&lt;BR /&gt;
&amp;gt; ===================&lt;BR /&gt;
&amp;gt; &amp;gt; Not &amp;lt; a Member of the AutoDESK&lt;BR /&gt;
&amp;gt; Discussion Forum Moderator Program&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; David Doane &lt;LECTRO-MECH&gt; wrote in message&lt;BR /&gt;
&amp;gt; news:01bf10d2$6a921b80$2a57d2d0@lms-1...&lt;BR /&gt;
&amp;gt; &amp;gt; and create a MNL file with the same name as your menu, and use the&lt;BR /&gt;
&amp;gt; &amp;gt; following as a guide for the contents, and your pull downs should&lt;BR /&gt;
appear&lt;BR /&gt;
&amp;gt; &amp;gt; automatically.  You can also put autoloading statements in the MNL&lt;BR /&gt;
file.&lt;BR /&gt;
&amp;gt; &amp;gt; Replace AC_LMS with yourmenu name.&lt;BR /&gt;
&amp;gt; &amp;gt; (menucmd "B1=AC_LMS.buttons1") ;replaces ACAD.mnu buttons1&lt;BR /&gt;
&amp;gt; &amp;gt; (menucmd "B2=AC_LMS.buttons2") ;replaces ACAD.mnu buttons2&lt;BR /&gt;
&amp;gt; &amp;gt; (menucmd "B3=AC_LMS.buttons3") ;replaces ACAD.mnu buttons3&lt;BR /&gt;
&amp;gt; &amp;gt; (menucmd "B4=AC_LMS.buttons4") ;replaces ACAD.mnu buttons4&lt;BR /&gt;
&amp;gt; &amp;gt; (menucmd "A2=AC_LMS.aux2")     ;replaces ACAD.mnu aux2&lt;BR /&gt;
&amp;gt; &amp;gt; (menucmd "P13=+AC_LMS.pop1")   ;adds AC_LMS.mnu Pop1 to ACAD.mnu as&lt;BR /&gt;
Pop13&lt;BR /&gt;
&amp;gt; &amp;gt; (menucmd "P14=+AC_LMS.pop2")   ;adds AC_LMS.mnu Pop2 to ACAD.mnu as&lt;BR /&gt;
Pop14&lt;BR /&gt;
&amp;gt; &amp;gt; (menucmd "P15=+AC_LMS.pop3")   ;adds AC_LMS.mnu Pop3 to ACAD.mnu as&lt;BR /&gt;
Pop15&lt;BR /&gt;
&amp;gt; &amp;gt; (menucmd "P16=+AC_LMS.pop4")   ;adds AC_LMS.mnu Pop4 to ACAD.mnu as&lt;BR /&gt;
Pop16&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt;&lt;/LECTRO-MECH&gt;&lt;/PKENEWELL&gt;</description>
      <pubDate>Fri, 08 Oct 1999 17:20:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-menuload-on-a-menu-button/m-p/899367#M163903</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>1999-10-08T17:20:37Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-menuload-on-a-menu-button/m-p/899368#M163904</link>
      <description>As I understand it you can use:&lt;BR /&gt;
&lt;BR /&gt;
(menucmd "GACAD.ACCELERATORS=YOURGROUPNAME.ACCELERATORS")&lt;BR /&gt;
&lt;BR /&gt;
But it only works if you call it after s::startup. To get around that I&lt;BR /&gt;
unload and reload my custom partial menu (which contains my accelerators)&lt;BR /&gt;
every drawing startup.&lt;BR /&gt;
&lt;BR /&gt;
Dan&lt;BR /&gt;
&lt;BR /&gt;
David Doane &lt;LECTRO-MECH&gt; wrote in message&lt;BR /&gt;
news:01bf11b0$f18f9b60$3457d2d0@lms-1...&lt;BR /&gt;
&amp;gt; Not that I know of.  Actually I have been unable to find any info in&lt;BR /&gt;
'help'&lt;BR /&gt;
&amp;gt; on just what sections of the menu may be partially loaded.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; To my knowledge, P is for pulldowns, A for Auxilliary, B for buttons, S&lt;BR /&gt;
for&lt;BR /&gt;
&amp;gt; Screen, and T for tablet.  I don't know of a key for Accelerators.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; It seems like there was a thread on that some time ago.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Dave D&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Phil Kenewell &lt;PKENEWELL&gt; wrote in article&lt;BR /&gt;
&amp;gt; &amp;lt;7tl1ec$plu6@adesknews2.autodesk.com&amp;gt;...&lt;BR /&gt;
&amp;gt; &amp;gt; David,&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; Good Tip!&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; Question: Can you also replace the ***ACCELERATORS section the same way,&lt;BR /&gt;
&amp;gt; &amp;gt; with the (menucmd) syntax? This would be very helpful to replace&lt;BR /&gt;
&amp;gt; Accelerator&lt;BR /&gt;
&amp;gt; &amp;gt; Hotkeys from a Partial menu.&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; Regards,&lt;BR /&gt;
&amp;gt; &amp;gt; --&lt;BR /&gt;
&amp;gt; &amp;gt; Phillip Kenewell&lt;BR /&gt;
&amp;gt; &amp;gt; CAD Systems Technician&lt;BR /&gt;
&amp;gt; &amp;gt; Air Gage Company&lt;BR /&gt;
&amp;gt; &amp;gt; pkenewell@airgage.com&lt;BR /&gt;
&amp;gt; &amp;gt; ===================&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Not &amp;lt; a Member of the AutoDESK&lt;BR /&gt;
&amp;gt; &amp;gt; Discussion Forum Moderator Program&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; David Doane &lt;LECTRO-MECH&gt; wrote in message&lt;BR /&gt;
&amp;gt; &amp;gt; news:01bf10d2$6a921b80$2a57d2d0@lms-1...&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; and create a MNL file with the same name as your menu, and use the&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; following as a guide for the contents, and your pull downs should&lt;BR /&gt;
&amp;gt; appear&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; automatically.  You can also put autoloading statements in the MNL&lt;BR /&gt;
&amp;gt; file.&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Replace AC_LMS with yourmenu name.&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; (menucmd "B1=AC_LMS.buttons1") ;replaces ACAD.mnu buttons1&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; (menucmd "B2=AC_LMS.buttons2") ;replaces ACAD.mnu buttons2&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; (menucmd "B3=AC_LMS.buttons3") ;replaces ACAD.mnu buttons3&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; (menucmd "B4=AC_LMS.buttons4") ;replaces ACAD.mnu buttons4&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; (menucmd "A2=AC_LMS.aux2")     ;replaces ACAD.mnu aux2&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; (menucmd "P13=+AC_LMS.pop1")   ;adds AC_LMS.mnu Pop1 to ACAD.mnu as&lt;BR /&gt;
&amp;gt; Pop13&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; (menucmd "P14=+AC_LMS.pop2")   ;adds AC_LMS.mnu Pop2 to ACAD.mnu as&lt;BR /&gt;
&amp;gt; Pop14&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; (menucmd "P15=+AC_LMS.pop3")   ;adds AC_LMS.mnu Pop3 to ACAD.mnu as&lt;BR /&gt;
&amp;gt; Pop15&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; (menucmd "P16=+AC_LMS.pop4")   ;adds AC_LMS.mnu Pop4 to ACAD.mnu as&lt;BR /&gt;
&amp;gt; Pop16&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;/LECTRO-MECH&gt;&lt;/PKENEWELL&gt;&lt;/LECTRO-MECH&gt;</description>
      <pubDate>Fri, 08 Oct 1999 18:59:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-menuload-on-a-menu-button/m-p/899368#M163904</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>1999-10-08T18:59:59Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-menuload-on-a-menu-button/m-p/899369#M163905</link>
      <description>I have never had that work.  And as I understand it from this newsgroup, it&lt;BR /&gt;
was never intended to work.  (why I don't know - it should!)&lt;BR /&gt;
I gave up on the forced reload, as it added extra time to every load, and&lt;BR /&gt;
just replaced the whole section in the acad menu (local version on my&lt;BR /&gt;
machine).&lt;BR /&gt;
&lt;BR /&gt;
A minor inconvenience...&lt;BR /&gt;
&lt;BR /&gt;
P. Farrell</description>
      <pubDate>Fri, 08 Oct 1999 20:08:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-menuload-on-a-menu-button/m-p/899369#M163905</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>1999-10-08T20:08:22Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-menuload-on-a-menu-button/m-p/899370#M163906</link>
      <description>It actually works for us in R14. I have the custom menus in a shared network&lt;BR /&gt;
directory and I just call (command "_.menuunload" "menu") and (command&lt;BR /&gt;
"_.menuload" "menu")  in the s::startup. The extra load time is worth the&lt;BR /&gt;
global office accelerators.&lt;BR /&gt;
&lt;BR /&gt;
Peter Farrell &lt;PFARRELL&gt; wrote in message&lt;BR /&gt;
news:7tliu8$rus2@adesknews2.autodesk.com...&lt;BR /&gt;
&amp;gt; I have never had that work.  And as I understand it from this newsgroup,&lt;BR /&gt;
it&lt;BR /&gt;
&amp;gt; was never intended to work.  (why I don't know - it should!)&lt;BR /&gt;
&amp;gt; I gave up on the forced reload, as it added extra time to every load, and&lt;BR /&gt;
&amp;gt; just replaced the whole section in the acad menu (local version on my&lt;BR /&gt;
&amp;gt; machine).&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; A minor inconvenience...&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; P. Farrell&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;/PFARRELL&gt;</description>
      <pubDate>Fri, 08 Oct 1999 23:04:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-menuload-on-a-menu-button/m-p/899370#M163906</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>1999-10-08T23:04:26Z</dc:date>
    </item>
    <item>
      <title>using menuload for Accelerators - WORKS</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-menuload-on-a-menu-button/m-p/899371#M163907</link>
      <description>Well, ain't that a B.....!&lt;BR /&gt;
&lt;BR /&gt;
I tried exactly that and it didn't work in A2K.  I received an AutoLISP&lt;BR /&gt;
error message when the mnl loaded.&lt;BR /&gt;
&lt;BR /&gt;
Just for kicks, I copied your statement under mine, THEN I discovered I had&lt;BR /&gt;
left off the closing quotes.  Grrrrrr.&lt;BR /&gt;
&lt;BR /&gt;
Now it works just fine, and with the menu loading in the normal order,&lt;BR /&gt;
which is before S::Startup is loaded.&lt;BR /&gt;
&lt;BR /&gt;
So to repost what I did for Mick, the mnl entries would be:&lt;BR /&gt;
&lt;BR /&gt;
;;; AutoLISP routines used by the AC_LMS conversion Menu.&lt;BR /&gt;
&lt;BR /&gt;
;;; This file is loaded automatically following the menu AC_LMS&lt;BR /&gt;
&lt;BR /&gt;
;;; Overrides the ACAD Menu buttons and places the&lt;BR /&gt;
;;; LMS pulldown menus after the help pulldown menu&lt;BR /&gt;
;;; POP0 is handled on an individual basis in menus&lt;BR /&gt;
&lt;BR /&gt;
(princ "\nAC_LMS menu loaded ")             ;indicates that menu loaded&lt;BR /&gt;
(princ "\nAC_LMS menu conversion &amp;amp; utilities ")  ;indicates that mnl...&lt;BR /&gt;
&lt;BR /&gt;
(menucmd "B1=AC_LMS.buttons1") ;replaces ACAD.mnu buttons1&lt;BR /&gt;
(menucmd "B2=AC_LMS.buttons2") ;replaces ACAD.mnu buttons2&lt;BR /&gt;
(menucmd "B3=AC_LMS.buttons3") ;replaces ACAD.mnu buttons3&lt;BR /&gt;
(menucmd "B4=AC_LMS.buttons4") ;replaces ACAD.mnu buttons4&lt;BR /&gt;
(menucmd "A2=AC_LMS.aux2")     ;replaces ACAD.mnu aux2&lt;BR /&gt;
(menucmd "GACAD.ACCELERATORS=AC_LMS.ACCELERATORS") ;replaces ACAD.mnu ACC.&lt;BR /&gt;
(menucmd "P13=+AC_LMS.pop1")   ;adds AC_LMS.mnu Pop1 to ACAD.mnu as Pop13&lt;BR /&gt;
(menucmd "P14=+AC_LMS.pop2")   ;adds AC_LMS.mnu Pop2 to ACAD.mnu as Pop14&lt;BR /&gt;
(menucmd "P15=+AC_LMS.pop3")   ;adds AC_LMS.mnu Pop3 to ACAD.mnu as Pop15&lt;BR /&gt;
(menucmd "P16=+AC_LMS.pop4")   ;adds AC_LMS.mnu Pop4 to ACAD.mnu as Pop16&lt;BR /&gt;
&lt;BR /&gt;
(princ "loaded.")                                ;...is loaded&lt;BR /&gt;
&lt;BR /&gt;
And just for kicks, I will include what I found to be the loading order of:&lt;BR /&gt;
&lt;BR /&gt;
Order:    File:                For use by:&lt;BR /&gt;
&lt;BR /&gt;
1.        acad.rx              User&lt;BR /&gt;
2.        acad2000.lsp         Autodesk&lt;BR /&gt;
3.        acad.lsp             User&lt;BR /&gt;
4.        acad2000doc.lsp      Autodesk&lt;BR /&gt;
5.        acettest.fas         Express Tools  (or acetutil.fas)&lt;BR /&gt;
6.        acetauto.lsp         Express Tools&lt;BR /&gt;
7.        acetloc.lsp          Express Tools&lt;BR /&gt;
8.        acaddoc.lsp          User&lt;BR /&gt;
9.        mymenu.mnc           User&lt;BR /&gt;
10.       mymenu.mnl           User&lt;BR /&gt;
11.       mylisp.lsp           User&lt;BR /&gt;
12.       acad.mnc             Autodesk&lt;BR /&gt;
13.       acad.mnl             Autodesk&lt;BR /&gt;
14.       acetmain.mnc         Express Tools&lt;BR /&gt;
15.       acetmain.mnl         Express Tools&lt;BR /&gt;
16.       acad.lsp s::startup  User&lt;BR /&gt;
&lt;BR /&gt;
Thanks for the wakeup call, Dan.&lt;BR /&gt;
--&lt;BR /&gt;
Dave D&lt;BR /&gt;
&lt;BR /&gt;
Dan Allen &lt;ALLENNOSPAM&gt; wrote in article&lt;BR /&gt;
&amp;lt;7tlf33$pl017@adesknews2.autodesk.com&amp;gt;...&lt;BR /&gt;
&amp;gt; As I understand it you can use:&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; (menucmd "GACAD.ACCELERATORS=YOURGROUPNAME.ACCELERATORS")&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; But it only works if you call it after s::startup. To get around that I&lt;BR /&gt;
&amp;gt; unload and reload my custom partial menu (which contains my accelerators)&lt;BR /&gt;
&amp;gt; every drawing startup.&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; Dan&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; David Doane &lt;LECTRO-MECH&gt; wrote in message&lt;BR /&gt;
&amp;gt; news:01bf11b0$f18f9b60$3457d2d0@lms-1...&lt;BR /&gt;
&amp;gt; &amp;gt; Not that I know of.  Actually I have been unable to find any info in&lt;BR /&gt;
&amp;gt; 'help'&lt;BR /&gt;
&amp;gt; &amp;gt; on just what sections of the menu may be partially loaded.&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; To my knowledge, P is for pulldowns, A for Auxilliary, B for buttons, S&lt;BR /&gt;
&amp;gt; for&lt;BR /&gt;
&amp;gt; &amp;gt; Screen, and T for tablet.  I don't know of a key for Accelerators.&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; It seems like there was a thread on that some time ago.&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; Dave D&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; Phil Kenewell &lt;PKENEWELL&gt; wrote in article&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;lt;7tl1ec$plu6@adesknews2.autodesk.com&amp;gt;...&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; David,&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Good Tip!&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Question: Can you also replace the ***ACCELERATORS section the same&lt;BR /&gt;
way,&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; with the (menucmd) syntax? This would be very helpful to replace&lt;BR /&gt;
&amp;gt; &amp;gt; Accelerator&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Hotkeys from a Partial menu.&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Regards,&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; --&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Phillip Kenewell&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; CAD Systems Technician&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Air Gage Company&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; pkenewell@airgage.com&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; ===================&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; Not &amp;lt; a Member of the AutoDESK&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Discussion Forum Moderator Program&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; David Doane &lt;LECTRO-MECH&gt; wrote in message&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; news:01bf10d2$6a921b80$2a57d2d0@lms-1...&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; and create a MNL file with the same name as your menu, and use the&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; following as a guide for the contents, and your pull downs should&lt;BR /&gt;
&amp;gt; &amp;gt; appear&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; automatically.  You can also put autoloading statements in the MNL&lt;BR /&gt;
&amp;gt; &amp;gt; file.&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; Replace AC_LMS with yourmenu name.&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; (menucmd "B1=AC_LMS.buttons1") ;replaces ACAD.mnu buttons1&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; (menucmd "B2=AC_LMS.buttons2") ;replaces ACAD.mnu buttons2&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; (menucmd "B3=AC_LMS.buttons3") ;replaces ACAD.mnu buttons3&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; (menucmd "B4=AC_LMS.buttons4") ;replaces ACAD.mnu buttons4&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; (menucmd "A2=AC_LMS.aux2")     ;replaces ACAD.mnu aux2&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; (menucmd "P13=+AC_LMS.pop1")   ;adds AC_LMS.mnu Pop1 to ACAD.mnu as&lt;BR /&gt;
&amp;gt; &amp;gt; Pop13&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; (menucmd "P14=+AC_LMS.pop2")   ;adds AC_LMS.mnu Pop2 to ACAD.mnu as&lt;BR /&gt;
&amp;gt; &amp;gt; Pop14&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; (menucmd "P15=+AC_LMS.pop3")   ;adds AC_LMS.mnu Pop3 to ACAD.mnu as&lt;BR /&gt;
&amp;gt; &amp;gt; Pop15&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; (menucmd "P16=+AC_LMS.pop4")   ;adds AC_LMS.mnu Pop4 to ACAD.mnu as&lt;BR /&gt;
&amp;gt; &amp;gt; Pop16&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt;&lt;/LECTRO-MECH&gt;&lt;/PKENEWELL&gt;&lt;/LECTRO-MECH&gt;&lt;/ALLENNOSPAM&gt;</description>
      <pubDate>Sat, 09 Oct 1999 02:24:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-menuload-on-a-menu-button/m-p/899371#M163907</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>1999-10-09T02:24:48Z</dc:date>
    </item>
    <item>
      <title>using menuload for Accelerators - WORKS</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-menuload-on-a-menu-button/m-p/899372#M163908</link>
      <description>Thanks Everyone! This will really help out - I've been trying to figure out&lt;BR /&gt;
a way to do this for a while.&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
Phillip Kenewell&lt;BR /&gt;
CAD Systems Technician&lt;BR /&gt;
Air Gage Company&lt;BR /&gt;
pkenewell@airgage.com&lt;BR /&gt;
===================&lt;BR /&gt;
&amp;gt; Not &amp;lt; a Member of the AutoDESK&lt;BR /&gt;
Discussion Forum Moderator Program&lt;BR /&gt;
&lt;BR /&gt;
David Doane &lt;LECTRO-MECH&gt; wrote in message&lt;BR /&gt;
news:01bf11fd$0a6d5a40$3457d2d0@lms-1...&lt;BR /&gt;
&amp;gt; (princ "\nAC_LMS menu loaded ")             ;indicates that menu loaded&lt;BR /&gt;
&amp;gt; (princ "\nAC_LMS menu conversion &amp;amp; utilities ")  ;indicates that mnl...&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; (menucmd "B1=AC_LMS.buttons1") ;replaces ACAD.mnu buttons1&lt;BR /&gt;
&amp;gt; (menucmd "B2=AC_LMS.buttons2") ;replaces ACAD.mnu buttons2&lt;BR /&gt;
&amp;gt; (menucmd "B3=AC_LMS.buttons3") ;replaces ACAD.mnu buttons3&lt;BR /&gt;
&amp;gt; (menucmd "B4=AC_LMS.buttons4") ;replaces ACAD.mnu buttons4&lt;BR /&gt;
&amp;gt; (menucmd "A2=AC_LMS.aux2")     ;replaces ACAD.mnu aux2&lt;BR /&gt;
&amp;gt; (menucmd "GACAD.ACCELERATORS=AC_LMS.ACCELERATORS") ;replaces ACAD.mnu ACC.&lt;BR /&gt;
&amp;gt; (menucmd "P13=+AC_LMS.pop1")   ;adds AC_LMS.mnu Pop1 to ACAD.mnu as Pop13&lt;BR /&gt;
&amp;gt; (menucmd "P14=+AC_LMS.pop2")   ;adds AC_LMS.mnu Pop2 to ACAD.mnu as Pop14&lt;BR /&gt;
&amp;gt; (menucmd "P15=+AC_LMS.pop3")   ;adds AC_LMS.mnu Pop3 to ACAD.mnu as Pop15&lt;BR /&gt;
&amp;gt; (menucmd "P16=+AC_LMS.pop4")   ;adds AC_LMS.mnu Pop4 to ACAD.mnu as Pop16&lt;/LECTRO-MECH&gt;</description>
      <pubDate>Mon, 11 Oct 1999 12:13:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/using-menuload-on-a-menu-button/m-p/899372#M163908</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>1999-10-11T12:13:50Z</dc:date>
    </item>
  </channel>
</rss>

