"Great customer service. The folks at Novedge were super helpful in navigating a somewhat complicated order including software upgrades and serial numbers in various stages of inactivity. They were friendly and helpful throughout the process.."
Ruben Ruckmark
"Quick & very helpful. We have been using Novedge for years and are very happy with their quick service when we need to make a purchase and excellent support resolving any issues."
Will Woodson
"Scott is the best. He reminds me about subscriptions dates, guides me in the correct direction for updates. He always responds promptly to me. He is literally the reason I continue to work with Novedge and will do so in the future."
Edward Mchugh
"Calvin Lok is “the man”. After my purchase of Sketchup 2021, he called me and provided step-by-step instructions to ease me through difficulties I was having with the setup of my new software."
Mike Borzage
May 28, 2026 2 min read

AutoLISP turns repetitive steps into one-click actions—and a small, well-structured routine library keeps those wins consistent across projects and teams. Here’s how to build a dependable library that’s easy to deploy, trust, and grow. For licensing, add‑ons, and expert guidance, partner with NOVEDGE.
Place this in acaddoc.lsp (stored in your standards folder) to load commands on demand:
;; acaddoc.lsp (executed for every drawing)
(autoload "lib/laytools" '("LAYSET" "LAYMAKE"))
(autoload "lib/tx-tools" '("TXTUP" "TXTFIT"))
(princ) ;; Template you can reuse
(defun C:ACME-DEMO (/ *olderr* oldLay)
(setq *olderr* *error*
oldLay (getvar "CLAYER"))
(defun *error* (msg)
(setvar "CLAYER" oldLay)
(if (and msg (not (wcmatch (strcase msg) "*BREAK*,*CANCEL*,*EXIT*")))
(princ (strcat "\nError: " msg)))
(setq *error* *olderr*)
(princ))
;; ... do work here ...
(setvar "CLAYER" oldLay)
(setq *error* *olderr*)
(princ)) ;; lib/laytools.lsp
(defun C:LAYSET (/ old)
(setq old (getvar "CLAYER"))
(command "._-LAYER" "M" "ANNO-TEXT" "C" "250" "" "L" "Continuous" "" "")
(princ "\nCurrent layer set to ANNO-TEXT (color 250, Continuous).")) You can find all the AutoCAD products on the NOVEDGE web site at this page.

July 27, 2026 2 min read
Read More
July 27, 2026 3 min read
Read More
July 27, 2026 3 min read
Read MoreSign up to get the latest on sales, new releases and more …