AutoCAD Architecture Forum
Welcome to Autodesk’s AutoCAD Architecture Forums. Share your knowledge, ask questions, and explore popular AutoCAD Architecture topics.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Unreconciled Layers

11 REPLIES 11
Reply
Message 1 of 12
SKENJOVI
440 Views, 11 Replies

Unreconciled Layers

Architecture 2008
How do I turn off the Unreconciled layer notification Globaly?
I can turn it off (1) drawing at a time.
How do I do it Globaly so it Stays Off?
Please help. Edited by: SKENJOVI on Mar 3, 2009 1:04 AM
11 REPLIES 11
Message 2 of 12
Anonymous
in reply to: SKENJOVI


add it to a startup file like
acaddoc.lsp


style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
Architecture
2008 How do I turn off the Unreconciled layer notification Globaly? I can turn
it off (1) drawing at a time. How do I do it Globaly so it Stays Off? Please
help. Edited by: SKENJOVI on Mar 3, 2009 1:04 AM
Message 3 of 12
SKENJOVI
in reply to: SKENJOVI

Do you details on how to do this?
Message 4 of 12
Anonymous
in reply to: SKENJOVI


Well I don't mind finding out - I need to do this
myself.

It was posted a ways back.


style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
Do
you details on how to do this?
Message 5 of 12
SKENJOVI
in reply to: SKENJOVI

Thanks, Let me know if you find it.
Message 6 of 12
Anonymous
in reply to: SKENJOVI


working on it 🙂

set it off in your template for a
start.


style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
Do
you details on how to do this?
Message 7 of 12
Anonymous
in reply to: SKENJOVI


I've tried 3 options

 

(command layereval
0)        ;;;which works at the command
line.

&  

(setvar layereval 0)    
   ;;;which doesn't 

 

but neither execute on loading so I'm not sure. But
be another step to get it to autoexecute the code.

I'm an amateur at lisp!

 

Tried

 

(defun c:LE0 () 

    (setvar layereval 0)

)

 

but i have a bad arguement 😞 

Maybe a pro could step in

please....


style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
Do
you details on how to do this?
Message 8 of 12
Anonymous
in reply to: SKENJOVI


ok I'm really bad at this stuff

 

 

I have added this line to my acad2008doc.lsp
file

(defun c:le0 () (command "layereval"
"0"))

 

it creates a small routine that turns it off by
typing le0

best I can do!

Note you should be able to do it auto but I'm not
there yet.


style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">


I've tried 3 options

 

(command layereval
0)        ;;;which works at the command
line.

&  

(setvar layereval 0)    
   ;;;which doesn't 

 

but neither execute on loading so I'm not sure.
But be another step to get it to autoexecute the code.

I'm an amateur at lisp!

 

Tried

 

(defun c:LE0 () 

    (setvar layereval 0)

)

 

but i have a bad arguement 😞 

Maybe a pro could step in

please....


style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
Do
you details on how to do this?
Message 9 of 12
Anonymous
in reply to: SKENJOVI

Whenever that feature became part of ACAD/ACA, I added these two lines to
ACADDOC.LSP to get rid of the layer messages...

(setvar "layernotify" 0)
(setvar "layereval" 0)

Probably just the following line would work, too.

(setvar "layerevalctl" 0)
Message 10 of 12
Anonymous
in reply to: SKENJOVI

I tried (setvar "layereval" 0) thinking it would autoexecute but it didn't.
Perhaps although it loads acad2008doc.lsp for each drawing it needs to be
restarted to reload the .lsp itself.

"RH" wrote in message
news:6135775@discussion.autodesk.com...
Whenever that feature became part of ACAD/ACA, I added these two lines to
ACADDOC.LSP to get rid of the layer messages...

(setvar "layernotify" 0)
(setvar "layereval" 0)

Probably just the following line would work, too.

(setvar "layerevalctl" 0)
Message 11 of 12
Anonymous
in reply to: SKENJOVI

It's probably really the LAYEREVALCTL system variable (setting it to 0) that
is the key. I see mine is set to 0 though I don't remember how, when, or why
I did it....

Here's a note from the 2009 HELP file:
==============
Note: LAYEREVALCTL overrides the LAYEREVAL and LAYERNOTIFY setvars when
LAYEREVALCTL = 0. It acts like a global off (but not a global on). There is
no effect even if LAYEREVALCTL is turned on if LAYERNOTIFY = 0 or LAYEREVAL
= 0. LAYEREVALCTL must be set to 1 for LAYERNOTIFY and LAYEREVAL to function
correctly.
==============

According to the HELP file, the value of LAYEREVALCTL is saved is saved in
User Settings (Profile) rather than each drawing so turning it off once
should shut it off once and for all.
Message 12 of 12
Anonymous
in reply to: SKENJOVI

Thanks for the info.

"RH" wrote in message
news:6135897@discussion.autodesk.com...
It's probably really the LAYEREVALCTL system variable (setting it to 0) that
is the key. I see mine is set to 0 though I don't remember how, when, or why
I did it....

Here's a note from the 2009 HELP file:
==============
Note: LAYEREVALCTL overrides the LAYEREVAL and LAYERNOTIFY setvars when
LAYEREVALCTL = 0. It acts like a global off (but not a global on). There is
no effect even if LAYEREVALCTL is turned on if LAYERNOTIFY = 0 or LAYEREVAL
= 0. LAYEREVALCTL must be set to 1 for LAYERNOTIFY and LAYEREVAL to function
correctly.
==============

According to the HELP file, the value of LAYEREVALCTL is saved is saved in
User Settings (Profile) rather than each drawing so turning it off once
should shut it off once and for all.

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report

”Boost