cadamrao Posted November 16, 2011 Posted November 16, 2011 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 Quote
cadamrao Posted November 16, 2011 Author Posted November 16, 2011 layernotify = 0 Thank u very much......... venki Quote
cadamrao Posted November 16, 2011 Author Posted November 16, 2011 layernotify = 0 the problem is same re-open the drawing (layernotify=0, after close the drawing) pls how to set default. venki Quote
pBe Posted November 16, 2011 Posted November 16, 2011 layer...cliick the wrench icon for settings... Quote
cadamrao Posted November 17, 2011 Author Posted November 17, 2011 [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!!!!!!!!! Quote
pBe Posted November 17, 2011 Posted November 17, 2011 (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 November 17, 2011 by pBe Quote
cadamrao Posted November 17, 2011 Author Posted November 17, 2011 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 Quote
pBe Posted November 17, 2011 Posted November 17, 2011 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. Quote
cadamrao Posted November 18, 2011 Author Posted November 18, 2011 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!!! Quote
Recommended Posts
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.