Jump to content

how to remove error before plot layout window......


Recommended Posts

Posted

Hi

 

How to remove error before plot layout window to reduce number of click...... the error is.... layer notification warning (unreconciled new layers exit in the drawing ),i think this is xref layers.

 

Advance thanks

 

venki

LAYER.jpg

Posted
layernotify = 0

 

 

Thank u very much.........

 

venki

Posted
layernotify = 0

 

 

the problem is same re-open the drawing (layernotify=0, after close the drawing)

pls how to set default.

 

 

venki

Posted
[ATTACH=CONFIG]31140[/ATTACH]

 

layer...cliick the wrench icon for settings...

 

I follow ur layer setting dialog;but can't

after close and reopen same problem

 

any one pls urgent!!!!!!!!!

Posted (edited)

First of all, dont panic :)

 

Your'e telling us that everytime you open and close a drawing the layernotify variable another value besides 0?

 

(vl-load-com)
(if remnot 
(vlr-remove remnot))
(setq remnot
(vlr-command-reactor nil '((:vlr-commandWillStart . StartPlot))))
(defun StartPlot (cr eci / tcs)
  (setq tcs (nth 0 eci))
   (if (= tcs "PLOT")(setvar 'Layernotify 0)
   )
 )

 

Saves this as Remnotify.lsp or any name you want, Put this on your statup suite or add this to your accaddoc.lsp

There might be another program or routine that set the variable layernotify

 

use this for now while youre trying figure out whats happening. everytime you invoke plot , the code will set the value to 0.

this reactor will trump any settings set before you call the command plot. besides new layer notification should be unchecked. i just showed you where to set it to 0

Edited by pBe
Posted
First of all, dont panic :)

 

Your'e telling us that everytime you open and close a drawing the layernotify variable another value besides 0?

 

(vl-load-com)
(if remnot 
(vlr-remove remnot))
(setq remnot
(vlr-command-reactor nil '((:vlr-commandWillStart . StartPlot))))
(defun StartPlot (cr eci / tcs)
  (setq tcs (nth 0 eci))
   (if (= tcs "PLOT")(setvar 'Layernotify 0)
   )
 )

 

Saves this as Remnotify.lsp or any name you want, Put this on your statup suite or add this to your accaddoc.lsp

There might be another program or routine that set the variable layernotify

 

use this for now while youre trying figure out whats happening. everytime you invoke plot , the code will set the value to 0.

this reactor will trump any settings set before you call the command plot. besides new layer notification should be unchecked. i just showed you where to set it to 0

 

 

 

Sorry i need more clear below this....

 

Put this on your statup suite or add this to your accaddoc.lsp

 

how to use command

Posted

Save the file....

Appload....

Browse where you saved the lisp file....

Click load...

AND Drag the file to Contents

 

Then everytime you plot it will set layernotify to 0. reason for the use of a reactor to trump the value for layernofity settings by other programs.. .. after i read you other post on another forum , i think you mis understood me when i showed you the LAYER NOTIFICATION settings as checked.

 

BTW: First do this

The Layer notification toggle should be unchecked . the image i posted only shows you where tio set it. :)

Posted
Save the file....

Appload....

Browse where you saved the lisp file....

Click load...

AND Drag the file to Contents

 

Then everytime you plot it will set layernotify to 0. reason for the use of a reactor to trump the value for layernofity settings by other programs.. .. after i read you other post on another forum , i think you mis understood me when i showed you the LAYER NOTIFICATION settings as checked.

 

BTW: First do this

The Layer notification toggle should be unchecked . the image i posted only shows you where tio set it. :)

 

 

ooo...mygod very lengthhhhhhhhhhhhhhhhhh...

 

i solve problem my self for plot,i change LAYEREVAL =0

Thanks for support!!!

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...