<?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: (entget (car (entsel))) for pline in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entget-car-entsel-for-pline/m-p/7343795#M115607</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;P&gt;Sorry I missed that. &amp;nbsp;Thanks for pointing that out. The method, however, does make assumptions about the order of the entget&amp;nbsp;list (that the extrusion vector will always be last). &amp;nbsp;Though It is not likely that the order will change, by&amp;nbsp;selecting only the 10 association groups you are &lt;U&gt;&lt;EM&gt;guaranteed&lt;/EM&gt;&lt;/U&gt; not to get any other items.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yes, I see your point. Kudos!&lt;/P&gt;
&lt;P&gt;But wait, what if&amp;nbsp;DXF 10&amp;nbsp;changes to 11. Then is my code&amp;nbsp;better? Maybe not even then, since dxf 10 going to 11 is extremely&amp;nbsp;less likely&amp;nbsp;when compared&amp;nbsp;to the&amp;nbsp;dxf order changing. No assumptions there, since I exactly know how Autodesk will&amp;nbsp;design every&amp;nbsp;upcoming release&amp;nbsp;&lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://forums.autodesk.com/i/smilies/16x16_smiley-wink.png" alt="Smiley Wink" title="Smiley Wink" /&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 31 Aug 2017 22:41:37 GMT</pubDate>
    <dc:creator>Ranjit_Singh</dc:creator>
    <dc:date>2017-08-31T22:41:37Z</dc:date>
    <item>
      <title>(entget (car (entsel))) for pline</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entget-car-entsel-for-pline/m-p/7343540#M115602</link>
      <description>&lt;P&gt;Hi people!!!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I´m trying write a code that insert a block in an each point of vertex, but all vertex has the same number (10) and the block just insert in the first point.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;see my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(defun c:test ()&lt;/P&gt;&lt;P&gt;(setvar "osmode" 0)&lt;BR /&gt;(setq selecao_geral (ssget))&lt;BR /&gt;(setq s1 (ssget "_p" '((0 . "LWPOLYLINE") (8 . "F-SC-GREIDE"))))&lt;BR /&gt;(setq pline (cdr (assoc 10 (entget (ssname s1 0)))))&lt;BR /&gt;(command "_insert" "C:/Users/alexa/Desktop/Alexandre/12.LISP'S PARA AUTOCAD/BLOCOS/PIRULITO" pline "1" "1" "0" "XX")&lt;BR /&gt;(princ)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;how can i insert blocks in all vertex?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please!!!!&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 20:38:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entget-car-entsel-for-pline/m-p/7343540#M115602</guid>
      <dc:creator>alexandre_benekowski</dc:creator>
      <dc:date>2017-08-31T20:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: (entget (car (entsel))) for pline</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entget-car-entsel-for-pline/m-p/7343580#M115603</link>
      <description>&lt;P&gt;Maybe like this&lt;/P&gt;
&lt;PRE&gt;(defun c:test  (/ ctr s1)
  (setvar "osmode" 0)
  (setq s1  (ssget  '((0 . "LWPOLYLINE") (8 . "F-SC-GREIDE")))
        ctr 0)
  (repeat (sslength s1)
    (foreach i  (cdr (reverse (vl-remove-if-not 'listp (mapcar 'cdr (entget (ssname s1 ctr))))))
      (command "_insert" "C:/Users/alexa/Desktop/Alexandre/12.LISP'S PARA AUTOCAD/BLOCOS/PIRULITO" i "1" "1" "0" "XX"))
    (setq ctr (1+ ctr)))
  (princ))&lt;/PRE&gt;
&lt;P&gt;Also note that you do not need to get selectionset and then call previous. I am not sure of the "XX" argument, may be that is for some attribute.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="insert_blocks.gif" style="width: 705px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/396406iE36731037B6AC670/image-size/large?v=v2&amp;amp;px=999" role="button" title="insert_blocks.gif" alt="insert_blocks.gif" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 20:54:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entget-car-entsel-for-pline/m-p/7343580#M115603</guid>
      <dc:creator>Ranjit_Singh</dc:creator>
      <dc:date>2017-08-31T20:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: (entget (car (entsel))) for pline</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entget-car-entsel-for-pline/m-p/7343619#M115604</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3261555"&gt;@Ranjit_Singh&lt;/a&gt;'s got a solution that is close but might not discriminate the list enough. In addition to points, there is an extrusion vector list which would cause an extra block to be inserted. &amp;nbsp;This approach would also work but without the extra insertion. &amp;nbsp;I commented out your layer and block command. &amp;nbsp;Just uncomment it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(defun c:test ()
  (setvar "osmode" 0)
  (setvar "pdmode" 3) ;added to make points visible.
  ;;(setq selecao_geral (ssget))
  (setq s1 (ssget '((0 . "LWPOLYLINE") ;|(8 . "F-SC-GREIDE")|;)))
  (foreach n (cdrs 10 (entget (ssname s1 0)))
    ;;(command "_insert" "C:/Users/alexa/Desktop/Alexandre/12.LISP'S PARA AUTOCAD/BLOCOS/PIRULITO" n "1" "1" "0" "XX")
    (command "point" n)
  )
  (princ)
)


;;;This little routine will return a list of all
;;;instances of the supplied association pointer. Use like so:
;;;(cdrs 10 (entget (car (entsel "\nSelect a polyline"))))
;;;returns something like this:
;;;((259.943 -252.219) (214.182 -140.305) (254.223 -92.925) (215.0 -21.0386)
;;;(253.406 41.8621) (215.817 112.115))
;;;Michael Puckett
(defun cdrs (key lst / pair rtn)
  (while (setq pair (assoc key lst))
    (setq rtn (cons (cdr pair) rtn)
	  lst (cdr (member pair lst))
    )
  )
  (reverse rtn)
)
&lt;/PRE&gt;</description>
      <pubDate>Thu, 31 Aug 2017 21:04:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entget-car-entsel-for-pline/m-p/7343619#M115604</guid>
      <dc:creator>dbroad</dc:creator>
      <dc:date>2017-08-31T21:04:04Z</dc:date>
    </item>
    <item>
      <title>Re: (entget (car (entsel))) for pline</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entget-car-entsel-for-pline/m-p/7343631#M115605</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3261555"&gt;@Ranjit_Singh&lt;/a&gt;'s got a solution that is close but might not discriminate the list enough. In addition to points, there is an extrusion vector list which would cause an extra block to be inserted. &amp;nbsp;This approach would also work but without the extra insertion. &amp;nbsp;I commented out your layer and block command. &amp;nbsp;Just uncomment it.&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/411413"&gt;@dbroad&lt;/a&gt;&amp;nbsp;I thought I removed the extrusion vector with the (cdr (reverse...&amp;nbsp;am I missing something?&lt;/P&gt;
&lt;P&gt;EDIT: I guess not.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Thu, 31 Aug 2017 21:30:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entget-car-entsel-for-pline/m-p/7343631#M115605</guid>
      <dc:creator>Ranjit_Singh</dc:creator>
      <dc:date>2017-08-31T21:30:03Z</dc:date>
    </item>
    <item>
      <title>Re: (entget (car (entsel))) for pline</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entget-car-entsel-for-pline/m-p/7343742#M115606</link>
      <description>&lt;P&gt;Sorry I missed that. &amp;nbsp;Thanks for pointing that out. The method, however, does make assumptions about the order of the entget&amp;nbsp;list (that the extrusion vector will always be last). &amp;nbsp;Though It is not likely that the order will change, by&amp;nbsp;selecting only the 10 association groups you are guaranteed not to get any other items.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 22:12:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entget-car-entsel-for-pline/m-p/7343742#M115606</guid>
      <dc:creator>dbroad</dc:creator>
      <dc:date>2017-08-31T22:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: (entget (car (entsel))) for pline</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entget-car-entsel-for-pline/m-p/7343795#M115607</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;P&gt;Sorry I missed that. &amp;nbsp;Thanks for pointing that out. The method, however, does make assumptions about the order of the entget&amp;nbsp;list (that the extrusion vector will always be last). &amp;nbsp;Though It is not likely that the order will change, by&amp;nbsp;selecting only the 10 association groups you are &lt;U&gt;&lt;EM&gt;guaranteed&lt;/EM&gt;&lt;/U&gt; not to get any other items.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yes, I see your point. Kudos!&lt;/P&gt;
&lt;P&gt;But wait, what if&amp;nbsp;DXF 10&amp;nbsp;changes to 11. Then is my code&amp;nbsp;better? Maybe not even then, since dxf 10 going to 11 is extremely&amp;nbsp;less likely&amp;nbsp;when compared&amp;nbsp;to the&amp;nbsp;dxf order changing. No assumptions there, since I exactly know how Autodesk will&amp;nbsp;design every&amp;nbsp;upcoming release&amp;nbsp;&lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://forums.autodesk.com/i/smilies/16x16_smiley-wink.png" alt="Smiley Wink" title="Smiley Wink" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 22:41:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entget-car-entsel-for-pline/m-p/7343795#M115607</guid>
      <dc:creator>Ranjit_Singh</dc:creator>
      <dc:date>2017-08-31T22:41:37Z</dc:date>
    </item>
    <item>
      <title>Re: (entget (car (entsel))) for pline</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entget-car-entsel-for-pline/m-p/7343936#M115608</link>
      <description>&lt;P&gt;Another approach to the same operation, with some variations for certain particular situations, is on &lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-insert-block-at-every-vertice-of-a-polyline-in-lisp/m-p/790981/highlight/true#M16639" target="_blank"&gt;this thread&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Sep 2017 00:07:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entget-car-entsel-for-pline/m-p/7343936#M115608</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2017-09-01T00:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: (entget (car (entsel))) for pline</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entget-car-entsel-for-pline/m-p/7343974#M115609</link>
      <description>&lt;P&gt;Thanks for the link&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3261555"&gt;@Ranjit_Singh&lt;/a&gt;: &amp;nbsp;A small substitution in your program should preserve the association list methodology, but as you say, yours works fine as is, &lt;EM&gt;for now. &lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://forums.autodesk.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;....
(foreach i (mapcar 'cdr (vl-remove-if-not (function lambda (n)(= 10 (car n))) (entget (ssname s1 ctr))))
  ...)&lt;/PRE&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>Fri, 01 Sep 2017 00:37:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entget-car-entsel-for-pline/m-p/7343974#M115609</guid>
      <dc:creator>dbroad</dc:creator>
      <dc:date>2017-09-01T00:37:10Z</dc:date>
    </item>
    <item>
      <title>Re: (entget (car (entsel))) for pline</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entget-car-entsel-for-pline/m-p/7343986#M115610</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;P&gt;Thanks for the link&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3261555"&gt;@Ranjit_Singh&lt;/a&gt;: &amp;nbsp;A small substitution in your program should preserve the association list methodology, but as you say, yours works fine as is, &lt;EM&gt;for now. &lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://forums.autodesk.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You didn't quite address what happens when 10 goes to 11. Or what if they really pull a number and use 10 and 11 codes like in lines&amp;nbsp;&lt;img id="smileylol" class="emoticon emoticon-smileylol" src="https://forums.autodesk.com/i/smilies/16x16_smiley-lol.png" alt="Smiley LOL" title="Smiley LOL" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Sep 2017 00:47:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entget-car-entsel-for-pline/m-p/7343986#M115610</guid>
      <dc:creator>Ranjit_Singh</dc:creator>
      <dc:date>2017-09-01T00:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: (entget (car (entsel))) for pline</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entget-car-entsel-for-pline/m-p/7344056#M115611</link>
      <description>&lt;P&gt;Ya know, I thought I was one of the oldest farts around here, but&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3261555"&gt;@Ranjit_Singh&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/411413"&gt;@dbroad&lt;/a&gt;&amp;nbsp;are making me look like a youngster,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To get the vertices&amp;nbsp;of a lightweight polyline object...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(setq pts (@group (vlax-get lwpolyobj 'Coordinates) 2))&lt;BR /&gt;;; where...&lt;/PRE&gt;
&lt;PRE&gt;(defun @group (old n / item new)
  (while old
    (while (&amp;lt; (length item) n)
      (setq item (cons (car old) item) old (cdr old))
    )
    (setq new (cons (reverse item) new) item nil)
  )
  (reverse new)
)
&lt;/PRE&gt;</description>
      <pubDate>Fri, 01 Sep 2017 01:45:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entget-car-entsel-for-pline/m-p/7344056#M115611</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2017-09-01T01:45:51Z</dc:date>
    </item>
    <item>
      <title>Re: (entget (car (entsel))) for pline</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entget-car-entsel-for-pline/m-p/7344850#M115612</link>
      <description>&lt;P&gt;Thank you people!!!!!!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it worked!!!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much!!!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;SPAN&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Sep 2017 12:05:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entget-car-entsel-for-pline/m-p/7344850#M115612</guid>
      <dc:creator>alexandre_benekowski</dc:creator>
      <dc:date>2017-09-01T12:05:25Z</dc:date>
    </item>
  </channel>
</rss>

