Notifications
Clear all

Layer On All command in C3D

11 Posts
7 Users
0 Reactions
1 Views
(@jmfleming)
Posts: 75
Registered
Topic starter
 

Now that I have graduated to C3D, I miss my much-loved Layer On All (LOA) command.

The closest thing I have found is Isolate, then Un-Isolate the same layers that were turned off. That is okay, but sometimes I randomly turn off layers to clear my screen and at some point I want them all back on again and have to go to Layer Manager to do so.

Any command or icon in C3D that will turn on all the layers that happen to be off?

 
Posted : October 21, 2014 7:47 am
(@norman-oklahoma)
Posts: 7610
Registered
 

> Now that I have graduated to C3D, I miss my much-loved Layer On All (LOA) command.
I'm not aware of such a command in any version of ACAD I've used. Could it have been a customization? Seems to me that a quickie LISP could recreate such a command.

 
Posted : October 21, 2014 8:02 am
 RFB
(@rfb)
Posts: 1504
Registered
 

Go into the layer dialog box, select all, click one of them on, it will turn them all on.

 
Posted : October 21, 2014 8:32 am
(@kdubbs)
Posts: 6
Registered
 

Try LAYON

 
Posted : October 21, 2014 8:35 am
(@jmfleming)
Posts: 75
Registered
Topic starter
 

LAYON works, thank you.

Okay, now to my next question.. how do I make the command LAYON shorter (fewer characters)? I went to AliaseEdit and LAYON is not in there.

 
Posted : October 21, 2014 9:25 am
(@dgm-pls)
Posts: 271
Registered
 

I added these below to lisp file of other commands that gets loaded every time Civil3D starts.

Find the file below (for different years of the software they put the same type of format as this:
C:Program FilesAutodeskAutoCAD Civil 3D 2012Supportacad2012.lsp

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
(DEFUN C:ALLON ()
(COMMAND "LAYER" "ON" "*" ""))
(DEFUN C:ALLOFF ()
(COMMAND "LAYER" "OFF" "*" ""))

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Leave the carrots out of course.

 
Posted : October 21, 2014 9:30 am
(@kdubbs)
Posts: 6
Registered
(@d7330drdrbcom)
Posts: 33
Registered
 

at command line type: -layer
;at options prompt, type: on
;at layer prompt, type: *

Same to thaw, except at options prompt type: thaw

 
Posted : October 21, 2014 10:57 am
(@norman-oklahoma)
Posts: 7610
Registered
 

> at command line type: -layer
That what I've been doing except that you can just type "-LA" instead of the whole word.

 
Posted : October 21, 2014 11:08 am
(@davidgstoll)
Posts: 643
Registered
 

Hey Mack,

How about adding LAYON to your Quick Access Toolbar?

Dave

 
Posted : October 21, 2014 12:17 pm
(@jmfleming)
Posts: 75
Registered
Topic starter
 

Hmm, add LAYON to my Quick Access Toolbar.. why didn't I think of that!

Thanks Dave!

 
Posted : October 21, 2014 3:42 pm