<?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: Script for sequential object duplication using 'copy' command and 'FROM' option in ORTHO mode in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12018109#M28866</link>
    <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5656544"&gt;@Temssi.d&lt;/a&gt;&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt;&amp;nbsp;Isn't this post and the other identical one not seeking the same answer, and you both are answering them the same way&lt;/P&gt;
&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/creating-construction-lines/m-p/12014639" target="_blank"&gt;https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/creating-construction-lines/m-p/12014639&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 07 Jun 2023 17:51:27 GMT</pubDate>
    <dc:creator>pendean</dc:creator>
    <dc:date>2023-06-07T17:51:27Z</dc:date>
    <item>
      <title>Script for sequential object duplication using 'copy' command and 'FROM' option in ORTHO mode</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12017733#M28862</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;requesting assistance with an AutoCAD script utilizing the 'COPY' command and the 'FROM' option. I need the script to perform the following steps:&lt;/P&gt;&lt;P&gt;assume: orthomode is ON&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;User initiates the command.&lt;/LI&gt;&lt;LI&gt;Selects an object and confirms the selection.&lt;/LI&gt;&lt;LI&gt;Prompts the user to specify a base point&lt;UL&gt;&lt;LI&gt;The user will input distances and define the direction&amp;nbsp;(assume there is a single direction during one command) using the mouse cursor.&lt;/LI&gt;&lt;LI&gt;For instance, let's assume the distances are 70, 90, and 55, with the mouse cursor pointing to the right.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;The objective is to copy the selected object three times at the specified distances, relative to the right direction:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;The second object should be 70 units away from the first.&lt;/LI&gt;&lt;LI&gt;The third object should be 90 units away from the second.&lt;/LI&gt;&lt;LI&gt;The fourth object should be 55 units away from the third.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Actually, the calculation is to translate the object&amp;nbsp; 70 units to the right of the &lt;STRONG&gt;base point&lt;/STRONG&gt;, 70+90 units to the right of the &lt;STRONG&gt;base point&lt;/STRONG&gt;, and 70+90+55 points to the right of the&lt;STRONG&gt; base point&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;So there is no need to choose a starting point again or a point from which to calculate FROM, the calculation is always relative to the first point chosen and the direction chosen.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: This command is exclusively required when orthomode is ON, and the distances are measured vertically and horizontally from the base point.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The second script has the same functionality but uses the "MOVE" command&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you in advance for your help and expertise!&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2023 15:08:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12017733#M28862</guid>
      <dc:creator>Temssi.d</dc:creator>
      <dc:date>2023-06-07T15:08:32Z</dc:date>
    </item>
    <item>
      <title>Re: Script for sequential object duplication using 'copy' command and 'FROM' option in ORTHO mode</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12017787#M28863</link>
      <description>&lt;P&gt;Some questions:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you really want a SCRIPT, or do you mean something like an AutoLisp routine [we often see people refer to such a thing as a "script," but &lt;EM&gt;it isn't one&lt;/EM&gt; as AutoCAD means the word], or maybe a command macro such as you could call with a Tool Palette button?&amp;nbsp; Your wording "User initiates the command" suggests to me that you mean a custom command defined in an AutoLisp routine, but please confirm.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Would it work for you to Copy the selected object(s) &lt;EM&gt;in place&lt;/EM&gt; and then &lt;EM&gt;Move&lt;/EM&gt; the original(s)?&amp;nbsp; That way a routine can do it repeatedly simply using Previous for the selection each time, which &lt;EM&gt;allows multiple object selection&lt;/EM&gt;.&amp;nbsp; [If it's &lt;EM&gt;always&lt;/EM&gt; only &lt;EM&gt;one&lt;/EM&gt; object, Copy can be used repeatedly, using Last for the selection each time, but obviously that doesn't work if you want the option to select multiple objects.]&amp;nbsp; It would mean that the original selection is what ends up as the last "copy," and the object(s) at all the other positions, including the original position(s), would be copies.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On the second version using Move, what is the point of the "same functionality"?&amp;nbsp; Would you really Move something multiple times in succession?&amp;nbsp; All but the last Move would be ultimately irrelevant, since whatever was selected will then Move somewhere else.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2023 15:33:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12017787#M28863</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2023-06-07T15:33:22Z</dc:date>
    </item>
    <item>
      <title>Re: Script for sequential object duplication using 'copy' command and 'FROM' option in ORTHO mode</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12017842#M28864</link>
      <description>&lt;P&gt;Thanks for the answer and the time you spent.&lt;/P&gt;&lt;P&gt;I don't know what it's called script/macro/smart shortcut,&amp;nbsp;I hope a video clears it up...&lt;/P&gt;&lt;P&gt;The requirement is to do a daily routine with fewer clicks if possible, not a far-reaching change &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I didn't understand the "&lt;EM&gt;in place&lt;/EM&gt;" part, but I need the functionality that is in the video, copy an object in a row/col without having to calculate the total distance from the base point every time and with a single selection of a base point at the beginning of the command activation.&lt;BR /&gt;If the goal is distances of 70,90,55 then this is what is written in the command, and not the calculation of the total distance 70,160,215 .. I hope I was able to explain.&lt;/P&gt;&lt;P&gt;Regarding the move...you're right, I meant to use the "move from" command if necessary but it seems unnecessary.&lt;/P&gt;&lt;P&gt;&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6328961705112w960h540r739" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6328961705112" data-account="6057940548001" data-player="default" data-embed="default" class="vjs-fluid" controls="" data-application-id="" style="width: 100%; height: 100%;"&gt;&lt;/video-js&gt;&lt;/div&gt;&lt;script src="https://players.brightcove.net/6057940548001/default_default/index.min.js"&gt;&lt;/script&gt;&lt;script&gt;(function() {  var wrapper = document.getElementById('lia-vid-6328961705112w960h540r739');  var videoEl = wrapper ? wrapper.querySelector('video-js') : null;  if (videoEl) {     if (window.videojs) {       window.videojs(videoEl).ready(function() {         this.on('loadedmetadata', function() {           this.el().querySelectorAll('.vjs-load-progress div[data-start]').forEach(function(bar) {             bar.setAttribute('role', 'presentation');             bar.setAttribute('aria-hidden', 'true');           });         });       });     }  }})();&lt;/script&gt;&lt;a class="video-embed-link" href="https://forums.autodesk.com/t5/video/gallerypage/video-id/6328961705112"&gt;(view in My Videos)&lt;/a&gt;&lt;/div&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2023 16:01:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12017842#M28864</guid>
      <dc:creator>Temssi.d</dc:creator>
      <dc:date>2023-06-07T16:01:59Z</dc:date>
    </item>
    <item>
      <title>Re: Script for sequential object duplication using 'copy' command and 'FROM' option in ORTHO mode</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12017994#M28865</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5656544"&gt;@Temssi.d&lt;/a&gt;&amp;nbsp; hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Check this CPYSTEPS command.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;At the following prompt do this:&lt;/P&gt;&lt;P&gt;Distances &amp;lt;comma demited&amp;gt;: 70,90,55&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The distances can be integers or reals,&amp;nbsp;&lt;SPAN&gt;alphabetic characters are ignored&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;enjoy&lt;/P&gt;&lt;P&gt;Moshe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="lisp"&gt;(defun c:cpysteps (/ LM:str-&amp;gt;lst _distances ; local functions
		     ss p0 p1 steps dis d)

