Display full version of the post: unreconciled layers

aqeel222
27.03.2019, 06:04

I had setting before unreconciled new layers of xref to reconcile layers,  I just click the toolbar button and the command done.but I lost that setting of toolbar button. any body know about this...?

Kent Cooper
28.03.2019, 16:18

This custom command definition seems to do that, in quickie testing: (defun C:RAL () ; = Reconcile All Layers  (command "_.layer" "_rEconcile")  (if (= (getvar 'lastprompt) "No unreconciled layers in drawing.")    (command "")    (command "*" "")  )  (princ)) [It checks on the last prompt because if it just did:   (command "_.layer" "_rEconcile" "*" "") it would run into trouble when there are none to reconcile.] You can have that loaded in every drawing by acaddoc.lsp, and put the RAL command name into a Toolbar button.

Kent Cooper2019-03-28 16:21:01