See the top rated post in this thread. Click here

Results 1 to 7 of 7

Thread: Multiple copying and Stretching?

  1. #1
    Member
    Join Date
    2015-11
    Posts
    19
    Login to Give a bone
    0

    Default RE: Multiple copying and Stretching?

    Is it only me or has this thread become confusing??

    I can't understand how to make COPY command perform SIngle by default - button or command, etc.

    I tried the COPY then REDEFINE to SIngle and it didn't work the next time I used COPY.
    I tried looking in the acad.mns and found dozens of ID_COPY entries and none appeared appropriate to modify.

    I am using AutoCAD CIVIL 3D 2006 and detest AutoCAD's enforcing of this change of default behaviour.

    Can someone please post a concise method of effecting single as default behaviour.

    Thanks in eager anticipation.

  2. #2
    Administrator rkmcswain's Avatar
    Join Date
    2004-09
    Location
    Earth
    Posts
    9,805
    Login to Give a bone
    0

    Default Re: Multiple copying and Stretching?

    Quote Originally Posted by tjk
    Can someone please post a concise method of effecting single as default behaviour.
    Add this code to your "acaddoc.lsp" to create a command named "C" for single copies.

    Code:
    (defun c:c ()
     (command "._copy")
    )
    To find your "acaddoc.lsp", type this at the command line

    Code:
    (findfile "acaddoc.lsp")
    If that returns nil, create a file in notepad, add the above red code, and save it as "acaddoc.lsp" in a directory that is in the AutoCAD support file search path.

    Tested in 2006 and 2007

    Reference links:
    http://support.autodesk.com/getdoc.asp?ID=TS21336
    http://rkmcswain.blogspot.com/2006/0...setup-and.html

    Note: There is an Autodesk KB doc that shows a slightly different method [ http://support.autodesk.com/getdoc.asp?ID=TS101065 ] - but this doc incorrectly suggests that you should modify "acad200xdoc.lsp" - which is bad advise, and it contradicts what is written in http://support.autodesk.com/getdoc.asp?ID=TS21336
    Last edited by rkmcswain; 2006-07-06 at 12:15 PM.
    R.K. McSwain | CAD Panacea |

  3. #3
    Member
    Join Date
    2015-11
    Posts
    19
    Login to Give a bone
    1

    Default Re: Multiple copying and Stretching?

    Brilliant - it works.
    Now if I use the toolbar button I get multiple and if I want single I use "C".

    Thanks, very clear message.

  4. #4
    Member
    Join Date
    2006-07
    Posts
    2
    Login to Give a bone
    0

    Default Re: Multiple copying and Stretching?

    I know that this is not a Civil question, but I am having the opposite problem in AutoCAD 2004. I have to enter copy them m (multiple) in order to copy and object multiple times. How do I set the default to multiple copy instead of single copy?

    Thanks,
    Neil
    Last edited by jenkneil; 2006-08-09 at 02:41 PM.

  5. #5
    Wish List Manager BrenBren's Avatar
    Join Date
    2000-11
    Location
    150700
    Posts
    3,439
    Login to Give a bone
    0

    Default Re: Multiple copying and Stretching?

    Quote Originally Posted by jenkneil
    I know that this is not a Civil question, but I am having the opposite problem in AutoCAD 2004. I have to enter copy them m (multiple) in order to copy and object multiple times. How do I set the default to multiple copy instead of single copy?

    Thanks,
    Neil
    Do exactly what was suggested in this thread.

  6. #6
    Administrator Opie's Avatar
    Join Date
    2002-01
    Location
    jUSt Here (a lot)
    Posts
    9,106
    Login to Give a bone
    0

    Default Re: Multiple copying and Stretching?

    Quote Originally Posted by BrenBren
    Do exactly what was suggested in this thread.
    Brenda,

    Since Multiple Copy was not set as a default until a later version, this will not work.
    If you have a technical question, please find the appropriate forum and ask it there.
    You will get a quicker response from your fellow AUGI members than if you sent it to me via a PM or email.
    jUSt

  7. #7
    Wish List Manager BrenBren's Avatar
    Join Date
    2000-11
    Location
    150700
    Posts
    3,439
    Login to Give a bone
    0

    Default Re: Multiple copying and Stretching?

    Quote Originally Posted by Opie
    Brenda,

    Since Multiple Copy was not set as a default until a later version, this will not work.
    D'oh, I read the question backward Sorry

Similar Threads

  1. Stretching Spaces
    By Wish List System in forum ACA Wish List
    Replies: 0
    Last Post: 2012-08-15, 07:08 PM
  2. block stretching and the arrow that does the stretching
    By .chad in forum Dynamic Blocks - Technical
    Replies: 7
    Last Post: 2008-09-03, 09:39 PM
  3. stretching with a fence
    By speet01 in forum AutoCAD General
    Replies: 4
    Last Post: 2008-05-16, 07:26 PM
  4. Multiple copying and Stretching?
    By todd.hardacre in forum AutoCAD LT - General
    Replies: 5
    Last Post: 2006-06-02, 08:45 PM
  5. Clipboard - copying and pasting multiple items
    By chrisr in forum AutoCAD General
    Replies: 3
    Last Post: 2006-01-18, 06:41 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •