Jump to content

Recommended Posts

Posted

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

Posted

probably have to do a macro

addselect pause ;;;

didn't test but it would be something like that

Posted

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

Posted

Sunny, is there any way to accomplish this without LISP? rkent, thanks again for your help. I will attempt a Macro.

 

-TZ

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...