<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>CAD Notes</title>
	<atom:link href="http://cad-notes.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://cad-notes.com</link>
	<description>CAD Tutorials and Best Practices for professionals and students</description>
	<lastBuildDate>Thu, 02 Feb 2012 14:07:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>3 Construction or Reference Objects We Rarely Use</title>
		<link>http://cad-notes.com/2012/01/3-construction-or-reference-objects-we-rarely-use/</link>
		<comments>http://cad-notes.com/2012/01/3-construction-or-reference-objects-we-rarely-use/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 07:43:30 +0000</pubDate>
		<dc:creator>Edwin Prakoso</dc:creator>
				<category><![CDATA[AutoCAD Tips]]></category>
		<category><![CDATA[autolisp]]></category>
		<category><![CDATA[macro]]></category>
		<category><![CDATA[point]]></category>
		<category><![CDATA[RAY]]></category>
		<category><![CDATA[XLINE]]></category>

		<guid isPermaLink="false">http://cad-notes.com/?p=4415</guid>
		<description><![CDATA[If you often need to create construction or reference objects in AutoCAD, have you tried XLINE, RAY, and point? XLINE and RAY are very useful to create construction lines quickly. And points, can help you to snap to a point quickly in crowded drawings!<p><hr />
<a href="http://www.bentley.com/cadnotes">
		<img src="http://static4.cad-notes.com/images/7053_PW-en_HDR_468x60_0511.gif" alt="Are you ProjectWise?" /></a></p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.linkedin.com/groups/Im-looking-AutoCAD-tips-share-2131397.S.71704994">I posted a request</a> in <a href="http://www.linkedin.com/groups/AutoCAD-Exchange-2131397">AutoCAD Exchange group on LinkedIn</a>, asking the members to share their AutoCAD tips.</p>
<p><a href="http://nl.linkedin.com/pub/harold-reuvers/8/b87/744">Harold Reuvers</a> shares he loves XLINE and he created a macro to create horizontal and vertical XLINE quickly. <a href="http://www.linkedin.com/pub/al-popovich/41/925/898">Al Popovich</a> shares his favorite object: point.</p>
<p>They remind me about AutoCAD entities/objects I rarely use. I often create elevation views by projecting a floor plan, but I don’t use XLINE! I literally draw lines by clicking a point from referenced object and another point at where I want the line ends.</p>
<p>Let’s see these objects/entities that we can use for creating quick reference or construction.</p>
<h1>The 3 objects</h1>
<h2>XLINE</h2>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="XLINE" src="http://static7.cad-notes.com/wp-content/uploads/2012/01/XLINE.png" alt="XLINE" width="228" height="171" border="0" /></p>
<p>You can activate XLINE by typing it or accessing from home tab of your ribbon. It’s on draw panel. You have to expand it before you can see this tool.</p>
<p>XLINE will create infinite line that you can use as reference or construction. It’s much better than if you click two points to create a reference line!</p>
<p>You can use it to trim objects too. And if you trim an XLINE, it will convert to a line.</p>
<p>This is very useful for creating elevation/section view from a floor plan. Or other drawing that’s created by referencing from other drawing.</p>
<h2>RAY</h2>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="ray" src="http://static0.cad-notes.com/wp-content/uploads/2012/01/ray.png" alt="ray" width="225" height="70" border="0" /></p>
<p>Ray is similar with XLINE. The difference is, you define two points: start point and direction. I prefer XLINE to help me complete my task. But if you need to create several infinite lines from a point with different angles, this is the right tool for you.</p>
<h2>POINT</h2>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="point" src="http://static2.cad-notes.com/wp-content/uploads/2012/01/point.png" alt="point" width="226" height="70" border="0" /></p>
<p>Point is point. We use it to create point references. In a very crowded drawing, you may find it’s not so easy to snap to end point or intersection. You need to some quite close until you can comfortably snap to a reference. If you place points in locations you are regularly snap to, you can quickly find a point by override <a href="http://cad-notes.com/2010/02/autocad-precise-input-drafting-tools/">your object snap</a> to node.</p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="snap_to_node" src="http://static6.cad-notes.com/wp-content/uploads/2012/01/snap_to_node.png" alt="snap_to_node" width="219" height="151" border="0" /></p>
<h1>Bonus tip</h1>
<p>Those tools are already very useful as they are. Let’s see some tips so you can use them more efficiently.</p>
<h2>Macro to create horizontal/vertical XLINE quickly</h2>
<p>We, AutoCAD users always look for faster way to work. At least less key strokes to use AutoCAD tools.</p>
<p>This is the original tip from Harold Reuvers.</p>
<h3>Using AutoLISP program</h3>
<p>You can create an AutoLISP program using this code to create horizontal XLINE only by one character:</p>
<p><code>(defun c:H ()</code></p>
<p><code> (command "XLINE" "H" pause) </code></p>
<p><code>) </code></p>
<p><code></code>Not familiar with AutoLISP? You can <a href="http://cad-notes.com/2010/11/your-first-autolisp-program-zoom-to-origin/">try to create your first one by following this tutorial</a>. Use the code above for your program.</p>
<h3>Using macro for CUI or tool palettes</h3>
<p>If you prefer to use macro, you can use this code, and place it in toolbar or ribbon by modifying CUI. Or you can place it in tool palettes:</p>
<p><code>^C^C_XLINE;H; </code></p>
<p>If you want to place it in ribbon/toolbar, <a href="http://cad-notes.com/2009/08/creating-new-command-in-autocad/">learn how you can create new command in CUI</a>. And if you prefer to place it in tool palettes, <a href="http://cad-notes.com/2011/04/how-to-add-action-recorder-macro-to-tool-palettes/">read how you can do it here</a>.</p>
<p>For vertical XLINE, you can change H to V. Those two types of XLINE are the most used (at least for me). But I prefer to use XZ and XX instead of V and H. They will not replace default AutoCAD alias, and close to each other.</p>
<h2>Point style</h2>
<p>If you are not familiar with point yet, you may think it’s useless because it’s difficult to see. You can change point style for better visibility.</p>
<p>Type DDPTYPE then enter.</p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="point_style" src="http://static7.cad-notes.com/wp-content/uploads/2012/01/point_style.png" alt="point_style" width="258" height="337" border="0" /></p>
<p>Choose the one that you think most suitable for you.</p>
<blockquote><p>Hint: Change point style to blank when you plot your drawing. AutoCAD will plot points as displayed on your screen.</p></blockquote>
<h1>Conclusion</h1>
<p>There are so many AutoCAD tools. Some of them are overlooked and we never use them. It’s not really necessary to know all the tools, but it would be great if we know the tools before deciding not to use them.</p>
<p>Do you use tools that people rarely use? And have you used these three tools above?</p>
<p>Thank you to Harold Reuvers and Al Popovich for sharing the tips!</p>
<p><hr />
<a href="http://www.bentley.com/cadnotes">
		<img src="http://static4.cad-notes.com/images/7053_PW-en_HDR_468x60_0511.gif" alt="Are you ProjectWise?" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://cad-notes.com/2012/01/3-construction-or-reference-objects-we-rarely-use/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Set default system variables in acaddoc.lsp</title>
		<link>http://cad-notes.com/2012/01/set-default-system-variables-in-acaddoc-lsp/</link>
		<comments>http://cad-notes.com/2012/01/set-default-system-variables-in-acaddoc-lsp/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 12:37:00 +0000</pubDate>
		<dc:creator>Edwin Prakoso</dc:creator>
				<category><![CDATA[AutoCAD Tips]]></category>
		<category><![CDATA[AutoLISP]]></category>
		<category><![CDATA[acaddoc.lsp]]></category>
		<category><![CDATA[filedia]]></category>
		<category><![CDATA[pickfirst]]></category>

		<guid isPermaLink="false">http://cad-notes.com/?p=4399</guid>
		<description><![CDATA[Do you find your system variables change often? Do you have to set it back to default regularly? Why not set them by default in acaddoc.lsp? Read how you can set system variables in acaddoc.lsp. And see some common variables listed here.<p><hr />
<a href="http://www.bentley.com/cadnotes">
		<img src="http://static4.cad-notes.com/images/7053_PW-en_HDR_468x60_0511.gif" alt="Are you ProjectWise?" /></a></p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://cad-notes.com/2011/10/automatically-execute-command-when-opencreate-new-file/" target="_blank">We covered about acaddoc.lsp</a> in <a href="http://cad-notes.com/contents/autolisp-articles/" target="_blank">AutoLISP tutorial</a>. Acaddoc.lsp will execute commands defined in it, every time AutoCAD open a file.</p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="acaddoc" src="http://static2.cad-notes.com/wp-content/uploads/2012/01/acaddoc.png" alt="acaddoc" width="462" height="223" border="0" /></p>
<h2>What can we do with acaddoc.lsp?</h2>
<p>Now if you know you can run commands automatically when you open a file, what would you do?</p>
<ol>
<li>You can load AutoLISP file automatically.</li>
<li>You can define new command. In <a href="http://cad-notes.com/2011/10/automatically-execute-command-when-opencreate-new-file/" target="_blank">the tutorial</a>, we redefine PLOT command to update datalink before AutoCAD starts to plot.</li>
<li>You can run commands before you start working with your file.</li>
<li>You can set system variable before you start working.</li>
</ol>
<p>In this article, we are going to focus to the last one. I found that there are many users confused why their AutoCAD doesn’t work as usual. And they become regular questions. These are some samples of changed system variables.</p>
<h2>Common unexpected system variables change</h2>
<p>These are several common system variables that change regularly.</p>
<ol>
<li><a href="http://cad-notes.com/2009/06/file-dialog-box-is-missing/" target="_blank">File dialog box is missing</a>. You have to type file path and file name from command line. It’s because FILEDIA system variable has changed.</li>
<li><a href="http://cad-notes.com/2010/11/i-cant-select-objects-then-press-del-in-autocad/" target="_blank">AutoCAD default noun-verb selection becomes verb-noun selection</a>. It’s because PICKFIRST system variable has changed.</li>
<li>Single document interface is activated. It’s controlled by SDI system variable.</li>
<li>And more…</li>
</ol>
<p>There is a debate why they changed. Most people think that it was because routines in AutoLISP or other 3rd party applications. I used to be agree with it, until I saw this problem also happens in AutoCAD LT. So it remains a mystery to me.</p>
<h2>We can force to set the variables in acaddoc.lsp</h2>
<p><a href="http://nl.linkedin.com/pub/harold-reuvers/8/b87/744" target="_blank">Harold Reuvers</a> reminds me that we can set those variables in acaddoc.lsp. I prefer to <a href="http://cad-notes.com/2010/09/backup-and-restore-autocad-system-variables/" target="_blank">backup my system variables and restore them</a> when I have problem. We can’t remember all the variables, right?</p>
<p>However, if you have specific system variable that changes often, this is a good solution.</p>
<p>All you need is to create an acaddoc.lsp using notepad or visual LISP editor.</p>
<p>Just type these code:</p>
<p><code>(SETVAR "PICKFIRST" 1) </code></p>
<p>Feel free to add more lines or change system variables and values as you preferred.</p>
<p>If you want to learn how to use Visual LISP editor, <a href="http://cad-notes.com/2010/11/your-first-autolisp-program-zoom-to-origin/" target="_blank">see this basic AutoLISP tutorial</a>.</p>
<h2>What system variables do you find change often?</h2>
<p>Do you find system variables in your AutoCAD change often? What are they?</p>
<p><hr />
<a href="http://www.bentley.com/cadnotes">
		<img src="http://static4.cad-notes.com/images/7053_PW-en_HDR_468x60_0511.gif" alt="Are you ProjectWise?" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://cad-notes.com/2012/01/set-default-system-variables-in-acaddoc-lsp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Have you used parametric design in AutoCAD?</title>
		<link>http://cad-notes.com/2012/01/using-parametric-design-in-autocad/</link>
		<comments>http://cad-notes.com/2012/01/using-parametric-design-in-autocad/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 12:02:00 +0000</pubDate>
		<dc:creator>Edwin Prakoso</dc:creator>
				<category><![CDATA[AutoCAD]]></category>
		<category><![CDATA[dimensional constraint]]></category>
		<category><![CDATA[geometric constraint]]></category>
		<category><![CDATA[parametric design]]></category>

		<guid isPermaLink="false">http://cad-notes.com/?p=4390</guid>
		<description><![CDATA[AutoCAD has parametric design capabilities since AutoCAD 2010. Have you used it? I don't use it much because it doesn't fit my workflow. I only use it for blocks, which work fine for me. However, you may have different story. Share your experience here!
Not familiar with parametric design yet? Beginners can check tutorial videos from AutoCAD Exchange, by Robert Green. Don't forget to check it!<p><hr />
<a href="http://www.bentley.com/cadnotes">
		<img src="http://static4.cad-notes.com/images/7053_PW-en_HDR_468x60_0511.gif" alt="Are you ProjectWise?" /></a></p>
]]></description>
			<content:encoded><![CDATA[<p>Autodesk currently is publishing tutorial series of parametric tutorial series on it’s <a href="http://www.facebook.com/AutoCAD">AutoCAD facebook page</a>. You can see complete video on this <a href="http://www.youtube.com/playlist?list=PLCCF8A62EE3C4A352">AutoCAD Exchange YouTube playlist</a>.</p>
<p><img class="alignnone size-medium wp-image-4393" title="autocad_parametric_design_video" src="http://static4.cad-notes.com/wp-content/uploads/2012/01/autocad_parametric_design_video-300x292.png" alt="" width="300" height="292" /></p>
<p>Even though I found parametric feature is useful, I haven’t seen AutoCAD users use it intensively. My guess is because it’s too complicated for 2D drawings. I’m quite familiar with parametric features in Inventor. But I don’t think it would be useful in AutoCAD drawings.</p>
<h1>Why not many people are using parametric design in AutoCAD?</h1>
<h2>1. Too complex</h2>
<p>Although if you were working in mechanical design, creating parametric 2D drawing is very complicated. In Inventor we create simple sketches and constraint it, then create a feature from it. Then we create another sketch, constraint it, then create another feature. Most of the sketches are simple enough.</p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="parametric_sketch_in_Inventor" src="http://static7.cad-notes.com/wp-content/uploads/2012/01/parametric_sketch_in_Inventor.png" alt="parametric_sketch_in_Inventor" width="452" height="235" border="0" /></p>
<p><em>Sample image: parametric sketch in Inventor</em></p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="complete_2D_drawing" src="http://static6.cad-notes.com/wp-content/uploads/2012/01/complete_2D_drawing.png" alt="complete_2D_drawing" width="438" height="190" border="0" /></p>
<p><em>This is how we draw in AutoCAD. Can you imagine how complex it would be, if we give constraint to the geometries?</em></p>
<p>We don’t draw everything in 2D then constraint the geometries. That would be too complex.</p>
<h2>2. Only limited in 2D</h2>
<p>If we can use it for 3D design, it would be great. But no, we can’t use parametric design in 3D. Only limited to 2D.</p>
<h2>3. Only work for current model space</h2>
<p>I was thinking if I can create user parameters then create simple sketches. Then I can create blocks, and use the parameters in my drawing. But again, I was stuck. I found that when I edit my block in block editor, I will not see my user parameter that I created in my drawing. I only able to use parameter in my model space. Not in my block, not even in my layout. There is no shared parameters here.</p>
<h1>So when will parametric design be useful in AutoCAD?</h1>
<p>Let’s think about where parametric design will work best:</p>
<ol>
<li>It has to be simple.</li>
<li>Parametric design is very useful if we need to change dimension regularly. Either in design process or we use the drawing repeatedly.</li>
</ol>
<p>If creating a parametric drawing consume more time than creating a regular drawing, then just forget about it. It may not worth the time you spent. So my best bet is to use it in block. We can use it when dynamic block can’t achieve what we want.</p>
<p><a href="http://static7.cad-notes.com/download/window_final.zip">Download this window sample</a>. This is a sample exercise in our <a href="http://cad-notes.com/e-store/autocad-block-best-practices-2nd-edition/">AutoCAD Block Book</a>.</p>
<p><a href="http://static4.cad-notes.com/wp-content/uploads/2012/01/parametric_block.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="parametric_block" src="http://static1.cad-notes.com/wp-content/uploads/2012/01/parametric_block_thumb.png" alt="parametric_block" width="450" height="227" border="0" /></a></p>
<p>&nbsp;</p>
<p>Open the file, select the block, then click the arrow near the window. You can change the window size using the arrow. You may want to experiment by adding more values in the table, from block editor.</p>
<p>This block is quite simple. If you want to try to create your own, you can <a href="http://cad-notes.com/2009/12/using-parametric-features-in-dynamic-block/">try this tutorial we published here</a>.</p>
<h1>Do you create parametric design regularly?</h1>
<p>I wonder if anyone has been using constraints in AutoCAD regularly. How do you use it? Do you find it useful? Will you share with us here?</p>
<p><hr />
<a href="http://www.bentley.com/cadnotes">
		<img src="http://static4.cad-notes.com/images/7053_PW-en_HDR_468x60_0511.gif" alt="Are you ProjectWise?" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://cad-notes.com/2012/01/using-parametric-design-in-autocad/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>AutoCAD and AutoCAD LT Sheet Set video</title>
		<link>http://cad-notes.com/2012/01/autocad-and-autocad-lt-sheet-set-video/</link>
		<comments>http://cad-notes.com/2012/01/autocad-and-autocad-lt-sheet-set-video/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 14:33:00 +0000</pubDate>
		<dc:creator>Edwin Prakoso</dc:creator>
				<category><![CDATA[AutoCAD Tutorial]]></category>
		<category><![CDATA[AutoCAD]]></category>
		<category><![CDATA[AutoCAD LT]]></category>
		<category><![CDATA[Sheet Set]]></category>

		<guid isPermaLink="false">http://cad-notes.com/?p=4343</guid>
		<description><![CDATA[Looking for resources to learn AutoCAD &#038; AutoCAD LT Sheet Set? Kate Morrical has tutorial videos!<p><hr />
<a href="http://www.bentley.com/cadnotes">
		<img src="http://static4.cad-notes.com/images/7053_PW-en_HDR_468x60_0511.gif" alt="Are you ProjectWise?" /></a></p>
]]></description>
			<content:encoded><![CDATA[<p>If you are an AutoCAD LT user, you should notice that in 2012 version you have Sheet Set Manager. Kate Morrical published a tutorial video series on her blog, <a href="http://ltunlimited.typepad.com/">LT Unlimited</a>.</p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="sheet_set" src="http://static8.cad-notes.com/wp-content/uploads/2012/01/sheet_set.png" alt="sheet_set" width="291" height="256" border="0" /></p>
<p>Sheet set is a neat way to organize your drawings in a project. You can get the advantages of Sheet Set properties by having additional fields. And don’t forget that it’s easy to send part of your projects (in a sub set) with e-transmit. It is also easy to plot all the drawings at once.</p>
<p>I was thinking to create a list to the videos, unfortunately I haven’t got the time to search her blog for them. Luckily, <a href="http://www.jtbworld.com/">Jimmy Bergmark</a> managed to compile the video links on his blog.</p>
<p>If you want to see the list, you can find the list here: <a href="http://blog.jtbworld.com/2012/01/sheet-set-manager-for-autocad-lt-videos.html">Sheet Set Manager for AutoCAD LT videos</a>.</p>
<blockquote><p>If you want to learn about Sheet set in details, you can also purchase our e-book: <a href="http://cad-notes.com/2011/01/sheet-set-manager-book/">Document management with AutoCAD Sheet Set</a>.</p></blockquote>
<p><hr />
<a href="http://www.bentley.com/cadnotes">
		<img src="http://static4.cad-notes.com/images/7053_PW-en_HDR_468x60_0511.gif" alt="Are you ProjectWise?" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://cad-notes.com/2012/01/autocad-and-autocad-lt-sheet-set-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Revit TIP: Draworder for linked files</title>
		<link>http://cad-notes.com/2012/01/revit-tip-draworder-for-linked-files/</link>
		<comments>http://cad-notes.com/2012/01/revit-tip-draworder-for-linked-files/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 02:38:10 +0000</pubDate>
		<dc:creator>Josef Remeš</dc:creator>
				<category><![CDATA[Revit Tips]]></category>
		<category><![CDATA[draw order]]></category>
		<category><![CDATA[linked files]]></category>

		<guid isPermaLink="false">http://cad-notes.com/?p=4338</guid>
		<description><![CDATA[How to control display behavior if linked files overlap some objects in Revit? In some cases you might have met problems with correct display of linked objects located above other objects. Read how to do it here.<p><hr />
<a href="http://www.bentley.com/cadnotes">
		<img src="http://static4.cad-notes.com/images/7053_PW-en_HDR_468x60_0511.gif" alt="Are you ProjectWise?" /></a></p>
]]></description>
			<content:encoded><![CDATA[<h2>Preface</h2>
<p>This tip shows how to control display behavior if linked files overlap some objects in Revit. In some cases you might have met problems with correct display of linked objects located above other objects. You need to control display behavior of overlapping objects. If you know AutoCAD, you may remember command like DRAWORDER to solve the problem. How shall we do it in Revit. The answer is easy, just read this tip, please.</p>
<p>Example: You linked DWG with floor plan and created walls overlapping positions of doors and windows.</p>
<h2>Tutorial:</h2>
<p>1.    Link CAD file (eg. DWG file) via tab Insert – Link CAD</p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Ribbon_Insert_Link" src="http://static9.cad-notes.com/wp-content/uploads/2012/01/Ribbon_Insert_Link.png" alt="Ribbon_Insert_Link" width="223" height="112" border="0" /></p>
<p>2.    Create walls (tab Home – Wall) using some methods (individual sketch or picking lines).</p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Floor Plan_01" src="http://static8.cad-notes.com/wp-content/uploads/2012/01/Floor-Plan_01.png" alt="Floor Plan_01" width="363" height="267" border="0" /></p>
<p>Situation: At this moment walls are overlapping sketch in imported symbol of CAD file and you don’t see positions of opening, windows, doors for insert objects in Revit model.</p>
<h3>Workaround of control draworder in Revit:</h3>
<p>3.    Select imported symbol and display palette Properties.</p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Properties_Import Symbol_01" src="http://static5.cad-notes.com/wp-content/uploads/2012/01/Properties_Import-Symbol_01.png" alt="Properties_Import Symbol_01" width="297" height="283" border="0" /></p>
<p>4.    Set Base Offset to value among Cut Plane – Top in View Range of Floor Plan.</p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Properties_Import Symbol_02" src="http://static7.cad-notes.com/wp-content/uploads/2012/01/Properties_Import-Symbol_02.png" alt="Properties_Import Symbol_02" width="298" height="281" border="0" /></p>
<p>5.    Now, you can see the difference:</p>
<p><a href="http://static4.cad-notes.com/wp-content/uploads/2012/01/Revit-Draworder.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Revit Draworder" src="http://static3.cad-notes.com/wp-content/uploads/2012/01/Revit-Draworder_thumb.png" alt="Revit Draworder" width="500" height="370" border="0" /></a></p>
<blockquote><p>Notice: Remember the value for Base Offset imported symbol must be among values for Cut Plane and Top in View Range for Floor Plan. To setup View Range parameter go to Properties palette if nothing in view is selected and click Edit.</p></blockquote>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Properties_Floor Plan_View Range" src="http://static3.cad-notes.com/wp-content/uploads/2012/01/Properties_Floor-Plan_View-Range.png" alt="Properties_Floor Plan_View Range" width="299" height="150" border="0" /></p>
<p>In dialog View Range you can set the range of view.</p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="View Range" src="http://static2.cad-notes.com/wp-content/uploads/2012/01/View-Range.png" alt="View Range" width="444" height="270" border="0" /></p>
<p>Hope the tip helps you.</p>
<p><hr />
<a href="http://www.bentley.com/cadnotes">
		<img src="http://static4.cad-notes.com/images/7053_PW-en_HDR_468x60_0511.gif" alt="Are you ProjectWise?" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://cad-notes.com/2012/01/revit-tip-draworder-for-linked-files/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What&#8217;s your opinion about CAD notes so far? Tell it in one word!</title>
		<link>http://cad-notes.com/2011/12/whats-your-opinion-about-cad-notes-so-far-tell-it-in-one-word/</link>
		<comments>http://cad-notes.com/2011/12/whats-your-opinion-about-cad-notes-so-far-tell-it-in-one-word/#comments</comments>
		<pubDate>Fri, 23 Dec 2011 09:13:14 +0000</pubDate>
		<dc:creator>Edwin Prakoso</dc:creator>
				<category><![CDATA[AutoCAD]]></category>
		<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://cad-notes.com/?p=4299</guid>
		<description><![CDATA[Do you like what we're doing here on CAD notes? Do you find this site is useful? Share your thoughts. And help us to improve this site further! You may tell your thoughts in one word!<p><hr />
<a href="http://www.bentley.com/cadnotes">
		<img src="http://static4.cad-notes.com/images/7053_PW-en_HDR_468x60_0511.gif" alt="Are you ProjectWise?" /></a></p>
]]></description>
			<content:encoded><![CDATA[<p>I remember when I was working in an architectural firm. It was in early 2000. We simply use AutoCAD as replacement for manual drafting. We were just throwing a bunch of lines and text to make the drawings. Of course it was faster than manual drafting. Of course the objects like dimensions and hatches are smarter. We even have several AutoLISP program from our predecessor to complete our work faster.</p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Construction Series 011" src="http://static3.cad-notes.com/wp-content/uploads/2011/12/manual-drafting.jpg" alt="Construction Series 011" width="423" height="283" border="0" /></p>
<p>© Thomas Perkins &#8211; Fotolia.com</p>
<p>But we were just trying to get the job done quickly. It was pain when we need to modify the drawings. When we need to create schedules and drawing list we had to do them manually. Of course they were prone to mistakes. I remember our team failed to meet the deadline because we sent wrong drawings. Those were our pain when we were just trying to get the drawings done.</p>
<h2>Yes those CAD software are impressive</h2>
<p>Have you ever seen Revit, Inventor, or other vertical products demonstration? OK vertical products sounds so Autodesk, you might know them as BIM or PLM software. They were pretty impressive, weren’t they? Why they look very fast when working with those products?</p>
<ol>
<li>They have many reusable components specific for your design. You can just place walls, doors, and windows in Revit. You can quickly add standard components from Inventor content library. Of course if you use them, you will need to create some of your own custom components. But after you created them once, you can quickly reuse them later.</li>
<li>Those objects are intelligent. You can create Bill of Materials in Inventor in seconds. You can quickly create various building component schedules in Revit. It’s because they have information. You also provide more information when you’re doing the design.</li>
<li>They are easy to modify. You can replace one standard component with another. You can change building components just by selecting other type from drop down menu.</li>
<li>The drawings are also intelligent. You can have orthogonal drawings and sections quickly. There are a bunch of information automatically placed on the title block.</li>
<li>And many more impressive features.</li>
</ol>
<h2>Sometimes we just use what we have</h2>
<p>Not all companies can invest and purchase those sophisticated CAD software. It’s not always about budget. Sometimes you have to use software that project owners ask you to use it. There are several reasons that make us stay with what we use today: AutoCAD. Some of the reasons are pretty good reasons.</p>
<p>As a user, of course we just use it. And we do our best to improve how we work. Those software can give some ideas to imitate them in AutoCAD. Remember the <a href="http://cad-notes.com/2009/08/dynamic-block-tutorial-1-creating-wall/">wall in our dynamic block tutorial</a>? It’s kind of look like Revit in 2D, isn’t it?</p>
<p>That’s why we are here on CAD notes, aren’t we? We’re looking for ways to complete our job, efficiently. Become more productive.</p>
<h2>So we do these</h2>
<p>That’s why I started this blog. We launched <a href="http://cad-notes.com/2011/10/10-days-to-work-better-with-autocad/">work better with AutoCAD program</a>. It’s our framework, and we want to go to bit size tutorials and tips from it. Unfortunately we don’t get as many responses as we expected.</p>
<p>Your feedback is very important to improve our future articles. We need your experience and discuss with us in each topic.</p>
<p>If you’re interested, you can also share your experience in an article. <a href="http://cad-notes.com/write-for-cad-notes/">Write for us</a>.</p>
<p>We also launched e-books to improve your productivity.</p>
<p><a href="http://cad-notes.com/e-store/autocad-block-best-practices-2nd-edition/">AutoCAD Block Best Practices</a> should help you to work with reusable contents. Not just placing common components, but also giving them information. And automate some process in your design.</p>
<p><a href="http://cad-notes.com/2011/01/sheet-set-manager-book/">Document management with AutoCAD sheet set</a> should help you to manage your drawings. You can group all sheets in a project. You can get common information from that project to place them on title blocks. You can create sheet list quickly, and batch plot all drawings in your projects quickly.</p>
<h2>You can help</h2>
<p>You can help us to provide articles to help all readers. The easiest thing to do it is by actively involved in discussion. And you can write great articles for us.</p>
<h2>What’s your opinion about CAD notes so far? Tell it in one word!</h2>
<p>Of course you can write in a whole sentence or paragraph. But we can accept a word like ‘boring’ too.</p>
<p>Do you like what we’re doing here?</p>
<p><hr />
<a href="http://www.bentley.com/cadnotes">
		<img src="http://static4.cad-notes.com/images/7053_PW-en_HDR_468x60_0511.gif" alt="Are you ProjectWise?" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://cad-notes.com/2011/12/whats-your-opinion-about-cad-notes-so-far-tell-it-in-one-word/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>The killer tool palette macros, download it here!</title>
		<link>http://cad-notes.com/2011/12/the-killer-tool-palette-macros-download-it-here/</link>
		<comments>http://cad-notes.com/2011/12/the-killer-tool-palette-macros-download-it-here/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 23:16:00 +0000</pubDate>
		<dc:creator>Edwin Prakoso</dc:creator>
				<category><![CDATA[AutoCAD Tips]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[macro]]></category>
		<category><![CDATA[tool palettes]]></category>

		<guid isPermaLink="false">http://cad-notes.com/?p=4319</guid>
		<description><![CDATA[Have you tried the tip to create 11 killer macros for viewports? If you're too busy to follow all the steps, you can just download it here! <p><hr />
<a href="http://www.bentley.com/cadnotes">
		<img src="http://static4.cad-notes.com/images/7053_PW-en_HDR_468x60_0511.gif" alt="Are you ProjectWise?" /></a></p>
]]></description>
			<content:encoded><![CDATA[<p>Previously, Paul Munford wrote a great tip how you can use macros to <a href="http://cad-notes.com/2011/12/eleven-killer-tool-palette-macros-for-working-with-autocad-viewports/" target="_blank">conveniently work with AutoCAD layout and viewport</a>.</p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="ACME viewport" src="http://static9.cad-notes.com/wp-content/uploads/2011/12/ACME-viewport.png" alt="ACME viewport" width="148" height="243" border="0" /></p>
<p>If you haven’t follow his tutorial, you really miss those great tools. If you don’t have time to follow the tutorial, Paul Munford shares his tool palette file, so you can just use them.</p>
<p>You can download the tool palettes and import it to your AutoCAD. <a href="http://static6.cad-notes.com/download/ACME_Viewport_Palette.zip" target="_blank">Click here to download it</a>.</p>
<h2>How to: import tool palettes</h2>
<p>If you never import tool palettes before, you can follow this guide:</p>
<p>Download and extract the tool palette to your local drive.</p>
<p>In AutoCAD, open your tool palettes. Right click on palette title bar, or click properties button. Choose customize palette from contextual menu.</p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="customize palette" src="http://static8.cad-notes.com/wp-content/uploads/2011/12/customize-palette.png" alt="customize palette" width="350" height="188" border="0" /></p>
<p>In customize palette dialog, right click inside palettes column. The left column. Click import.</p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="import tool palettes" src="http://static5.cad-notes.com/wp-content/uploads/2011/12/import-tool-palettes.png" alt="import tool palettes" width="400" height="326" border="0" /></p>
<p>Find ACME VPORTS.xtp in folder you placed extracted file before. Click open.</p>
<p>This palette should be in the list now. Close this dialog and you should see it’s the active palette now.</p>
<p>Open layout and test those tools. You love it don’t you? I know I do!</p>
<p><hr />
<a href="http://www.bentley.com/cadnotes">
		<img src="http://static4.cad-notes.com/images/7053_PW-en_HDR_468x60_0511.gif" alt="Are you ProjectWise?" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://cad-notes.com/2011/12/the-killer-tool-palette-macros-download-it-here/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Eleven Killer Tool palette Macros for working with AutoCAD Viewports</title>
		<link>http://cad-notes.com/2011/12/eleven-killer-tool-palette-macros-for-working-with-autocad-viewports/</link>
		<comments>http://cad-notes.com/2011/12/eleven-killer-tool-palette-macros-for-working-with-autocad-viewports/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 12:02:00 +0000</pubDate>
		<dc:creator>Paul Munford</dc:creator>
				<category><![CDATA[AutoCAD Tips]]></category>
		<category><![CDATA[AutoCAD viewport]]></category>
		<category><![CDATA[macro]]></category>
		<category><![CDATA[tool palettes]]></category>

		<guid isPermaLink="false">http://cad-notes.com/?p=4308</guid>
		<description><![CDATA[If you work with AutoCAD layout, these 11 killer macros will help you. For easier access, we put all the macros in tool palettes. A must read if you want to work with viewport faster! Another great post by Paul Munford.<p><hr />
<a href="http://www.bentley.com/cadnotes">
		<img src="http://static4.cad-notes.com/images/7053_PW-en_HDR_468x60_0511.gif" alt="Are you ProjectWise?" /></a></p>
]]></description>
			<content:encoded><![CDATA[<p>If you enjoy tinkering with AutoCAD, you may have noticed how every command is triggered by a complicated looking bit of text. If you don’t know what I’m referring to – type ‘cui’ at the command line and select one of the commands in the bottom left window. You should see something like this:</p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="An AutoCAD Command Macro in the CUI" src="http://static3.cad-notes.com/wp-content/uploads/2011/12/An-AutoCAD-Command-Macro-in-the-CUI.png" alt="An AutoCAD Command Macro in the CUI" width="347" height="280" border="0" /></p>
<p>This command string:</p>
<p>‘^C^C_line’</p>
<p>Is known as a command Macro, and you can create your own command Macro’s to help speed up your workflow.</p>
<p>In this post I want to share some commands Macro’s that I use to help me speed things up when I’m working with AutoCAD’s paper space viewports, and I’ll show you how to set these up on a tool palette for easy access.</p>
<h2>Setting up.</h2>
<p>Before we start work, I want you to open up your company standard AutoCAD template DWG file. Navigate to paper space, make your company standard viewport layer active and create a viewport. I’ve used a layer called ‘VPORTS’ for this exercise, but you should use the appropriate standard layer.</p>
<blockquote><p><strong><em>Tip</em></strong><em>: If you don’t have a company standard template read Edwin’s </em><a href="http://cad-notes.com/2009/09/preparing-your-autocad-template/"><em>excellent post on templates here</em></a><em>.</em></p></blockquote>
<h2>Setting up a tool palette.</h2>
<p>In this post I am advising you to host your new tools on a tool palette, simply because tool palettes are easy to set up, maintain and migrate. You could apply these techniques in the CUI instead and build your custom commands into a tool bar or ribbon tab… but that’s for another time.</p>
<p>To open the tool palettes go to:</p>
<p>View Ribbon tab &gt; Palettes panel &gt; Tool Palettes</p>
<p>Or type ‘toolpalettes’ at the command line and hit Enter.</p>
<p>Now you have your tool palettes open, right click over any palette and choose ‘New Palette’.<em> </em>You can name your new palette anything you like; I’ve called mine ‘ACME VPORTS’.</p>
<p><strong><em>Note</em></strong><em>: Tool palettes are not saved until the drawing is closed.</em></p>
<h2>Creating a new tool</h2>
<p>The next part is the fun bit. Click on the viewport you created earlier and drag and drop it onto the tool palette. You have now created your first tool &#8211; that was easy!</p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Creating a new AutoCAD viewport tool on a tool pallette" src="http://static8.cad-notes.com/wp-content/uploads/2011/12/Creating-a-new-AutoCAD-viewport-tool-on-a-tool-pallette.jpg" alt="Creating a new AutoCAD viewport tool on a tool pallette" width="402" height="216" border="0" /></p>
<p>&nbsp;</p>
<p><strong><em>Note</em></strong><em>: Left Click on the viewport once to select it. Now with the viewport selected, left click again and hold the left hand mouse button down. You can now drag the viewport onto the palette to create the tool.</em></p>
<p>To test your tool, click on it. You should be prompted to draw a viewport. Once you’ve created a viewport, click on it once to select it. Notice which layer it’s on? That’s right; your new tool has created a viewport, on your company standard layer and it didn’t even change the current layer while it did it.</p>
<p><strong><em>Note</em></strong><em>: This tool will also create the layer it needs if the layer does not already exist in the current drawing file.</em></p>
<p>I hope that you are already impressed – but we can do more.</p>
<h2>How does it work?</h2>
<p>To see what the tool is doing, right click over it and chose ‘Properties…’. I hope you notice the ‘Command string’ box, about half way down. The command string that this tool is running looks like this:</p>
<p>^C^C_vports</p>
<p>The ^C part of the macro is equivalent to pressing the ‘Esc’ key – it cancels the current command. This command uses ^C^C because some AutoCAD commands need two ‘escapes’ to completely cancel out of the currently command. It is good practice to start all your command Macro’s this way.</p>
<p><strong><em>Note</em></strong><em>: Can you think of an AutoCAD command that would need THREE ‘escapes’ to fully cancel out of it? Answers in the comments please…</em></p>
<p>The underscore before the command is used to ‘Internationalize’ the command. If you are not working with the English language version of AutoCAD the command names will have been translated. The underscore tells AutoCAD to use the default English version of the command.</p>
<p>The ‘vports’ part of the string is exactly the same as typing ‘vports’ at the command line.</p>
<p>I also want you to notice the boxes under the ‘General heading’. You can see that this tool will create a viewport on the ‘VPORTS’ layer, and you can also override some of the other properties here.</p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="AutoCAD Tool palette tool properties" src="http://static3.cad-notes.com/wp-content/uploads/2011/12/AutoCAD-Tool-palette-tool-properties.jpg" alt="AutoCAD Tool palette tool properties" width="336" height="443" border="0" /></p>
<h2>Applying a little finesse.</h2>
<p>There are a number of ways that you can personalize your new tool. You can change the name to something that makes more sense to you. You can change the description (the description value becomes a handy little tool tip when you hover over the tool on the palette). You can also change the picture by right clicking over the picture and choosing ‘specify image’.</p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Personalize your AutoCAD toolpallette tools" src="http://static9.cad-notes.com/wp-content/uploads/2011/12/Personalize-your-AutoCAD-toolpallette-tools.jpg" alt="Personalize your AutoCAD toolpallette tools" width="369" height="178" border="0" /></p>
<h2>Back to the Macro.</h2>
<p>In this case the command string that has been created uses the ‘vports’ command by default. However, the vports command also has a purpose in Model space. Let’s change the tool to use the ‘mview’ command instead, which only works in paper space.</p>
<p>All you need to do is change:</p>
<p>^C^C_vports</p>
<p>To</p>
<p>^C^C_mview</p>
<h2>More viewport creation tools.</h2>
<p>To create more tools, just right click over the tool and chose ‘copy’ and then hover anywhere over the blank palette and choose ‘paste’.</p>
<p>Here is another example of an alternative command macro you could use:</p>
<p>^C^C_mview;f;</p>
<p>The semi-colon ‘;’ in this command strings is just like pressing ‘enter’ on your keyboard. So the macro could be read as:</p>
<p><em>Hit ‘esc’ twice, type ‘mview’ at the command line, hit ‘enter’, type ‘f’ at the command line and then hit ‘enter’ again.</em></p>
<p>Try it out. What do you get?</p>
<p>That’s right &#8211; a viewport, taking up all the available room on the drawing sheet. Writing this into a command Macro allows us to do all that with a single click!</p>
<p>How about this one:</p>
<p>^C^C_mview;2;v;</p>
<p>This command string launches the Mview command with the ‘Two viewports, vertically aligned’ options current. Just two clicks to create two viewports, on the right layer.</p>
<p>Here’s one more:</p>
<p>^C^C_mview;p</p>
<p>This command string uses the Mview command with the ‘Polygonal’ option to create an irregular shaped viewport.</p>
<p>The final one in this section gets a bit more complicated:</p>
<p>^C^C_circle;\\_mview;o;l</p>
<p>This command string creates a circular viewport. It does this by running the circle command, and then immediately afterward, running the Mview command using the option to create a viewport from the last object created, in this case our circle.</p>
<p>The two back slashes ‘\\’ are interpreted as pauses. In this case the user must pick the centre point and radius of the circle. This is two clicks – therefore two back slashes.</p>
<p><strong><em>Note</em></strong><em>: It is not easy to include error checking in a command macro. In this case the macro expects two clicks, if the user decides to choose a method of creating a circle other than ‘Centre radius’ the command will fail. If you need to include error checking in your Macro’s you may need to use Lisp.</em></p>
<h2>Locking and unlocking viewports globally.</h2>
<p>For the next example, I want you to copy your tool as you did before; but this time, open the tools’ properties and set all the values in the ‘General’ options to ‘use current’ except the layer control, which you should change to ‘0’. In this case, our macro won’t be creating any geometry, so we don’t want those properties set.</p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="AutoCAD tool palette tool default options" src="http://static2.cad-notes.com/wp-content/uploads/2011/12/AutoCAD-tool-palette-tool-default-options.png" alt="AutoCAD tool palette tool default options" width="359" height="446" border="0" /></p>
<p>The next example will help us speed up locking and unlocking viewports:</p>
<p>^C^C_mview;l;on;all;;</p>
<p>Run the command and then hit F2 to bring up the AutoCAD text window. Have a look to see what commands the Macro is executing…</p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="The AutoCAD command window - viewport locking" src="http://static9.cad-notes.com/wp-content/uploads/2011/12/The-AutoCAD-command-window-viewport-locking.png" alt="The AutoCAD command window - viewport locking" width="630" height="329" border="0" /></p>
<p>&nbsp;</p>
<p>That’s right; this command string <em>locks</em> all the viewports in the current layout – very handy to run before you close down your drawing for the day.</p>
<p>The reciprocal is this, which <em>unlocks</em> all the viewports in the current layout:</p>
<p>^C^C_mview;l;off;all;;</p>
<h2>Turning the viewports layer on and off</h2>
<p>To turn the ‘VPORTS’ layer on and off, we need to use the ‘layer’ command. Copy and paste the tool as before, and add this command string to turn the ‘VPORTS’ layer on:</p>
<p>^C^C_-la;on;VPORTS;;</p>
<p>And this command to turn the ‘VPORTS’ layer off.</p>
<p>^C^C_-la;off;VPORTS;;</p>
<p>I hope by now that you can work out what these macros are doing. If you aren’t sure, click the button to run the macro, and then hit F2 to bring up the command window and see what’s happened.</p>
<p><strong><em>Note</em></strong><em>: Replace ‘VPORTS’ with your layer name. If you layer name contains a space, make sure that you put the layer name in quotes e.g. “VPORTS 1”. The layer name is not case sensitive</em>.</p>
<h2>Freezing and thawing the viewports layer</h2>
<p>If you would prefer to freeze or thaw the VPORTS layer, you can use these two macros instead.</p>
<p>To freeze the ‘VPORTS’ layer:</p>
<p>^C^C_-la;f;VPORTS;;</p>
<p>To thaw the ‘VPORTS’ layer:</p>
<p>^C^C_-la;t;VPORTS;;</p>
<h2>Round up and further reading</h2>
<p>I hope that you enjoyed this post and that you found it useful. If you have any questions, please leave a comment below.</p>
<p>If you’d like to know more about Tool palettes, Edwin has a great tutorial here:</p>
<p><a href="http://cad-notes.com/2009/09/creating-your-own-autocad-palette/">http://cad-notes.com/2009/09/creating-your-own-autocad-palette/</a></p>
<p>If you’d like to know more about command macros check out the developer help files. You can find the help files online here <a href="http://cadso.co/t17wRy">http://cadso.co/t17wRy</a>.</p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="The ACME AutoCAD viewport tool palette" src="http://static7.cad-notes.com/wp-content/uploads/2011/12/The-ACME-AutoCAD-viewport-tool-palette.png" alt="The ACME AutoCAD viewport tool palette" width="211" height="504" border="0" /></p>
<p><a name="_GoBack"></a></p>
<p><hr />
<a href="http://www.bentley.com/cadnotes">
		<img src="http://static4.cad-notes.com/images/7053_PW-en_HDR_468x60_0511.gif" alt="Are you ProjectWise?" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://cad-notes.com/2011/12/eleven-killer-tool-palette-macros-for-working-with-autocad-viewports/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 1.705 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-04 00:56:39 -->

