<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments on: Free AutoLisp Routine (Text Transfer)</title>
	<atom:link href="http://pinoycad.net/2009/04/07/free-autolisp-routine-text-transfer/feed/" rel="self" type="application/rss+xml" />
	<link>http://pinoycad.net/2009/04/07/free-autolisp-routine-text-transfer/</link>
	<description>An AutoCAD tutorial blog covering all about AutoCAD, architecture and Drafting</description>
	<pubDate>Sun, 01 Aug 2010 06:43:42 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Orzabal</title>
		<link>http://pinoycad.net/2009/04/07/free-autolisp-routine-text-transfer/comment-page-1/#comment-7184</link>
		<dc:creator>Orzabal</dc:creator>
		<pubDate>Thu, 26 Nov 2009 02:52:02 +0000</pubDate>
		<guid isPermaLink="false">http://pinoycad.net/?p=392#comment-7184</guid>
		<description>clix is good in lisp! i know this guy :)</description>
		<content:encoded><![CDATA[<p>clix is good in lisp! i know this guy <img src='http://pinoycad.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ronald Maneja</title>
		<link>http://pinoycad.net/2009/04/07/free-autolisp-routine-text-transfer/comment-page-1/#comment-6540</link>
		<dc:creator>Ronald Maneja</dc:creator>
		<pubDate>Fri, 11 Sep 2009 09:51:53 +0000</pubDate>
		<guid isPermaLink="false">http://pinoycad.net/?p=392#comment-6540</guid>
		<description>You're welcome sir, :-)</description>
		<content:encoded><![CDATA[<p>You&#8217;re welcome sir, <img src='http://pinoycad.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Admin</title>
		<link>http://pinoycad.net/2009/04/07/free-autolisp-routine-text-transfer/comment-page-1/#comment-6527</link>
		<dc:creator>Admin</dc:creator>
		<pubDate>Thu, 10 Sep 2009 13:05:29 +0000</pubDate>
		<guid isPermaLink="false">http://pinoycad.net/?p=392#comment-6527</guid>
		<description>@Ronald

Thank you for that ronald.</description>
		<content:encoded><![CDATA[<p>@Ronald</p>
<p>Thank you for that ronald.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ronald Maneja</title>
		<link>http://pinoycad.net/2009/04/07/free-autolisp-routine-text-transfer/comment-page-1/#comment-6459</link>
		<dc:creator>Ronald Maneja</dc:creator>
		<pubDate>Sun, 06 Sep 2009 01:47:35 +0000</pubDate>
		<guid isPermaLink="false">http://pinoycad.net/?p=392#comment-6459</guid>
		<description>hi, i just read this one today,  I made a few adjustments because there is no need for polyline and insert checking.  This works also for texts nested in blocks, just do a regen to update the block.


(defun c:tt (/ A B)
  (if (setq A (nentsel "\nSelect TEXT to TRANSFER: "))
    (progn
      (setq A (cdr (assoc 1 (entget (car A)))))
      (while (setq B (car (nentsel "\nSelect TEXT item to be REPLACED: ")))
	(entmod
	  (subst
	    (cons 1 A)
	    (assoc 1 (entget B))
	    (entget B)
	  ) ;_ end of subst
	) ;_ end of entmod
      ) ;_ end of while
    ) ;_ end of progn
  ) ;_ end of if
  (princ)
) ;_ end of defun</description>
		<content:encoded><![CDATA[<p>hi, i just read this one today,  I made a few adjustments because there is no need for polyline and insert checking.  This works also for texts nested in blocks, just do a regen to update the block.</p>
<p>(defun c:tt (/ A B)<br />
  (if (setq A (nentsel &#8220;\nSelect TEXT to TRANSFER: &#8220;))<br />
    (progn<br />
      (setq A (cdr (assoc 1 (entget (car A)))))<br />
      (while (setq B (car (nentsel &#8220;\nSelect TEXT item to be REPLACED: &#8220;)))<br />
	(entmod<br />
	  (subst<br />
	    (cons 1 A)<br />
	    (assoc 1 (entget B))<br />
	    (entget B)<br />
	  ) ;_ end of subst<br />
	) ;_ end of entmod<br />
      ) ;_ end of while<br />
    ) ;_ end of progn<br />
  ) ;_ end of if<br />
  (princ)<br />
) ;_ end of defun</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CADcaster &#187; How to Load an AutoLISP File</title>
		<link>http://pinoycad.net/2009/04/07/free-autolisp-routine-text-transfer/comment-page-1/#comment-6433</link>
		<dc:creator>CADcaster &#187; How to Load an AutoLISP File</dc:creator>
		<pubDate>Fri, 04 Sep 2009 15:37:13 +0000</pubDate>
		<guid isPermaLink="false">http://pinoycad.net/?p=392#comment-6433</guid>
		<description>[...] More of this method here in this post Free AutoLISP Routine. [...]</description>
		<content:encoded><![CDATA[<p>[...] More of this method here in this post Free AutoLISP Routine. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How to Load an AutoLISP File &#124; All About CAD</title>
		<link>http://pinoycad.net/2009/04/07/free-autolisp-routine-text-transfer/comment-page-1/#comment-6380</link>
		<dc:creator>How to Load an AutoLISP File &#124; All About CAD</dc:creator>
		<pubDate>Tue, 01 Sep 2009 16:00:33 +0000</pubDate>
		<guid isPermaLink="false">http://pinoycad.net/?p=392#comment-6380</guid>
		<description>[...] More of this method here in this post Free AutoLISP Routine. [...]</description>
		<content:encoded><![CDATA[<p>[...] More of this method here in this post Free AutoLISP Routine. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How to Load an AutoLISP File &#124; PinoyCAD[dot]net &#124; Your Daily dose of AutoCAD Tutorials</title>
		<link>http://pinoycad.net/2009/04/07/free-autolisp-routine-text-transfer/comment-page-1/#comment-6374</link>
		<dc:creator>How to Load an AutoLISP File &#124; PinoyCAD[dot]net &#124; Your Daily dose of AutoCAD Tutorials</dc:creator>
		<pubDate>Tue, 01 Sep 2009 08:02:23 +0000</pubDate>
		<guid isPermaLink="false">http://pinoycad.net/?p=392#comment-6374</guid>
		<description>[...] of this method here in this post Free AutoLISP Routine.   Share and [...]</description>
		<content:encoded><![CDATA[<p>[...] of this method here in this post Free AutoLISP Routine.   Share and [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: clixs</title>
		<link>http://pinoycad.net/2009/04/07/free-autolisp-routine-text-transfer/comment-page-1/#comment-5288</link>
		<dc:creator>clixs</dc:creator>
		<pubDate>Thu, 04 Jun 2009 00:06:15 +0000</pubDate>
		<guid isPermaLink="false">http://pinoycad.net/?p=392#comment-5288</guid>
		<description>Oh sorry for the last post, please remove it coz when i try to copy &#38; paste the code it says too many arguments. Your forum automatically converts the open and close apostrophe ("") to a web characters.

For the people who wants to try this out please replace the Open &#38; Close apostrophe in notepad then try to save it, it will work fine. I also tried it to 2007 and it works perfect too.

clixs (email: clirrie@yahoo.com)
Autolisp Programmer</description>
		<content:encoded><![CDATA[<p>Oh sorry for the last post, please remove it coz when i try to copy &amp; paste the code it says too many arguments. Your forum automatically converts the open and close apostrophe (&#8221;") to a web characters.</p>
<p>For the people who wants to try this out please replace the Open &amp; Close apostrophe in notepad then try to save it, it will work fine. I also tried it to 2007 and it works perfect too.</p>
<p>clixs (email: <a href="mailto:clirrie@yahoo.com">clirrie@yahoo.com</a>)<br />
Autolisp Programmer</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: clixs</title>
		<link>http://pinoycad.net/2009/04/07/free-autolisp-routine-text-transfer/comment-page-1/#comment-5287</link>
		<dc:creator>clixs</dc:creator>
		<pubDate>Thu, 04 Jun 2009 00:01:24 +0000</pubDate>
		<guid isPermaLink="false">http://pinoycad.net/?p=392#comment-5287</guid>
		<description>DEBUG IT:

Program Structures are fine only that you have a special characters on the quote signs (""). Here it is;

(defun c:tt ( / A B)
 (setq A (cdr (assoc 1 (entget (car (entsel "Select TEXT to be TRANSFER: "))))))
    (while (setq B (car (entsel "Select TEXT item to be REPLACE: ")))
    (setq C (entget B))
    (entmod (subst (cons 1 A)(assoc 1 C)C))
   (if (or (= (cdr (assoc 0 C)) "POLYLINE")(= (cdr (assoc 0 C)) "INSERT"))
   (entupd B)))
(princ))

Hope you like it.
clixs
clirrie@yahoo.com</description>
		<content:encoded><![CDATA[<p>DEBUG IT:</p>
<p>Program Structures are fine only that you have a special characters on the quote signs (&#8221;"). Here it is;</p>
<p>(defun c:tt ( / A B)<br />
 (setq A (cdr (assoc 1 (entget (car (entsel &#8220;Select TEXT to be TRANSFER: &#8220;))))))<br />
    (while (setq B (car (entsel &#8220;Select TEXT item to be REPLACE: &#8220;)))<br />
    (setq C (entget B))<br />
    (entmod (subst (cons 1 A)(assoc 1 C)C))<br />
   (if (or (= (cdr (assoc 0 C)) &#8220;POLYLINE&#8221;)(= (cdr (assoc 0 C)) &#8220;INSERT&#8221;))<br />
   (entupd B)))<br />
(princ))</p>
<p>Hope you like it.<br />
clixs<br />
<a href="mailto:clirrie@yahoo.com">clirrie@yahoo.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: clixs</title>
		<link>http://pinoycad.net/2009/04/07/free-autolisp-routine-text-transfer/comment-page-1/#comment-5286</link>
		<dc:creator>clixs</dc:creator>
		<pubDate>Wed, 03 Jun 2009 23:58:59 +0000</pubDate>
		<guid isPermaLink="false">http://pinoycad.net/?p=392#comment-5286</guid>
		<description>I got better routines in copying text from one to another. I can share it here with you. I can do a lot of Autolisp programming too, but it will cost you some bucks.

To the Author:
Keep up the good work for contributing your experience to the Filipino Community. I've been mastering Autocadd too for 13 years and counting.</description>
		<content:encoded><![CDATA[<p>I got better routines in copying text from one to another. I can share it here with you. I can do a lot of Autolisp programming too, but it will cost you some bucks.</p>
<p>To the Author:<br />
Keep up the good work for contributing your experience to the Filipino Community. I&#8217;ve been mastering Autocadd too for 13 years and counting.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
