<?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>CADbloke &#187; AutoCAD tips</title>
	<atom:link href="http://www.cadbloke.com/category/autocad/autocad-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cadbloke.com</link>
	<description>Broadcast &#38; IT System Design and Documentation</description>
	<lastBuildDate>Sat, 03 Jul 2010 08:58:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Full-screen Shortcut for AutoCAD</title>
		<link>http://www.cadbloke.com/autocad-full-screen-shortcut/</link>
		<comments>http://www.cadbloke.com/autocad-full-screen-shortcut/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 01:26:25 +0000</pubDate>
		<dc:creator>CADbloke</dc:creator>
				<category><![CDATA[AutoCAD tips]]></category>
		<category><![CDATA[cleanscreen]]></category>
		<category><![CDATA[cui]]></category>
		<category><![CDATA[full-screen]]></category>
		<category><![CDATA[shortcut]]></category>

		<guid isPermaLink="false">http://www.cadbloke.com/?p=105</guid>
		<description><![CDATA[I wanted a full-screen shortcut like Internet Exploder, Firefox and other web browsers, just for having a good look at a drawing on the whole screen with no distractions.

The Cleanscreen command is a good start but it didn’t go far enough for me, so I hacked it and added a few things to it. Now my full-screen has only the Top window bar with the quick-access menu and nothing else.]]></description>
			<content:encoded><![CDATA[<p>I wanted a full-screen shortcut like Internet Exploder, Firefox and other web browsers, just for having a good look at a drawing on the whole screen with no distractions.</p>
<p>The <em>Cleanscreen</em> command is a good start but it didn’t go far enough for me, so I hacked it and added a few things to it. Now my full-screen has only the Top window bar with the quick-access menu and <strong>nothing</strong> else. Just this …</p>
<p><img class="alignleft" style="display: inline; border: 0pt none;" title="AutoCAD - Quick Acces toolbar only" src="http://www.cadbloke.com/wp-content/uploads/2010/03/AutoCADCUIfullscreen._thumb.png" border="0" alt="AutoCAD - Quick Acces toolbar only" width="414" height="59" /></p>
<p>… the thin edge of the window itself and wall-to wall CAD.</p>
<p><br class="spacer_" /></p>
<ul>
<li>F11 –&gt; Absolutely everything disappears. Full-on full screen</li>
<li>F11 again –&gt; all the toolbars, status bar, menus come back to their rightful place</li>
</ul>
<h3>How?</h3>
<p><img class="alignright" style="display: inline; border: 0pt none;" title="AutoCAD-CUI-Macro  window" src="http://www.cadbloke.com/wp-content/uploads/2010/03/AutoCADCUIMacro._thumb.png" border="0" alt="AutoCAD-CUI-Macro window" width="504" height="440" />Open the CUI Editor and follow the instructions in AutoCAD’s help system – F1 –&gt; search for “To create or modify a shortcut key”. Their well-illustrated explanation saves me cobbling one together. The only thing I’ll add to their instructions is that you can narrow your search of commands by typing <span style="text-decoration: underline;">any</span> (that’s cool) part of the command’s name in the search box in the <em>Command List</em> section of the CUI window (bottom-left).</p>
<p>I dragged the “Clean Window” command onto the Shortcut Keys node. This is the command I started with before I <span style="text-decoration: line-through;">broke</span> perfected it. Click on the Macro line of the command section on the right in the CUI window (highlighted in red), then click on the […] box that appears on the right (trust me, it appears).</p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p>… then paste this code in the <em>Long String Editor</em></p>
<p class="download">$M=$(if,$(and,$(getvar,CleanScreenState),1),^C^C_CleanScreenOFF ^C^C_commandline ^C^C_MenuBar 1 statusbar 1,^C^C_CleanScreenON ^C^C_commandlinehide ^C^C_MenuBar 0 statusbar 0)</p>
<p class="warning">It is important to note that the spaces in the command list are significant so make sure you select all of it at once. The spaces (and commas, as it turns out) are the same as pressing the enter-key to execute the command.</p>
<p>If you haven’t already, assign a key to the shortcut, as per Help’s instructions. I used F11. Why? It is the same shortcut for most Internet browsers to go full-screen. For once, I’d like AutoCAD’s User eXperience to match something from the real world. Don’t get me started on that. Find. Replace. 3 Tab stops. Why?</p>
<p>That’s the practical part, done.</p>
<h3>How it Works</h3>
<p>For those of you who love to know how it works, here it is in its 3 parts. It is a Diesel (see AutoCAD –&gt; F1) Macro. Notice that there are 3x commas in the <em>if</em> command which wraps the macro. The format of this macro is basically [Test], [Do if True], [Do if False]. Here is the same macro on 3 lines</p>
<p class="note">$M=$(if,$(and,$(getvar,CleanScreenState),1),</p>
<p class="note">^C^C_CleanScreenOFF ^C^C_commandline ^C^C_MenuBar 1 statusbar 1,</p>
<p class="note">^C^C_CleanScreenON ^C^C_commandlinehide ^C^C_MenuBar 0 statusbar 0)</p>
<p>Working through the macro, this is what it does</p>
<ul>
<li>the first part checks to see whether you’re in Cleanscreen mode or not.</li>
<li>the rest of the macro is in two halves, Cleanscreen on, Cleanscreen off</li>
<li>wherever you see <em>^C^C</em>_<em> </em>that means Ctrl-C, twice. This exits any lingering previous commands.</li>
<li><em>CleanScreenOFF</em> returns the menus etc that the <em>CleanScreenON</em> command in the 2nd half of the macro hides</li>
<li><em>commandline</em> restores the command line which is hidden by <em>commandlinehide</em></li>
<li><em>MenuBar 1 </em>and <em>MenuBar 0 </em>restore / hides the file-menu bar at the top for old farts like me who have grown attached to it.</li>
<li><em>statusbar 1</em> and <em>statusbar 0</em> show and hide the status bar which is right at the bottom of the AutoCAD window.</li>
</ul>
<p>Remove any of the above combinations if they don’t suit you. Don&#8217;t forget the <em>^C^C_<em> at the start and the trailing space</em></em>. Feel free to add anything to the macro and also please add it here to the comments.</p>
<p class="note">Here’s a tip conveniently placed at the end to see who dived in and who read the whole post before tinkering … Open a text editor and copy-paste your macro code at various crucial stages. This will give you an easy way to go back if you miss a space, comma or just generally mess it up.</p>



Please Share or Bookmark this Page


	<a rel="nofollow"  target="_blank" href="mailto:?subject=Full-screen%20Shortcut%20for%20AutoCAD&amp;body=http%3A%2F%2Fwww.cadbloke.com%2Fautocad-full-screen-shortcut%2F" title="email"><img src="http://www.cadbloke.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="javascript:AddToFavorites();" title="Add to favorites"><img src="http://www.cadbloke.com/wp-content/plugins/sociable/images/addtofavorites.png" title="Add to favorites" alt="Add to favorites" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.cadbloke.com%2Fautocad-full-screen-shortcut%2F&amp;title=Full-screen%20Shortcut%20for%20AutoCAD&amp;source=CADbloke+Broadcast+%26amp%3B+IT+System+Design+and+Documentation&amp;summary=I%20wanted%20a%20full-screen%20shortcut%20like%20Internet%20Exploder%2C%20Firefox%20and%20other%20web%20browsers%2C%20just%20for%20having%20a%20good%20look%20at%20a%20drawing%20on%20the%20whole%20screen%20with%20no%20distractions.%0D%0A%0D%0AThe%20Cleanscreen%20command%20is%20a%20good%20start%20but%20it%20didn%E2%80%99t%20go%20far%20enough%20for%20me%2C%20so%20I%20hacked%20it%20and%20added%20a%20few%20things%20to%20it.%20Now%20my%20full-screen%20has%20only%20the%20Top%20window%20bar%20with%20the%20quick-access%20menu%20and%20nothing%20else." title="LinkedIn"><img src="http://www.cadbloke.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.cadbloke.com%2Fautocad-full-screen-shortcut%2F&amp;t=Full-screen%20Shortcut%20for%20AutoCAD" title="Facebook"><img src="http://www.cadbloke.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Full-screen%20Shortcut%20for%20AutoCAD%20-%20http%3A%2F%2Fwww.cadbloke.com%2Fautocad-full-screen-shortcut%2F" title="Twitter"><img src="http://www.cadbloke.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.cadbloke.com%2Fautocad-full-screen-shortcut%2F&amp;title=Full-screen%20Shortcut%20for%20AutoCAD&amp;bodytext=I%20wanted%20a%20full-screen%20shortcut%20like%20Internet%20Exploder%2C%20Firefox%20and%20other%20web%20browsers%2C%20just%20for%20having%20a%20good%20look%20at%20a%20drawing%20on%20the%20whole%20screen%20with%20no%20distractions.%0D%0A%0D%0AThe%20Cleanscreen%20command%20is%20a%20good%20start%20but%20it%20didn%E2%80%99t%20go%20far%20enough%20for%20me%2C%20so%20I%20hacked%20it%20and%20added%20a%20few%20things%20to%20it.%20Now%20my%20full-screen%20has%20only%20the%20Top%20window%20bar%20with%20the%20quick-access%20menu%20and%20nothing%20else." title="Digg"><img src="http://www.cadbloke.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.cadbloke.com%2Fautocad-full-screen-shortcut%2F&amp;title=Full-screen%20Shortcut%20for%20AutoCAD&amp;annotation=I%20wanted%20a%20full-screen%20shortcut%20like%20Internet%20Exploder%2C%20Firefox%20and%20other%20web%20browsers%2C%20just%20for%20having%20a%20good%20look%20at%20a%20drawing%20on%20the%20whole%20screen%20with%20no%20distractions.%0D%0A%0D%0AThe%20Cleanscreen%20command%20is%20a%20good%20start%20but%20it%20didn%E2%80%99t%20go%20far%20enough%20for%20me%2C%20so%20I%20hacked%20it%20and%20added%20a%20few%20things%20to%20it.%20Now%20my%20full-screen%20has%20only%20the%20Top%20window%20bar%20with%20the%20quick-access%20menu%20and%20nothing%20else." title="Google Bookmarks"><img src="http://www.cadbloke.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.cadbloke.com%2Fautocad-full-screen-shortcut%2F&amp;title=Full-screen%20Shortcut%20for%20AutoCAD" title="Reddit"><img src="http://www.cadbloke.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.cadbloke.com%2Fautocad-full-screen-shortcut%2F&amp;title=Full-screen%20Shortcut%20for%20AutoCAD" title="StumbleUpon"><img src="http://www.cadbloke.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.cadbloke.com%2Fautocad-full-screen-shortcut%2F" title="Technorati"><img src="http://www.cadbloke.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.cadbloke.com%2Fautocad-full-screen-shortcut%2F&amp;title=Full-screen%20Shortcut%20for%20AutoCAD&amp;notes=I%20wanted%20a%20full-screen%20shortcut%20like%20Internet%20Exploder%2C%20Firefox%20and%20other%20web%20browsers%2C%20just%20for%20having%20a%20good%20look%20at%20a%20drawing%20on%20the%20whole%20screen%20with%20no%20distractions.%0D%0A%0D%0AThe%20Cleanscreen%20command%20is%20a%20good%20start%20but%20it%20didn%E2%80%99t%20go%20far%20enough%20for%20me%2C%20so%20I%20hacked%20it%20and%20added%20a%20few%20things%20to%20it.%20Now%20my%20full-screen%20has%20only%20the%20Top%20window%20bar%20with%20the%20quick-access%20menu%20and%20nothing%20else." title="del.icio.us"><img src="http://www.cadbloke.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fwww.cadbloke.com%2Fautocad-full-screen-shortcut%2F&amp;title=Full-screen%20Shortcut%20for%20AutoCAD" title="Live"><img src="http://www.cadbloke.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.cadbloke.com/autocad-full-screen-shortcut/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
