+ Reply to Thread
Results 1 to 6 of 6
  1. #1
    Forum Newbie
    Computer Details
    omynn's Computer Details
    Operating System:
    XP
    Computer:
    Toshiba
    Motherboard:
    Portege 2000
    CPU:
    not sure
    RAM:
    4
    Graphics:
    250
    Primary Storage:
    D
    Secondary Storage:
    Sony
    Monitor:
    Toshiba
    Discipline
    Architectural
    omynn's Discipline Details
    Occupation
    Architecture
    Discipline
    Architectural
    Details
    Assistant
    Using
    AutoCAD 2010
    Join Date
    Jun 2012
    Location
    Fairy Land
    Posts
    3

    Default How to copy objects in layers (together) across drawings using the Design Center?

    Registered forum members do not see this ad.

    I've tried dragging layers across drawings using the design center interface, but what I've noticed is that while the layer in question gets copied over, the layer is empty. The objects within the layer do not get copied over. How do I copy objects AND layers that I've selected across drawings using Autocad Design Center? THANKS!!

  2. #2
    Forum Deity MSasu's Avatar
    Discipline
    Construction
    MSasu's Discipline Details
    Occupation
    engineer
    Discipline
    Construction
    Details
    AutoLISP programmer
    Using
    AutoCAD 2013
    Join Date
    Mar 2009
    Location
    Brasov, Romania
    Posts
    2,986

    Default

    I'm not sure that is possible to transfer simple entities between drawings using Design Center.
    But you are allowed to transfer blocks – so, select all items that reside in the said layer using QSELECT and an appropriate filter, convert everything to a block - it will become available for transfer in Design Center under Blocks category of source drawing. Just exit source drawing without save to get rid of the block from it.

    An alternative solution is to copy the above created selection set to Clipboard and switch to the target layer and call PASTEORIG command (from menu Edit).
    Regards,
    Mircea

    AutoCAD's happy user equation: FILEDIA + PICKADD² + PICKFIRST = 3

  3. #3
    Forum Deity Dadgad's Avatar
    Using
    AutoCAD 2012
    Join Date
    Nov 2011
    Location
    At the confluence of worthlessness & invaluability
    Posts
    3,131

    Default

    Welcome to the forum.
    It sounds like Mircea has sorted you out already with 2 good solutions.
    If you do this a lot, you might be interested in taking a look at this link
    http://www.lee-mac.com/steal.html to a very good lisp by Lee Mac for
    doing similar things, although I am not sure if it will do what you are asking about.
    But it will do lots of other things which might be useful for you.
    If not this one, then I am sure you can find something on his site which will make
    your life simpler and your work more accurate and efficient.
    Thanks Lee!
    Volume and repetition do not validate opinions forged in the absence of thought.

  4. #4
    Forum Deity BlackBox's Avatar
    Using
    Civil 3D 2011
    Join Date
    Nov 2009
    Posts
    3,932

    Default

    What's wrong with LAYISO, COPYBASE, and PASTE?
    "Potential has a shelf life." - Margaret Atwood

  5. #5
    Forum Deity Dadgad's Avatar
    Using
    AutoCAD 2012
    Join Date
    Nov 2011
    Location
    At the confluence of worthlessness & invaluability
    Posts
    3,131

    Default

    Quote Originally Posted by RenderMan View Post
    What's wrong with LAYISO, COPYBASE, and PASTE?
    I'm sure that would work too, I've never heard of COPYBASE, seems about the same as PASTEORIGINAL, eh?
    Volume and repetition do not validate opinions forged in the absence of thought.

  6. #6
    Forum Deity BlackBox's Avatar
    Using
    Civil 3D 2011
    Join Date
    Nov 2009
    Posts
    3,932

    Default

    Registered forum members do not see this ad.

    ... More on COPYBASE Command.

    Here's some simple commands that make my daily life a little bit easier:
    Code:
    (defun c:CB ()
      (command "._copybase")
      (princ))
    
    (defun c:CC ()
      (command "._copybase" '(0 0 0))
      (princ))
    
    (defun c:VV ()
      (command "._pasteclip" '(0 0))
      (princ))
    "Potential has a shelf life." - Margaret Atwood

Similar Threads

  1. Copy objects between drawings
    By VTI892 in forum AutoCAD General
    Replies: 11
    Last Post: 6th Feb 2012, 09:10 pm
  2. Replies: 4
    Last Post: 11th Apr 2011, 01:21 am
  3. Copy objects between drawings
    By AutoCAD Tips Blog in forum AutoCAD RSS Feeds
    Replies: 0
    Last Post: 1st Feb 2008, 10:00 am
  4. copy layers to new drawings
    By quasifun in forum AutoCAD General
    Replies: 5
    Last Post: 27th Sep 2007, 05:32 pm
  5. Copy layers/dimstyles/text styles between drawings
    By Dan in forum AutoCAD Drawing Management & Output
    Replies: 2
    Last Post: 22nd Aug 2006, 05:21 pm

Tags for this Thread

Bookmarks

Posting Permissions

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