PDA

View Full Version : Halftoning x-refs



charles.stewart
2006-10-24, 03:43 PM
I have a large project with many levels and many intermediate levels that we can call mezzanine levels, for lack of a better term. Because the project is so large, we have broken it up into several teams, with each team working on a component.

I am bringing together all these components in large, E-size key plans by x-refing in the various components into a larger plan. I would like to somehow show some x-refs in a grey or halftone so that the "mezzanine" work will be readily distinguishable from the existing beyond work. I thought there was a way to grey out or halftone entire x-refs but I seem to be having a hard time finding it. Can anyone assist?

Thanks,

Charlie

lmitsou
2006-10-25, 09:06 AM
You can create a button with the following

^C^C^P(command "_layer" "col" "252" "*|*" "")

This will change all layers of the xref into colour 252 (or any other colour you want).

Thanks,

jaberwok
2006-10-25, 09:21 AM
^C^C^P(command "_layer" "col" "252" "*|*" "")


Neat. :beer:

lmitsou
2006-10-25, 11:37 AM
Neat. :beer:

Cheers John :beer:

charles.stewart
2006-10-25, 01:35 PM
Neat. :beer:


Thanks- I will give that a shot- it sounds pretty cool if it does the trick.

Maverick91
2006-10-25, 05:59 PM
You can create a button with the following

^C^C^P(command "_layer" "col" "252" "*|*" "")

This will change all layers of the xref into colour 252 (or any other colour you want).

Thanks,I'm not too LISP savy. Is there a way to adjust this to allow user input to pick the color?

ccowgill
2006-10-25, 06:55 PM
(defun c:HalfTone (/ colorpicked)
(setq colorpicked (getint "nSelect Color Number to place Xref Layers on"))
(command "_layer" "col" colorpicked "*|*" "")
);end defun

Try this, just create a button macro to run it

Mike.Perry
2006-10-26, 08:00 AM
Hi

If you require additional help on this matter, take a look at the following...

RE: Need help writing a script file - Change line color and style of a xref file

Lisp for changing layer color in XREF's

Have a good one, Mike