<?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: Flip Dimension Arrowheads</title>
	<atom:link href="http://www.lazydrafter.com/autocad-tips/flip-dimension-arrowheads/feed" rel="self" type="application/rss+xml" />
	<link>http://www.lazydrafter.com/autocad-tips/flip-dimension-arrowheads</link>
	<description>AutoCAD tips for the lazy drafter.</description>
	<lastBuildDate>Thu, 02 Feb 2012 09:34:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Mike</title>
		<link>http://www.lazydrafter.com/autocad-tips/flip-dimension-arrowheads/comment-page-1#comment-261</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Wed, 26 Nov 2008 16:41:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.lazydrafter.com/?p=553#comment-261</guid>
		<description>Very helpful.  Us old timers (&gt;R11 command line folks) still don&#039;t use the right click often enough to notice all these options available to us.</description>
		<content:encoded><![CDATA[<p>Very helpful.  Us old timers (&gt;R11 command line folks) still don&#8217;t use the right click often enough to notice all these options available to us.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Jones</title>
		<link>http://www.lazydrafter.com/autocad-tips/flip-dimension-arrowheads/comment-page-1#comment-156</link>
		<dc:creator>Josh Jones</dc:creator>
		<pubDate>Tue, 21 Oct 2008 16:29:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.lazydrafter.com/?p=553#comment-156</guid>
		<description>yuriy,

Have you tried checking on the Autodesk forums to see if anyone has any methods for converting lisp to diesel? I can&#039;t help you with this. Sorry.</description>
		<content:encoded><![CDATA[<p>yuriy,</p>
<p>Have you tried checking on the Autodesk forums to see if anyone has any methods for converting lisp to diesel? I can&#8217;t help you with this. Sorry.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: W. Kirk Crawford</title>
		<link>http://www.lazydrafter.com/autocad-tips/flip-dimension-arrowheads/comment-page-1#comment-155</link>
		<dc:creator>W. Kirk Crawford</dc:creator>
		<pubDate>Tue, 21 Oct 2008 02:18:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.lazydrafter.com/?p=553#comment-155</guid>
		<description>yuriy,

Lisp doesn&#039;t work in LT.</description>
		<content:encoded><![CDATA[<p>yuriy,</p>
<p>Lisp doesn&#8217;t work in LT.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yuriy</title>
		<link>http://www.lazydrafter.com/autocad-tips/flip-dimension-arrowheads/comment-page-1#comment-152</link>
		<dc:creator>yuriy</dc:creator>
		<pubDate>Mon, 20 Oct 2008 22:19:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.lazydrafter.com/?p=553#comment-152</guid>
		<description>do you know how to convert this text editing lisp into diesel expression.Im trying to use this lisp but doest work in autocad LT. Thanks


(defun COPYEDITTXT (/ ent atortxt modtxt txtormtxt el mt selatt )

(setvar &quot;cmdecho&quot; 0)
(setq ent (nentselp &quot;Select source Text: &quot; ))

(if ent
  (progn
    (setq atortxt (cdr(assoc 1 (entget (car ent )))))  
    (setq cntr 0)
    (while (&lt; cntr 1)
      (setq modtxt (nentselp &quot;\n Select Text to modify: &quot;))
      (if modtxt
        (progn
          (setq txtormtxt (cdr(assoc 0 (entget (car modtxt )))))  
	  (cond
	    ((or (= txtormtxt &quot;TEXT&quot;)(= txtormtxt &quot;MTEXT&quot;)) 
		(progn
                  (setq dimormtxt (cdr(assoc 42 (entget (car modtxt )))))  
		  (if (/= dimormtxt nil)
	  	    (progn

    		      (setq seldimt (cdr (assoc -1 (entget (car modtxt )))))
                      (setq strdimedit (substr atortxt 5 (strlen atortxt)))
		      (command &quot;dimedit&quot; &quot;n&quot; strdimedit seldimt &quot;&quot;)

		      ;(setq el (entget (car modtxt )))         
	      	      ;(setq mt (subst (cons 1 atortxt) (assoc 1 EL) EL))
              	      ;(entmod mt)
		      ;(command &quot;regen&quot;)

		    )
		    (progn
		      (setq el (entget (car modtxt )))         
	      	      (setq mt (subst (cons 1 atortxt) (assoc 1 EL) EL))
              	      (entmod mt)
		    )
		  )
		)
	    )
	    ((= txtormtxt &quot;ATTRIB&quot;)
		(progn
		  (setq selatt (cdr (assoc -1 (entget (car modtxt )))))
                  (command &quot;-attedit&quot; &quot;&quot; &quot;&quot;	&quot;&quot; &quot;&quot; selatt &quot;v&quot; &quot;r&quot; atortxt &quot;&quot;)
		)
	    )
	    (T (princ &quot;\n Invalid Selection... &quot;))
	  )
	(setq cntr 0)
        )
      (setq cntr (  cntr 1))
      )
    );while
  )
)
(princ)
)</description>
		<content:encoded><![CDATA[<p>do you know how to convert this text editing lisp into diesel expression.Im trying to use this lisp but doest work in autocad LT. Thanks</p>
<p>(defun COPYEDITTXT (/ ent atortxt modtxt txtormtxt el mt selatt )</p>
<p>(setvar &quot;cmdecho&quot; 0)<br />
(setq ent (nentselp &quot;Select source Text: &quot; ))</p>
<p>(if ent<br />
  (progn<br />
    (setq atortxt (cdr(assoc 1 (entget (car ent )))))<br />
    (setq cntr 0)<br />
    (while (&amp;lt; cntr 1)<br />
      (setq modtxt (nentselp &quot;\n Select Text to modify: &quot;))<br />
      (if modtxt<br />
        (progn<br />
          (setq txtormtxt (cdr(assoc 0 (entget (car modtxt )))))<br />
	  (cond<br />
	    ((or (= txtormtxt &quot;TEXT&quot;)(= txtormtxt &quot;MTEXT&quot;))<br />
		(progn<br />
                  (setq dimormtxt (cdr(assoc 42 (entget (car modtxt )))))<br />
		  (if (/= dimormtxt nil)<br />
	  	    (progn</p>
<p>    		      (setq seldimt (cdr (assoc -1 (entget (car modtxt )))))<br />
                      (setq strdimedit (substr atortxt 5 (strlen atortxt)))<br />
		      (command &quot;dimedit&quot; &quot;n&quot; strdimedit seldimt &quot;&quot;)</p>
<p>		      ;(setq el (entget (car modtxt )))<br />
	      	      ;(setq mt (subst (cons 1 atortxt) (assoc 1 EL) EL))<br />
              	      ;(entmod mt)<br />
		      ;(command &quot;regen&quot;)</p>
<p>		    )<br />
		    (progn<br />
		      (setq el (entget (car modtxt )))<br />
	      	      (setq mt (subst (cons 1 atortxt) (assoc 1 EL) EL))<br />
              	      (entmod mt)<br />
		    )<br />
		  )<br />
		)<br />
	    )<br />
	    ((= txtormtxt &quot;ATTRIB&quot;)<br />
		(progn<br />
		  (setq selatt (cdr (assoc -1 (entget (car modtxt )))))<br />
                  (command &quot;-attedit&quot; &quot;&quot; &quot;&quot;	&quot;&quot; &quot;&quot; selatt &quot;v&quot; &quot;r&quot; atortxt &quot;&quot;)<br />
		)<br />
	    )<br />
	    (T (princ &quot;\n Invalid Selection&#8230; &quot;))<br />
	  )<br />
	(setq cntr 0)<br />
        )<br />
      (setq cntr (  cntr 1))<br />
      )<br />
    );while<br />
  )<br />
)<br />
(princ)<br />
)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://www.lazydrafter.com/autocad-tips/flip-dimension-arrowheads/comment-page-1#comment-149</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Sat, 18 Oct 2008 05:51:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.lazydrafter.com/?p=553#comment-149</guid>
		<description>You can also assign the command to an alias (I recommend &quot;FA&quot;) for super quick arrow flipping.</description>
		<content:encoded><![CDATA[<p>You can also assign the command to an alias (I recommend &quot;FA&quot;) for super quick arrow flipping.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gibay</title>
		<link>http://www.lazydrafter.com/autocad-tips/flip-dimension-arrowheads/comment-page-1#comment-148</link>
		<dc:creator>gibay</dc:creator>
		<pubDate>Fri, 17 Oct 2008 21:38:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.lazydrafter.com/?p=553#comment-148</guid>
		<description>or you can pick/select the dimension near the arrow head you want to flip and use the right mouse button (shortcut menu) and choose flip arrow.</description>
		<content:encoded><![CDATA[<p>or you can pick/select the dimension near the arrow head you want to flip and use the right mouse button (shortcut menu) and choose flip arrow.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

