tzframpton Posted February 21, 2017 Posted February 21, 2017 Is there a way to suppress the scale and rotation sub-prompts after you place a block from the ADDSELECTED command? Thanks in advance! -TZ Quote
rkent Posted February 21, 2017 Posted February 21, 2017 probably have to do a macro addselect pause ;;; didn't test but it would be something like that Quote
SunnyTurtle Posted February 22, 2017 Posted February 22, 2017 Macro may be the way to go but you could use lisp also like this. (defun C:ADDSELBLK () (setq blk (entsel "Select Block to used Add Selected with ")) (setq pt1 (getpoint "\nChoose a Point : ")) (command "ADDSELECTED" blk pt1 "" "" "") ) It needs work to only allow you to select blocks Quote
tzframpton Posted February 22, 2017 Author Posted February 22, 2017 Sunny, is there any way to accomplish this without LISP? rkent, thanks again for your help. I will attempt a Macro. -TZ Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.