<?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: Lisp Text in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10604908#M55798</link>
    <description>&lt;P&gt;Try this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;(defun c:amt (/ ss step i e eo ent ip  mi ma  dx elist minx maxy p1 te );
;Author: hak_vz
;https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5530556
;Created: Tuesday, September 7, 2021 
;Posted at: https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/td-p/10604639

(princ "\nSelect mtext objects to align horizontaly &amp;gt;")
(setq ss (ssget '((0 . "MTEXT"))))
(initget 7)
(setq step (getreal "\nDesired spacing between mtext objects &amp;gt;"))
(setq i -1)
(while (&amp;lt; (setq i (1+ i)) (sslength ss))
	(setq e (ssname ss i))
	(setq eo (vlax-ename-&amp;gt;vla-object e))
	(setq ip(cdr(assoc 10(entget e))))
	(vla-getBoundingbox eo 'mi 'ma)
	(setq mi (vlax-safearray-&amp;gt;list mi))
	(setq ma (vlax-safearray-&amp;gt;list ma))
	(setq dx (car(mapcar '- ma mi)))
	(setq elist (cons (list ip dx e) elist))
)
(setq minx (apply 'min(mapcar 'caar elist)))
(setq maxy (apply 'max(mapcar 'cadar elist)))
(setq p1 (list minx maxy))
(setq elist (vl-sort elist '(lambda (x y) (&amp;lt; (distance (car x) p1)(distance (car y) p1)))))
(setq i -1)
(while (&amp;lt; (setq i (1+ i)) (length elist))
(setq te (nth i elist))
(setq e (last te) ent (entget e) dx (cadr te))
(setq ent (subst (cons 10 p1) (assoc 10 ent) ent))
(entmod ent)
(setq p1 (mapcar '+ p1 (list dx 0)))
(setq p1 (mapcar '+ p1 (list step 0)))
)
(princ "\nDone!")
(princ)
)
(princ "\nCommand AMT aligns multiple MTEXT object horizontally with equal spacing")
(princ)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 07 Sep 2021 09:29:44 GMT</pubDate>
    <dc:creator>hak_vz</dc:creator>
    <dc:date>2021-09-07T09:29:44Z</dc:date>
    <item>
      <title>Lisp Text</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10604639#M55797</link>
      <description>&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;I have Mtext, I want a lisp that can sort from left to right&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="Untitled.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/962058i119C011A111D212E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Untitled.png" alt="Untitled.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Sep 2021 07:34:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10604639#M55797</guid>
      <dc:creator>chan230984</dc:creator>
      <dc:date>2021-09-07T07:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp Text</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10604908#M55798</link>
      <description>&lt;P&gt;Try this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;(defun c:amt (/ ss step i e eo ent ip  mi ma  dx elist minx maxy p1 te );
;Author: hak_vz
;https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5530556
;Created: Tuesday, September 7, 2021 
;Posted at: https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/td-p/10604639

(princ "\nSelect mtext objects to align horizontaly &amp;gt;")
(setq ss (ssget '((0 . "MTEXT"))))
(initget 7)
(setq step (getreal "\nDesired spacing between mtext objects &amp;gt;"))
(setq i -1)
(while (&amp;lt; (setq i (1+ i)) (sslength ss))
	(setq e (ssname ss i))
	(setq eo (vlax-ename-&amp;gt;vla-object e))
	(setq ip(cdr(assoc 10(entget e))))
	(vla-getBoundingbox eo 'mi 'ma)
	(setq mi (vlax-safearray-&amp;gt;list mi))
	(setq ma (vlax-safearray-&amp;gt;list ma))
	(setq dx (car(mapcar '- ma mi)))
	(setq elist (cons (list ip dx e) elist))
)
(setq minx (apply 'min(mapcar 'caar elist)))
(setq maxy (apply 'max(mapcar 'cadar elist)))
(setq p1 (list minx maxy))
(setq elist (vl-sort elist '(lambda (x y) (&amp;lt; (distance (car x) p1)(distance (car y) p1)))))
(setq i -1)
(while (&amp;lt; (setq i (1+ i)) (length elist))
(setq te (nth i elist))
(setq e (last te) ent (entget e) dx (cadr te))
(setq ent (subst (cons 10 p1) (assoc 10 ent) ent))
(entmod ent)
(setq p1 (mapcar '+ p1 (list dx 0)))
(setq p1 (mapcar '+ p1 (list step 0)))
)
(princ "\nDone!")
(princ)
)
(princ "\nCommand AMT aligns multiple MTEXT object horizontally with equal spacing")
(princ)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Sep 2021 09:29:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10604908#M55798</guid>
      <dc:creator>hak_vz</dc:creator>
      <dc:date>2021-09-07T09:29:44Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp Text</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10605081#M55799</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3851937"&gt;@chan230984&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi All&lt;/P&gt;
&lt;P&gt;I have Mtext, I want a lisp that can sort from left to right&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You want the values sorted yes? , Based on the chainage value corretct?&lt;/P&gt;
&lt;P&gt;if not then just use TEXTALIGN&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Sep 2021 10:49:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10605081#M55799</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2021-09-07T10:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp Text</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10605107#M55800</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;&lt;/P&gt;&lt;P&gt;yes , i want the values sorted , Based on the chainage value&lt;/P&gt;</description>
      <pubDate>Tue, 07 Sep 2021 10:59:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10605107#M55800</guid>
      <dc:creator>chan230984</dc:creator>
      <dc:date>2021-09-07T10:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp Text</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10605133#M55801</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3851937"&gt;@chan230984&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;yes , i want the values sorted , Based on the chainage value&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Lets make it easier and sorted with station number&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;"PI_001" -&amp;gt;&amp;nbsp;&amp;nbsp;"PI_002" -&amp;gt; etc&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;(defun c:SAL (/ ss _NTS pt d i ent MtextColl); sort and align
(defun _NTS (v)
  (vl-list-&amp;gt;string
           (Vl-remove-if-not '(lambda (n)(&amp;lt;= 48 n 57))
		(vl-string-&amp;gt;list v)
	     )
	   )
  )
  (if (and
	(setq ss (ssget "_:L" '((0 . "MTEXT")(1 . "*@@_###:*"))))
	(setq pt (getpoint "\nPick new location: "))
	(setq d (getdist pt "\nPick distance between Mtext insertion"))
	)
    (progn
      (repeat (setq i (sslength ss))
	(setq ent (entget (setq e (ssname ss (setq i (1- i))))))
	(setq MtextColl (cons
			  (list (_NTS (read (cdr (assoc 1 ent))))(assoc 10 ent) ent) MtextColl))
	)
        (setq MtextColl (vl-sort MtextColl '(lambda (a b)
			       (&amp;lt; (distof (car a))(distof (car b))))))
      (while (setq a (Car MtextColl))
		(entmod (subst (cons 10 pt) (cadr a) (caddr a)))
	(setq  pt (polar pt 0.0 d)
	       MtextColl (Cdr MtextColl))
	)
      )
    )
  (princ)
  )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;HTH&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Sep 2021 11:28:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10605133#M55801</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2021-09-07T11:28:08Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp Text</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10605143#M55802</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;&lt;/P&gt;&lt;P&gt;; error: bad argument type: stringp PI_001:&lt;BR /&gt;Command:&lt;/P&gt;</description>
      <pubDate>Tue, 07 Sep 2021 11:15:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10605143#M55802</guid>
      <dc:creator>chan230984</dc:creator>
      <dc:date>2021-09-07T11:15:43Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp Text</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10605169#M55803</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3851937"&gt;@chan230984&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;; error: bad argument type: stringp PI_001:&lt;BR /&gt;Command:&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT size="3"&gt;I dont see that error unless you the _NTS sub is not loaded. I sugggest try copying code again.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;i Attached the lips on the previous post.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Sep 2021 11:31:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10605169#M55803</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2021-09-07T11:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp Text</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10605205#M55804</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;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;Still the same error&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;Please Let's look at the sample file I attached.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Sep 2021 11:40:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10605205#M55804</guid>
      <dc:creator>chan230984</dc:creator>
      <dc:date>2021-09-07T11:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp Text</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10605252#M55805</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3851937"&gt;@chan230984&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is modified version of code that sorts mtext according to station distance. You have to tell that before.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;(defun c:amt (/ string_to_list ss step i e eo ent ip  mi ma  dx elist minx maxy p1 te stp txt st )
;Author: hak_vz
;https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5530556
;Created: Tuesday, September 7, 2021 
;Posted at: https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/td-p/10604639
(defun string_to_list ( str del / pos )
		(if (setq pos (vl-string-search del str))
			(cons (substr str 1 pos) (string_to_list (substr str (+ pos 1 (strlen del))) del))
			(list str)
		)
	)
(princ "\nSelect mtext objects to align horizontaly &amp;gt;")
(setq ss (ssget '((0 . "MTEXT"))))
(initget 7)
(setq step (getreal "\nDesired spacing between mtext objects &amp;gt;"))
(setq i -1)
(while (&amp;lt; (setq i (1+ i)) (sslength ss))
	(setq e (ssname ss i))
	(setq eo (vlax-ename-&amp;gt;vla-object e))
	(setq ip(cdr(assoc 10(entget e))))
	(vla-getBoundingbox eo 'mi 'ma)
	(setq txt (vlax-get eo 'Textstring))
	(setq stp(car(string_to_list txt "\\")))
	(setq stp (substr stp (1-(vl-string-position (ascii "+") stp))))
	(setq stp(string_to_list txt "+"))
	(setq stp (mapcar 'atof stp))
	(setq st (+(* (car stp) 1000.0)(cadr stp)))
	(setq mi (vlax-safearray-&amp;gt;list mi))
	(setq ma (vlax-safearray-&amp;gt;list ma))
	(setq dx (car(mapcar '- ma mi)))
	(setq elist (cons (list ip dx st e) elist))
)
(setq minx (apply 'min(mapcar 'caar elist)))
(setq maxy (apply 'max(mapcar 'cadar elist)))
(setq p1 (list minx maxy))
(setq elist (vl-sort elist '(lambda (x y) (&amp;lt; (nth 2 x) (nth 2 y)))))
(setq i -1)
(while (&amp;lt; (setq i (1+ i)) (length elist))
(setq te (nth i elist))
(setq e (last te) ent (entget e) dx (cadr te))
(setq ent (subst (cons 10 p1) (assoc 10 ent) ent))
(entmod ent)
(setq p1 (mapcar '+ p1 (list dx 0)))
(setq p1 (mapcar '+ p1 (list step 0)))
)
(princ "\nDone!")
(princ)
)
(princ "\nCommand AMT aligns multiple MTEXT object horizontally with equal spacing")
(princ)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Sep 2021 12:22:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10605252#M55805</guid>
      <dc:creator>hak_vz</dc:creator>
      <dc:date>2021-09-07T12:22:28Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp Text</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10605253#M55806</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3851937"&gt;@chan230984&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;Still the same error&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Dont worry about it then&amp;nbsp;&lt;/FONT&gt;&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;DIV id="dc4772c6-a6e4-43a0-8fe8-7b944f49c995" class="myscreencast-iframe iframe-container active-myscreencast"&gt;&lt;IFRAME src="https://screencast.autodesk.com/Embed/Timeline/dc4772c6-a6e4-43a0-8fe8-7b944f49c995" width="640" height="710" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/dc4772c6-a6e4-43a0-8fe8-7b944f49c995"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="3c83688b-2097-427d-a19b-3cf56a7f64d0" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/3c83688b-2097-427d-a19b-3cf56a7f64d0"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="0c330009-785b-4123-a514-efdefc6e8cbd" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/0c330009-785b-4123-a514-efdefc6e8cbd"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="36f9cdef-53fe-4ee7-a677-2e731f14ed91" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/36f9cdef-53fe-4ee7-a677-2e731f14ed91"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="b8fd68eb-2aa8-4d13-a0b4-b03b40a09b7f" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/b8fd68eb-2aa8-4d13-a0b4-b03b40a09b7f"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="27f10fd9-6855-4d65-960f-a197c2f46268" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/27f10fd9-6855-4d65-960f-a197c2f46268"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="9d120183-26a1-4cf0-9ccb-6b68d5a8fb69" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/9d120183-26a1-4cf0-9ccb-6b68d5a8fb69"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="5de9a6b1-118e-4ed9-8114-724ee7f508ad" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="710" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/5de9a6b1-118e-4ed9-8114-724ee7f508ad"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="428647c5-4517-4fac-89e6-d8c58ab8ef2c" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/428647c5-4517-4fac-89e6-d8c58ab8ef2c"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="3eeb7056-1238-48b8-9e49-467254deae36" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/3eeb7056-1238-48b8-9e49-467254deae36"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="6ff38851-ac39-4172-92fa-9a1b35089452" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/6ff38851-ac39-4172-92fa-9a1b35089452"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="e4cf785d-6726-41f6-916c-a700a348b2fd" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/e4cf785d-6726-41f6-916c-a700a348b2fd"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="6ac19cc6-203d-4988-8185-71bf0e28930d" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/6ac19cc6-203d-4988-8185-71bf0e28930d"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="27c0bf98-a859-4951-97e8-226c197b7180" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/27c0bf98-a859-4951-97e8-226c197b7180"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="3a23f7a1-b1a1-453d-8ca0-371d3f22a001" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="680" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/3a23f7a1-b1a1-453d-8ca0-371d3f22a001"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="d32e8249-ae59-409d-a739-fc68f17dd6cd" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/d32e8249-ae59-409d-a739-fc68f17dd6cd"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="2665be45-16a3-4615-b84a-f85445a7c417" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="680" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/2665be45-16a3-4615-b84a-f85445a7c417"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="55baab99-d25b-434a-b6be-4a36c97845f7" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/55baab99-d25b-434a-b6be-4a36c97845f7"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="4743194b-8681-4f7d-9923-f05ede329cbd" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="680" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/4743194b-8681-4f7d-9923-f05ede329cbd"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="d853d241-2a0f-4740-92b4-8747d6f04945" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/d853d241-2a0f-4740-92b4-8747d6f04945"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="34a19762-928c-4d18-a0ce-1040f9777259" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/34a19762-928c-4d18-a0ce-1040f9777259"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="488eac33-697d-4b77-a3aa-b7cdc28fd05c" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="650" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/488eac33-697d-4b77-a3aa-b7cdc28fd05c"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="227f9fda-42f5-4a13-9cf1-ecc8a0c8ca66" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="680" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/227f9fda-42f5-4a13-9cf1-ecc8a0c8ca66"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="e700cbd6-71e2-4b69-9d48-a18c620885da" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="710" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/e700cbd6-71e2-4b69-9d48-a18c620885da"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="2dc1c831-ee49-4c85-ae1b-b58341063647" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="590" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/2dc1c831-ee49-4c85-ae1b-b58341063647"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="5f21159c-bca2-4d00-bdcb-e12b5a785b55" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="590" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/5f21159c-bca2-4d00-bdcb-e12b5a785b55"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="3468f88f-7c6b-4fc2-b7f6-1e6f5742c741" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/3468f88f-7c6b-4fc2-b7f6-1e6f5742c741"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="15feb03d-7b04-4311-b3dc-9cbb2f9ecde3" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="590" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/15feb03d-7b04-4311-b3dc-9cbb2f9ecde3"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="9b93c48c-6626-4bd2-9489-a504d196ac9b" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="710" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/9b93c48c-6626-4bd2-9489-a504d196ac9b"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;DIV id="4efe617b-022b-4aea-a425-d542e4898d5a" class="myscreencast-iframe iframe-container" style="display: none;"&gt;&lt;IFRAME width="640" height="620" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" data-src="https://screencast.autodesk.com/Embed/Timeline/4efe617b-022b-4aea-a425-d542e4898d5a"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 07 Sep 2021 11:58:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10605253#M55806</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2021-09-07T11:58:58Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp Text</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10605290#M55807</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;&lt;/P&gt;&lt;P&gt;Load Lisp Command: ; error: syntax error&lt;/P&gt;</description>
      <pubDate>Tue, 07 Sep 2021 12:14:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10605290#M55807</guid>
      <dc:creator>chan230984</dc:creator>
      <dc:date>2021-09-07T12:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp Text</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10605316#M55808</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3851937"&gt;@chan230984&lt;/a&gt;Edit my code above. Now it should be OK.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Sep 2021 12:23:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10605316#M55808</guid>
      <dc:creator>hak_vz</dc:creator>
      <dc:date>2021-09-07T12:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp Text</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10605476#M55809</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3851937"&gt;@chan230984&lt;/a&gt;&amp;nbsp;wrote:
&lt;P&gt;Load Lisp Command: ; error: syntax error&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Why did you marked it as solution if its not working for you&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3851937"&gt;@chan230984&lt;/a&gt;&amp;nbsp;?&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Unless i know that it does work for you then you can mark it as a solution.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;&lt;STRONG&gt;EDIT: Removed Mark at post # 10&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Sep 2021 13:39:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10605476#M55809</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2021-09-07T13:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp Text</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10605490#M55810</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;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;The code has been fixed.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&amp;nbsp;These two lisp's good work just as well.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Tue, 07 Sep 2021 13:31:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10605490#M55810</guid>
      <dc:creator>chan230984</dc:creator>
      <dc:date>2021-09-07T13:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp Text</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10605497#M55811</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; I think OP has accidentally tagged you instead of me. There was an error in my code (empty setq) that caused an error.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Sep 2021 13:33:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10605497#M55811</guid>
      <dc:creator>hak_vz</dc:creator>
      <dc:date>2021-09-07T13:33:23Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp Text</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10607260#M55812</link>
      <description>&lt;P&gt;Dont we all hate the 30 minute edit time limit so old fashioned.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Sep 2021 06:16:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-text/m-p/10607260#M55812</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2021-09-08T06:16:03Z</dc:date>
    </item>
  </channel>
</rss>

