Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi all, and thanks for reading/helping in advance
I've set all my blocks to UniformScale: Yes
However I can't seem to modify my old lisps to insert them correctly.
In the form below, it somehow scales it 10x.
I get to pick the insertion point, then it scales 10x and then I get to pick rotation, and then explodes the block.
i'm pretty sure it has something to do with the pauze 1 pauze pauze setting
(defun C:FP ( / PHASE_naam choice ss )
(initget 7 "H V")
(setq choice (getkword "PHASE <Horizontal, Vertical>: "))
;; Set block name based on choice
(setq PHASE_naam
(cond
((= choice "H") "PHASE_Horizontal")
((= choice "V") "PHASE_Vertical")
)
)
(command "insert" PHASE_naam pause 1 pause pause)
;; Select the last inserted block for explosion
(setq ss (ssget "L")) ;; Get the last created object
(command "explode" ss) ;; Explode the selected block
)
Solved! Go to Solution.