Create Memo file that is associated with the current DWG
This lisp will create a .mmo file with Windows notepad writer, where you can add memo remarks for the current DWG file. Once the memo file is creatRead More…
This lisp will create a .mmo file with Windows notepad writer, where you can add memo remarks for the current DWG file. Once the memo file is creatRead More…
This list will rename a block that you select in the drawing (defun c:rb (/ en $bl new) (print) (prompt “\nPick Block to rename: \n”)Read More…
GeoRefImg is a LISP utility for AutoCAD 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017 (plus Architecture, MechaRead More…
With this Lisp you can turn ann ELLIPSE thhat you already created to a Polyline The reason to do this, is if you need to set a width to the EllipseRead More…
This lisp will set your autocad crosshair to a selected grade You wil have to type the scale of your drawing (1:1, or 1:10), so if you are in a proRead More…
This lisp will copy selected objects to an existing layer you type to it: (defun c:col (/ lr tmp ent-lst) ; Copy to layer (setvar “CMDECHO” 1) (sRead More…
This lisp will offset selected entity to the current layer: (defun c:ol (/ lr tmp) ; Offset to layer (setvar “CMDECHO” 1) (command “offRead More…