<?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 Lisp not loading from current folder in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/lisp-not-loading-from-current-folder/m-p/9841004#M92413</link>
    <description>&lt;P&gt;Autocad 2020, LISP routines from current drawing folder are not loading.&lt;/P&gt;&lt;P&gt;Appautoload =14&lt;/P&gt;&lt;P&gt;Secureload=0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please, help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
    <pubDate>Mon, 02 Nov 2020 20:35:50 GMT</pubDate>
    <dc:creator>jands</dc:creator>
    <dc:date>2020-11-02T20:35:50Z</dc:date>
    <item>
      <title>Lisp not loading from current folder</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/lisp-not-loading-from-current-folder/m-p/9841004#M92413</link>
      <description>&lt;P&gt;Autocad 2020, LISP routines from current drawing folder are not loading.&lt;/P&gt;&lt;P&gt;Appautoload =14&lt;/P&gt;&lt;P&gt;Secureload=0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please, help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 02 Nov 2020 20:35:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/lisp-not-loading-from-current-folder/m-p/9841004#M92413</guid>
      <dc:creator>jands</dc:creator>
      <dc:date>2020-11-02T20:35:50Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp not loading from current folder</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/lisp-not-loading-from-current-folder/m-p/9841045#M92414</link>
      <description>&lt;P&gt;What are you doing to load them?&amp;nbsp; In an INSERT command, AutoCAD will automatically look in the current drawing folder for a drawing if it doesn't find a Block by the given name already in the current drawing, but it won't look there for loading AutoLisp files &lt;EM&gt;unless you direct it there&lt;/EM&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you use the APPLOAD command and navigate to the current drawing folder to find them, do they load?&amp;nbsp; If so, it's not a problem with the files, but with the method of loading them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are loading them via something like acaddoc.lsp, then either:&lt;/P&gt;
&lt;P&gt;1)&amp;nbsp; the current drawing folder needs to be spelled out in the (load) functions,&amp;nbsp; or&lt;/P&gt;
&lt;P&gt;2)&amp;nbsp; the current drawing folder needs to be included in the list of Support File Search Paths [in the Files tab in the OPTIONS Dialog Box].&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But do you want to put every drawing folder into the Support File Search Path list, and/or spell out every drawing folder in (load) functions in acaddoc.lsp?&amp;nbsp; I would keep such things in one support folder of some kind, which is in that list, not in individual drawing folders.&amp;nbsp; Is there some reason for having them in drawing folders?&lt;/P&gt;</description>
      <pubDate>Mon, 02 Nov 2020 20:58:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/lisp-not-loading-from-current-folder/m-p/9841045#M92414</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2020-11-02T20:58:45Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp not loading from current folder</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/lisp-not-loading-from-current-folder/m-p/9841054#M92415</link>
      <description>&lt;UL&gt;
&lt;LI&gt;Place your lisp files in a folder such as C:\CADSTUFF&lt;/LI&gt;
&lt;LI&gt;Create a file named "Acaddoc.lsp", place in same folder.&lt;/LI&gt;
&lt;LI&gt;Edit this file in Notepad, add a line like this for &lt;EM&gt;each&lt;/EM&gt; lisp file you want to load.&lt;/LI&gt;
&lt;/UL&gt;
&lt;LI-CODE lang="general"&gt;(load "mylisp")&lt;/LI-CODE&gt;
&lt;UL&gt;
&lt;LI&gt;Add C:\CADSTUFF to your support file search path, and optionally to your Secure Paths&lt;/LI&gt;
&lt;LI&gt;Restart AutoCAD.&lt;/LI&gt;
&lt;LI&gt;Each time a new or existing drawing is loaded, your lisp files will load (presuming no lisp errors in them)&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Mon, 02 Nov 2020 21:03:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/lisp-not-loading-from-current-folder/m-p/9841054#M92415</guid>
      <dc:creator>rkmcswain</dc:creator>
      <dc:date>2020-11-02T21:03:41Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp not loading from current folder</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/lisp-not-loading-from-current-folder/m-p/9841261#M92416</link>
      <description>&lt;P&gt;Thank you,&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="login-bold"&gt;&lt;A href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/274358" target="_self"&gt;rkmcswain&lt;/A&gt;, for quick response.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;I have hundreds of project folders, for each client. Each client has different settings, so, in Acad.lsp I have lisp loutine (load "Project.lsp"), ad Project.lsp is for each project/client, with different routines&amp;nbsp; for each project or client.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;Up to Autocad 2020 it worked perfectly.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;I know, that before 2020 search patch for lisp, xref's, etc was : \(getvar "dwgprefix")\Support files search in Options/&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;It looks like current drawing folder is not in search patch.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;I can't find solution for it.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;Any suggestions?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;Thank you&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Nov 2020 22:46:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/lisp-not-loading-from-current-folder/m-p/9841261#M92416</guid>
      <dc:creator>jands</dc:creator>
      <dc:date>2020-11-02T22:46:36Z</dc:date>
    </item>
  </channel>
</rss>

