<?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: Macro For Plotting in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/macro-for-plotting/m-p/6567467#M128661</link>
    <description>&lt;P&gt;If you are working up your macro as an AutoLISP routine, you would need to get a DCL dialog box associated to the lisp routine.&amp;nbsp; I find DCLs a bit clunky to work with, and they end up usually looking nothing like the windows interface.&amp;nbsp; So, I would recommend looking into at least VBA or best at .NET for dialogs that then will become so much easier and consistent looking to the windows environment.&amp;nbsp; At the 'beginning of VBA' when it was introduced in AutoCAD, I often just made the dialog form, and then assigned my lisp routines to the buttons.&lt;/P&gt;</description>
    <pubDate>Fri, 16 Sep 2016 18:17:37 GMT</pubDate>
    <dc:creator>dennis</dc:creator>
    <dc:date>2016-09-16T18:17:37Z</dc:date>
    <item>
      <title>Macro For Plotting</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/macro-for-plotting/m-p/6554495#M128660</link>
      <description>&lt;P&gt;I am trying to create a macro to plot to a file, but can't get the macro to pull up a browse window instead of requiring a specific file name. &amp;nbsp;I could do it if it needed a file location, but file name is too specific to make this macro useful. &amp;nbsp;Is there a way to have the macro open the "browse for location" window at that point in the macro?&lt;/P&gt;</description>
      <pubDate>Sat, 10 Sep 2016 12:58:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/macro-for-plotting/m-p/6554495#M128660</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-10T12:58:58Z</dc:date>
    </item>
    <item>
      <title>Re: Macro For Plotting</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/macro-for-plotting/m-p/6567467#M128661</link>
      <description>&lt;P&gt;If you are working up your macro as an AutoLISP routine, you would need to get a DCL dialog box associated to the lisp routine.&amp;nbsp; I find DCLs a bit clunky to work with, and they end up usually looking nothing like the windows interface.&amp;nbsp; So, I would recommend looking into at least VBA or best at .NET for dialogs that then will become so much easier and consistent looking to the windows environment.&amp;nbsp; At the 'beginning of VBA' when it was introduced in AutoCAD, I often just made the dialog form, and then assigned my lisp routines to the buttons.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2016 18:17:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/macro-for-plotting/m-p/6567467#M128661</guid>
      <dc:creator>dennis</dc:creator>
      <dc:date>2016-09-16T18:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: Macro For Plotting</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/macro-for-plotting/m-p/6567534#M128662</link>
      <description>&lt;P&gt;To assign a filename inside AutoLisp:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(setq filename (getfiled "Select WHizard Graphics File" "c:/" "dwg" 2))&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2016 18:42:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/macro-for-plotting/m-p/6567534#M128662</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-16T18:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: Macro For Plotting</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/macro-for-plotting/m-p/6567556#M128663</link>
      <description>&lt;P&gt;Another&amp;nbsp;option to consider is OpenDCL. It offers a lot of expanded dialog functionality.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2016 18:51:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/macro-for-plotting/m-p/6567556#M128663</guid>
      <dc:creator>SeeMSixty7</dc:creator>
      <dc:date>2016-09-16T18:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: Macro For Plotting</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/macro-for-plotting/m-p/6568470#M128664</link>
      <description>&lt;P&gt;We are using AutoCAD LT, so we don't have the option to use a lisp routine. &amp;nbsp;Is there a way to get it to work using a macro or a script?&lt;/P&gt;</description>
      <pubDate>Sat, 17 Sep 2016 15:19:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/macro-for-plotting/m-p/6568470#M128664</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-17T15:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: Macro For Plotting</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/macro-for-plotting/m-p/6573694#M128665</link>
      <description>Hi Chris&lt;BR /&gt;try to add a "~" in the macro to open the dialog box.&lt;BR /&gt;Untested.&lt;BR /&gt;&lt;BR /&gt;Henrique</description>
      <pubDate>Tue, 20 Sep 2016 17:31:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/macro-for-plotting/m-p/6573694#M128665</guid>
      <dc:creator>hmsilva</dc:creator>
      <dc:date>2016-09-20T17:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: Macro For Plotting</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/macro-for-plotting/m-p/6574009#M128666</link>
      <description>&lt;P&gt;That's it. &amp;nbsp;Perfect. &amp;nbsp;Now we can macro all of our plotting! &amp;nbsp;Thanks a ton!&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2016 19:23:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/macro-for-plotting/m-p/6574009#M128666</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-20T19:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: Macro For Plotting</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/macro-for-plotting/m-p/6574015#M128667</link>
      <description>You're welcome, &lt;BR /&gt;Glad I could help&lt;BR /&gt;&lt;BR /&gt;Henrique</description>
      <pubDate>Tue, 20 Sep 2016 19:27:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/macro-for-plotting/m-p/6574015#M128667</guid>
      <dc:creator>hmsilva</dc:creator>
      <dc:date>2016-09-20T19:27:14Z</dc:date>
    </item>
  </channel>
</rss>

