Hi, I have two codes . One replace the block attributes and the other syntonize attributes
I found the second code
https://www.theswamp.org/index.php?topic=40756.0 is ronjonp post.
This two codes works fine , but I need help to join them to work as one code not two.
(defun c:blk
-mmst
(/ master rl ss i en ed bn
)
(and (princ "\nSelect MASTER Replacement BLOCK: ")
(and (princ "\nSelect BLOCKs To Replace: ")
And ronjonp post
(defun c:attsync2
(/ _name _gettatts _lst atts e name ss
) (defun _lst
(ss
/ e n out
) )
)
(defun _attpositions
(block
/ att result
) )
result
)
)
)
)
)
)
)
(command "._attsync" "_s" e
"_yes") )
)
)
)
)
)
Thanks