Print Page | Close Window

unreconciled layers

Printed From: CAD Forum
Category: EN
Forum Name: CAD - general
Forum Description: General discussion about CAD, formats, standards, management, licensing, networking, harware, other CAD applications
URL: https://www.cadforum.cz/forum_en/forum_posts.asp?TID=13148
Printed Date: 15.May.2026 at 22:50


Topic: unreconciled layers
Posted By: aqeel222
Subject: unreconciled layers
Date Posted: 27.Mar.2019 at 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...?



Replies:
Posted By: Kent Cooper
Date Posted: 28.Mar.2019 at 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.



Print Page | Close Window