how to fixed non-plot xref layers for all drawing files in just one command?

how to fixed non-plot xref layers for all drawing files in just one command?

gladim
Explorer Explorer
774 Views
6 Replies
Message 1 of 7

how to fixed non-plot xref layers for all drawing files in just one command?

gladim
Explorer
Explorer

Who has a knowledge on how to do it in just one command. It's like I will select one folder where all drawings are located then, type a command that will change xref layers currently in a "non-plot" into a plot visible layer. Thanks in advance!

 

Gerry

0 Likes
775 Views
6 Replies
Replies (6)
Message 2 of 7

Anonymous
Not applicable

Never heard/know before for this command. But for me usually using layer properties manager, from there i can short by on/off, freeze, lock, color, linetype etc.

Layer Properties Manager.JPG

Message 3 of 7

gladim
Explorer
Explorer

Thanks for the idea Ahmad. I sure hope somebody has an LISP that could do it.

0 Likes
Message 4 of 7

Sahay_R
Mentor
Mentor

In Layer Properties - select all layers you want to not plot, click on the little printer so that it's X'ed out. That's as short and simple as it can get.

Either that, or move objects that you don't want to print to layer DEFPOINTS.


Rina Sahay
Autodesk Expert Elite
Revit Architecture Certified Professional

If you find my post interesting, feel free to give a Kudo.
If it solves your problem, please click Accept to enhance the Forum.
Message 5 of 7

gladim
Explorer
Explorer

I have done this already. But, it's not the solution I am looking, It's got to be a LISP that get's it done in one command for a large number of details. (not one at a time.)

0 Likes
Message 6 of 7

Anonymous
Not applicable

Ask over here

 

0 Likes
Message 7 of 7

Anonymous
Not applicable

You could use AutoCAD script routines to accomplish what you are looking for. I have added two script routines below for you to test out. We supply Multi-Batch but you can use these in any batch program.

 

To change the Plot setting for all layers you can use the script routine below. The * character selects all layers.

 

;;Start of Routine
-layer
p
p
*

qsave
;;End of Routine

 

To only change the Plot setting for Xref layers you can use this script. The | character is associated with Xref layers so by using *|* you can select the layers associated with Xref’s

 

;;Start of Routine
-layer
p
p
*|*

qsave
;;End of Routine

 

Now it is a simple matter of selecting the drawings, assigning the routine and watching all the drawings been processed.

 

Patrick
http://www.multi-batch.com/
For your entire batch processing needs

0 Likes