Jump to content

Can I turn off the Ghost when I use the copy command?


Recommended Posts

Posted

I'm working with some relatively complex geometry in 3d. (warehouse layout) and my PC is kind of a pooch. I'm pretty sure that back in the day when I used autoCAD (2000 maybe?) the copy command didn't create a ghost, it just gave you the cursor to select the insertion point. Is there a way I can copy multiple times without having the ghost image?

Posted

Never imagined one would want such a thing. You can't turn it off, but you can create work-arounds. :)

 

(defun c:Test (/ ss p1 p2)
 (and (setq ss (ssget "_:L"))
      (setq p1 (getpoint "\nSpecify base point: "))
      (while (setq p2 (getpoint p1 "\nSpecify next point: "))
        (command "_.copy" ss "" "_non" p1 "_non" p2)
      )
 )
 (princ)
)

Posted

i think maybe i'm doing this wrong...

Posted
i think maybe i'm doing this wrong...

Your question or running the code? Your answer is a little vague. If it's loading, see the appropriate link in my signature.

Posted

hmmm. nevermind. it works perfectly.

 

thanks!

Posted
hmmm. nevermind. it works perfectly.

 

thanks!

Welcome. :)
Posted

Have you tried DRAGMODE system variable?

Posted
Have you tried DRAGMODE system variable?

 

I stand corrected. Granted, then you would be forced to turn it off for everything and/or tell it when you want vectors displayed each time a command is executed.

Posted

Both work, both useful. Thanks guys.

Posted

You're welcome and thanks for the education eldon.

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...