Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
I need a lisp script that changes the current dim style and layer,
after selecting a specific object.
thanks
;Set to current dimstyle by picking an object on desired dimstyle.
(defun C:SetC ()
(prompt "\Select Desired Dimstyle...")
(command "-DIMSTYLE" "_R" "")
;change the layer to the last object selected using "LAYMCUR"
(princ)
)
Solved! Go to Solution.