<?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: CUSTOM PULL DOWN MENU FOR BLOCK LIBRARY in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/custom-pull-down-menu-for-block-library/m-p/8537725#M93862</link>
    <description>Any reason you want to avoid using ADCENTER or TOOLPALETTEs for this simple task? Never take any more clicks hat hunting/clicking a pulldown menu.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Mon, 21 Jan 2019 14:58:56 GMT</pubDate>
    <dc:creator>pendean</dc:creator>
    <dc:date>2019-01-21T14:58:56Z</dc:date>
    <item>
      <title>CUSTOM PULL DOWN MENU FOR BLOCK LIBRARY</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/custom-pull-down-menu-for-block-library/m-p/8535938#M93860</link>
      <description>&lt;P&gt;AutoCad 2012&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First off, I'm not accustomed to programming in AutoCad. I have been having my block library folder open right next to AutoCad so I can just drag and drop .dwgs into the drawing I'm working on.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) How do I create a pull down menu that can pull blocks from my block library? Or, what is a good document to show me how?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2) Is it possible to make the pulldown sub-menu follow the filepaths without having to program in every single sub-filepath?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- I have already looked into making pallets. This is not what I am looking for.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3) Is there a way to make it so that when you do bring in a block, it doesn't ask you what x,y scale and angle you want it to be?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 20 Jan 2019 18:36:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/custom-pull-down-menu-for-block-library/m-p/8535938#M93860</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-20T18:36:37Z</dc:date>
    </item>
    <item>
      <title>Re: CUSTOM PULL DOWN MENU FOR BLOCK LIBRARY</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/custom-pull-down-menu-for-block-library/m-p/8537104#M93861</link>
      <description>&lt;P&gt;Read&amp;nbsp;&lt;A href="https://knowledge.autodesk.com/support/autocad-lt/learn-explore/caas/CloudHelp/cloudhelp/2018/ENU/AutoCAD-LT/files/GUID-43C45D41-070A-4A34-BBA4-3400B8AD28B3-htm.html" target="_blank"&gt;this&lt;/A&gt;&amp;nbsp;for creating a pulldown menu.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The command will be one of the following...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have a support path set to your block folder;&lt;/P&gt;
&lt;P&gt;^C^C-insert;Block.dwg;Scale;1;0,0,0;0;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you dont, then use;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;^C^Cinsert;PATH AND NAME OF BLOCK;1;0,0,0;0;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I personally like to place all my block on a tool palette. You can drag and drop them too the palette, then right click and select properties. There you can set how you want the block to come in.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jan 2019 11:21:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/custom-pull-down-menu-for-block-library/m-p/8537104#M93861</guid>
      <dc:creator>Jonathan3891</dc:creator>
      <dc:date>2019-01-21T11:21:54Z</dc:date>
    </item>
    <item>
      <title>Re: CUSTOM PULL DOWN MENU FOR BLOCK LIBRARY</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/custom-pull-down-menu-for-block-library/m-p/8537725#M93862</link>
      <description>Any reason you want to avoid using ADCENTER or TOOLPALETTEs for this simple task? Never take any more clicks hat hunting/clicking a pulldown menu.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 21 Jan 2019 14:58:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/custom-pull-down-menu-for-block-library/m-p/8537725#M93862</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2019-01-21T14:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: CUSTOM PULL DOWN MENU FOR BLOCK LIBRARY</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/custom-pull-down-menu-for-block-library/m-p/8537734#M93863</link>
      <description>I DON'T REALLY CARE FOR THE TOOL PALLET BECAUSE I JUST HAVE WAY TO MANY BLOCKS TO SORT THROUGH.&lt;BR /&gt;&lt;BR /&gt;The ADCENTER makes me type in a scale for x,y and an angle for putting in the block. I'd like to have it where I can just drag and drop it in the drawing without having to do the inputs. Like if the inputs for the scale where just automatically set to 1,1,0=x,y,angle.&lt;BR /&gt;</description>
      <pubDate>Mon, 21 Jan 2019 15:03:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/custom-pull-down-menu-for-block-library/m-p/8537734#M93863</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-21T15:03:04Z</dc:date>
    </item>
  </channel>
</rss>

