<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Copy attribute in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/copy-attribute/m-p/10037667#M65080</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;&amp;nbsp;wrote:
&lt;P class="1611816197370"&gt;....&lt;/P&gt;
&lt;SPAN style="font-size: medium; font-family: inherit;"&gt;If theres nothing linking the doors to the RMNAME block, then you would have to select the&amp;nbsp;RMNAME block then the&amp;nbsp; doors ( assuming it's a block ).&amp;nbsp;&lt;/SPAN&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;LI-CODE lang="lisp"&gt;(defun c:demo ( / _some *spc suf roomtag RoomNum Doors drs mid dtag chn )
(defun _some (tag e)
  (vl-some '(lambda (at)
		    (if (eq tag (vla-get-tagstring at))
		      (list (Vla-get-textstring at) at)))
		    (vlax-invoke e 'GetAttributes))
  )
(setq *spc (vlax-get(vla-get-ActiveLayout
	       (vla-get-activedocument
                         (vlax-get-acad-object))) 'Block))
 (and
   (tblsearch "BLOCK" "DOOR_TAG")
    (while
		(setq suf "" roomtag
		       (ssget "_+.:S:E" '((0 . "INSERT") (66 . 1) (2 . "`*U*,RMNAME"))))
		(eq "RMNAME" (vla-get-effectivename (setq de (vlax-ename-&amp;gt;vla-object (ssname roomtag 0)))))
		(setq RoomNum (car (_some "ROOM#" de)))	    
		(setq Doors (ssget '((0 . "INSERT") (2 . "`*U*,DOOR"))))            	
		(repeat (sslength doors)
		  (setq drs (vlax-ename-&amp;gt;vla-object (ssname doors 0)))
			(and
			(eq "DOOR" (vla-get-EffectiveName drs))
			(not (vla-getboundingbox drs 'll 'ur))
			(setq mid (mapcar (function (lambda (a b) (/ (+ a b) 2)))
		  			(vlax-safearray-&amp;gt;list ll)(vlax-safearray-&amp;gt;list ur)))
			(setq dtag (vlax-invoke *spc 'InsertBlock mid "DOOR_TAG" 1 1 1 0))
			(setq dtag (Cadr (_some "DOORNUM" dtag)))
			(not (vla-put-textstring dtag (strcat RoomNum suf)))
			(setq chn (if (eq "" suf) 97 (1+ chn)))
			(setq suf (chr chn))
			)
		  (ssdel (ssname doors 0) doors)
		  )
		)
   	)
  (princ)
    )&lt;/LI-CODE&gt;
&lt;P&gt;HTH&lt;/P&gt;</description>
    <pubDate>Thu, 28 Jan 2021 06:50:49 GMT</pubDate>
    <dc:creator>pbejse</dc:creator>
    <dc:date>2021-01-28T06:50:49Z</dc:date>
    <item>
      <title>Copy attribute</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/copy-attribute/m-p/10036473#M65077</link>
      <description>&lt;P&gt;I am fairly new to lisp writing.&amp;nbsp; I am needing help with a lisp routine.&amp;nbsp; Is there a way to select a block, store the value of a specific attribute, then insert a different block and apply the stored value into it's attribute?&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is what I am trying to accomplish.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It would prompt me to&amp;nbsp; select a "RMNAME" block, it would store the value of the attribute "room#". It would insert the block "DOOR_TAG" and place the stored "room#" value in the "doornum" attribute. Here's the catch. If there are multiple doors into one room, then it would add a prefix "a" or "b" and so on depending on how many doors there are.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See attached screen capture for multiple doors.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2021 19:45:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/copy-attribute/m-p/10036473#M65077</guid>
      <dc:creator>scotth066</dc:creator>
      <dc:date>2021-01-27T19:45:27Z</dc:date>
    </item>
    <item>
      <title>Re: Copy attribute</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/copy-attribute/m-p/10037496#M65078</link>
      <description>&lt;P&gt;No code but lots of ideas add door block attribute is&amp;nbsp; "Door", then use (chr X) a "A" is ascii code 65 so (strcat "Door" (chr x)) - "DoorA" so add 1 to x then (strcat "door" (chr x)) = "DoorB", I would use the select point for door attribute as the exit and reset x back to 65 for next room.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A good idea is provide a sample dwg having to create a dwg adds to solution time.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2021 05:01:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/copy-attribute/m-p/10037496#M65078</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2021-01-28T05:01:42Z</dc:date>
    </item>
    <item>
      <title>Re: Copy attribute</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/copy-attribute/m-p/10037499#M65079</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/10253270"&gt;@scotth066&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;...It would prompt me to&amp;nbsp; select a "RMNAME" block, it would store the value of the attribute "room#". It would insert the block "DOOR_TAG" and place the stored "room#" value in the "doornum" attribute. Here's the catch. If there are multiple doors into one room, then it would add a prefix "a" or "b" and so on depending on how many doors there are.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT size="3"&gt;If theres nothing linking the doors to the RMNAME block, then you would have to select the&amp;nbsp;RMNAME block then the&amp;nbsp; doors ( assuming it's a block ).&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Paste a drawing sample.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2021 05:03:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/copy-attribute/m-p/10037499#M65079</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2021-01-28T05:03:24Z</dc:date>
    </item>
    <item>
      <title>Re: Copy attribute</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/copy-attribute/m-p/10037667#M65080</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;&amp;nbsp;wrote:
&lt;P class="1611816197370"&gt;....&lt;/P&gt;
&lt;SPAN style="font-size: medium; font-family: inherit;"&gt;If theres nothing linking the doors to the RMNAME block, then you would have to select the&amp;nbsp;RMNAME block then the&amp;nbsp; doors ( assuming it's a block ).&amp;nbsp;&lt;/SPAN&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;LI-CODE lang="lisp"&gt;(defun c:demo ( / _some *spc suf roomtag RoomNum Doors drs mid dtag chn )
(defun _some (tag e)
  (vl-some '(lambda (at)
		    (if (eq tag (vla-get-tagstring at))
		      (list (Vla-get-textstring at) at)))
		    (vlax-invoke e 'GetAttributes))
  )
(setq *spc (vlax-get(vla-get-ActiveLayout
	       (vla-get-activedocument
                         (vlax-get-acad-object))) 'Block))
 (and
   (tblsearch "BLOCK" "DOOR_TAG")
    (while
		(setq suf "" roomtag
		       (ssget "_+.:S:E" '((0 . "INSERT") (66 . 1) (2 . "`*U*,RMNAME"))))
		(eq "RMNAME" (vla-get-effectivename (setq de (vlax-ename-&amp;gt;vla-object (ssname roomtag 0)))))
		(setq RoomNum (car (_some "ROOM#" de)))	    
		(setq Doors (ssget '((0 . "INSERT") (2 . "`*U*,DOOR"))))            	
		(repeat (sslength doors)
		  (setq drs (vlax-ename-&amp;gt;vla-object (ssname doors 0)))
			(and
			(eq "DOOR" (vla-get-EffectiveName drs))
			(not (vla-getboundingbox drs 'll 'ur))
			(setq mid (mapcar (function (lambda (a b) (/ (+ a b) 2)))
		  			(vlax-safearray-&amp;gt;list ll)(vlax-safearray-&amp;gt;list ur)))
			(setq dtag (vlax-invoke *spc 'InsertBlock mid "DOOR_TAG" 1 1 1 0))
			(setq dtag (Cadr (_some "DOORNUM" dtag)))
			(not (vla-put-textstring dtag (strcat RoomNum suf)))
			(setq chn (if (eq "" suf) 97 (1+ chn)))
			(setq suf (chr chn))
			)
		  (ssdel (ssname doors 0) doors)
		  )
		)
   	)
  (princ)
    )&lt;/LI-CODE&gt;
&lt;P&gt;HTH&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2021 06:50:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/copy-attribute/m-p/10037667#M65080</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2021-01-28T06:50:49Z</dc:date>
    </item>
    <item>
      <title>Re: Copy attribute</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/copy-attribute/m-p/10038752#M65081</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;&amp;nbsp;Thanks for the reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am wanting to prompt the user to "/n Select a RMNAME block", have it store the value of the "room#" attribute, then proceed straight into the insertion of the DOORNUM block.&amp;nbsp; The user would select an insertion point, default through the scale then have the routine insert the stored value into the "door#" attribute of the DOORNUM block.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See attached sample dwg&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2021 14:25:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/copy-attribute/m-p/10038752#M65081</guid>
      <dc:creator>scotth066</dc:creator>
      <dc:date>2021-01-28T14:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: Copy attribute</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/copy-attribute/m-p/10040373#M65082</link>
      <description>&lt;P&gt;Try this it will do multi rooms, so pick a room fill in details, room name will appear pick door pick door Enter&amp;nbsp;&lt;/P&gt;&lt;P&gt;Pick new room can change room name numbers will increment auto.&lt;/P&gt;&lt;P&gt;You need the Multi getvals.lsp also.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="screenshot323.png" style="width: 963px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/873719iA44B65C65E4D2F8D/image-size/large?v=v2&amp;amp;px=999" role="button" title="screenshot323.png" alt="screenshot323.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;; add room number and add door linked to room number
; By alanh Jan 2021

(defun c:roomname ( / rname r% rnum ans pt alpha suf)

(if (not AH:getvalsm)(load "Multi Getvals.lsp"))
(if (= rname nil)(setq rname " "))
(if (= r% nil)(setq r% " "))
(if (= rnum nil)(setq rnum 1))

(setq alpha 64 suf "")

(while (setq pt (getpoint "\nPick point for room name ENTER TO EXIT "))
    (setq ans (AH:getvalsm (list "Please enter" "Room  name" 12 11 rname "Room % " 12 11  r% "Room #" 11 10  (rtos rnum 2 0))))
    (setq rname (nth 0 ans)
      r% (nth 1 ans)
      rnum (atoi (nth 2 ans))
    )

    (command "-insert" "Rmname" pt 1 1 0 r% rname (rtos rnum 2 0))
    (while (setq pt (getpoint "\Pick point for door ENTER TO EXIT "))
       (command "-insert" "Door_tag" pt 1 1 0 (strcat (rtos rnum 2 0) suf))
       (setq suf (chr (setq alpha (+ alpha 1))))
    )
    (setq rnum (+ rnum 1))
    (setq alpha 64 suf "")
)

(princ)
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="screenshot322.png" style="width: 220px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/873718i16DFCF6F71D1C900/image-size/large?v=v2&amp;amp;px=999" role="button" title="screenshot322.png" alt="screenshot322.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jan 2021 01:14:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/copy-attribute/m-p/10040373#M65082</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2021-01-29T01:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: Copy attribute</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/copy-attribute/m-p/10040502#M65083</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/10253270"&gt;@scotth066&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;&amp;nbsp;Thanks for the reply.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am wanting to prompt the user to "/n Select a RMNAME block", have it store the value of the "room#" ...&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Here are two options:&lt;/P&gt;
&lt;P&gt;1. Select the Rmname block and select the doors [ single/multiple selection ] as per first post.&lt;/P&gt;
&lt;PRE&gt;(defun c:&lt;STRONG&gt;TaggerS&lt;/STRONG&gt; ( / _some *spc suf roomtag RoomNum Doors drs mid dtag chn )
(defun _some (tag e)
  (vl-some '(lambda (at)
		    (if (eq tag (vla-get-tagstring at))
		      (list (Vla-get-textstring at) at)))
		    (vlax-invoke e 'GetAttributes))
  )
(setq *spc (vlax-get(vla-get-ActiveLayout
	       (vla-get-activedocument
                         (vlax-get-acad-object))) 'Block))
 (and
   (tblsearch "BLOCK" "DOOR_TAG")
    (while
	(and
		(setq suf "" roomtag
		       (ssget "_+.:S:E" '((0 . "INSERT") (66 . 1) (2 . "`*U*,RMNAME"))))
		(eq "RMNAME" (strcase (vla-get-effectivename
			(setq de (vlax-ename-&amp;gt;vla-object (ssname roomtag 0))))))
		(setq RoomNum (car (_some "ROOM#" de)))
		(princ "\nSelect Doors to tag:")
		(setq Doors (ssget '((0 . "INSERT") (2 . "`*U*,DOOR"))))
      		)            	
		(repeat (sslength doors)
		  (setq drs (vlax-ename-&amp;gt;vla-object (ssname doors 0)))
			(and
			(eq "DOOR" (strcase (vla-get-EffectiveName drs)))
			(not (vla-getboundingbox drs 'll 'ur))
			(setq mid (mapcar (function (lambda (a b) (/ (+ a b) 2)))
		  			(vlax-safearray-&amp;gt;list ll)(vlax-safearray-&amp;gt;list ur)))
			(setq dtag (vlax-invoke *spc 'InsertBlock mid "DOOR_TAG" 1 1 1 0))
			(setq dtag (Cadr (_some "DOORNUM" dtag)))
			(not (vla-put-textstring dtag (strcat RoomNum suf)))
			(setq chn (if (eq "" suf) 97 (1+ chn)))
			(setq suf (chr chn))
			)
		  (ssdel (ssname doors 0) doors)
		  )
		)
   	)
  (princ)
    )
&lt;/PRE&gt;
&lt;P&gt;2. Select the Rmname block then proceed to insert the Door_tag on each pickpoint, as you requested&lt;/P&gt;
&lt;PRE&gt;(defun c:&lt;STRONG&gt;Tagger&lt;/STRONG&gt; ( / _some *spc suf roomtag RoomNum Doors drs mid dtag chn )
(defun _some (tag e)
  (vl-some '(lambda (at)
		    (if (eq tag (vla-get-tagstring at))
		      (list (Vla-get-textstring at) at)))
		    (vlax-invoke e 'GetAttributes))
  )
(setq *spc (vlax-get(vla-get-ActiveLayout
	       (vla-get-activedocument
                         (vlax-get-acad-object))) 'Block))
   
    (if
      (and
	(tblsearch "BLOCK" "DOOR_TAG")
	(setq suf "" roomtag
		       (ssget "_+.:S:E" '((0 . "INSERT") (66 . 1) (2 . "`*U*,RMNAME"))))
	(eq "RMNAME" (strcase (vla-get-effectivename
			(setq de (vlax-ename-&amp;gt;vla-object (ssname roomtag 0))))))
	(setq RoomNum (car (_some "ROOM#" de)))
	(setq fp (vlax-get de 'Insertionpoint))
	
	)
      (while (setq pt (getpoint fp "\nPick point for Door tag"))
	(setq dtag (vlax-invoke *spc 'InsertBlock pt "DOOR_TAG" 1 1 1 0))
			(setq dtag (Cadr (_some "DOORNUM" dtag)))
			(not (vla-put-textstring dtag (strcat RoomNum suf)))
			(setq chn (if (eq "" suf) 97 (1+ chn)))
			(setq suf (chr chn))
			)
		  )
  (princ)
    )
&lt;/PRE&gt;
&lt;P&gt;HTH&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jan 2021 02:42:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/copy-attribute/m-p/10040502#M65083</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2021-01-29T02:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: Copy attribute</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/copy-attribute/m-p/10042080#M65084</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6254908"&gt;@Sea-Haven&lt;/a&gt;&amp;nbsp; Thanks for the help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It places the room name but when I pick point for door this is the error I get.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/874064i301CA6C019CAC7B0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Fri, 29 Jan 2021 15:44:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/copy-attribute/m-p/10042080#M65084</guid>
      <dc:creator>scotth066</dc:creator>
      <dc:date>2021-01-29T15:44:18Z</dc:date>
    </item>
    <item>
      <title>Re: Copy attribute</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/copy-attribute/m-p/10042097#M65085</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;&amp;nbsp; Thanks for the help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have loaded both of your routines but when I type the commands nothing happens.&amp;nbsp; No errors, just nothing.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/874070i7ED33B60C60271CB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Fri, 29 Jan 2021 15:48:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/copy-attribute/m-p/10042097#M65085</guid>
      <dc:creator>scotth066</dc:creator>
      <dc:date>2021-01-29T15:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: Copy attribute</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/copy-attribute/m-p/10042189#M65086</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6254908"&gt;@Sea-Haven&lt;/a&gt;&amp;nbsp; &amp;nbsp;I figured it out.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again for the help!&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jan 2021 16:10:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/copy-attribute/m-p/10042189#M65086</guid>
      <dc:creator>scotth066</dc:creator>
      <dc:date>2021-01-29T16:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: Copy attribute</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/copy-attribute/m-p/10042205#M65087</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;&amp;nbsp; &amp;nbsp;Thank you for the help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;These work!&amp;nbsp; My problem with both was that fact that the doornum block was not defined in the file I was testing in.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One more ask, is there a way to do away with the rubber band effect from the roomname block to where ever I am placing the doornum block?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jan 2021 16:18:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/copy-attribute/m-p/10042205#M65087</guid>
      <dc:creator>scotth066</dc:creator>
      <dc:date>2021-01-29T16:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: Copy attribute</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/copy-attribute/m-p/10042234#M65088</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/10253270"&gt;@scotth066&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;One more ask, is there a way to do away with the rubber band effect from the roomname block to where ever I am placing the doornum block?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Change this&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;(setq pt (getpoint &lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;fp&lt;/FONT&gt;&lt;/STRONG&gt; "\nPick point for Door tag"))&lt;/PRE&gt;
&lt;P&gt;&lt;FONT size="3"&gt;&amp;nbsp;to&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="lisp"&gt;(setq pt (getpoint "\nPick point for Door tag"))&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;HTH&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jan 2021 16:25:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/copy-attribute/m-p/10042234#M65088</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2021-01-29T16:25:59Z</dc:date>
    </item>
  </channel>
</rss>

