"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
November 11, 2025 2 min read

System variables quietly control how AutoCAD behaves. Tuning a handful of them can remove friction, boost precision, and make your setup feel intentionally crafted.
How to adjust quickly:
Recommended everyday tweaks:
Operational tips:
Example startup LISP to enforce a core set:
(defun c:SETCOREVARS ()
(foreach v '(("PICKFIRST" . 1) ("PICKADD" . 2) ("PICKSTYLE" . 3)
("PEDITACCEPT" . 1) ("OSNAPZ" . 1) ("DYNMODE" . 3)
("HPASSOC" . 1) ("HPLAYER" . "HATCH") ("MIRRTEXT" . 0)
("LWDISPLAY" . 1) ("FILLMODE" . 1) ("SELECTIONPREVIEW" . 3)
("VISRETAIN" . 1) ("SAVETIME" . 10) ("XLOADCTL" . 2)
("INDEXCTL" . 3) ("WHIPTHREAD" . 3) ("FILEDIA" . 1)
("CMDECHO" . 0))
(setvar (car v) (cdr v))
)
(princ "\nCore system variables applied.")
)
(princ)
Refine per project, document exceptions, and reassess periodically as teams, standards, and drawing sizes evolve. For guidance on standardizing AutoCAD across teams and subscriptions, explore NOVEDGE. If you’re upgrading or deploying new seats of AutoCAD, consult the experts at NOVEDGE to align versions, profiles, and templates with your system-variable strategy.
You can find all the AutoCAD products on the NOVEDGE web site at this page.

November 11, 2025 2 min read
Read More
November 11, 2025 2 min read
Read MoreSign up to get the latest on sales, new releases and more …