Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm currently using variations of
(defun c:CY (/ ss bp) (if (and (setq ss (ssget "_:L")) (setq bp (getpoint "\nSpecify base point: ")) ) (command "_.copy" ss "" "_non" bp ".XZ" "_non" bp) ) (princ) )
for copying in .XZ, .YZ and .Z Axis only without having to type the whole ".XY" etc. and it works great. However, after one copy it finishes the command. I was wondering if there was a way to keep it copying a single item, in the same axis from the same base point continuously until cancelled - as the normal 'copy' command does.
Any help would be really appreciated.
Thanks
SB
Solved! Go to Solution.