Anuncios

The Autodesk Community Forums has a new look. Read more about what's changed on the Community Announcements board.

chriscowgill7373
en respuesta a: jimbir

DIMSCALE is a variable, not a command, so you cannot shortcut it using the pgp file.  You would probably have to have some sort of short lisp routine or something that would prompt the user as though they were entering the data for DIMSCALE, and then feed it to the variable.

(defun c:dms (/ rscale)
(setq rscale (getreal "\nEnter new value for DIMSCALE:"))
(setvar "DIMSCALE" rscale)
)

 


Christopher T. Cowgill, P.E.

AutoCAD Certified Professional
Civil 3D Certified Professional
Civil 3D 2022 on Windows 10

Please select the Accept as Solution button if my post solves your issue or answers your question.