<?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: Move Objects to Specific Coordinates in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/move-objects-to-specific-coordinates/m-p/5503024#M143898</link>
    <description>&lt;P&gt;&lt;SPAN class="hps alt-edited"&gt;Something like this, &lt;/SPAN&gt;&lt;SPAN class="hps"&gt;perhaps...&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(defun c:demo ( / pt ss)
  (if (and (princ "\n Select objects to move to 0,0 ")
	   (setq ss (ssget "_:L"))
	   (setq pt (getpoint "\n Enter base point: "))
	   )
    (command "_move" ss "" "_NONE" pt "_NONE" '(0.0 0.0 0.0))
    )
  (princ)
  )&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Henrique&lt;/P&gt;</description>
    <pubDate>Wed, 11 Feb 2015 12:40:15 GMT</pubDate>
    <dc:creator>hmsilva</dc:creator>
    <dc:date>2015-02-11T12:40:15Z</dc:date>
    <item>
      <title>Move Objects to Specific Coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/move-objects-to-specific-coordinates/m-p/5502880#M143897</link>
      <description>&lt;P&gt;Has anybody got a macro or lisp to move objects to specific coordinates?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd like to select the objects, specify the base point then move to 0,0,0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know that entering a '#' before the coordinates overrides Dynmode, but I am forgetful &amp;amp; keep forgetting to switch off Dynmode or use the '#'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I might be as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DYNMODE 0 ;;switch dynmode off&lt;BR /&gt;MOVE&lt;BR /&gt;(Select Objects)&lt;BR /&gt;(Specify Second Point)&lt;BR /&gt;0,0,0;; second point&lt;BR /&gt;DYNMODE 1 ;;switch dynmode back on&lt;/P&gt;</description>
      <pubDate>Wed, 11 Feb 2015 10:17:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/move-objects-to-specific-coordinates/m-p/5502880#M143897</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-11T10:17:56Z</dc:date>
    </item>
    <item>
      <title>Re: Move Objects to Specific Coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/move-objects-to-specific-coordinates/m-p/5503024#M143898</link>
      <description>&lt;P&gt;&lt;SPAN class="hps alt-edited"&gt;Something like this, &lt;/SPAN&gt;&lt;SPAN class="hps"&gt;perhaps...&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(defun c:demo ( / pt ss)
  (if (and (princ "\n Select objects to move to 0,0 ")
	   (setq ss (ssget "_:L"))
	   (setq pt (getpoint "\n Enter base point: "))
	   )
    (command "_move" ss "" "_NONE" pt "_NONE" '(0.0 0.0 0.0))
    )
  (princ)
  )&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Henrique&lt;/P&gt;</description>
      <pubDate>Wed, 11 Feb 2015 12:40:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/move-objects-to-specific-coordinates/m-p/5503024#M143898</guid>
      <dc:creator>hmsilva</dc:creator>
      <dc:date>2015-02-11T12:40:15Z</dc:date>
    </item>
    <item>
      <title>Re: Move Objects to Specific Coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/move-objects-to-specific-coordinates/m-p/5503080#M143899</link>
      <description>Excellent, exactly as required&lt;BR /&gt;&lt;BR /&gt;Thank you hmsilva&lt;BR /&gt;&lt;BR /&gt;Simon</description>
      <pubDate>Wed, 11 Feb 2015 13:12:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/move-objects-to-specific-coordinates/m-p/5503080#M143899</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-11T13:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: Move Objects to Specific Coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/move-objects-to-specific-coordinates/m-p/5503172#M143900</link>
      <description>You're welcome, Simon &lt;BR /&gt;Glad I could help&lt;BR /&gt;&lt;BR /&gt;Henrique</description>
      <pubDate>Wed, 11 Feb 2015 14:05:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/move-objects-to-specific-coordinates/m-p/5503172#M143900</guid>
      <dc:creator>hmsilva</dc:creator>
      <dc:date>2015-02-11T14:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: Move Objects to Specific Coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/move-objects-to-specific-coordinates/m-p/6848576#M143901</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;Hi&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt; &lt;SPAN&gt;I&lt;/SPAN&gt; &lt;SPAN&gt;need some help&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I want to&lt;/SPAN&gt; &lt;SPAN&gt;move&lt;/SPAN&gt; &lt;SPAN&gt;4 items&lt;/SPAN&gt; &lt;SPAN&gt;at the same time&lt;/SPAN&gt; &lt;SPAN&gt;...&lt;/SPAN&gt; &lt;SPAN&gt;I tried to&lt;/SPAN&gt; &lt;SPAN&gt;adapt&lt;/SPAN&gt; &lt;SPAN&gt;the code below&lt;/SPAN&gt; &lt;SPAN&gt;and&lt;/SPAN&gt; &lt;SPAN&gt;do not know where&lt;/SPAN&gt; &lt;SPAN&gt;I'm wrong&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you&lt;/SPAN&gt; for your time.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;(defun c:test ( / p1 p2 p3 p4 ss )
    (if
        (and
            (setq ss (ssget "_:L"))
            (setq p1 (getpoint "\Point for Basepoint1: "))
            (setq p2 (getpoint "\Point for Basepoint2: "))
            (setq p3 (getpoint "\Point for Basepoint3: "))
            (setq p4 (getpoint "\Point for Basepoint4: "))
        )
		(progn
		(command "_.move" ss "" "_none" p1 "_none" '(25.00 166.00 0.00))
		(command "_.move" ss "" "_none" p2 "_none" '(25.00 45.00 0.00))
		(command "_.move" ss "" "_none" p3 "_none" '(217.50 166.00 0.00))
		(command "_.move" ss "" "_none" p4 "_none" '(217.50 45.00 0.00))
		)
)
	(princ)
 )&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2017 10:09:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/move-objects-to-specific-coordinates/m-p/6848576#M143901</guid>
      <dc:creator>mihai_bantas</dc:creator>
      <dc:date>2017-02-02T10:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: Move Objects to Specific Coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/move-objects-to-specific-coordinates/m-p/6848808#M143902</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3045705"&gt;@mihai_bantas&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;....&lt;/SPAN&gt;&lt;SPAN&gt;I want to&lt;/SPAN&gt; &lt;SPAN&gt;move&lt;/SPAN&gt; &lt;SPAN&gt;4 items&lt;/SPAN&gt; &lt;SPAN&gt;at the same time&lt;/SPAN&gt;&amp;nbsp;....&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That code will Move &lt;EM&gt;all&lt;/EM&gt; of them, together [the 'ss' variable], four times, leaving their positional relationship to each other as it was originally.&amp;nbsp; Are you trying to move each one&amp;nbsp;of them to one of those destination points?&amp;nbsp; If so, are P1/P2/P3/P4 &lt;EM&gt;on&lt;/EM&gt; the items, so that they could be used for selection as well as the Move base points?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It would be possible to Move &lt;EM&gt;one&lt;/EM&gt; of them in each Move command with (ssname) to get just one out of the selection set, but you would need to specify that they be selected in order -- with a "raw" (ssget) to select them, if you did that with a window, the order they'd be Moved would be determined, I think, by drawing order, so you couldn't count on the results.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And it would be worth testing that the selection is of four and only four objects, with (sslength), before proceeding.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What &lt;EM&gt;kind(s)&lt;/EM&gt; of objects are you talking about?&amp;nbsp; If they have some logical reference point [such as a Block's insertion point, or a Circle's center], could those be used as the Move base points,&amp;nbsp;without having the User &lt;EM&gt;pick&lt;/EM&gt; the base points?&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2017 12:06:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/move-objects-to-specific-coordinates/m-p/6848808#M143902</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2017-02-02T12:06:03Z</dc:date>
    </item>
    <item>
      <title>Re: Move Objects to Specific Coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/move-objects-to-specific-coordinates/m-p/6848847#M143903</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;Hi&lt;/SPAN&gt; &lt;SPAN&gt;Kent&lt;/SPAN&gt; &lt;SPAN&gt;(&lt;/SPAN&gt;thanks for the reply&lt;SPAN&gt;)&lt;/SPAN&gt; &lt;SPAN&gt;....&lt;/SPAN&gt; &lt;SPAN&gt;I want to&lt;/SPAN&gt; &lt;SPAN&gt;automatically&lt;/SPAN&gt; &lt;SPAN&gt;mute&lt;/SPAN&gt; &lt;SPAN&gt;cross sections&lt;/SPAN&gt; &lt;SPAN&gt;into sheet&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;page&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt; I&amp;nbsp;attached you a DWG &lt;SPAN&gt;with objects&lt;/SPAN&gt; &lt;SPAN&gt;I&lt;/SPAN&gt; &lt;SPAN&gt;want to&lt;/SPAN&gt; move.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;Thank you&lt;/SPAN&gt; for your time.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2017 12:22:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/move-objects-to-specific-coordinates/m-p/6848847#M143903</guid>
      <dc:creator>mihai_bantas</dc:creator>
      <dc:date>2017-02-02T12:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: Move Objects to Specific Coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/move-objects-to-specific-coordinates/m-p/6849156#M143904</link>
      <description>&lt;P&gt;You're certainly not going to be able to do that with just &lt;EM&gt;one&lt;/EM&gt; selection.&amp;nbsp; It will probably require an approach something like this [lightly tested]:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(prompt "\nTo move detail to&amp;nbsp;UPPER LEFT&amp;nbsp;quadrant in sheet,")&lt;/P&gt;
&lt;P&gt;(command "_.move"&amp;nbsp;(ssget) "" pause '(25 166 0))&lt;/P&gt;
&lt;P&gt;(prompt "\nTo move detail to&amp;nbsp;LOWER LEFT&amp;nbsp;quadrant in sheet,")&lt;/P&gt;
&lt;P&gt;(command "_.move"&amp;nbsp;(ssget) "" pause '(25&amp;nbsp;45 0))&lt;/P&gt;
&lt;P&gt;(prompt "\nTo move detail to&amp;nbsp;UPPER RIGHT&amp;nbsp;quadrant in sheet,")&lt;/P&gt;
&lt;P&gt;(command "_.move"&amp;nbsp;(ssget) "" pause '(217.5 166 0))&lt;/P&gt;
&lt;P&gt;(prompt "\nTo move detail to&amp;nbsp;LOWER RIGHT&amp;nbsp;quadrant in sheet,")&lt;/P&gt;
&lt;P&gt;(command "_.move"&amp;nbsp;(ssget) "" pause '(217.5&amp;nbsp;45 0))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The pauses are for User input of the Move base point [answering the Move command's own prompt], what you indicate as PT1/PT2/PT3/PT4, but no variables are needed this way.&amp;nbsp; It worked for me in your drawing when Zoomed in around the source area, without the sheet area visible.&amp;nbsp; [I find that the ones that go in the left side are &lt;EM&gt;too wide&lt;/EM&gt; for the quadrants in the sheet.]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I omitted the "none" Osnap call before the destination points, on the assumption that if you have running Osnap on, it will probably&amp;nbsp;include END and/or INT mode(s), so it won't snap to anything other than the quadrant-rectangle corners anyway.&amp;nbsp; If you might ever have something like &lt;EM&gt;only MID&lt;/EM&gt;point Osnap mode running, things would go to the wrong place -- put the "none" calls&amp;nbsp; back in.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;By the way, the trailing zeros in your point-coordinate lists do nothing at all for you,&amp;nbsp;nor even the decimal&amp;nbsp;point if nothing but zeros&amp;nbsp;follow it.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2017 14:17:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/move-objects-to-specific-coordinates/m-p/6849156#M143904</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2017-02-02T14:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: Move Objects to Specific Coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/move-objects-to-specific-coordinates/m-p/6851641#M143905</link>
      <description>&lt;P&gt;hy kent,&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I managed to &lt;SPAN&gt;make&lt;/SPAN&gt; &lt;SPAN&gt;my&lt;/SPAN&gt; &lt;SPAN&gt;code&lt;/SPAN&gt; &lt;SPAN&gt;to&lt;/SPAN&gt; &lt;SPAN&gt;bring&lt;/SPAN&gt; &lt;SPAN&gt;the&lt;/SPAN&gt; &lt;SPAN&gt;four&lt;/SPAN&gt; &lt;SPAN&gt;frames&lt;/SPAN&gt; &lt;SPAN&gt;in&lt;/SPAN&gt; &lt;SPAN&gt;the desired points.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;(defun c:test ( / p1 p2 p3 p4 ss1 )
    (if
        (and
            (setq ss1 (ssget "_:L"))
                (setq p1 (getpoint "\Point for Basepoint1: "))
                (setq ss2 (ssget "_:L"))
                (setq p2 (getpoint "\Point for Basepoint2: "))
                (setq ss3 (ssget "_:L"))
                (setq p3 (getpoint "\Point for Basepoint3: "))
                (setq ss4 (ssget "_:L"))
                (setq p4 (getpoint "\Point for Basepoint4: "))
        )
        (progn
        (command "_.move" ss1 "" "_none" p1 "_none" '(25.00 166.00 0.00))
        (command "_.move" ss2 "" "_none" p2 "_none" '(25.00 45.00 0.00))
        (command "_.move" ss3 "" "_none" p3 "_none" '(217.50 166.00 0.00))
        (command "_.move" ss4 "" "_none" p4 "_none" '(217.50 45.00 0.00))
        )
)
    (princ)
 )&lt;/PRE&gt;</description>
      <pubDate>Fri, 03 Feb 2017 11:04:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/move-objects-to-specific-coordinates/m-p/6851641#M143905</guid>
      <dc:creator>mihai_bantas</dc:creator>
      <dc:date>2017-02-03T11:04:51Z</dc:date>
    </item>
    <item>
      <title>Re: Move Objects to Specific Coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/move-objects-to-specific-coordinates/m-p/6851802#M143906</link>
      <description>&lt;P&gt;Just some thoughts....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My approach does not require setting any variables at all.&amp;nbsp; [In yours, you should also localize ss2/ss3/ss4.]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your version requires the User to know &lt;EM&gt;which quadrant&lt;/EM&gt; of the sheet is 1, which is 2, etc., whereas my prompts&amp;nbsp;inform them which quadrant they're filling.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What if you don't have enough details remaining to fill all four quadrants of a sheet?&amp;nbsp; Your version requires &lt;EM&gt;four and only four&lt;/EM&gt; selections.&amp;nbsp; It won't Move &lt;EM&gt;any&lt;/EM&gt; of them if you have fewer than that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can add the "_:L" locked-layer-prevention part to the (ssget) functions in my version, but&amp;nbsp;it really serves no purpose.&amp;nbsp; If there are things on locked Layers, in my version (ssget) will &lt;EM&gt;select&lt;/EM&gt; them, but Move will leave them behind anyway, so the effect will be exactly the same as if it prevented selection of them.&amp;nbsp; If it happens that &lt;EM&gt;all&lt;/EM&gt; objects you try to select for a given detail are on locked Layers,&amp;nbsp;it will fail, but so will your version, which won't Move &lt;EM&gt;any&lt;/EM&gt; of the selections if any &lt;EM&gt;one&lt;/EM&gt; of them is of objects all on locked Layers.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Feb 2017 12:27:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/move-objects-to-specific-coordinates/m-p/6851802#M143906</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2017-02-03T12:27:34Z</dc:date>
    </item>
    <item>
      <title>Re: Move Objects to Specific Coordinates</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/move-objects-to-specific-coordinates/m-p/6852196#M143907</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;....&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(prompt "\nTo move detail to&amp;nbsp;UPPER LEFT&amp;nbsp;quadrant in sheet,")&lt;/P&gt;
&lt;P&gt;(command "_.move"&amp;nbsp;(ssget) "" pause '(25 166 0))&lt;/P&gt;
&lt;P&gt;(prompt "\nTo move detail to&amp;nbsp;LOWER LEFT&amp;nbsp;quadrant in sheet,")&lt;/P&gt;
&lt;P&gt;(command "_.move"&amp;nbsp;(ssget) "" pause '(25&amp;nbsp;45 0))&lt;/P&gt;
&lt;P&gt;(prompt "\nTo move detail to&amp;nbsp;UPPER RIGHT&amp;nbsp;quadrant in sheet,")&lt;/P&gt;
&lt;P&gt;(command "_.move"&amp;nbsp;(ssget) "" pause '(217.5 166 0))&lt;/P&gt;
&lt;P&gt;(prompt "\nTo move detail to&amp;nbsp;LOWER RIGHT&amp;nbsp;quadrant in sheet,")&lt;/P&gt;
&lt;P&gt;(command "_.move"&amp;nbsp;(ssget) "" pause '(217.5&amp;nbsp;45 0))&lt;/P&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;A more concise way to do that:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(foreach entry&lt;BR /&gt;&amp;nbsp; '(("UPPER LEFT" (25 166 0)) ("LOWER LEFT" (25 45 0)) ("UPPER RIGHT" (217.5 166 0)) ("LOWER RIGHT" (217.5 45 0)))&lt;BR /&gt;&amp;nbsp; (prompt (strcat "\nTo move detail to " (car entry) " quadrant in sheet,"))&lt;BR /&gt;&amp;nbsp; (command "_.move" (ssget) "" pause (cadr entry))&lt;BR /&gt;); foreach&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Comments in Post 8 also apply.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Feb 2017 14:57:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/move-objects-to-specific-coordinates/m-p/6852196#M143907</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2017-02-03T14:57:28Z</dc:date>
    </item>
  </channel>
</rss>

