Tag: drawing

  • Save And Close All Open AutoCAD Drawings

    Save And Close All Open AutoCAD Drawings

    Recently, I found myself having 10-15 AutoCAD drawings open at the same time and wanted to close them all.

    An easy way to do it is with two commands.

    To do so, first you type SAVEALL at AutoCAD’s command line and all the open documents are saved. Secondly, the CLOSEALL command follows that will close all the open drawings.

    But… I wanted something more automated. So I wrote a small script that combines those two commands into one that will automatically save and close all the drawings.

    Here’s the script:

    (defun c:SCALL ()
      (command "SAVEALL")
      (command "CLOSEALL")
      (princ)
    )

    That’s all. The file is named SCALL.lsp and the command to run it is also “scall” typed at the command line of AutoCAD.

    If you want to know how to load an AutoLISP script in AutoCAD you can read this small article that teaches you step by step what you should do.

  • ProgeCAD 2020 is here and is the best version so far

    progeCAD_box_2020_ENGDue to my last job demands, I was searching for an alternative to AutoCAD that could do the same job. Between many different choices I had, one caught my eye. It was the ProgeCAD that I have written about before.

    As we were part of iCare, a help desk program from ProgeCAD, we could receive (and still do) 24/7 help for one year. In addition to these for one year we could have all the updates for the program. So far so good. But for my surprise, last month we also received the latest version of the software, the ProgeCAD 2020. (more…)

  • AutoLISP Tonyscripts ver.1

    Tony Scripts v.1
    14/may/2014

    —>>>Download Link<<<—

    This LISP script is consisted by four different AutoLISP scripts
    that allow you to do some things in AutoCAD faster than doing them manually. (more…)