Over 1.092.000 registered users (EN+CZ).
AutoCAD tips, Inventor tips, Revit tips.
Try the new precise Engineering calculator.
New AutoCAD 2026 commands and variables.
Discussion forum
?CAD discussions, advices, exchange of experience

Please abide by the rules of this forum.
This is a peer-to-peer forum. The forum doesn't replace the official direct technical support provided by ARKANCE for its customers.
How to post questions: register or login, go to the specific forum and click the NEW TOPIC button.
|
Post Reply ![]() |
Author | |
djp6 ![]() Newbie ![]() Joined: 19.Sep.2010 Location: United Kingdom Using: AutoCAD 2008 work 2011 home Status: Offline Points: 10 |
![]() Posted: 26.Oct.2010 at 18:21 |
Hi How do you select everything on one layer? I want to be able to copy and paste all from one layer into another layer? Do I have to use scripts? Any help would be much appreciated. Cheers Dave |
|
![]() |
|
Cad64 ![]() Senior Member ![]() Joined: 17.Apr.2010 Location: United States Using: Autocad 2011, 3DS Max 2011, Photoshop CS5 Status: Offline Points: 491 |
![]() |
Use the LAYISO command to isolate the layer. Then you can easily window select everything and copy. Then just LAYUNISO to unisolate everything.
Depending on your version of Autocad, these commands may or may not be Express Tools. |
|
Online Portfolio: http://www.rdeweese.com/
|
|
![]() |
|
Ron C ![]() Groupie ![]() Joined: 05.Sep.2008 Location: United States Using: AutoCAD2010 Status: Offline Points: 36 |
![]() |
djp6,
Cad64 has got you on the right track. Depending on the version of AutoCAD you have after using LAYISO use COPYTOLAYER.
good luck.
|
|
RDC
|
|
![]() |
|
rob s ![]() Newbie ![]() Joined: 14.Oct.2010 Location: Netherlands Using: AutoCAD 2010 Status: Offline Points: 9 |
![]() |
If you don´t want to isolate layers and to keep seeing everyting then you can use the command ´Filter´. You can select the layer of what you want to select everything there.
|
|
![]() |
|
goons ![]() Newbie ![]() Joined: 13.Jul.2010 Location: Canada Using: autoCAD2018 Status: Offline Points: 4 |
![]() |
try quick select, another way to select entities. |
|
![]() |
|
Cats ![]() Newbie ![]() Joined: 29.Oct.2010 Location: Philippines Using: autocad 2007 Status: Offline Points: 1 |
![]() |
how filter work... can you elaborate the procedure?
|
|
Cats
|
|
![]() |
|
Cad64 ![]() Senior Member ![]() Joined: 17.Apr.2010 Location: United States Using: Autocad 2011, 3DS Max 2011, Photoshop CS5 Status: Offline Points: 491 |
![]() |
Online Portfolio: http://www.rdeweese.com/
|
|
![]() |
|
linhoreka ![]() Newbie ![]() Joined: 04.Nov.2010 Location: Vietnam Using: AutoCAD2008 Status: Offline Points: 16 |
![]() |
You would find the following lisp useful: 1st: Run "LF" (layer filter) command 2nd: Select command to perform (Erase, Copy, Move, Rotate, Scale or Mirror). 3rd. Select one or more objects on drawing as sample to get the layers. Finally, make your selection. Only object on choosen layers from the sample objects are selected. The command Erase, Copy or etc. would perform on the last selection. (defun C:LF (/ ob obl la ss1 ss fil lalist i le cm) (initget "Erase Copy Move Rotate Scale Mirror") (setq cm (getkword "Erase Copy Move Rotate Scale Mirror: ")) (prompt (strcat "Select sample objects in seclected layer to perform command " cm "\n")) (setq ss1 (ssget) le (sslength ss1) i -1 lalist (list)) (repeat le (setq i (1+ i)) (setq ob (ssname ss1 i) obl (entget ob) la (cdr (assoc 8 obl)) ) (setq lalist (uni_app lalist la)) ) (setq fil (list)) (foreach la lalist (setq fil (app fil (cons 8 la))) ) (setq fil (app fil (cons -4 "OR>")) fil (append (list (cons -4 "<OR")) fil) ) (prompt (strcat "Select objects. Objects not in layer " la " will be filter out ...")) (setq ss (ssget fil)) (if (= "Copy" cm)(command cm ss ss1 "" "M") (command cm ss ss1 "")) (princ) );end defun |
|
![]() |
Post Reply ![]() |
|
Tweet
|
Forum Jump | Forum Permissions ![]() You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |
This page was generated in 0,211 seconds.