<?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: Combine two lisp together in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/combine-two-lisp-together/m-p/12795258#M13570</link>
    <description>&lt;P&gt;Thanks, that works great. This will make my work a lot better. Many thanks!&lt;span class="lia-unicode-emoji" title=":hugging_face:"&gt;🤗&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 24 May 2024 11:25:36 GMT</pubDate>
    <dc:creator>C_N_van_der_Zwaag</dc:creator>
    <dc:date>2024-05-24T11:25:36Z</dc:date>
    <item>
      <title>Combine two lisp together</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/combine-two-lisp-together/m-p/12794886#M13568</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm new to using Lisp files in Autocad, so I need some help with them.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have 2 Lisp files that work great. One is for making a text from the layername out of the selected polyline. The other is for making a leader from a text.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to combine these 2 lisp, so it can make a leader out of the layername from the selected polyline.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2024 08:31:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/combine-two-lisp-together/m-p/12794886#M13568</guid>
      <dc:creator>C_N_van_der_Zwaag</dc:creator>
      <dc:date>2024-05-24T08:31:32Z</dc:date>
    </item>
    <item>
      <title>Re: Combine two lisp together</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/combine-two-lisp-together/m-p/12795251#M13569</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;check this simple one.&lt;/P&gt;&lt;LI-CODE lang="lisp"&gt;(defun c:p_layer_mleader (/ pline_data pline_layer mleader_object )
	(setq pline_data (entsel "\nPick pline: ")
		  pline_layer (cdr (assoc 8 (entget (car pline_data))))
	)
	(setvar 'cmdecho 0)
	(vl-cmdf "_.mleader" 
			 "_non" 
			 (trans (vlax-curve-getclosestpointto (car pline_data) (cadr pline_data)) 1 0) 
			 pause 
			 pline_layer
	)
	(setq mleader_object (vlax-ename-&amp;gt;vla-object (entlast)))
	(vla-put-textheight mleader_object 5)
	(vla-put-layer mleader_object pline_layer)
	(setvar 'cmdecho 1)
	(princ)
)&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 24 May 2024 11:19:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/combine-two-lisp-together/m-p/12795251#M13569</guid>
      <dc:creator>komondormrex</dc:creator>
      <dc:date>2024-05-24T11:19:42Z</dc:date>
    </item>
    <item>
      <title>Re: Combine two lisp together</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/combine-two-lisp-together/m-p/12795258#M13570</link>
      <description>&lt;P&gt;Thanks, that works great. This will make my work a lot better. Many thanks!&lt;span class="lia-unicode-emoji" title=":hugging_face:"&gt;🤗&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2024 11:25:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/combine-two-lisp-together/m-p/12795258#M13570</guid>
      <dc:creator>C_N_van_der_Zwaag</dc:creator>
      <dc:date>2024-05-24T11:25:36Z</dc:date>
    </item>
  </channel>
</rss>

