<?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 for CAD Notes</title>
	<atom:link href="http://cad-notes.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://cad-notes.com</link>
	<description>CAD Tutorials and Best Practices</description>
	<lastBuildDate>Wed, 10 Mar 2010 11:27:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on AutoCAD Layer Walk by Evalyn Buenrostro</title>
		<link>http://cad-notes.com/2009/06/autocad-layer-walk/comment-page-1/#comment-564</link>
		<dc:creator>Evalyn Buenrostro</dc:creator>
		<pubDate>Wed, 10 Mar 2010 11:27:09 +0000</pubDate>
		<guid isPermaLink="false">http://cad-notes.com/?p=16#comment-564</guid>
		<description>Thank you. great job. My spouse and i would not necessarily foresee this kind of website on a Wednesday.</description>
		<content:encoded><![CDATA[<p>Thank you. great job. My spouse and i would not necessarily foresee this kind of website on a Wednesday.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Simple Guide: 12 steps to Mastering AutoCAD by Lamar Lark</title>
		<link>http://cad-notes.com/2009/07/a-simple-guide-12-steps-to-mastering-autocad/comment-page-1/#comment-562</link>
		<dc:creator>Lamar Lark</dc:creator>
		<pubDate>Wed, 10 Mar 2010 10:18:01 +0000</pubDate>
		<guid isPermaLink="false">http://cad-notes.com/?p=45#comment-562</guid>
		<description>I normally dont submit inblogs but you  Pressured me to,  Amazing</description>
		<content:encoded><![CDATA[<p>I normally dont submit inblogs but you  Pressured me to,  Amazing</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CAD Notes &#8216;Batik Giveaway&#8217; Contest by Ibud Sumardi</title>
		<link>http://cad-notes.com/2010/03/cad-notes-batik-giveaway-contest-2/comment-page-1/#comment-556</link>
		<dc:creator>Ibud Sumardi</dc:creator>
		<pubDate>Wed, 10 Mar 2010 02:41:53 +0000</pubDate>
		<guid isPermaLink="false">http://cad-notes.com/?p=474#comment-556</guid>
		<description>To quick trim you can try by using --Extrim-- command, it just by clicking the boundary and click any side from boundary.  I used AutoCAD 2007 with Express Tools, i&#039;m not sure this command available on AutoCAD earlier version.</description>
		<content:encoded><![CDATA[<p>To quick trim you can try by using &#8211;Extrim&#8211; command, it just by clicking the boundary and click any side from boundary.  I used AutoCAD 2007 with Express Tools, i&#8217;m not sure this command available on AutoCAD earlier version.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CAD Notes &#8216;Batik Giveaway&#8217; Contest by Vivian Carvalho</title>
		<link>http://cad-notes.com/2010/03/cad-notes-batik-giveaway-contest-2/comment-page-1/#comment-540</link>
		<dc:creator>Vivian Carvalho</dc:creator>
		<pubDate>Tue, 09 Mar 2010 13:15:12 +0000</pubDate>
		<guid isPermaLink="false">http://cad-notes.com/?p=474#comment-540</guid>
		<description>These are a few AutoCad tips from me. These help me a lot.

As one of the posts here rightly says the use of left hand on the keyboard &amp; the right one on the mouse. I take a little more sharp turn on this. Change your command aliases in such a way that you use only the keys on the left hand of the keyboard. 

Zoom in &amp; zoom previous are the commands which we require very frequently. I like to do it with very simple lisp. “zx” for zoom extents &amp; “zs” for zoom previous. As I said earlier both of these command fit on the left side of the keyboard &amp; are very easy to access. Here are the short lisps for your reference,
;FOR ZOOM EXTENTS
(defun c:zx()
  (command &quot;zoom&quot; &quot;E&quot;))

;FOR ZOOM PREVIOUS;
(defun c:zs()
  (command &quot;zoom&quot; &quot;p&quot;))

This command is the most favorite in my company. It prints in clicks. Complete the page setup &amp; then just type “pp” &amp; enter while in layout. No need of seeing that print dialog box again &amp; again. Here is the lisp for your reference.
;THIS LISP IS FOR PLOTTING IN ONE CLICK- IN LAYOUTS ONLY
(defun c:pp()
  (princ &quot;Prints in one click,provided layout is set.
             \n Made easy by Vivian Carvalho&quot;)
  (setvar &quot;cmdecho&quot; 0)
  (command &quot;plot&quot; &quot;n&quot; &quot;&quot; &quot;&quot; &quot;&quot; &quot;n&quot; &quot;n&quot; &quot;y&quot;))

We all require to make zero fillets many a times. But the fillet command remembers the last radius we have input which is controlled by a system variable “filletrad”. To make zero fillets we need not change the radius every time. It is easily done by the use of shift key.
Simply activate the fillet command (by toolbar or the shortcut key) then press &amp; hold down the shift key &amp; select the lines you want to fillet. This overrides the “filletrad” variable, while still maintaining it after the command is over.

Offsetting an entity to the current layer.
When we invoke the offset command the following appears on the command line
“Specify offset distance or [Through/Erase/Layer] : “
On this instance type in “L”
The command line will say
“Enter layer option for offset objects [Current/Source] : “
On this instance type “c” &amp; continue the command as usual. Now all the new entities will be drawn in the current layer.


Thanks for reading.</description>
		<content:encoded><![CDATA[<p>These are a few AutoCad tips from me. These help me a lot.</p>
<p>As one of the posts here rightly says the use of left hand on the keyboard &amp; the right one on the mouse. I take a little more sharp turn on this. Change your command aliases in such a way that you use only the keys on the left hand of the keyboard. </p>
<p>Zoom in &amp; zoom previous are the commands which we require very frequently. I like to do it with very simple lisp. “zx” for zoom extents &amp; “zs” for zoom previous. As I said earlier both of these command fit on the left side of the keyboard &amp; are very easy to access. Here are the short lisps for your reference,<br />
;FOR ZOOM EXTENTS<br />
(defun c:zx()<br />
  (command &#8220;zoom&#8221; &#8220;E&#8221;))</p>
<p>;FOR ZOOM PREVIOUS;<br />
(defun c:zs()<br />
  (command &#8220;zoom&#8221; &#8220;p&#8221;))</p>
<p>This command is the most favorite in my company. It prints in clicks. Complete the page setup &amp; then just type “pp” &amp; enter while in layout. No need of seeing that print dialog box again &amp; again. Here is the lisp for your reference.<br />
;THIS LISP IS FOR PLOTTING IN ONE CLICK- IN LAYOUTS ONLY<br />
(defun c:pp()<br />
  (princ &#8220;Prints in one click,provided layout is set.<br />
             \n Made easy by Vivian Carvalho&#8221;)<br />
  (setvar &#8220;cmdecho&#8221; 0)<br />
  (command &#8220;plot&#8221; &#8220;n&#8221; &#8220;&#8221; &#8220;&#8221; &#8220;&#8221; &#8220;n&#8221; &#8220;n&#8221; &#8220;y&#8221;))</p>
<p>We all require to make zero fillets many a times. But the fillet command remembers the last radius we have input which is controlled by a system variable “filletrad”. To make zero fillets we need not change the radius every time. It is easily done by the use of shift key.<br />
Simply activate the fillet command (by toolbar or the shortcut key) then press &amp; hold down the shift key &amp; select the lines you want to fillet. This overrides the “filletrad” variable, while still maintaining it after the command is over.</p>
<p>Offsetting an entity to the current layer.<br />
When we invoke the offset command the following appears on the command line<br />
“Specify offset distance or [Through/Erase/Layer] : “<br />
On this instance type in “L”<br />
The command line will say<br />
“Enter layer option for offset objects [Current/Source] : “<br />
On this instance type “c” &amp; continue the command as usual. Now all the new entities will be drawn in the current layer.</p>
<p>Thanks for reading.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
