<?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 Adding a command at AutoCAD Startup in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/adding-a-command-at-autocad-startup/m-p/9720749#M70797</link>
    <description>&lt;P&gt;I want to add a simple command at AutoCAD 2021 startup.&amp;nbsp; The command is&amp;nbsp;&lt;SPAN&gt;(setvar "osnapz" 1).&amp;nbsp; Everything I read says to add the command to acaddoc.lsp but I cannot find this file in AutoCAD 2021.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Any Ideas,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Allen&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 31 Aug 2020 12:24:17 GMT</pubDate>
    <dc:creator>awadsworth8Q4WM</dc:creator>
    <dc:date>2020-08-31T12:24:17Z</dc:date>
    <item>
      <title>Adding a command at AutoCAD Startup</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/adding-a-command-at-autocad-startup/m-p/9720749#M70797</link>
      <description>&lt;P&gt;I want to add a simple command at AutoCAD 2021 startup.&amp;nbsp; The command is&amp;nbsp;&lt;SPAN&gt;(setvar "osnapz" 1).&amp;nbsp; Everything I read says to add the command to acaddoc.lsp but I cannot find this file in AutoCAD 2021.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Any Ideas,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Allen&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 31 Aug 2020 12:24:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/adding-a-command-at-autocad-startup/m-p/9720749#M70797</guid>
      <dc:creator>awadsworth8Q4WM</dc:creator>
      <dc:date>2020-08-31T12:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a command at AutoCAD Startup</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/adding-a-command-at-autocad-startup/m-p/9720804#M70798</link>
      <description>&lt;P&gt;If you can't find it you can create it. Open notepad type in (setvar "osnapz" 1) then save as acaddoc.lsp, ensuring the file is in a directory in the autocad support path.&lt;/P&gt;</description>
      <pubDate>Mon, 31 Aug 2020 12:55:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/adding-a-command-at-autocad-startup/m-p/9720804#M70798</guid>
      <dc:creator>dlanorh</dc:creator>
      <dc:date>2020-08-31T12:55:39Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a command at AutoCAD Startup</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/adding-a-command-at-autocad-startup/m-p/9722405#M70799</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In my french version it is stored here :&amp;nbsp;C:\Program Files\Autodesk\AutoCAD 2021\Support\fr-fr&lt;/P&gt;
&lt;P&gt;and it's name is ACAD2021DOC.LSP&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Olivier&lt;/P&gt;</description>
      <pubDate>Tue, 01 Sep 2020 07:05:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/adding-a-command-at-autocad-startup/m-p/9722405#M70799</guid>
      <dc:creator>O_Eckmann</dc:creator>
      <dc:date>2020-09-01T07:05:20Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a command at AutoCAD Startup</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/adding-a-command-at-autocad-startup/m-p/9722483#M70800</link>
      <description>&lt;P&gt;This is another file (check the filename) and not for personal use.&lt;/P&gt;
&lt;P&gt;Acad.lsp for program start and acaddoc.lsp for (every) document start are not part of the install package, the user can create these files.&lt;/P&gt;
&lt;P&gt;Inside a supportpath, acad will load them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For OSNAPZ is acad.lsp the right place,&lt;/P&gt;
&lt;P&gt;but also acaddoc.lsp works.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Sep 2020 07:57:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/adding-a-command-at-autocad-startup/m-p/9722483#M70800</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2020-09-01T07:57:24Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a command at AutoCAD Startup</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/adding-a-command-at-autocad-startup/m-p/9724353#M70801</link>
      <description>&lt;P&gt;You can load your custom lisp on startup also using Appload and save in Start up Suite. We used this method for years rather than acad.lsp or acaddoc.lsp. The custom lisp can have lots of stuff in it.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Sep 2020 01:36:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/adding-a-command-at-autocad-startup/m-p/9724353#M70801</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2020-09-02T01:36:56Z</dc:date>
    </item>
  </channel>
</rss>

