<?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"
	>
<channel>
	<title>Comments for Rockmaster's CAD Resources</title>
	<atom:link href="http://rockmaster.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://rockmaster.wordpress.com</link>
	<description>AutoCAD for the retrofuturist</description>
	<pubDate>Mon, 07 Jul 2008 13:52:23 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
		<item>
		<title>Comment on Wipeouts and Annotative Text by Background Masks in Block Attributes &#171; Rockmaster&#8217;s CAD Resources</title>
		<link>http://rockmaster.wordpress.com/2008/03/17/wipeouts-and-annotative-text/#comment-84</link>
		<dc:creator>Background Masks in Block Attributes &#171; Rockmaster&#8217;s CAD Resources</dc:creator>
		<pubDate>Fri, 30 May 2008 17:58:05 +0000</pubDate>
		<guid isPermaLink="false">http://rockmaster.wordpress.com/?p=70#comment-84</guid>
		<description>[...] 30, 2008 by rockmaster    I&#8217;ve previously discussed how to use background masks with annotative text. Now I want to talk about using background masks in block attributes. Using the ATTDEF command, you [...]</description>
		<content:encoded><![CDATA[<p>[...] 30, 2008 by rockmaster    I&#8217;ve previously discussed how to use background masks with annotative text. Now I want to talk about using background masks in block attributes. Using the ATTDEF command, you [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Turn off Error Reporting by Shaan Hurley</title>
		<link>http://rockmaster.wordpress.com/2008/05/21/turn-off-error-reporting/#comment-82</link>
		<dc:creator>Shaan Hurley</dc:creator>
		<pubDate>Thu, 22 May 2008 02:59:51 +0000</pubDate>
		<guid isPermaLink="false">http://rockmaster.wordpress.com/?p=77#comment-82</guid>
		<description>Actually the number of reports it critical to solving the problem. So if you like to hit the error then turn it off, but if you want the error fixed...turn it on and report each crash as hopefully there are not that many and with reporting them there will be less in the future. Help your fellow users. :-)</description>
		<content:encoded><![CDATA[<p>Actually the number of reports it critical to solving the problem. So if you like to hit the error then turn it off, but if you want the error fixed&#8230;turn it on and report each crash as hopefully there are not that many and with reporting them there will be less in the future. Help your fellow users. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automatically Purge Scale List by rockmaster</title>
		<link>http://rockmaster.wordpress.com/2008/02/15/automatically-purge-scale-list/#comment-79</link>
		<dc:creator>rockmaster</dc:creator>
		<pubDate>Wed, 23 Apr 2008 16:41:18 +0000</pubDate>
		<guid isPermaLink="false">http://rockmaster.wordpress.com/?p=66#comment-79</guid>
		<description>You could create a command which purges your drawing's scalelist then saves the drawing.  Put this in a file (call it saveslp.lsp) in your AutoCAD Support directory:

&lt;code&gt;(defun c:saveslp ()
(setvar "cmdecho" 0)(terpri)(command "-scalelistedit")(command "reset")(command "yes")(command
"exit")(command "qsave")(command "")
)&lt;/code&gt;


In order to get this routine to run every time you open a file, open up acaddoc.lsp and add the following line:

&lt;code&gt;(load "saveslp")&lt;/code&gt;

Now you need to run the SAVESLP command everytime you want to save the drawing.  You can type it manually, or you can assign an alias to it, or you can use CUI to edit your button bar or menu so the standard save commands are replaced by saveslp.

A few caveats: if you close a drawing and you have unsaved changes, then you click "yes" to save those changes, this command will not be run.  You could create a similar LISP routine that purges the scalelist and runs the close command, but that still won't work with the close button (the red "x") or with CTRL-F4 or with the shutdown of AutoCAD.  Also, the command will save brand new drawings into your default save directory (Documents and Settings\USER\My Documents\Drawing1.dwg).  And it won't work with the SaveAs command - that would require another LISP routine.</description>
		<content:encoded><![CDATA[<p>You could create a command which purges your drawing&#8217;s scalelist then saves the drawing.  Put this in a file (call it saveslp.lsp) in your AutoCAD Support directory:</p>
<p><code>(defun c:saveslp ()<br />
(setvar "cmdecho" 0)(terpri)(command "-scalelistedit")(command "reset")(command "yes")(command<br />
"exit")(command "qsave")(command "")<br />
)</code></p>
<p>In order to get this routine to run every time you open a file, open up acaddoc.lsp and add the following line:</p>
<p><code>(load "saveslp")</code></p>
<p>Now you need to run the SAVESLP command everytime you want to save the drawing.  You can type it manually, or you can assign an alias to it, or you can use CUI to edit your button bar or menu so the standard save commands are replaced by saveslp.</p>
<p>A few caveats: if you close a drawing and you have unsaved changes, then you click &#8220;yes&#8221; to save those changes, this command will not be run.  You could create a similar LISP routine that purges the scalelist and runs the close command, but that still won&#8217;t work with the close button (the red &#8220;x&#8221 <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> or with CTRL-F4 or with the shutdown of AutoCAD.  Also, the command will save brand new drawings into your default save directory (Documents and Settings\USER\My Documents\Drawing1.dwg).  And it won&#8217;t work with the SaveAs command - that would require another LISP routine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automatically Purge Scale List by Anthea</title>
		<link>http://rockmaster.wordpress.com/2008/02/15/automatically-purge-scale-list/#comment-78</link>
		<dc:creator>Anthea</dc:creator>
		<pubDate>Wed, 23 Apr 2008 10:27:23 +0000</pubDate>
		<guid isPermaLink="false">http://rockmaster.wordpress.com/?p=66#comment-78</guid>
		<description>I'm looking for a way to automate the scalelistedit purge when I save my drawing. If Dwg A is xref'd into Dwg B and I work on Dwg A, I don't want scales I've created during my work session to now appear in Dwg B. And the xref-scales won't purge in Dwg B as they have to be purged out the parent drawing first.

Any suggestions on how this can be done automatically at the Save command?</description>
		<content:encoded><![CDATA[<p>I&#8217;m looking for a way to automate the scalelistedit purge when I save my drawing. If Dwg A is xref&#8217;d into Dwg B and I work on Dwg A, I don&#8217;t want scales I&#8217;ve created during my work session to now appear in Dwg B. And the xref-scales won&#8217;t purge in Dwg B as they have to be purged out the parent drawing first.</p>
<p>Any suggestions on how this can be done automatically at the Save command?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Okay, that was complicated by JHL</title>
		<link>http://rockmaster.wordpress.com/2007/11/08/okay-that-was-complicated/#comment-76</link>
		<dc:creator>JHL</dc:creator>
		<pubDate>Fri, 04 Apr 2008 21:36:37 +0000</pubDate>
		<guid isPermaLink="false">http://rockmaster.wordpress.com/2007/11/08/okay-that-was-complicated/#comment-76</guid>
		<description>I also ran into this problem.  I contacted Autodesk and they had me use microsoft uninstaller program.  This also did not work.  They then wanted me to uninstall autocad and reinstall it.

Instead, I found that if I edited the registry by deleting the contents of the HKEY_LOCAL_MACHINE\SOFTWARE\AUTODESK\ENABLERS
the object enablers install programs were able to run without problems.</description>
		<content:encoded><![CDATA[<p>I also ran into this problem.  I contacted Autodesk and they had me use microsoft uninstaller program.  This also did not work.  They then wanted me to uninstall autocad and reinstall it.</p>
<p>Instead, I found that if I edited the registry by deleting the contents of the HKEY_LOCAL_MACHINE\SOFTWARE\AUTODESK\ENABLERS<br />
the object enablers install programs were able to run without problems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Object Snaps by jose</title>
		<link>http://rockmaster.wordpress.com/bestpractices/object-snaps/#comment-68</link>
		<dc:creator>jose</dc:creator>
		<pubDate>Wed, 26 Mar 2008 17:44:15 +0000</pubDate>
		<guid isPermaLink="false">http://rockmaster.wordpress.com/bestpractices/object-snaps/#comment-68</guid>
		<description>the use of "tab" it´s a great tip, but i prefer entering the abbreviation, it´s cool!!

there is another method, it consist on, having the command started, press "ctrl or shift + right click" &#62; here we have the different snaps

greets ;)</description>
		<content:encoded><![CDATA[<p>the use of &#8220;tab&#8221; it´s a great tip, but i prefer entering the abbreviation, it´s cool!!</p>
<p>there is another method, it consist on, having the command started, press &#8220;ctrl or shift + right click&#8221; &gt; here we have the different snaps</p>
<p>greets <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Blocks by rockmaster</title>
		<link>http://rockmaster.wordpress.com/bestpractices/blocks/#comment-59</link>
		<dc:creator>rockmaster</dc:creator>
		<pubDate>Wed, 19 Mar 2008 17:19:29 +0000</pubDate>
		<guid isPermaLink="false">http://rockmaster.wordpress.com/slug/test-2/#comment-59</guid>
		<description>Laptop,

I think the important thing is to be conscious of the effects of creating a block on a non-zero layer.</description>
		<content:encoded><![CDATA[<p>Laptop,</p>
<p>I think the important thing is to be conscious of the effects of creating a block on a non-zero layer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Layer 0 by rockmaster</title>
		<link>http://rockmaster.wordpress.com/bestpractices/layer-0/#comment-58</link>
		<dc:creator>rockmaster</dc:creator>
		<pubDate>Wed, 19 Mar 2008 17:16:16 +0000</pubDate>
		<guid isPermaLink="false">http://rockmaster.wordpress.com/layer-0/#comment-58</guid>
		<description>Laptop,

Yes, it can be very useful to have a layer for each XREF.  Especially if you want to take advantage of the ability to quickly lock a layer to "screen back" an entire xref.

I tend to shy away from nested xrefs, but I admit it can be handy sometimes.

Thank you for the feedback.</description>
		<content:encoded><![CDATA[<p>Laptop,</p>
<p>Yes, it can be very useful to have a layer for each XREF.  Especially if you want to take advantage of the ability to quickly lock a layer to &#8220;screen back&#8221; an entire xref.</p>
<p>I tend to shy away from nested xrefs, but I admit it can be handy sometimes.</p>
<p>Thank you for the feedback.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Blocks by Laptop</title>
		<link>http://rockmaster.wordpress.com/bestpractices/blocks/#comment-57</link>
		<dc:creator>Laptop</dc:creator>
		<pubDate>Wed, 19 Mar 2008 17:02:08 +0000</pubDate>
		<guid isPermaLink="false">http://rockmaster.wordpress.com/slug/test-2/#comment-57</guid>
		<description>I think this rule only applies to really simple, generic blocks - basically symbols, like a light switch, WC pan or washbasin for instance.</description>
		<content:encoded><![CDATA[<p>I think this rule only applies to really simple, generic blocks - basically symbols, like a light switch, WC pan or washbasin for instance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Layer Naming by Laptop</title>
		<link>http://rockmaster.wordpress.com/bestpractices/layer-naming/#comment-56</link>
		<dc:creator>Laptop</dc:creator>
		<pubDate>Wed, 19 Mar 2008 16:43:31 +0000</pubDate>
		<guid isPermaLink="false">http://rockmaster.wordpress.com/bestpractices/layer-naming/#comment-56</guid>
		<description>I prefer to use filters for logically grouping layers. I like to call the wall layer "wall", or "wall_internal", etc. This way, to select that layer you only have type "w" from the drop down list and you immediately land at or near the desired layer.

The best method would be to employ a proper CAD standard like you describe and then allow the user to define their own aliases for the layers. Another user could always revert to the CAD standard layer names if they desired. However, presently this is tricky to implement.</description>
		<content:encoded><![CDATA[<p>I prefer to use filters for logically grouping layers. I like to call the wall layer &#8220;wall&#8221;, or &#8220;wall_internal&#8221;, etc. This way, to select that layer you only have type &#8220;w&#8221; from the drop down list and you immediately land at or near the desired layer.</p>
<p>The best method would be to employ a proper CAD standard like you describe and then allow the user to define their own aliases for the layers. Another user could always revert to the CAD standard layer names if they desired. However, presently this is tricky to implement.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
