<?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>Stewart Wright</title>
	<atom:link href="http://stewartwright.co.uk/index.php" rel="self" type="application/rss+xml" />
	<link>http://stewartwright.co.uk</link>
	<description>Misdemeanors in 3D</description>
	<lastBuildDate>Wed, 16 Jun 2010 19:43:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Assigning Keyboard Shortcuts to Maxscripts</title>
		<link>http://stewartwright.co.uk/?p=16</link>
		<comments>http://stewartwright.co.uk/?p=16#comments</comments>
		<pubDate>Thu, 16 Apr 2009 16:52:03 +0000</pubDate>
		<dc:creator>Stewart</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://stewartwright.co.uk/?p=16</guid>
		<description><![CDATA[If you want to assign a script to a keyboard shortcut you&#8217;ll need to jump through a couple of small hoops to get it done. First, in Max, go to Customize &#62; Configure System Paths.  Check where Max is looking &#8230; <a href="http://stewartwright.co.uk/?p=16">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you want to assign a script to a keyboard shortcut you&#8217;ll need to jump through a couple of small hoops to get it done.<br />
First, in Max, go to <strong>Customize</strong> &gt; <strong>Configure System Paths</strong>.  Check where Max is looking for you&#8217;re &#8220;<strong>Additional Macros</strong>&#8221; and go there in explorer (you can double click the path in max and it&#8217;ll whisk you there).</p>
<p>If you already have some *.mcr files in there then copy one for us to edit, if not create an empty text file and change it&#8217;s extension from <strong>txt </strong>to <strong>mcr</strong>.  Open up the new file and delete any text that&#8217;s inside and the copy this chunk of text in:</p>
<blockquote><p><strong>macroScript HideBones</strong><br />
<strong>category:&#8221;MyScripts&#8221;</strong><br />
<strong>toolTip:&#8221;"</strong><br />
<strong>(</strong><br />
<strong>filein &#8220;C:3dsMax2009ScriptsCustomHide_Bones_Toggle.ms&#8221;</strong><br />
<strong>)</strong></p></blockquote>
<p>Let&#8217;s just run through the code I got you to paste in.  It&#8217;s nothing that complicated, just a script name, category and file path really.  The <strong>macroScript HideBones</strong> part is simply the name I want to use for this script and <strong>category:&#8221;MyScripts&#8221;</strong> is the category we&#8217;ll find it under when assigning the shortcut to it.  <strong>filein </strong>is the path to the script we want to launch, make sure you point this to where the script you want to launch is.</p>
<p>We&#8217;ve now laid the groundwork for our shortcut, now it&#8217;s just a couple more steps to set it up.  Back inside Max, go to <strong>Customize </strong>&gt; <strong>Customize User Interface</strong>.  Under the<strong> Keyboard</strong> tab set <strong>Group</strong> to <strong>Main UI</strong> and <strong>Category</strong> to <strong>MyScripts</strong>.  You&#8217;ll now have a list of actions and their assigned shortcuts listed.  Select <strong>HideBones </strong>and then click inside the <strong>Hotkey </strong>box.  All you need to do is press your desired keyboard shortcut and click <strong>Assign</strong>.  I used shift + b for this shortcut but you can use whatever you want, if you try something that is already used it&#8217;ll show up in the <strong>Assi</strong><strong>gned to</strong> box.  Finally, click <strong>Save&#8230;</strong> and save your custom keyboard shortcuts somewhere and you&#8217;re ready to rock!</p>
]]></content:encoded>
			<wfw:commentRss>http://stewartwright.co.uk/?feed=rss2&#038;p=16</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Toggle Hide Bones in 3ds Max</title>
		<link>http://stewartwright.co.uk/?p=13</link>
		<comments>http://stewartwright.co.uk/?p=13#comments</comments>
		<pubDate>Mon, 13 Apr 2009 16:43:07 +0000</pubDate>
		<dc:creator>Stewart</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://stewartwright.co.uk/?p=13</guid>
		<description><![CDATA[For some reason, in 3ds Max 2009 (and previous versions) there wasn&#8217;t a keyboard shortcut to hide bones as a group in a scene. There are shortcuts for most other category toggles so I made a simple script to do &#8230; <a href="http://stewartwright.co.uk/?p=13">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For some reason, in 3ds Max 2009 (and previous versions) there wasn&#8217;t a keyboard shortcut to hide bones as a group in a scene.</p>
<p>There are shortcuts for most other category toggles so I made a simple script to do the same thing for bones.</p>
<p>Here is the script:</p>
<blockquote><p><strong>if hideByCategory.bones == true then</strong><br />
<strong>(</strong><br />
<strong>hideByCategory.bones = false</strong><br />
<strong>)</strong><br />
<strong>else</strong><br />
<strong>(</strong><br />
<strong>hideByCategory.bones = true</strong><br />
<strong>)</strong></p></blockquote>
<p>I&#8217;ve set the script to work as a keyboard shortcut (shift + b) in my max workflow, I&#8217;ll show you how to do it too in another post.</p>
]]></content:encoded>
			<wfw:commentRss>http://stewartwright.co.uk/?feed=rss2&#038;p=13</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A WordPress Adventure</title>
		<link>http://stewartwright.co.uk/?p=4</link>
		<comments>http://stewartwright.co.uk/?p=4#comments</comments>
		<pubDate>Wed, 18 Feb 2009 16:41:22 +0000</pubDate>
		<dc:creator>Stewart</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://stewartwright.co.uk/?p=4</guid>
		<description><![CDATA[I was thinking about making a revised folio site to push my wares and made the decision to come on over to WordPress and set up home here.  The aim is to provide a home to personal work, tutorials, cool &#8230; <a href="http://stewartwright.co.uk/?p=4">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was thinking about making a revised folio site to push my wares and made the decision to come on over to WordPress and set up home here.  The aim is to provide a home to personal work, tutorials, cool links and anything else that might fit in between.</p>
<p>I&#8217;m looking forward to seeing what happens!</p>
]]></content:encoded>
			<wfw:commentRss>http://stewartwright.co.uk/?feed=rss2&#038;p=4</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

