<?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 ncopy multiple at same place or pause the ncopy command? in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-ncopy-multiple-at-same-place-or-pause-the-ncopy-command/m-p/12692384#M49377</link>
    <description>very nice!&lt;BR /&gt;is there a way to select all objects in the selected object layer and transform them in one click?</description>
    <pubDate>Sun, 07 Apr 2024 12:39:40 GMT</pubDate>
    <dc:creator>cadomatic</dc:creator>
    <dc:date>2024-04-07T12:39:40Z</dc:date>
    <item>
      <title>How to ncopy multiple at same place or pause the ncopy command?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-ncopy-multiple-at-same-place-or-pause-the-ncopy-command/m-p/10932882#M49374</link>
      <description>&lt;P&gt;Hi I want to copy some entities from xref and paste same place.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(command "ncopy" pause pause "0,0" "0,0")&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I tired to pause the command until selection in over.&lt;/P&gt;&lt;P&gt;But select multiple entities, it doesn't work... Please help me&lt;/P&gt;</description>
      <pubDate>Mon, 07 Feb 2022 07:49:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-ncopy-multiple-at-same-place-or-pause-the-ncopy-command/m-p/10932882#M49374</guid>
      <dc:creator>darkfprh</dc:creator>
      <dc:date>2022-02-07T07:49:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to ncopy multiple at same place or pause the ncopy command?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-ncopy-multiple-at-same-place-or-pause-the-ncopy-command/m-p/10932951#M49375</link>
      <description>&lt;P&gt;Not so easy to do. Possibly like this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(while (setq e (cadr (nentsel))) (command "ncopy" e "" "" ""))
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But is it really necessary? I mean, how difficult is it to hit enter a couple of times.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anyway, just a few threads lower&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;&amp;nbsp;posted a nice example of code how this could be done without the need to fight with ncopy.&amp;nbsp;&lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/is-there-alisp-to-pick-polyline-from-apoly-line-in-or-out-block/m-p/10931411/highlight/true#M426966" target="_blank" rel="noopener"&gt;HERE&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(vl-load-com)
(defun c:demo (/ obj tmp)
  (while (setq obj	(nentselp "\nSelect object to copy "
		) ;_ end of nentselp
      )
    (progn
      (setq tmp (entmakex (entget (car obj))))
      (vla-transformby
	(vlax-ename-&amp;gt;vla-object tmp)
	(vlax-tmatrix (caddr obj))
      )
      (Vla-put-layer (vlax-ename-&amp;gt;vla-object (entlast)) (getvar 'clayer))
    )
  )
)
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Feb 2022 08:39:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-ncopy-multiple-at-same-place-or-pause-the-ncopy-command/m-p/10932951#M49375</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2022-02-07T08:39:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to ncopy multiple at same place or pause the ncopy command?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-ncopy-multiple-at-same-place-or-pause-the-ncopy-command/m-p/10933058#M49376</link>
      <description>&lt;P&gt;Thank you so much! It works well &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Feb 2022 09:17:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-ncopy-multiple-at-same-place-or-pause-the-ncopy-command/m-p/10933058#M49376</guid>
      <dc:creator>darkfprh</dc:creator>
      <dc:date>2022-02-07T09:17:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to ncopy multiple at same place or pause the ncopy command?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-ncopy-multiple-at-same-place-or-pause-the-ncopy-command/m-p/12692384#M49377</link>
      <description>very nice!&lt;BR /&gt;is there a way to select all objects in the selected object layer and transform them in one click?</description>
      <pubDate>Sun, 07 Apr 2024 12:39:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-ncopy-multiple-at-same-place-or-pause-the-ncopy-command/m-p/12692384#M49377</guid>
      <dc:creator>cadomatic</dc:creator>
      <dc:date>2024-04-07T12:39:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to ncopy multiple at same place or pause the ncopy command?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-ncopy-multiple-at-same-place-or-pause-the-ncopy-command/m-p/12700667#M49378</link>
      <description>&lt;P&gt;Thank you so much.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2024 00:50:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-ncopy-multiple-at-same-place-or-pause-the-ncopy-command/m-p/12700667#M49378</guid>
      <dc:creator>ancrayzy</dc:creator>
      <dc:date>2024-04-11T00:50:18Z</dc:date>
    </item>
  </channel>
</rss>

