• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    Visual LISP, AutoLISP and General Customization

    Reply
    Distinguished Contributor
    Posts: 150
    Registered: ‎08-15-2007

    ACADDOC.lsp getting ignored by C3D 2012?

    223 Views, 3 Replies
    02-24-2012 06:18 AM

    Total LISP noob here.  Everything I know is from looking at Robert Green and Matt Murphy's AU materials.  

     

    It seems that the best way to run a LISP routine is to create an acaddoc.lsp and throw it in C:\Program Files\Autodesk\AutoCAD Civil 3D 2012\Support  which IS in my support file search path.

     

    Inside acaddoc.lsp is::

     

    (prompt “The ACADDOC.LSP file has loaded.”)

    (defun c:TEST ()
    (alert “Your LISP loaded!”)
    (princ)
    )

     

    but...on firing up Civil 3D, there is no evidence whatsoever that the lisp loaded and of course my TEST function doesn't work.

     

    Do verticals work differently? 

    Please use plain text.
    *Expert Elite*
    Posts: 3,115
    Registered: ‎07-22-2003

    Re: ACADDOC.lsp getting ignored by C3D 2012?

    02-24-2012 06:43 AM in reply to: lholland

    acaddoc.lsp works the same in C3D as with vanilla acad.

    At the command prompt, type in the following lisp code:

    (findfile "acaddoc.lsp")

     

    If this returns nil, then something is wrong with the support paths, or the file name. If it returns a path, check to be sure it's the one you expect...there may be another acaddoc.lsp being found.

    Jeff_M, also a frequent Swamper
    Please use plain text.
    New Member
    Posts: 2
    Registered: ‎04-03-2008

    Re: ACADDOC.lsp getting ignored by C3D 2012?

    02-24-2012 06:59 AM in reply to: lholland

    Drag n drop the attached file.

    When loading a new drawin you then should see something like this (F2 window):

     

    AutoCAD menu utilities loaded.Hello

     

    When you then type TEST it will show:

     

    Testing.... in a message box.

    Please use plain text.
    Distinguished Contributor
    Posts: 150
    Registered: ‎08-15-2007

    Re: ACADDOC.lsp getting ignored by C3D 2012?

    02-24-2012 07:03 AM in reply to: edward.winter

    That worked great.  Thanks for looking at this.

    Please use plain text.