See the top rated post in this thread. Click here

Results 1 to 4 of 4

Thread: automatic appload for release 14

  1. #1
    Login to Give a bone
    0

    Default automatic appload for release 14

    I am using an ancient release (r14) but it seems like there was a lisp floating around
    that would automatically load selected lisps into drawings. I have a bunch of
    drawings that I need to edit and having the required lisps automatically load
    would make things easier.

    Thanks
    Rick

  2. #2
    All AUGI, all the time
    Join Date
    2003-07
    Posts
    561
    Login to Give a bone
    0

    Default Re: automatic appload for release 14

    2 ways the easiest is make a script then it will do all the dwgs in one go, the other is to add your (load "mylisp") to acaddoc.lsp if it does not exist make it and save in your support path.

    Code:
    open dwg1 (load "mylisp etc") close Y
    open dwg2 (load "mylisp etc") close Y

  3. #3
    Past Vice President / AUGI Volunteer peter's Avatar
    Join Date
    2000-09
    Location
    Honolulu HI
    Posts
    1,109
    Login to Give a bone
    0

    Default Re: automatic appload for release 14

    Create an acaddoc.lsp or if that doesn't work... acad.lsp

    In it add these lines of code

    Code:
    (load "myfirstlisproutine")
    (load "mysecondlisproutine")
    
    
    (defun s::Startup ()
     (alert "Running Startup")
    )
    AutomateCAD

  4. #4
    Administrator rkmcswain's Avatar
    Join Date
    2004-09
    Location
    Earth
    Posts
    9,805
    Login to Give a bone
    1

    Default Re: automatic appload for release 14

    There was no "Acaddoc.lsp" for R14, since R14 was not MDI capable.

    OP can use "Acad.lsp" or <menuname>.mnl, instead.

    (From the AutoCAD R14 CG Page 157)

    R.K. McSwain | CAD Panacea |

Similar Threads

  1. Commandline Appload?
    By jonathanschade in forum AutoLISP
    Replies: 2
    Last Post: 2011-10-14, 05:40 PM
  2. Appload won't load
    By bboss in forum AutoLISP
    Replies: 14
    Last Post: 2010-06-04, 02:03 PM
  3. appload LISP
    By cma18 in forum AutoLISP
    Replies: 9
    Last Post: 2010-02-08, 06:23 PM
  4. APPLOAD
    By ifaller in forum AutoLISP
    Replies: 2
    Last Post: 2008-06-07, 08:45 PM
  5. Release Dates & Release Codenames
    By Buffeldrek in forum Inventor - General
    Replies: 2
    Last Post: 2006-09-22, 02:19 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •