<?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: How to copy and paste to coordinates and rotation list in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10156504#M82875</link>
    <description>&lt;P&gt;I am a bit ashamed to admit that I never explored object data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I agree, it looks much better than extended data. I have just scratched the surface with some videos about object data. But yes I think this will be a better approach since handling the object data is much more flexible.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will definitely check it out.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thankyou&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1271199"&gt;@ChicagoLooper&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 15 Mar 2021 04:05:45 GMT</pubDate>
    <dc:creator>jobin.e</dc:creator>
    <dc:date>2021-03-15T04:05:45Z</dc:date>
    <item>
      <title>How to copy and paste to coordinates and rotation list</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10147229#M82849</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using the same procedure of pasting a coordinate (X,Y) list into the command line, can we add rotation angle of each instance also into each line so that each block will have a unique rotation value as per the list.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jo&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 04:49:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10147229#M82849</guid>
      <dc:creator>jobin.e</dc:creator>
      <dc:date>2021-03-11T04:49:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy and paste to coordinates and rotation list</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10147362#M82850</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5832809"&gt;@jobin.e&lt;/a&gt;&amp;nbsp; hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you use PASTE (or PASTEBLOCK) command a moment before you specify the coordinate you have the options to Scale \ Rotate. by enter S for scale or R for rotate.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Moshe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 06:39:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10147362#M82850</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2021-03-11T06:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy and paste to coordinates and rotation list</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10147369#M82851</link>
      <description>&lt;P&gt;I was pasting multiple instances using a coordinate list. So my question was along with the coordinates if there was a command syntax to set rotation of each element separately using a list.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Similar to the -insert command&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(command "_-INSERT" "blockname" "-550,1628.1406" 1 1 140 )&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jo&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 06:47:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10147369#M82851</guid>
      <dc:creator>jobin.e</dc:creator>
      <dc:date>2021-03-11T06:47:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy and paste to coordinates and rotation list</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10147460#M82852</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5832809"&gt;@jobin.e&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(defun c:cpr ()
 (if (setq ss (ssget))
   (progn
   (command "._copyclip" "_si" "_previous") 
   (command "._pasteclip" "_rotate" 45 pause)
  )
 )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 07:44:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10147460#M82852</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2021-03-11T07:44:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy and paste to coordinates and rotation list</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10147488#M82853</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The lisp provided changes the angle by 45 to the previous copy.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think I was not clear in my explanation of the issue.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i am using the copy command then entering a list of coordinates in the command line&lt;/P&gt;&lt;P&gt;for example from a spreadsheet&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;481124.241,2761191.709&lt;BR /&gt;481135.811,2761188.834&lt;BR /&gt;481113.401,2761196.688&lt;BR /&gt;481093.631,2761210.003&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;My question was that if along with each of these coordinate entry if I needed to specify a rotation of that item say 32 degrees for first then 25 degrees for the second and so on (around its specified basepoint) also from the spreadsheet, if there was any way to do this.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 08:03:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10147488#M82853</guid>
      <dc:creator>jobin.e</dc:creator>
      <dc:date>2021-03-11T08:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy and paste to coordinates and rotation list</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10147514#M82854</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5832809"&gt;@jobin.e&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are you sure you now supplied us with all the info we need to understand this issue? something tells me NO?!&lt;/P&gt;&lt;P&gt;anyhow there is not built-in procedure to deal with this,&amp;nbsp; you need AutoLISP application.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Moshe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 08:18:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10147514#M82854</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2021-03-11T08:18:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy and paste to coordinates and rotation list</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10149471#M82855</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5832809"&gt;@jobin.e&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here a lisp command CSVIN to insert blocks from excel csv file. an sample of data format:-&lt;/P&gt;&lt;LI-CODE lang="general"&gt;; block name  XCoords     YCoords        XScale  YScale  ZScale  angle degrees
N arrow,	481124.241,	2761191.709,	 1.0,	 1.0,	  1.0,	 	32.0
N arrow,	481135.811,	2761188.834,	 1.0,	 1.0,	  1.0,	 	25.0
N arrow,	481113.401,	2761196.688,	 1.0,	 1.0,	  1.0,	 	47.0
N arrow,	481093.631,	2761210.003,	 1.0,	 1.0,	  1.0,	 	18.0&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the omit the header from file.&amp;nbsp;replace "N arrow" with your blocks name.&lt;/P&gt;&lt;P&gt;each record must have all these fields in this order.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;wrap the following in lsp file and load it in autocad&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(vl-load-com)

;; String to List  -  Lee Mac
;; Separates a string using a given delimiter
;; str - [str] String to process
;; del - [str] Delimiter by which to separate the string
;; Returns: [lst] List of strings
 
(defun LM:str-&amp;gt;lst ( str del / pos )
    (if (setq pos (vl-string-search del str))
        (cons (substr str 1 pos) (LM:str-&amp;gt;lst (substr str (+ pos 1 (strlen del))) del))
        (list str)
    )
)


(defun c:csvin (/ _str-&amp;gt;num _dtr ; local function
                  fdata fname f)

 ; anonymous functions 
 (setq _str-&amp;gt;num (lambda (s) (atof (vl-string-trim " " s))))
 (setq _dtr (lambda (s) (* (/ (_str-&amp;gt;num s) 360.0) 2 pi)))

 (vla-startUndoMark (vla-get-activedocument (vlax-get-acad-object)))
  
 (cond
  ((not (setq fname (getfiled "Select csv data file" "" "csv" 8))))
  ((not (setq f (open fname "r")))
   (vlr-beep-reaction) 
   (prompt (strcat "\nfail to open " fname))
  )
  ( t
   (while (setq line (read-line f))
    (setq fdata (cons (LM:str-&amp;gt;lst line ",") fdata))
   )  
   (setq f (close f))

   (foreach item (reverse fdata)
    (entmake 
     (list
      '(0 . "insert")
       (cons '2 (nth 0 item))
       (cons '10 (list (_str-&amp;gt;num (nth 1 item)) (_str-&amp;gt;num (nth 2 item))))
       (cons '41 (_str-&amp;gt;num (nth 3 item)))
       (cons '42 (_str-&amp;gt;num (nth 4 item)))
       (cons '43 (_str-&amp;gt;num (nth 5 item)))
       (cons '50 (_dtr (nth 6 item)))
      '(210 0.0 0.0 1.0)      
     ); list
    ); entmake
   ); foreach

  ); case
 ); cond
   
 (vla-endundoMark (vla-get-activedocument (vlax-get-acad-object)))
 (princ)
); csvin&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 19:18:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10149471#M82855</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2021-03-11T19:18:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy and paste to coordinates and rotation list</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10149527#M82856</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5832809"&gt;@jobin.e&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;... along with the coordinates if there was a command syntax to set rotation of each element separately using a list.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Similar to the -insert command&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(command "_-INSERT" "blockname" "-550,1628.1406" 1 1 140 )&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;(command "_.pasteclip" &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;"_rotate"&lt;/STRONG&gt;&lt;/FONT&gt; &lt;FONT color="#00CCFF"&gt;&lt;EM&gt;&lt;FONT color="#800080"&gt;{YourRotationFromTheList}&lt;/FONT&gt; {YourCoordinatesFromTheList}&lt;/EM&gt;&lt;/FONT&gt;)&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 19:43:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10149527#M82856</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2021-03-11T19:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy and paste to coordinates and rotation list</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10149845#M82857</link>
      <description>&lt;P&gt;are the coordinates in quotes? would it be too much trouble to list a sample of 3 sample coordinate and rotation instances?&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 21:15:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10149845#M82857</guid>
      <dc:creator>jobin.e</dc:creator>
      <dc:date>2021-03-11T21:15:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy and paste to coordinates and rotation list</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10150072#M82858</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5832809"&gt;@jobin.e&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;are the coordinates in quotes? would it be too much trouble to list a sample of 3 sample coordinate and rotation instances?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;What does "the list" in Message 1 refer to?&amp;nbsp; I assumed you already &lt;EM&gt;have&lt;/EM&gt; "the list," and whatever form it's in, its information could probably be converted appropriately, but we would need to know what the format and/or file type are, preferably with a [small] sample.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 22:58:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10150072#M82858</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2021-03-11T22:58:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy and paste to coordinates and rotation list</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10153336#M82859</link>
      <description>&lt;P&gt;Here's where i am.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. I have an excel register of speakers that have their unique ABS codes and coordinates (easting &amp;amp; northing).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Step 1" style="width: 848px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/892633i69EAC01DF2A1900A/image-size/large?v=v2&amp;amp;px=999" role="button" title="Step 1.PNG" alt="Step 1" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Step 1&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;2. I am creating these speakers in the model using a multi-view block placed within a block.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Step 2" style="width: 825px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/892635i4D960CD62A3AD4B4/image-size/large?v=v2&amp;amp;px=999" role="button" title="Step 2.PNG" alt="Step 2" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Step 2&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;3. For this speaker block i have a block attribute definition for ABS Code which will be fed directly from the excel ABS code.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Step 3" style="width: 838px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/892634iF520DC7CA8C918C1/image-size/large?v=v2&amp;amp;px=999" role="button" title="Step 3.PNG" alt="Step 3" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Step 3&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;4. I have also created a property set for ABS Code in extended data. This property set is directly linked to block attribute of that same block using fields.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Step 4a" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/892637i43B03D9A6E7F7BFA/image-size/large?v=v2&amp;amp;px=999" role="button" title="Step 4a.PNG" alt="Step 4a" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Step 4a&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Step 4b" style="width: 893px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/892636i745B0EADD033777F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Step 4b.PNG" alt="Step 4b" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Step 4b&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;5. Now if I just insert blocks directly using the coordinates available to me I dont get this linking of block attribute to property set in step 5. So what i am doing is doing the linking for 1 speaker block, then copying to the coordinates in the excel register. This way the linking for each block remains.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;6. The reason i am doing this is so i can label this using mtexts and multileaders also linked to fields of the block attribute. These are linked to each blocks individually.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Step 5&amp;amp;6" style="width: 946px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/892639i010CF6DC196220C7/image-size/large?v=v2&amp;amp;px=999" role="button" title="Step 5 &amp;amp; 6.png" alt="Step 5&amp;amp;6" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Step 5&amp;amp;6&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;7. Right now as a work around i am saving the block with active links, multileaders into a new block. then inserting this as a set so the rotation of speakers is preserved.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Step 7" style="width: 835px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/892638iD6B6B887C5800620/image-size/large?v=v2&amp;amp;px=999" role="button" title="Step 7.png" alt="Step 7" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Step 7&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;8. after which i explode the block and set all the multi leaders and mtexts to zero rotation since they also rotate along with the orientation of the speaker. Now i have 700+ speakers with its unique linking and rotation. But i still have to do one more step to ATT in the Codes again using easting northing as an identifier to get the values updated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Step 8a" style="width: 459px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/892640iB7238562B7C07DC6/image-size/large?v=v2&amp;amp;px=999" role="button" title="Step 8a.png" alt="Step 8a" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Step 8a&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Step 8b" style="width: 687px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/892641iFFE4B4000A732F03/image-size/large?v=v2&amp;amp;px=999" role="button" title="Step 8b.png" alt="Step 8b" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Step 8b&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If there is any way to do this in a better procedure, I would really appreciate your inputs. If not, i will stick to my current workflow.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PS: I am really sorry to&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/52747"&gt;@Moshe-A&lt;/a&gt;&amp;nbsp;that I didn't explain the whole situation because it was a lengthy process and he was right in noting that I wasn't giving him the entire picture.&amp;nbsp;Thank you so much for your patience guys.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 13 Mar 2021 05:56:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10153336#M82859</guid>
      <dc:creator>jobin.e</dc:creator>
      <dc:date>2021-03-13T05:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy and paste to coordinates and rotation list</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10153400#M82860</link>
      <description>&lt;P&gt;I am really impressed what you're able get from scripting. We often see here that people underestimates scripts capabilities while they quite simple to construct using vastly well known simple excel functions. They just grab some of our LISP solution which from they don't understand a word.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anyway this task is quite complex to be scripted. LISP with the use of some public library snippets, eg.&amp;nbsp;&lt;A href="http://lee-mac.com/dynamicblockfunctions.html" target="_self"&gt;HERE&lt;/A&gt;&amp;nbsp;Lee's function for managing dynamic block properties, would not be difficult to make. But to make it done, you need to post some of real date - the block itself, portion of the excel data and dwg of examples of desired outcomes.&lt;/P&gt;</description>
      <pubDate>Sat, 13 Mar 2021 07:12:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10153400#M82860</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2021-03-13T07:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy and paste to coordinates and rotation list</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10153405#M82861</link>
      <description>Are the coordinates in quotes? would it be too much trouble to list a sample of 3 sample coordinate and rotation instances....&lt;BR /&gt;&lt;BR /&gt;Assuming  the original is inserted to the coords of 0,0.&lt;BR /&gt;&lt;BR /&gt;COPYPASTE Last  0,0&lt;BR /&gt;PASTECLIP R 20.5 -550,1628.1406&lt;BR /&gt;PASTECLIP R 60.2 -560,1628.1406</description>
      <pubDate>Sat, 13 Mar 2021 07:20:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10153405#M82861</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2021-03-13T07:20:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy and paste to coordinates and rotation list</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10153470#M82862</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5832809"&gt;@jobin.e&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i'm thinking of the way to solve this:-&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You need a small dynamic block which the speaker can be rotate without been dependent on the mtext. the mtext is aligned right (rotation=0) always. the mleader is pointing to the insertion base point of the block (although this may need some tuning here and there)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the ASSETID attribute (or something else?) should be the key (fixed) through the link (csv -&amp;gt; dwg) is maintained.&lt;/P&gt;&lt;P&gt;how do you rotate the speakers? if it is a value you know in advance then add that column to csv file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;now you need two lisp commands:&lt;/P&gt;&lt;P&gt;1. CSVIN (see message #7 with some modification it will do the job) to insert those speakers-in with ASSETID + ABSCODE set&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2 . CSV-&amp;gt;DWG for update the drawing due to changes in csv file. changes can be made to ABSCODE, to coordinates, rotation angle. true, you manually need to run this each time the csv is changed (i like controlling updates &lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;) whereas FIELDS updates is automatically but linked data should exist inside drawing (not in external file) so for this maybe you will need to add a TABLE to your drawing and use DATAEXTRACTION command?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thoughts are halfway to solution&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Moshe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 13 Mar 2021 08:35:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10153470#M82862</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2021-03-13T08:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy and paste to coordinates and rotation list</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10154506#M82863</link>
      <description>&lt;P&gt;I'm looking at you uploaded images and I'm curious to know how you got the Pava blocks into modelspace. Did you insert them manually or does your workflow &lt;EM&gt;read the coordinates&lt;/EM&gt; to place them in their correct position? How you answer this question will determine what direction your work flow should go.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.png" style="width: 788px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/892828iC8B95144533F520A/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In addition to plain, vanilla AutoCAD, what other versions do run? Civil3D, Map3D, Revit?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 13 Mar 2021 21:12:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10154506#M82863</guid>
      <dc:creator>ChicagoLooper</dc:creator>
      <dc:date>2021-03-13T21:12:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy and paste to coordinates and rotation list</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10154850#M82864</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/52747"&gt;@Moshe-A&lt;/a&gt;&amp;nbsp;My scripting skills are practically non-existent. All the methods and commands used are ootb plain old data extraction, scheduling, ATTIN ATTOUT copy and paste from excel into the command line.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had tried the dynamic block rotation angle but I wasn't too fond of having a redundant angle value when there was already a stock rotation angle.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I can somehow copy a set of objects (the block with the field links, the multileader and the mtext with field links) using the CO command and paste to a list of coordinates&amp;nbsp;&lt;STRONG&gt;along with each rotation value&amp;nbsp;&lt;/STRONG&gt;I can by pass the whole nested block workaround I am doing. And this was the purpose of my question.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 14 Mar 2021 04:18:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10154850#M82864</guid>
      <dc:creator>jobin.e</dc:creator>
      <dc:date>2021-03-14T04:18:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy and paste to coordinates and rotation list</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10154859#M82865</link>
      <description>&lt;P&gt;I'm working on the civil 3d environment. However i have so far only used the vanilla ootb AutoCAD features.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For placement this is what I'm currently doing.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. I have a drawing with the 2d blocks and all the locations. I copy one of these to a blank drawing and make changes to it inside and add the block attributes and property sets and link the fields. Then add the multi leader and mtext with field links to label. Make a new block with all these elements with the same name as of the block in the original 2d block.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. Ctrl+C all the remaining 2d blocks from the first drawing and paste into new drawing which instead places the modified block of the same name with all the setup done in point 1 with the original rotation. Then i explode the set and set the rotation of all the multi leaders and mtext to zero using quick select.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 14 Mar 2021 04:25:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10154859#M82865</guid>
      <dc:creator>jobin.e</dc:creator>
      <dc:date>2021-03-14T04:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy and paste to coordinates and rotation list</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10155006#M82866</link>
      <description>&lt;P&gt;&lt;FONT face="lucida sans unicode,lucida sans"&gt;Wow! That’s a lot of work to ‘move’ your data onto your block. And most of the heavy lifting is performed by you and not AutoCad. &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="lucida sans unicode,lucida sans"&gt;It’s also strange that your workflow includes exploding your block and that indicates your workflow isn’t doing exactly what you want so you must use explode command to keep your workflow moving forward.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="lucida sans unicode,lucida sans"&gt;Since you have Civil 3D, you can leverage its power to read the coordinates to insert the blocks and make it read the rotation value to rotate the them too. The functions in C3D will also store attributes, ABS Code and Asset ID, so you can call them up anytime you need them. &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="lucida sans unicode,lucida sans"&gt;If you are willing you can do this entirely in C3D and not get stuck like using OOTB vanilla AutoCad. (TIP: If you have GIS-type software you can speed things up, really speed it up.)&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="lucida sans unicode,lucida sans"&gt;How many blocks do you currently need to insert? Over 20? Over 50? &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="lucida sans unicode,lucida sans"&gt;&lt;STRONG&gt;Would it be possible to upload the rotation values for the speaker locations shown in &lt;I&gt;Step 1 &lt;/I&gt;image of post #11?&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 14 Mar 2021 07:05:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10155006#M82866</guid>
      <dc:creator>ChicagoLooper</dc:creator>
      <dc:date>2021-03-14T07:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy and paste to coordinates and rotation list</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10155131#M82867</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;yes I can dataextract the rotation values from the source file and add it to the excel which has the other tags. My question is will I get the multi leader links to the fields. right now if i change the value in the block attribute, it changes in the property set and the multi leader automatically. A static data import to a label will not suffice unfortunately.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If it does that then great. This would help me a lot.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the screengrab below, the regen command doesn't show up. once I change the attribute a regen command updates the mtext and extended data.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screengrab.gif" style="width: 800px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/892921iBF2B00738CAFC045/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screengrab.gif" alt="Screengrab.gif" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 14 Mar 2021 09:06:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10155131#M82867</guid>
      <dc:creator>jobin.e</dc:creator>
      <dc:date>2021-03-14T09:06:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to copy and paste to coordinates and rotation list</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10155391#M82868</link>
      <description>&lt;OL&gt;&lt;LI&gt;How many PAVA blocks do you plan to insert?&lt;/LI&gt;&lt;LI&gt;What are the rotation values for the speakers in the list shown in your image named &lt;I&gt;STEP 1&lt;/I&gt;.&amp;nbsp;&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Sun, 14 Mar 2021 13:06:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-copy-and-paste-to-coordinates-and-rotation-list/m-p/10155391#M82868</guid>
      <dc:creator>ChicagoLooper</dc:creator>
      <dc:date>2021-03-14T13:06:50Z</dc:date>
    </item>
  </channel>
</rss>

