Author Topic: Copy command in 2005 lt  (Read 2447 times)

0 Members and 1 Guest are viewing this topic.

TJAM51

  • Guest
Copy command in 2005 lt
« on: October 27, 2004, 02:43:21 PM »
I am using 2005 lt. When I use the copy command it is always in a multiple copy mode. How can I disable this to just copy once?



Thanks

Mark

  • Custom Title
  • Seagull
  • Posts: 28762
Copy command in 2005 lt
« Reply #1 on: October 27, 2004, 04:00:14 PM »
I know that's the default for the copy command but the docs still show the old method. :D  I'm guessing it's a variable some where but I have not found it, yet.
TheSwamp.org  (serving the CAD community since 2003)

CAB

  • Global Moderator
  • Seagull
  • Posts: 10401
Copy command in 2005 lt
« Reply #2 on: October 27, 2004, 05:58:45 PM »
I don't know the syntax, but add a new button with the "no Multiple" option.

I found this which make multiple for earlier versions.
Code: [Select]
(command ".undefine" "copy")
(defun c:copy () (command ".copy" (ssget) "" "m"))

and how about this
"^C^C_select;\_copy;_p;m;
I've reached the age where the happy hour is a nap. (°¿°)
Windows 10 core i7 4790k 4Ghz 32GB GTX 970
Please support this web site.

SMadsen

  • Guest
Copy command in 2005 lt
« Reply #3 on: October 27, 2004, 07:42:19 PM »
There is no "no Multiple" option. Even the Multiple keyword was taken out.

Tried different settings of QAFLAGS to see if one had an effect but no luck (found another setting of QAFLAGS I didn't know about though).

Anyone had a look in the online Tech docs?

MikePerry

  • Guest
Copy command in 2005 lt
« Reply #4 on: October 27, 2004, 07:45:09 PM »
Quote from: Mark Thomas
I'm guessing it's a variable some where but I have not found it, yet.

Hi

No system variable to control the new Copy behaviour. Over on the AUGI ACAD 2005 Wish List there is a thread relating to that very subject -

I'd like to see a system variable option for copy - Merged Threads

Offering below comes via Ed Jobe (add to a toolbar button) -

^C^C_.Copy;\;

Have a good one, Mike