Jump to content

Recommended Posts

Posted

Trying to copy a set of layers from one drawing to another. I have a template, but I also have a drawing that has already been started not using the template. So I am trying to copy the layers from a blank drawing that is open from a template to another drawing that contains objects but not the template layers. Ive tried copying through the design center but it doesnt seem to work.

 

I know I could copy everything from the existing drawing with a base point (0,0,0), but figured I might be able to copy layers.

 

Thanks!!

Posted

You say that you have a template with the layers defined?

 

Delete all geometry off this template and save it as something like 'layers.dwg'

 

Then anytime you need to add the layer definitions to a drawing that has already been started just insert 'layers.dwg' as a block.

(It will also bring in the defined styles for text, dimensions, etc. unless you purged these from 'layers.dwg' before saving it).

Posted

Use macro button for it:

^C^C-insert;L1 ^C^C-purge;b;l1;n;

where L1 is name of block - replace with yours template name

Posted

@ DHC:

Why does "Design Center" not work?

It would do exactly what you want to do, and it can import (not copy) more, like blocks, layouts etc.

In stead of searching further I'd first investigate the options of the Design Center.

My 2 cents.

 

Regards,

MarcoW

Posted
@ DHC:

Why does "Design Center" not work?

It would do exactly what you want to do, and it can import (not copy) more, like blocks, layouts etc.

In stead of searching further I'd first investigate the options of the Design Center.

My 2 cents.

 

Regards,

MarcoW

 

 

When using design center I highlight the layers from one drawing i want to copy/import, right click, select copy and go ot the drawing in which I want to import them to. When I do this it seems there is no option of pasting/importing. Seems like I might be missing some fundamental step?

Posted

The design center does not work with dragging the layers just in the drawing?

Posted

save the template file as a dwg

then make a lisp

 

(DEFUN c:template ()

(command "_insert" "template.dwg" ^C^C)

(command "_purge" "b" "template" "n")

)

(PRINC)

 

or create macro button as mdbdesign has shown.

Posted

Rob S has it right. Open the DC in the drawing you want the layers in, then drag the wanted layers in to the drawing

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