본문 바로가기
autocad

Overkill > Audit > Purge

by kmlab 2023. 2. 15.

;;===================OVERKILL AUDIT PURE=======================
;;
(defun c:OVP (); OVERKILL AUDIT PURGE Script
;(command "qsave")
(setvar "clayer" "0")
(setvar "textstyle" "standard")
(command "-dimstyle" "r" "iso-25")
(command "-overkill" "all" "" "p" "n" "")
(command "audit" "y")
(command "purge" "a" "" "n")
(command "-overkill" "all" "" "p" "n" "")
(command "audit" "y")
(command "purge" "a" "" "n")
(command "zoom" "e")
;(command "qsave")
(prompt "\n...SUCCESSFUL OPTIMIZED...\n")
);defun


반응형

'autocad' 카테고리의 다른 글

To Turn off the Start Tab in AutoCAD  (0) 2023.02.23
ACAD Open Read-only  (0) 2023.02.15
QuitAll  (0) 2023.02.03
Set the 'Windows Desktop' Unit format on all dimstyles  (0) 2023.01.05
Change Fonts of All Styles to "simplex.shx,whgtxt.shx"  (0) 2022.12.01