Adjusting the .lsp to set the layer the xref is assigned to?

Adjusting the .lsp to set the layer the xref is assigned to?

Anonymous
Not applicable
817 Views
2 Replies
Message 1 of 3

Adjusting the .lsp to set the layer the xref is assigned to?

Anonymous
Not applicable

I have taken a .lsp from http://www.lee-mac.com/index.html and I want to alter it slightly so that the Xref can be assigned to a specific layer "z_xref" rather than having it on layer " 0"

 

I have written the command below however, I'm unsure where to put it in the lisp (also included below)

 

(command "-layer" "m" "z_xref" "")




(defun c:RlxPsXref (/ _getfolder RLXref_SetPathType app adoc odbs odbx v xref folder dwg xr lay)
(vl-load-com)
(defun _getfolder ( m / sh f r )
(setq sh (vla-getinterfaceobject (vlax-get-acad-object) "Shell.Application") f (vlax-invoke-method sh 'browseforfolder 0 m 0))
(vlax-release-object sh)(if f (progn (setq r (vlax-get-property (vlax-get-property f 'self) 'path))(if (wcmatch r "*\") r (strcat r "\")))))
; i is 0 (absolute), 1 (relative) of 2 (no) -xref path
(defun RLXref_SetPathType (i)
(vl-registry-write (strcat "HKEY_CURRENT_USER\" (vlax-product-key) "\Profiles\" (getvar "cprofile") "\Dialogs\XattachDialog") "PathType" i))
(setq odbs "ObjectDBX.AxDbDocument" v (substr (getvar 'acadver) 1 2) adoc (vla-get-activedocument (setq app (vlax-get-acad-object))))
(RLXref_SetPathType 1)
(cond
((vl-catch-all-error-p (setq odbx (vl-catch-all-apply 'vla-getinterfaceobject (list app (if (< (atoi v) 16) odbs (strcat odbs "." v))))))
(princ "\nObject DBX interface not created!"))
((not (setq xref (getfiled "Select Xref to attach" "" "dwg" 0))) (alert "No Xref was selected"))
((setq folder (_getfolder "Select folder with drawings to attach xref to"))
(foreach dwg (vl-directory-files folder "*.dwg" 0)
(setq dwg (strcat folder dwg))
(if (vl-catch-all-error-p (vl-catch-all-apply 'vla-open (list odbx dwg)))
(princ (strcase (strcat "\nError opening: " dwg)))
(progn
(princ (strcat "\nOpening: " dwg))
; attach xref
(if (vl-catch-all-error-p (setq xr (vl-catch-all-apply 'vla-AttachExternalReference
(list (vla-get-ModelSpace odbx) xref (vl-filename-base xref) (vlax-3d-point 0 0 0) 1 1 1 0 :vlax-false))))
(princ (vl-catch-all-error-message xr))
(progn
(vlax-for lay (vla-get-layouts odbx)
(if (/= "MODEL" (strcase (vla-get-name lay))) (vlax-invoke odbx 'copyobjects (list xr) (vla-get-block lay))))
(vla-delete xr)
)
)
; save drawing
(vla-saveas odbx (vla-get-name odbx))
)
)
)
)
)
(princ)
)
0 Likes
818 Views
2 Replies
Replies (2)
Message 2 of 3

ronjonp
Mentor
Mentor

Looks like the code is from HERE. Long story short you cannot easily "put it" in that code.

0 Likes
Message 3 of 3

marko_ribar
Advisor
Advisor

I've explained what is the problem here : https://forums.augi.com/showthread.php?175059-Adjusting-the-lsp-to-set-the-layer-the-xref-is-assigne...

Marko Ribar, d.i.a. (graduated engineer of architecture)
0 Likes