;; 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)
    )
 )

 ; anonymous function 
 (setq _distances (lambda () (vl-remove-if 'not (mapcar (function (lambda (s) (if (member (type (read s)) (list 'INT 'REAL)) (read s)))) (LM:str-&amp;gt;lst steps ","))))) 

 (setvar "cmdecho" 0)
 (command "._undo" "_begin")
  
 (if (and
       (setq ss (ssget))
       (setq p0 (getpoint "\nSpecify base point: "))
       (setq p1 (getpoint p0 "\nSpecify direction: "))
       (/= (setq steps (getstring "\nDistances &amp;lt;comma demited&amp;gt;: ")) "")
     )
  (progn
   (setq dis 0) 
   (command "._copy" "_si" ss "_multiple" p0)
   
   (foreach d (_distances)    
    (command (polar p0 (angle p0 p1) (setq dis (+ dis d))))
   ); foreach
   
   (command "")
  ); progn
 ); if

 (command "._undo" "_end")
 (setvar "cmdecho" 1)
  
 (princ)
); cpysteps&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2023 17:04:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12017994#M28865</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2023-06-07T17:04:44Z</dc:date>
    </item>
    <item>
      <title>Re: Script for sequential object duplication using 'copy' command and 'FROM' option in ORTHO mode</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12018109#M28866</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5656544"&gt;@Temssi.d&lt;/a&gt;&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt;&amp;nbsp;Isn't this post and the other identical one not seeking the same answer, and you both are answering them the same way&lt;/P&gt;
&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/creating-construction-lines/m-p/12014639" target="_blank"&gt;https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/creating-construction-lines/m-p/12014639&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2023 17:51:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12018109#M28866</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2023-06-07T17:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: Script for sequential object duplication using 'copy' command and 'FROM' option in ORTHO mode</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12018112#M28867</link>
      <description>&lt;P&gt;Try the &lt;STRONG&gt;CSEQ&lt;/STRONG&gt; command defined in the attached &lt;STRONG&gt;CopySequential.lsp&lt;/STRONG&gt;.&amp;nbsp; Read the comments at the top of the file.&amp;nbsp; Note that you can select &lt;EM&gt;multiple objects&lt;/EM&gt;, not just one, and continue making as many sequential copies as you want, not just three.&amp;nbsp; Lightly tested.&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2" color="#999999"&gt;&lt;STRIKE&gt;EDIT:&amp;nbsp; I find it has a flaw that I'm thinking about how to fix.&amp;nbsp; It leaves the copy of the selection that it's ready to Move overlaying the last copy.&amp;nbsp; It doesn't work to just add Erase Previous within the code, because when you hit ESCape to end it, it doesn't get to that.&amp;nbsp; Until I work it out, you can do Erase Previous after.&lt;/STRIKE&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;FONT color="#FF6600"&gt;EDIT&lt;/FONT&gt; again:&lt;/FONT&gt;&amp;nbsp; Figured it out.&amp;nbsp; The file is replaced.&amp;nbsp; It now lets you end it with Enter or space as well as ESCape.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2023 18:27:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12018112#M28867</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2023-06-07T18:27:19Z</dc:date>
    </item>
    <item>
      <title>Re: Script for sequential object duplication using 'copy' command and 'FROM' option in ORTHO mode</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12018127#M28868</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/37212"&gt;@pendean&lt;/a&gt;&amp;nbsp;wrote:
&lt;P class="1686160992731"&gt;...&lt;SPAN&gt;&amp;nbsp;Isn't this post and the other identical one ....&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Quite similar in the copying aspect, but not identical.&amp;nbsp; That one included the creation of an Xline running in a built-in direction within the command, and copying it only in a built-in direction perpendicular to itself; this one involves object selection of any kind&lt;FONT color="#999999"&gt;(s)&lt;/FONT&gt; of thing&lt;FONT color="#999999"&gt;(s)&lt;/FONT&gt;, and User designation of direction&lt;FONT color="#999999"&gt;(s)&lt;/FONT&gt; as well as distances.&amp;nbsp; [The &lt;FONT color="#999999"&gt;(s)&lt;/FONT&gt; multiple possibilities apply in my posted routine, exceeding the requested capability.]&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2023 18:15:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12018127#M28868</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2023-06-07T18:15:57Z</dc:date>
    </item>
    <item>
      <title>Re: Script for sequential object duplication using 'copy' command and 'FROM' option in ORTHO mode</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12018129#M28869</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5656544"&gt;@Temssi.d&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;requesting assistance with an AutoCAD script utilizing the 'COPY' command and the 'FROM' option. I need the script to perform the following steps:&lt;/P&gt;&lt;P&gt;assume: orthomode is ON&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;User initiates the command.&lt;/LI&gt;&lt;LI&gt;Selects an object and confirms the selection.&lt;/LI&gt;&lt;LI&gt;Prompts the user to specify a base point&lt;UL&gt;&lt;LI&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Type FROM, up-arrow key, enter&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;The user will input distances and define the direction&amp;nbsp;(assume there is a single direction during one command) using the mouse cursor.&lt;/LI&gt;&lt;LI&gt;For instance, let's assume the distances are 70, 90, and 55, with the mouse cursor pointing to the right.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;The objective is to copy the selected object three times at the specified distances, relative to the right direction:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;The second object should be 70 units away from the first.&lt;/LI&gt;&lt;LI&gt;The third object should be 90 units away from the second.&lt;/LI&gt;&lt;LI&gt;The fourth object should be 55 units away from the third.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Actually, the calculation is to translate the object&amp;nbsp; 70 units to the right of the &lt;STRONG&gt;base point&lt;/STRONG&gt;, 70+90 units to the right of the &lt;STRONG&gt;base point&lt;/STRONG&gt;, and 70+90+55 points to the right of the&lt;STRONG&gt; base point&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;So there is no need to choose a starting point again or a point from which to calculate FROM, the calculation is always relative to the first point chosen and the direction chosen.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: This command is exclusively required when orthomode is ON, and the distances are measured vertically and horizontally from the base point.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The second script has the same functionality but uses the "MOVE" command&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you in advance for your help and expertise!&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2023 18:03:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12018129#M28869</guid>
      <dc:creator>johnyDFFXO</dc:creator>
      <dc:date>2023-06-07T18:03:18Z</dc:date>
    </item>
    <item>
      <title>Re: Script for sequential object duplication using 'copy' command and 'FROM' option in ORTHO mode</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12018509#M28870</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Your script is working! &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I sincerely appreciate your time and assistance,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you for your help!&lt;span class="lia-unicode-emoji" title=":hugging_face:"&gt;🤗&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2023 21:05:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12018509#M28870</guid>
      <dc:creator>Temssi.d</dc:creator>
      <dc:date>2023-06-07T21:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: Script for sequential object duplication using 'copy' command and 'FROM' option in ORTHO mode</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12018525#M28871</link>
      <description>&lt;P&gt;thank you moshe, its an&lt;SPAN&gt; alternative approach to solve the problem!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;great one&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;thank you!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2023 21:13:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12018525#M28871</guid>
      <dc:creator>Temssi.d</dc:creator>
      <dc:date>2023-06-07T21:13:19Z</dc:date>
    </item>
    <item>
      <title>Re: Script for sequential object duplication using 'copy' command and 'FROM' option in ORTHO mode</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12018557#M28872</link>
      <description>&lt;P&gt;magic! (up-arrow &lt;span class="lia-unicode-emoji" title=":hushed_face:"&gt;😯&lt;/span&gt;), although it requires typing 'FROM' followed by the up arrow key and then pressing enter.&lt;/P&gt;&lt;P&gt;However, the primary objective was to minimize the number of clicks required to accomplish the task.&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you for your time&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2023 21:24:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12018557#M28872</guid>
      <dc:creator>Temssi.d</dc:creator>
      <dc:date>2023-06-07T21:24:35Z</dc:date>
    </item>
    <item>
      <title>Re: Script for sequential object duplication using 'copy' command and 'FROM' option in ORTHO mode</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12019767#M28873</link>
      <description>&lt;P&gt;A bit more coding required, U70,90,55 or maybe D70,90,55 or R70,90,55 don't forget L70,90,55.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A simple 4 direction choice.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2023 10:16:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12019767#M28873</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2023-06-08T10:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: Script for sequential object duplication using 'copy' command and 'FROM' option in ORTHO mode</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12019817#M28874</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5656544"&gt;@Temssi.d&lt;/a&gt;&amp;nbsp; hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i see you got out from here s&lt;SPAN&gt;atisfied over the top which is close to winning a medal&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;nevertheless i made some fine tunings and thought you should have &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Moshe&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2023 10:31:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12019817#M28874</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2023-06-08T10:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: Script for sequential object duplication using 'copy' command and 'FROM' option in ORTHO mode</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12048819#M28875</link>
      <description>&lt;P&gt;Thank you moshe&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Great solution!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":crown:"&gt;👑&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2023 06:12:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/script-for-sequential-object-duplication-using-copy-command-and/m-p/12048819#M28875</guid>
      <dc:creator>Temssi.d</dc:creator>
      <dc:date>2023-06-21T06:12:10Z</dc:date>
    </item>
  </channel>
</rss>

