<?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>SMOR.tv : Sam Morris &#187; Tutorials</title>
	<atom:link href="http://www.smor.tv/category/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.smor.tv</link>
	<description></description>
	<lastBuildDate>Sun, 27 Jun 2010 09:09:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WordPress Title Trimming Tutorial</title>
		<link>http://www.smor.tv/tutorials/wordpress-tutorials/wordpress-title-trimming-tutorial/</link>
		<comments>http://www.smor.tv/tutorials/wordpress-tutorials/wordpress-title-trimming-tutorial/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 19:43:21 +0000</pubDate>
		<dc:creator>Sam Morris</dc:creator>
				<category><![CDATA[WordPress Tutorials]]></category>
		<guid isPermaLink="false">http://www.smor.tv/?p=1056</guid>
		<description><![CDATA[<p>This tutorial will show you how to trim title lengths for long post or page titles, which can be helpful for keeping the layout of your website consistent. My example uses the WordPress get_the_title template tag, but this could easily...Read More</p>]]></description>
			<content:encoded><![CDATA[<p>This tutorial will show you how to trim title lengths for long post or page titles, which can be helpful for keeping the layout of your website consistent. My example uses the WordPress get_the_title template tag, but this could easily be modified for other uses.</p>
<p>Start off by opening your functions.php within your WordPress theme folder:<br />
(wp-content\themes\themename\functions.php)<br />
If you don&#8217;t have a one, you can create a new file and call it functions.php.</p>
<p>Next copy the following code into your functions.php, save and then upload the file. Watch out for the PHP tags when copying the code, you&#8217;ll most likely only need them if you&#8217;re starting a blank document.</p>
<pre class="brush: php;">
&lt;?php
// Title Trimmer (Version 3)
// Sam Morris - 12.28.2009
// www.smor.tv
function title_trimmer($title , $maxLength)
{
	$titleLength = strlen($title); // get the amount of characters in the title
	// start conditional
		if ($titleLength &gt; $maxLength) // if the title length is over the max length, then we start the trimming process.
			{
				$trimmedTitle = substr_replace($title,&quot;&quot;,$maxLength);
				echo $trimmedTitle;
				//echo $trimmedTitle . &quot;...&quot;; //use this instead of the line above if you prefer having a ... after your trimmed titles.
			}
		else
			{
				echo $title;
			}
}
?&gt;
</pre>
<p>WordPress has many built in functions, but the functions.php is where you can place your own custom functions. When your theme&#8217;s templates are loaded, so will the functions.php allowing you to use your own functions throughout your theme. Open the template that needs the title trimming, or if you just want to try it out you can open single.php (for posts) or page.php (for pages).</p>
<p>find the_title, which is what most themes will use by default. When you find it, you can replace it will the following code. The title trimming function has 2 arguments, the first is what should be trimmed and the second argument is the maximum length of characters. In my example I&#8217;m trimming the WordPress title down to a maximum of 10 characters.</p>
<pre class="brush: php;">
&lt;?php title_trimmer(get_the_title() , 10); ?&gt;
</pre>
<p>Save, upload, and then create a test page or post to see the title trimming in action.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smor.tv/tutorials/wordpress-tutorials/wordpress-title-trimming-tutorial/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress Post Thumbnails Tutorial (Using Custom Fields)</title>
		<link>http://www.smor.tv/tutorials/wordpress-tutorials/wordpress-post-thumbnails-tutorial-using-custom-fields/</link>
		<comments>http://www.smor.tv/tutorials/wordpress-tutorials/wordpress-post-thumbnails-tutorial-using-custom-fields/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 14:00:57 +0000</pubDate>
		<dc:creator>Sam Morris</dc:creator>
				<category><![CDATA[WordPress Tutorials]]></category>
		<guid isPermaLink="false">http://www.smor.tv/?p=774</guid>
		<description><![CDATA[<p>This tutorial will show you how to add thumbnails for each post using a custom field, then output the thumbnails in your WordPress loop.  Many people prefer browsing using thumbnails, especially for something like a portfolio site where visuals may...Read More</p>]]></description>
			<content:encoded><![CDATA[<p>This tutorial will show you how to add thumbnails for each post using a custom field, then output the thumbnails in your WordPress loop.  Many people prefer browsing using thumbnails, especially for something like a portfolio site where visuals may be more important to you and your visitors.</p>
<ol>
<li>Find page.php in your template directory, which can be found at: /wp-content/themes/yourthemename/page.php.</li>
<li>Make a copy of the page.php and call it thumb.php.</li>
<li>Open up thumb.php and add the following code at the very top of the document. This is the code for <a title="Creating a Custom WordPress Template" href="http://www.smor.tv/tutorials/wordpress-tutorials/wordpress-creating-custom-page-template/">creating a Custom WordPress Template</a>.
<pre class="brush: php;">&lt;?php
/*
Template Name: Thumbnails
*/
?&gt;</pre>
</li>
<li>After uploading your new template into the same folder as page.php (/wp-content/themes/yourthemename/), you should make sure it shows up. Create a new page in WordPress and on the right under Template you should see &#8220;Thumbnails&#8221; in the dropdown. Assuming it&#8217;s showing, create a new page using the template and then go back to thumb.php in your editor.</li>
<li>Next we&#8217;ll add the thumbnail code, which will need to be placed in the loop. The placement will depend on how your theme is programmed, but a good place to start would be below the_title() or above the_content() (search for these in your template). To explain this code, what we&#8217;re doing is nothing too different from standard HTML. First a div is created for styling and placement, then a link so the thumbnails will link to the article, and finally the thumbnail itself. Notice that the image src is going to be set by a post meta value of thumb. (which will correspond to a custom field of thumb when creating posts). All of this code is then put in a conditional statement, which tells WordPress to only show the thumbnail code if the post has one defined (otherwise we would get empty divs and broken images).
<pre class="brush: php;">&lt;?php if (get_post_meta($post-&gt;ID, &quot;thumb&quot;, true) != &quot;&quot;) : ?&gt;
 &lt;div&gt;
 &lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot;&gt;
 &lt;img src=&quot;&lt;?php echo get_post_meta($post-&gt;ID, &quot;thumb&quot;, true); ?&gt;&quot; alt=&quot;&lt;?php the_title(); ?&gt;&quot; title=&quot;&lt;?php the_title(); ?&gt;&quot; /&gt;
 &lt;/a&gt;
 &lt;/div&gt;
&lt;?php endif;?&gt;
</pre>
</li>
<li>Save and upload the template again, then create a few test posts and give each a custom field with a name of thumb (which is what we used in the code). Define an image for the value such as http://www.site.com/wp-content/uploads/year/month/image.jpg. Publish your posts and then go to the new page you created using the Thumbnail template. You should see a list of posts, each with the thumbnail you defined.</li>
<li>Lastly, if you&#8217;re looking for a more automated way of doing this you can use <a title="WP Post Thumbnails" href="http://wordpress.org/extend/plugins/wp-post-thumbnail/" target="_blank"><strong>WP Post Thumbnail</strong></a>, which is great for client&#8217;s or WordPress users that have limited computer knowledge. It will allow them to upload an image while creating a post, and then resize / crop it (meaning no photoshop or external editor is needed). If you do use this plugin the code will be the same, but the name of your customs fields may be different. The plugin uses a file named wppt.xml to configure the name of the post meta and thumbnail size, etc. This file needs to reside in your theme&#8217;s directory NOT the plugin&#8217;s directory.</li>
<li>How you style your thumbnail class is up to you, but I highly recommend having a fixed width/height with a hidden overflow (overflow: hidden;). This way when a client decides to use a 10 megapixel 3872 x 2592 image as a thumbnail (which does happen), it will get cut off rather than destroying the layout of the site.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.smor.tv/tutorials/wordpress-tutorials/wordpress-post-thumbnails-tutorial-using-custom-fields/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>CSS Sprites Tutorial</title>
		<link>http://www.smor.tv/tutorials/css-tutorials/css-sprites-tutorial/</link>
		<comments>http://www.smor.tv/tutorials/css-tutorials/css-sprites-tutorial/#comments</comments>
		<pubDate>Sat, 12 Sep 2009 20:56:37 +0000</pubDate>
		<dc:creator>Sam Morris</dc:creator>
				<category><![CDATA[CSS Tutorials]]></category>
		<guid isPermaLink="false">http://www.smor.tv/?p=820</guid>
		<description><![CDATA[<p>This tutorial will show you how to use a sprite for a set of icons. Sprites are generally preferred rather than using separate image files since less HTTP requests are made. In addition, from a graphic design standpoint I personally...Read More</p>]]></description>
			<content:encoded><![CDATA[<p>This tutorial will show you how to use a sprite for a set of icons. Sprites are generally preferred rather than using separate image files since less HTTP requests are made. In addition, from a graphic design standpoint I personally find it much easier to manage a set of icons when they are all placed within one Photoshop file. It makes it much easier to grab a part of an icon and use it for another, or match colors for multiple icons. To complete this tutorial you&#8217;ll need to have some basic HTML/CSS knowledge and optionally a copy of Photoshop.</p>
<h3>CSS with Sprites</h3>
<p>The CSS code for sprites is generally broken into 2 parts. The first part of the CSS code sets the basic styling for all of my icon spans. This is where the background is set to the sprite image, but by default backgrounds will be aligned to the top left. Part 2 of the CSS code sets the background-position of each icon span. The first value (X) of background-position is going to be 0 in this tutorial, since the icons in the sprite are flush with the left edge of CSS_Sprites_Icon_Tutorial.png. Alternatively, if  the sprite file used 2 columns of icons, then I would need to set X to move the backgrounds selection to the right. The second value of background-position is the vertical value (Y), which will change based on which icon we want display. Keep in mind the values will always be negative for the Y value, since the top left is 0. As we get each background section we&#8217;ll be moving down (further into negative values).</p>
<h3>Files</h3>
<div id="files">
<div class="dl html"><a title="CSS_Sprites_Icon_Tutorial.html" href="http://www.smor.tv/wp-content/uploads/2009/09/CSS_Sprites_Icon_Tutorial_Example.html">CSS_Sprites_Icon_Tutorial.html</a> (Rightclick and Save As&#8230;)</div>
<div class="dl pic"><a title="CSS_Sprites_Icon_Tutorial.png" href="http://www.smor.tv/wp-content/uploads/2009/09/CSS_Sprites_Icon_Tutorial.png">CSS_Sprites_Icon_Tutorial.png</a></div>
<div class="dl psd"><a title="CSS_Sprite_Icon_Tutorial_Template.psd" href="http://www.smor.tv/wp-content/uploads/2009/09/CSS_Sprite_Icon_Tutorial_Template.psd">CSS_Sprite_Icon_Tutorial_Template.psd</a></div>
</div>
<ol class="spaced">
<li>As mentioned above, the first part of the CSS for the sprite will be setting the general styling for all of the icons. div.icons is going to be used as a container for the icons. By not giving the span an ID or class we&#8217;re saying ANY span within div.icons will have the style defined below. If possible, you should always use a container since it enables you to easily define styling for all icons at once. Alternatively if my icons were not going to be placed within a container I would need to define each icon span. EX: span.icon1, span.icon2, span.icon3 {/* styling for all icons here */}. Add the following code to your stylesheet or between your &lt;style&gt; &lt;/style&gt; tags. Refer to <a title="CSS_Sprites_Icon_Tutorial_Example.html" href="http://www.smor.tv/wp-content/uploads/2009/09/CSS_Sprites_Icon_Tutorial_Example.html">CSS_Sprites_Icon_Tutorial.html</a> if needed.
<pre class="brush: css;">
/*  RESET */
*{margin:0;padding:0;border:0;}
/*  START ICON CSS */
/*  This is where we set the general styling for all icons. */
.icons span
{
font:11px Arial, Helvetica, sans-serif;
line-height: 16px;
color: #666;
background: url(Icon_Sprite.png) no-repeat;
width: 100px;
height: 16px;
margin: 2px 0 4px 5px;
padding: 0 0 0 22px;
display: block;
/*
float: left;
If you set float to left the icons will display horizontally instead of vertically.
*/
}
</pre>
</li>
<li>Now we&#8217;ll setup the HTML code needed to display the icons. Add the following code to the body of your HTML document.
<pre class="brush: xml;">
&lt;!-- START ICONS --&gt;
&lt;div class=&quot;icons&quot;&gt;
&lt;span class=&quot;one&quot;&gt;Icon One&lt;/span&gt;
&lt;span class=&quot;two&quot;&gt;Icon Two&lt;/span&gt;
&lt;span class=&quot;three&quot;&gt;Icon Three&lt;/span&gt;
&lt;span class=&quot;four&quot;&gt;Icon Four&lt;/span&gt;
&lt;span class=&quot;five&quot;&gt;Icon Five&lt;/span&gt;
&lt;/div&gt;
&lt;!-- END ICONS --&gt;
</pre>
</li>
<li> At this point you should have the CSS code from step 1 added to your document (unless you&#8217;re using an external stylesheet), and the HTML code from step 1 in the &lt;body&gt;. Next make sure that the CSS_Sprites_Icon_Tutorial.png is saved in the same place as your HTML file. Then have a look at the results and you should see 5 icons with text to the right of each icon. If not, refer to <a title="CSS_Sprites_Icon_Tutorial_Example.html" href="http://www.smor.tv/wp-content/uploads/2009/09/CSS_Sprites_Icon_Tutorial_Example.html">CSS_Sprites_Icon_Tutorial.html</a> and compare it with your own code.</li>
<li>Everything is setup at this point and the last step is going to be defining the background-position for each of the spans that will be using the icon sprite. The background image will be inherited from div.icons span, so we don&#8217;t need to define the background a second time. Add the following CSS code to your HTML document under where we placed the CSS code from step 1.
<pre class="brush: css;">
/*  This is where we set the icon image for each icon by specifying what area of the sprite to display.
All other properties will be inherited from above so we can easily change the styling for all icons at once.*/
.one
{
background-position: 0 0;
}
.two
{
background-position: 0 -16px;
}
.three
{
background-position: 0 -32px;
}
.four
{
background-position: 0 -48px;
}
.five
{
background-position: 0 -64px;
}
/*  END ICON CSS */
</pre>
</li>
</ol>
<p>When I was originally writing this tutorial, I found it somewhat hypocritical writing about how beneficial sprites can be for a website while using very few on this site. I created a sprite for my own site consisting of various images that are reused throughout my site. Have a look&#8230; <a title="View Sprite" href="http://www.smor.tv/wp-content/themes/smortv/img/sprite.png" target="_blank">sprite.png</a> . It ultimately shaved off around 12-15 requests per page, which I&#8217;ve found has made a significant improvement in loading time for my website. If you don&#8217;t already have it installed, you should grab <a title="Get FireBug" href="http://getfirebug.com/" target="_blank">FireBug</a> and more specifically <a title="Get YSlow!" href="http://developer.yahoo.com/yslow/" target="_blank">YSlow</a> which can help you benchmark your site and measure loading time.</p>
<p>Lastly, if you&#8217;re looking for an icon set to use on your own site check out <a title="Silk Icons at famfamfam.com" href="http://famfamfam.com/lab/icons/silk/">Silk Icons at famfamfam.com</a>. This is definitely one of my favorite icon sets, and is by far the most complete set I&#8217;ve come across (and it&#8217;s FREE).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smor.tv/tutorials/css-tutorials/css-sprites-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Featured Post Tutorial (Using Custom Fields)</title>
		<link>http://www.smor.tv/tutorials/wordpress-tutorials/wordpress-featured-post-tutorial-using-custom-fields/</link>
		<comments>http://www.smor.tv/tutorials/wordpress-tutorials/wordpress-featured-post-tutorial-using-custom-fields/#comments</comments>
		<pubDate>Sun, 02 Aug 2009 22:31:51 +0000</pubDate>
		<dc:creator>Sam Morris</dc:creator>
				<category><![CDATA[WordPress Tutorials]]></category>
		<guid isPermaLink="false">http://www.smor.tv/?p=777</guid>
		<description><![CDATA[<p>This tutorial will show you how to modify your WordPress loop to only display posts that are marked as featured. We will be using a custom field to set posts as featured and in turn, featured posts are not limited...Read More</p>]]></description>
			<content:encoded><![CDATA[<p>This tutorial will show you how to modify your WordPress loop to only display posts that are marked as featured. We will be using a custom field to set posts as featured and in turn, featured posts are not limited to one category. Also, because we&#8217;re going to be using custom fields it&#8217;s transparent to the visitors unlike tags or categories which are visible. Alternatively, you could use a &#8220;Featured&#8221; category and <a title="Looping Through Specific Category" href="http://www.smor.tv/tutorials/wordpress-tutorials/wordpress-looping-category-tutorial/">loop through that specific category</a>.</p>
<ol class="spaced">
<li>Find index.php in your template directory, which can be found at: /wp-content/themes/yourthemename/index.php.</li>
<li>Make a copy of the index.php and call it featured.php.</li>
<li>Open up featured.php and add the following code at the very top of the document. This is the code for <a title="Creating a Custom WordPress Template" href="http://www.smor.tv/tutorials/wordpress-tutorials/wordpress-creating-custom-page-template/">creating a Custom WordPress Template</a>.
<pre class="brush: php;">&lt;?php
/*
Template Name: Featured Posts
*/
?&gt;</pre>
</li>
<li>Towards the top of the document you should see where the loop is starting, lines 2 and 3 should already be in your document. Copy line 1 and insert it before before the other 2 lines so it looks like the following:
<pre class="brush: php;">&lt;?php query_posts('meta_key=is_featured&amp;meta_value=yes');  ?&gt;
&lt;?php if (have_posts()) : ?&gt;
&lt;?php while (have_posts()) : the_post(); ?&gt; </pre>
</li>
<li>What this is doing is telling WordPress to loop through posts that have a custom field of &#8220;is_featured&#8221; set to &#8220;yes&#8221;. Save / Upload featured.php to your template directory and create a new page using the newly created Featured Posts template. If you want this to be your homepage, then go to Settings &gt; Reading, and set your new page as your front page.</li>
<li>Now to add a featured post add a new post (or edit an existing one), and under the editor add a new custom field for &#8220;is_featured&#8221;. Then give it a value of &#8220;yes&#8221;. Update the post, then go back to your Featured Posts page and you should see the featured post.</li>
<li>As I mentioned from the start, there&#8217;s many ways of creating featured posts such as categories, tags, etc. Personally I find this method to be best for a few reason&#8230;
<ul>
<li>Using categories means featured posts will probably need 2 categories, one for the real category, and the other just setting it as featured.</li>
<li>The category method can influence your permalinks, which may make them less descriptive.</li>
<li>Another method is tag based, but many SEO plugins automatically generated keywords from tags. Having &#8220;featured&#8221; as a keyword on many pages isn&#8217;t going to help with Search Engine Optimization.</li>
<li>Plug-ins are a good option, but in my opinion somewhat unnecessary for such a simple task.</li>
<li>The main disadvantage of not using tags or a featured category is users can&#8217;t easily view an archive page with all your featured posts.</li>
</ul>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.smor.tv/tutorials/wordpress-tutorials/wordpress-featured-post-tutorial-using-custom-fields/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>10 Photoshop Shortcuts for a Faster &amp; More Efficient Workflow</title>
		<link>http://www.smor.tv/tutorials/photoshop-tutorials/10-photoshop-shortcuts-for-a-faster-more-efficient-workflow/</link>
		<comments>http://www.smor.tv/tutorials/photoshop-tutorials/10-photoshop-shortcuts-for-a-faster-more-efficient-workflow/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 01:11:14 +0000</pubDate>
		<dc:creator>Sam Morris</dc:creator>
				<category><![CDATA[Photoshop Tutorials]]></category>
		<guid isPermaLink="false">http://www.smor.tv/?p=744</guid>
		<description><![CDATA[<p>As we all know, shortcuts are a substantial part of an efficient workflow. I&#8217;ve been trying to keep track of the Photoshop shortcuts that I use most regularly. After a couple of weeks I&#8217;ve narrowed it down to the following...Read More</p>]]></description>
			<content:encoded><![CDATA[<p>As we all know, shortcuts are a substantial part of an efficient workflow. I&#8217;ve been trying to keep track of the Photoshop shortcuts that I use most regularly. After a couple of weeks I&#8217;ve narrowed it down to the following 10 shortcuts. Keep in mind I use Photoshop for Web and Graphic Design, but I tried to pick out shortcuts that are general enough that they can apply to all types of Photoshop users. In addition, I&#8217;m leaving off the general operating system shortcuts such as select all or copy/paste, photoshop techniques, and the keys to select the tools (like V for move tool, etc). All that being said here&#8217;s my top 10 Photoshop keyboard shortcuts.</p>
<ol class="spaced">
<li><strong>CTRL+T</strong> &#8211; Free Transform Tool</li>
<li><strong>CTRL + Shift + N</strong> -  Create New Layer</li>
<li><strong>CTRL+Backspace </strong>- Fill with Secondary Color</li>
<li><strong>CTRL+J</strong> &#8211; Duplicate Layers</li>
<li><strong>CTRL+[ / ] </strong>- Bring Forward / Bring Back<strong><br />
</strong></li>
<li><strong>CTRL+G</strong> &#8211; Group Layers</li>
<li><strong>CTRL+Shift+I</strong> &#8211; Select Inverse</li>
<li><strong>CTRL+Alt+I</strong> &#8211; Image Resize</li>
<li><strong>CTRL+Alt+C</strong> &#8211; Canvas Size</li>
<li><strong>CTRL+E</strong> &#8211; Merge</li>
<li>EDIT: One of the many I&#8217;m probably forgetting,<strong> CTRL+D / CTRL+Shift+D</strong> for de-selecting / re-selecting your sections.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.smor.tv/tutorials/photoshop-tutorials/10-photoshop-shortcuts-for-a-faster-more-efficient-workflow/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Illustrator Blend Tool Tutorial</title>
		<link>http://www.smor.tv/tutorials/illustrator-tutorials/illustrator-blend-tool-tutorial/</link>
		<comments>http://www.smor.tv/tutorials/illustrator-tutorials/illustrator-blend-tool-tutorial/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 19:42:30 +0000</pubDate>
		<dc:creator>Sam Morris</dc:creator>
				<category><![CDATA[Illustrator Tutorials]]></category>
		<guid isPermaLink="false">http://www.smor.tv/?p=630</guid>
		<description><![CDATA[<p>This tutorial will show you how to use the blend tool in Illustrator. The blend tool will create transitions between two lines, colors, and paths.  It will take between 15-45 minutes depending on experience.</p>
<p>1. Create a circle with a...Read More</p>]]></description>
			<content:encoded><![CDATA[<p>This tutorial will show you how to use the blend tool in Illustrator. The blend tool will create transitions between two lines, colors, and paths.  It will take between 15-45 minutes depending on experience.</p>
<p>1. Create a circle with a 1pt stroke. Give the stroke a color, keep the fill color white.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Blend_Tool_Tutorial_01.jpg" alt="Illustrator_Blend_Tool_Tutorial_01.jpg" /></p>
<p>2. Create a square further down on the page, around the middle. It should have a different stroke color, and should also have a white fill.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Blend_Tool_Tutorial_02.jpg" alt="Illustrator_Blend_Tool_Tutorial_02.jpg" /></p>
<p>3. Create a polygon, the amount of sides isn&#8217;t too important, but you can change the amount of sides with the up and down arrows on the keyboard, while creating the shape. Give your polygon a different stroke color and a white fill.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Blend_Tool_Tutorial_03.jpg" alt="Illustrator_Blend_Tool_Tutorial_03.jpg" /></p>
<p>4. Select all 3 shapes<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Blend_Tool_Tutorial_04.jpg" alt="Illustrator_Blend_Tool_Tutorial_04.jpg" /></p>
<p>5. With the shapes selected go to Object &gt; Blend &gt; Make (Alt+Ctrl+B).<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Blend_Tool_Tutorial_05.jpg" alt="Illustrator_Blend_Tool_Tutorial_05.jpg" /></p>
<p>6. You should now have something similar to this.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Blend_Tool_Tutorial_06.jpg" alt="Illustrator_Blend_Tool_Tutorial_06.jpg" /></p>
<p>8. Go to Object &gt; Blend &gt; Blend Options&#8230;<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Blend_Tool_Tutorial_07.jpg" alt="Illustrator_Blend_Tool_Tutorial_07.jpg" /></p>
<p>8. As you play with the settings notice the different types of effects you can get. When you&#8217;re done press cancel, we don&#8217;t want to change the settings yet.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Blend_Tool_Tutorial_08.jpg" alt="Illustrator_Blend_Tool_Tutorial_08.jpg" /></p>
<p>9. Select the Convert Anchor Point Tool (Shift+C)<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Blend_Tool_Tutorial_09.jpg" alt="Illustrator_Blend_Tool_Tutorial_09.jpg" /></p>
<p>10. Drag downwards on the middle point and make a loop.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Blend_Tool_Tutorial_10.jpg" alt="Illustrator_Blend_Tool_Tutorial_10.jpg" /></p>
<p>11. You should have something like this.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Blend_Tool_Tutorial_11.jpg" alt="Illustrator_Blend_Tool_Tutorial_11.jpg" /></p>
<p>12. Add some more points with the pen tool and use the Convert Anchor Point Tool (Shift+C) to make it more interesting.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Blend_Tool_Tutorial_12.jpg" alt="Illustrator_Blend_Tool_Tutorial_12.jpg" /></p>
<p>13. Also try changing the Orientation in the Blend Options. Go to Object &gt; Blend &gt; Blend Options&#8230; Most likely it will be set to align to page, which is the default, but try settings it to the align to path and see how your results change.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Blend_Tool_Tutorial_13.jpg" alt="Illustrator_Blend_Tool_Tutorial_13.jpg" /></p>
<p>15. Our blend has a white solid, but if you want you can give it no fill and it will be transparent. To edit the shapes you can choose them from the layers palette or you can double click your blend to make the shapes editable.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Blend_Tool_Tutorial_14.jpg" alt="Illustrator_Blend_Tool_Tutorial_14.jpg" /></p>
<p>18. I&#8217;ll show one more type of blend which is more typical, but still cool. Create a new document and make a path with a stroke, no fill.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Blend_Tool_Tutorial_15.jpg" alt="Illustrator_Blend_Tool_Tutorial_15.jpg" /></p>
<p>19. Create another stroke further down on the page.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Blend_Tool_Tutorial_16.jpg" alt="Illustrator_Blend_Tool_Tutorial_16.jpg" /></p>
<p>20. Go to Object &gt; Blend &gt; Make Blend. Play around with your settings and path until you&#8217;re happy with the results.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Blend_Tool_Tutorial_17.jpg" alt="Illustrator_Blend_Tool_Tutorial_17.jpg" /></p>
<p>If you&#8217;re looking for a tutorial going into more detail about the second method I&#8217;ve shown you, there&#8217;s a good tutorial at <a href="http://www.ndesign-studio.com/resources/tutorials/abstract-background/" target="_blank">N.Design Studio</a> which shows how to create a background similar to the ones that come with Mac OS X.</p>
<p>One last note, there is a &#8220;Blend Tool&#8221; in Illustrator. It&#8217;s one of the tools, but I generally find it harder to use than the method described in this tutorial. Also you can do blends with fills, shapes, strokes, paths, opacity, and more. You don&#8217;t need to be using strokes for the blend to work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smor.tv/tutorials/illustrator-tutorials/illustrator-blend-tool-tutorial/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>After Effects Rotoscoping Tutorial</title>
		<link>http://www.smor.tv/tutorials/after-effects-tutorials/after-effects-rotoscoping-tutorial/</link>
		<comments>http://www.smor.tv/tutorials/after-effects-tutorials/after-effects-rotoscoping-tutorial/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 01:54:09 +0000</pubDate>
		<dc:creator>Sam Morris</dc:creator>
				<category><![CDATA[After Effects Tutorials]]></category>
		<guid isPermaLink="false">http://www.smor.tv/?p=598</guid>
		<description><![CDATA[<p>This tutorial will take around 2-4 hours for most people to complete. 90% of the time will be doing the actual rotoscoping. Unfortunately, there&#8217;s no easy way to rotoscope footage. A few hours is relatively little when it comes rotoscoping...Read More</p>]]></description>
			<content:encoded><![CDATA[<p>This tutorial will take around 2-4 hours for most people to complete. 90% of the time will be doing the actual rotoscoping. Unfortunately, there&#8217;s no easy way to rotoscope footage. A few hours is relatively little when it comes rotoscoping footage. In addition, we&#8217;ll be rotoscoping a cube which is very simple object in comparison to something like fingers playing guitar or other organic objects.</p>
<h3>Files</h3>
<div id="files">
<div class="dl aep"><a title="After_Effects_Rotoscope_Tutorial_Finished.aep" href="http://www.smor.tv/wp-content/uploads/2009/07/After_Effects_Rotoscope_Tutorial_Finished.aep">After_Effects_Rotoscope_Tutorial_Finished.aep</a></div>
<div class="dl mov"><a title="After_Effects_Rotoscope_Tutorial_Finished.mov" href="http://www.smor.tv/wp-content/uploads/2009/07/After_Effects_Rotoscope_Tutorial_Finished.mov">After_Effects_Rotoscope_Tutorial_Finished.mov</a></div>
<div class="dl mov"><a title="After_Effects_Rotoscope_Tutorial_Footage.mov" href="http://www.smor.tv/wp-content/uploads/2009/07/After_Effects_Rotoscope_Tutorial_Footage.mov">After_Effects_Rotoscope_Tutorial_Footage.mov</a></div>
<div class="dl jpg"><a title="After_Effects_Rotoscoping_Tutorial_Grid_Ref.jpg" href="http://www.smor.tv/wp-content/uploads/2009/07/After_Effects_Rotoscoping_Tutorial_Grid_Ref.jpg">After_Effects_Rotoscoping_Tutorial_Grid_Ref.jpg</a></div>
</div>
<p>Before you start rotoscoping I&#8217;ll explain exactly what we&#8217;re doing. Have a look at the screenshot. What we&#8217;re doing is using the footage (After_Effects_Rotoscope_Tutorial_Footage.mov) as our background, but at the same time we&#8217;ll be using part of it (The cube) as our foreground (Roto Top). We then put the text between the two layers. Roto Top will reveal the text along with Roto Bottom, but because Roto Top and Bottom are duplicates of each other the only noticeable difference will be the text revealing itself. With this particular frame the area of interest is shown by the green box. As you can see there are areas of the mask (the yellow line) that are not following along the cube (EX: Bottom right). Because nothing is being revealed except for the area in the green box, it would be extra work to trace the whole cube. Watch the footage and finished movie if you haven&#8217;t already, so you get a better idea of what you&#8217;ll be doing.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Rotoscoping_Tutorial_Explained.jpg" alt="After_Effects_Rotoscoping_Tutorial_Explained.jpg" /></p>
<p>1 . Start off by creating a new project (Ctrl+Alt+N) and importing Rotoscope_Tutorial_Footage.mov (Ctrl+I) which we&#8217;ll be using as our footage. After it&#8217;s imported drag it down to the &#8220;Create a new composition&#8221; button. By dragging the footage to the icon After Effects will create a new composition based on the settings of the clip.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Rotoscoping_Tutorial_01.jpg" alt="After_Effects_Rotoscoping_Tutorial_01.jpg" /></p>
<p>2. You should now have a composition with 1 layer which is your footage. Duplicate your layer (Ctrl+D), and name the top layer &#8220;Roto Top&#8221; and the bottom layer &#8220;Roto Bottom&#8221;. You can rename a layer by selecting it and then pressing the return key.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Rotoscoping_Tutorial_02.jpg" alt="After_Effects_Rotoscoping_Tutorial_02.jpg" /></p>
<p>3. Create a new type layer (Ctrl+Alt+Shift+T) or Ctrl+T and draw a text box. Pick a font and then choose a size that fills up the width of the composition. Click the &#8220;3D Layer&#8221; button so we can put our type in perspective.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Rotoscoping_Tutorial_03.jpg" alt="After_Effects_Rotoscoping_Tutorial_03.jpg" /></p>
<p>4. Now we&#8217;ll rotate the text layer so it fits in better. You&#8217;ll probably need to adjust the orientation and the position. My settings are shown in the screenshot below. You can see my text is a little off since I wasn&#8217;t using the <a href="http://www.smor.tv/wp-content/uploads/2009/07/After_Effects_Rotoscoping_Tutorial_Grid_Ref.jpg">grid.jpg</a> (Attached), if you want to make it perfect make a layer for the grid and turn down the transparency. It will be easy to match up your text with the lines on the floor. This step is optional, but it will look more interesting if your text has perspective.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Rotoscoping_Tutorial_04.jpg" alt="After_Effects_Rotoscoping_Tutorial_04.jpg" /></p>
<p>5. Move your text layer so it&#8217;s between Roto Top and Bottom. Set Roto Top&#8217;s opacity to 75% and move the playhead forwards until you find where you need to start rotoscoping. There&#8217;s no reason to start rotoscoping until the cube starts to reveal the text. For my example it isn&#8217;t until 0:00:01:04 that the cube starts revealing the text. After you decide where you want to start rotoscoping, put the opacity for Roto Top back to 100%. (If you want, you can create a marker by pressing the* key on the num pad)<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Rotoscoping_Tutorial_05.jpg" alt="After_Effects_Rotoscoping_Tutorial_05.jpg" /></p>
<p>6. Select the Pen Tool (G) and select Roto Top. Your playhead should be at where ever you decided to start in step 5. Draw your mask around the left side of the cube. Remember, you do not need to trace the right side of the cube. You also may not need to go around the top left corner, but this depends on the font/size of your text. In my example I didn&#8217;t need to start tracing the corner of the cube until a few frames in. After you&#8217;ve drawn your mask <strong><span style="color: red;">turn on automatic keyframing by clicking the stop watch</span></strong>. This will make it so as you make changes to each frame a keyframe will automatically be made.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Rotoscoping_Tutorial_06.jpg" alt="After_Effects_Rotoscoping_Tutorial_06.jpg" /></p>
<p>7. To jump to the next/previous frame you can use the Page Up / Down keys, or the Time Controls palette (Ctrl+3), I generally prefer using the keyboard. After you&#8217;ve gone to the next frame, adjust your mask. You can do this by moving the whole mask or free transforming (Ctrl+T), or you can use the arrow keys and nudge the mask. If you want to move an individual point you can shift click it and then you will have one point selected. If you want to select all the points again you can double click the edge of the mask, use Ctrl+A, or click &#8220;Mask Path&#8221; in the timeline. You should see keyframes starting to accumulate as you make changes on each frame. If you need to zoom in on your timeline you can try Alt+Scrolling on the mouse wheel, or the bar right above the numbers in the timeline.<strong><span style="color: red;"> It&#8217;s easy to move your layer&#8217;s position instead of the mask, especially when zoomed in. Your layer position will be 360.0, 243.00 (default and centered for NTSC). If you move the layer&#8217;s position every frame after it will be correct, but all the frames before will be off. Make sure your layer position does not get changed and check it every few frames.</span></strong><br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Rotoscoping_Tutorial_07.jpg" alt="After_Effects_Rotoscoping_Tutorial_07.jpg" /></p>
<p>8. Each time you go to a new keyframe you&#8217;ll need to realign your mask by moving the whole mask or point/s of your mask.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Rotoscoping_Tutorial_08.jpg" alt="After_Effects_Rotoscoping_Tutorial_08.jpg" /></p>
<p>9. Remember that only a few points of your mask are important and the rest will not have any effect. In this screenshot the 3 points in red and 1 point at the bottom right (Off screen) are the only important points.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Rotoscoping_Tutorial_09.jpg" alt="After_Effects_Rotoscoping_Tutorial_09.jpg" /></p>
<p>10. You&#8217;ll want to zoom back out to 100% and turn off the masks so you can see how it&#8217;s looking. The best way to do this is with the &#8220;Toggle Mask and Shape Path Visibility&#8221; button. Make sure to regularly check and play through your frames to avoid any developing issues.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Rotoscoping_Tutorial_10.jpg" alt="After_Effects_Rotoscoping_Tutorial_10.jpg" /></p>
<p>11. Now go through all the frames, or as many are needed until your type is completely revealed. You can expect it to take at least an hour if not a couple. It may be hard to work on smaller monitors with low resolutions. If you need more space you can move the mouse over the Viewer and press the ~ key. This will make your viewer window take the whole screen. You can use the ~ key again to go back to normal, be sure to check the timeline every few frames to make sure everything looks alright. You can zoom in and out with the Magnifying glass tool (Z) or Ctrl+ +/-.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Rotoscoping_Tutorial_11.jpg" alt="After_Effects_Rotoscoping_Tutorial_11.jpg" /> This is probably the simplest form of rotoscoping you&#8217;ll find. It&#8217;s an extremely commonly used technique and it&#8217;s important to have a grasp on how it works. Any comments, questions, etc are welcome. If you make it through the tutorial, submit a comment with a link to your finished movie file.</p>
<p><strong><span style="color: red;">Notes:<br />
My AEP file will have &#8220;Rotoscope Outlines&#8221; and it will be a shape layer instead of a type layer since most people don&#8217;t have the font I used.</span></strong></p>
<p><strong>There&#8217;s also a fade in/out and the text moves off the screen after it&#8217;s revealed, just like the Rotoscope_Tutorial_Finished.mov.</strong></p>
<p><strong>I also added some layer styles to my text (Gradient Overlay and Stroke) which are not part of the tutorial. You can add layer styles to your text by going to Layer &gt; Layer Styles. You&#8217;ll see the change when looking at my type in step 5 vs step 10.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.smor.tv/tutorials/after-effects-tutorials/after-effects-rotoscoping-tutorial/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>WordPress Looping through specific Category Tutorial</title>
		<link>http://www.smor.tv/tutorials/wordpress-tutorials/wordpress-looping-category-tutorial/</link>
		<comments>http://www.smor.tv/tutorials/wordpress-tutorials/wordpress-looping-category-tutorial/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 07:17:02 +0000</pubDate>
		<dc:creator>Sam Morris</dc:creator>
				<category><![CDATA[WordPress Tutorials]]></category>
		<guid isPermaLink="false">http://www.smor.tv/?p=674</guid>
		<description><![CDATA[<p>This tutorial will show you how to create a WordPress loop for getting posts from a specific category / categories. It&#8217;s similar to an archive page displaying a certain category, but by creating a custom loop there is more flexibility...Read More</p>]]></description>
			<content:encoded><![CDATA[<p>This tutorial will show you how to create a WordPress loop for getting posts from a specific category / categories. It&#8217;s similar to an archive page displaying a certain category, but by creating a custom loop there is more flexibility and customization options, especially when used in conjunction with custom page templates. A standard WordPress loop generally looks along the lines of this:</p>
<pre class="brush: php;">&lt;?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?&gt;
THE CONTENT
&lt;?php endwhile; else: ?&gt;
&lt;?php _e('No Results'); ?&gt;
&lt;?php endif; ?&gt;</pre>
<p>The issue is in many scenarios you may want to include posts from one or a few categories. The archive feature of WordPress has the capabilities to display posts from a certain category, but it lacks flexibility so instead I prefer to create a custom loop using a page template.</p>
<p>The new loop is:</p>
<pre class="brush: php;">&lt;?php if (have_posts()) : ?&gt;
&lt;?php
$thePosts = get_posts('numberposts=50&amp;category=1');
foreach($thePosts as $post) :
setup_postdata($post);
?&gt;
THE CONTENT
&lt;?php endforeach; ?&gt;
&lt;?php else : ?&gt;
No Results
&lt;?php endif; ?&gt;</pre>
<p>Assuming you use this loop with a custom page template you now have a way to loop through a certain category as well as the ability to make template customizations without having to modify the built in WordPress archives feature.</p>
<p>One last improvement&#8230;In my experience if you&#8217;re creating a custom loop like the one above you&#8217;ll probably be having more than one page with specific categories. That being the case, having a hard coded category ID is not efficient. Instead we can use a custom field to add some flexibility:</p>
<pre class="brush: php;">&lt;?php
$category = get_post_meta($post-&gt;ID, &quot;category&quot; true);
$myPosts = get_posts('numberposts=50&amp;category=' . $category. '');
foreach($myPosts as $post) :
setup_postdata($post);
?&gt;
THE CONTENT
&lt;?php endforeach; ?&gt;
&lt;?php else : ?&gt;
No Results
&lt;?php endif; ?&gt;</pre>
<p>When creating a new page you can choose your custom page template and will have the ability to loop through one or multiple categories by adding a custom field for &#8220;category&#8221;, then listing the category ID. In addition, if you wanted to add even more flexibility you could create a second post_meta option for limiting the number of posts that are displayed:</p>
<pre class="brush: php;">&lt;?php
$category = get_post_meta($post-&gt;ID, &quot;category&quot;, true);
$postLimit = get_post_meta($post-&gt;ID, &quot;posts limit&quot;, true);
$myPosts = get_posts('numberposts=' . $postLimit. '&amp;category=' . $category. '');
foreach($myPosts as $post) :
setup_postdata($post);
?&gt;
THE CONTENT
&lt;?php endforeach; ?&gt;
&lt;?php else : ?&gt;
No Results
&lt;?php endif; ?&gt;</pre>
<p>Now you would add two custom fields, one for &#8220;category&#8221; and a second for &#8220;posts limit&#8221;. If you wanted to add more than one category for a page you would list out all the category IDs, seperating them with commas (EX: 1,2,3,4).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smor.tv/tutorials/wordpress-tutorials/wordpress-looping-category-tutorial/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Photoshop Layer Styles Tutorial</title>
		<link>http://www.smor.tv/tutorials/photoshop-tutorials/photoshop-layer-styles-tutorial/</link>
		<comments>http://www.smor.tv/tutorials/photoshop-tutorials/photoshop-layer-styles-tutorial/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 03:06:03 +0000</pubDate>
		<dc:creator>Sam Morris</dc:creator>
				<category><![CDATA[Photoshop Tutorials]]></category>
		<guid isPermaLink="false">http://www.smor.tv/?p=647</guid>
		<description><![CDATA[<p>This tutorial will give you an introduction to the layer styles feature of Photoshop as well as creating custom patterns and making selections. Layer styles can be used for many uses, but this tutoiral will be focusing on how layer...Read More</p>]]></description>
			<content:encoded><![CDATA[<p>This tutorial will give you an introduction to the layer styles feature of Photoshop as well as creating custom patterns and making selections. Layer styles can be used for many uses, but this tutoiral will be focusing on how layer styles can be used with type. It will take between 10-30 minutes depending on experience.</p>
<h3>Files</h3>
<div id="files">
<div class="dl psd"><a title="Photoshop_Layer_Styles_Tutorial_Finished.psd" href="http://www.smor.tv/wp-content/uploads/2009/07/Photoshop_Layer_Styles_Tutorial_Finished.psd">Photoshop_Layer_Styles_Tutorial_Finished.psd</a></div>
<div class="dl psd"><a title="Photoshop_Layer_Styles_Tutorial.psd" href="http://www.smor.tv/wp-content/uploads/2009/07/Photoshop_Layer_Styles_Tutorial.psd">Photoshop_Layer_Styles_Tutorial.psd</a></div>
<div class="dl psd"><a title="Photoshop_Layer_Styles_Tutorial_Pattern.psd" href="http://www.smor.tv/wp-content/uploads/2009/07/Photoshop_Layer_Styles_Tutorial_Pattern.psd">Photoshop_Layer_Styles_Tutorial_Pattern.psd</a></div>
</div>
<p>1. Start of by downloading the Layer_Styles_Start.psd and opening it in Photoshop. Alternatively, you can create you own text if you like. I chose Myriad Pro (Semibold Condensed) at 150pt, I also turned on all caps.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Layer_Styles_Tutorial_01.jpg" alt="Photoshop_Layer_Styles_Tutorial_01.jpg" /></p>
<p>2. Go to Color Overlay, which is located under the &#8220;Add new layer style&#8221; button. Choose a color and press OK. We won&#8217;t be using the color overlay, but it&#8217;s good to know about and is generally easier to manage color overlay. Also, you can copy and paste layer styles by right clicking on a layer.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Layer_Styles_Tutorial_02.jpg" alt="Photoshop_Layer_Styles_Tutorial_02.jpg" /></p>
<p>3. Create a new layer and fill it with gray. I used #7C7C7C. This is the background so move it under your text layer.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Layer_Styles_Tutorial_03.jpg" alt="Photoshop_Layer_Styles_Tutorial_03.jpg" /></p>
<p>4. Add a new layer style and choose Gradient Overlay. You&#8217;ll notice that nothing is happening. This is because the Color Overlay is on, turn it off (uncheck it) and then you&#8217;ll see the Gradient Overlay. Double click the gradient to bring up the Gradient Editor. Choose two colors, I choose yellow and orange for mine.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Layer_Styles_Tutorial_04.jpg" alt="Photoshop_Layer_Styles_Tutorial_04.jpg" /></p>
<p>5. Next we&#8217;ll add a Drop Shadow. To turn it on check off the box and then match my settings. Generally, many of the effects like the glows and shadows are too harsh by default and will look rather amateur if you don&#8217;t turn down the opacity and size a little.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Layer_Styles_Tutorial_05.jpg" alt="Photoshop_Layer_Styles_Tutorial_05.jpg" /></p>
<p>6. Next we&#8217;ll add an Inner Glow.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Layer_Styles_Tutorial_06.jpg" alt="Photoshop_Layer_Styles_Tutorial_06.jpg" /></p>
<p>7. And a stroke.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Layer_Styles_Tutorial_07.jpg" alt="Photoshop_Layer_Styles_Tutorial_07.jpg" /></p>
<p>7. Create a new document with a width and height of 3px. The background should be transparent and resolution 72.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Layer_Styles_Tutorial_08.jpg" alt="Photoshop_Layer_Styles_Tutorial_08.jpg" /></p>
<p>8. Use the pencil tool to create 3 pixels going across at a 45 degrees angle. Refer to pattern.psd if needed.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Layer_Styles_Tutorial_09.jpg" alt="Photoshop_Layer_Styles_Tutorial_09.jpg" /></p>
<p>8. Go to Edit &gt; Define Pattern. Give the pattern a name and click OK.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Layer_Styles_Tutorial_10.jpg" alt="Photoshop_Layer_Styles_Tutorial_10.jpg" /></p>
<p>9. Go back to your document with the text and create a new layer and move it above your text layer. Then choose the Pattern Stamp. Photoshop may show the clone stamp which is the default tool, so you may need to click the clone stamp and select the pattern stamp. At the top you&#8217;ll see Pattern: choose the new pattern we defined which will be at the bottom of the list.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Layer_Styles_Tutorial_11.jpg" alt="Photoshop_Layer_Styles_Tutorial_11.jpg" /></p>
<p>10. On your new layer with the pattern stamp selected draw over your text. No need to be neat, but make sure to cover all the text with the pattern.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Layer_Styles_Tutorial_12.jpg" alt="Photoshop_Layer_Styles_Tutorial_12.jpg" /></p>
<p>11. Control click the thumbnail of your text layer in the layers palette to load the selection or go to Select &gt; Load Selection with your text layer selected. Right click on the selection and go to Select Inverse. Then press delete.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Layer_Styles_Tutorial_13.jpg" alt="Photoshop_Layer_Styles_Tutorial_13.jpg" /></p>
<p>12. It looks, better, but I don&#8217;t like the way the pattern touches the edge so we&#8217;ll cut some more. With the text layer selected load the selection again. Then go to Select &gt; Modify &gt; Contract. Put in 2px and click OK, then Select Inverse and delete. You&#8217;ll notice we cut away 2px from the pattern so it isn&#8217;t touching the edge of the text anymore.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Layer_Styles_Tutorial_14.jpg" alt="Photoshop_Layer_Styles_Tutorial_14.jpg" /></p>
<p>13. At this point your document should look similar to this.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Layer_Styles_Tutorial_15.jpg" alt="Photoshop_Layer_Styles_Tutorial_15.jpg" /></p>
<p>14. Choose your layer with the pattern, then select the marquee tool and set the feather to 50px. Then drag a marquee around the top half of your text and press delete. You can press delete multiple times to slowly delete more of the pattern.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Layer_Styles_Tutorial_16.jpg" alt="Photoshop_Layer_Styles_Tutorial_16.jpg" /></p>
<p>16. I decided to change the color of my Gradient Overlay. Double click the layer style in the layers palette to bring up the settings. I changed my orange color to a light yellow.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Layer_Styles_Tutorial_17.jpg" alt="Photoshop_Layer_Styles_Tutorial_17.jpg" /></p>
<p>17. The final results&#8230;<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Layer_Styles_Tutorial_18.jpg" alt="Photoshop_Layer_Styles_Tutorial_18.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.smor.tv/tutorials/photoshop-tutorials/photoshop-layer-styles-tutorial/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Photoshop Vector Mask Tutorial (changing a car&#8217;s color)</title>
		<link>http://www.smor.tv/tutorials/photoshop-tutorials/photoshop-vector-mask-tutorial-changing-a-cars-color/</link>
		<comments>http://www.smor.tv/tutorials/photoshop-tutorials/photoshop-vector-mask-tutorial-changing-a-cars-color/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 20:16:15 +0000</pubDate>
		<dc:creator>Sam Morris</dc:creator>
				<category><![CDATA[Photoshop Tutorials]]></category>
		<guid isPermaLink="false">http://www.smor.tv/?p=637</guid>
		<description><![CDATA[<p>This tutorial will show you how to make changes to an image by using vector masks. Vector masks are just like normal masks, but use paths which gives more flexibility and control. With print work especially, you&#8217;ll notice your edges...Read More</p>]]></description>
			<content:encoded><![CDATA[<p>This tutorial will show you how to make changes to an image by using vector masks. Vector masks are just like normal masks, but use paths which gives more flexibility and control. With print work especially, you&#8217;ll notice your edges will look much smoother than any rasterized mask or erasing. This tutorial will take 30-60 minutes for most to complete.</p>
<h3>Files</h3>
<div id="files">
<div class="dl psd"><a title="Photoshop_Vector_Mask_Tutorial_Changing_Car_Color.psd" href="http://www.smor.tv/wp-content/uploads/2009/07/Photoshop_Vector_Mask_Tutorial_Changing_Car_Color.psd">Photoshop_Vector_Mask_Tutorial_Changing_Car_Color.psd</a></div>
<div class="dl psd"><a title="Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_Finished.psd" href="http://www.smor.tv/wp-content/uploads/2009/07/Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_Finished.psd">Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_Finished.psd</a></div>
</div>
<p>1. Open Vector_Mask_Tutorial.psd and select your Pen Tool (P). Then select the &#8220;Paths&#8221; button and &#8220;Add to path area&#8221; button toward to top left of Photoshop. Now start tracing the car, first go around the outer edges, we&#8217;ll delete the inner areas like the headlights, and windows later.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_01.jpg" alt="Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_01.jpg" /></p>
<p>2. This is your first pass, if you make some mistakes you can leave it and fix them later. Keep going around the outer edge of the car. If you deselect your path by mistake, click on the end with the pen tool and you will be able to continue the path. Also, if you hold the alt key handles will appear which will be needed for some areas.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_02.jpg" alt="Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_02.jpg" /></p>
<p>3. When you reach your starting point your mask will be closed. Right click the mask and select &#8220;Create vector mask&#8221;.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_03.jpg" alt="Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_03.jpg" /></p>
<p>4. If you hide the background layer you&#8217;ll be able to see the mask you created. Turn the background layer back on since you&#8217;ll need it for reference. Select the Pen Tool (P) again, but this time select &#8220;Subtract from path area&#8221; located towards the top. After you have it selected start going around the headlights, grill, and driver side window. We don&#8217;t want these areas to be effected by the color changes we make, so we need to remove them. Remove the non-silver areas until your mask looks like this.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_04.jpg" alt="Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_04.jpg" /></p>
<p>5. Now you&#8217;ll add an adjustment layer which is what will control the color of the car. In the layers palette select your top layer (Silver) and then click the &#8220;Create new fill or adjustment layer&#8221; button located at the bottom of the layers palette.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_05.jpg" alt="Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_05.jpg" /></p>
<p>6. When the Hue / Saturation menu comes up turn on &#8220;Colorize&#8221; and then click OK. You&#8217;ll notice everything is being effected, but we&#8217;ll fix that next.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_06.jpg" alt="Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_06.jpg" /></p>
<p>7. Now hold the alt key and move the mouse between your adjustment layer and your top layer (Silver). You&#8217;ll see an icon with 2 circles appear, click and the adjustment layer will shift to the right and an arrow appears. The adjustment layer now only effects the layer below it.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_07.jpg" alt="Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_07.jpg" /></p>
<p>8. I decided to start of with an orange car. Open up the Hue / Saturation settings again so the values can be changed. Double click the icon on the adjustment layer to bring up the menu. Then change the settings to Hue: 43, Saturation: 90, Lightness: -30.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_08.jpg" alt="Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_08.jpg" /></p>
<p>9. Now that we have a bright orange car we can see difference between the silver and orange quite easily. Select your vector mask from the layers palette and select the Direct Selection Tool (A), make sure it&#8217;s not the Path Selection Tool. They are under the same icon. When you click your mask the points will appear. Move the points and handles until all silver areas of the car are orange. If the path is getting in the way Ctrl+H will toggle visible Extras on and off. Fix any areas of your mask as needed. You can see in the screenshot there&#8217;s a little silver above the tire which I had to fix as well as some other areas. You&#8217;ll want to zoom in when moving your points, but be sure to zoom out to 100% regularly to make sure you&#8217;re staying on track.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_09.jpg" alt="Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_09.jpg" /></p>
<p>10. When you&#8217;re all done your mask should look like this. Hide the background layer if you want to see just your mask. (I decided to remove the orange from the stripe on the mirror and the keyhole)<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_10.jpg" alt="Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_10.jpg" /></p>
<p>11. The last step is making the logo on the front of the car show up if you have not done so already. I decided to use the brush since it&#8217;s so faint. You can draw directly on the adjustment layer. The areas you paint with black will return back to silver. Zoom in and grab a very small brush, then paint black around the logo with the Hue / Saturation Adjustment layer selected. (Ignore the 3 other adjustment layers you see in the screenshot)<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_11.jpg" alt="Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_11.jpg" /></p>
<p>There&#8217;s a lot of debate over which adjustment layer works best for changing the color of something like a car. There is no best adjustment layer, most of the time there will be a few you can choose from to get the same results. I chose Hue / Saturation for this tutorial since it&#8217;s very simple to use. My final will be shown below, but I also did a few other tests with other types of adjustment layers. The Vector_Mask_Tutorial_Finished.psd has all my Adjustment Layers.</p>
<p>Here&#8217;s the final for the orange car that we made in the tutorial, using a Hue / Saturation Adjustment Layer.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_Orange.jpg" alt="Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_Orange.jpg" /></p>
<p>This one was made with a Channel Mixer Adjustment Layer.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_Blue.jpg" alt="Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_Blue.jpg" /></p>
<p>This one was made with a Gradient Map Adjustment Layer.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_Green.jpg" alt="Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_Green.jpg" /></p>
<p>This last one was made with a Channel Mixer Adjustment Layer and a Hue / Saturation Adjustment Layer. I will say although Hue / Saturation controls are very easy to use, they can easily wash out your image. I added the Channel Mixer to bring back some of my shadows and midtones.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_Gold.jpg" alt="Photoshop_Vector_Mask_Tutorial_Changing_Car_Color_Gold.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.smor.tv/tutorials/photoshop-tutorials/photoshop-vector-mask-tutorial-changing-a-cars-color/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>WordPress Creating a Custom Page Template</title>
		<link>http://www.smor.tv/tutorials/wordpress-tutorials/wordpress-creating-custom-page-template/</link>
		<comments>http://www.smor.tv/tutorials/wordpress-tutorials/wordpress-creating-custom-page-template/#comments</comments>
		<pubDate>Tue, 19 May 2009 07:52:05 +0000</pubDate>
		<dc:creator>Sam Morris</dc:creator>
				<category><![CDATA[WordPress Tutorials]]></category>
		<guid isPermaLink="false">http://www.smor.tv/?p=698</guid>
		<description><![CDATA[<p>Creating a custom page template in WordPress is extremely easy, simply add this code at the top of your page template. Generally the best way to create a custom page template is by creating a copy of your theme&#8217;s page.php...Read More</p>]]></description>
			<content:encoded><![CDATA[<p>Creating a custom page template in WordPress is extremely easy, simply add this code at the top of your page template. Generally the best way to create a custom page template is by creating a copy of your theme&#8217;s page.php file. Using the existing page template will be a good starting point for most customizations, since most likely many aspects of the custom page will be similar to the original. Also, it&#8217;s much easier to hack away at your code removing sections of a page rather than trying to add them back in.</p>
<p>The Code:</p>
<pre class="brush: php;">
&lt;?php
/*
Template Name: Your Template Name
*/
?&gt;
</pre>
<p>Most likely right after the page template code will come &lt;?php get_header(); ?&gt; . As a side note, there doesn&#8217;t need to be any correlation between the filename and page template name.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smor.tv/tutorials/wordpress-tutorials/wordpress-creating-custom-page-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photoshop Type on a Path Tutorial</title>
		<link>http://www.smor.tv/tutorials/photoshop-tutorials/photoshop-type-on-a-path-tutorial/</link>
		<comments>http://www.smor.tv/tutorials/photoshop-tutorials/photoshop-type-on-a-path-tutorial/#comments</comments>
		<pubDate>Fri, 15 May 2009 02:41:17 +0000</pubDate>
		<dc:creator>Sam Morris</dc:creator>
				<category><![CDATA[Photoshop Tutorials]]></category>
		<guid isPermaLink="false">http://www.smor.tv/?p=649</guid>
		<description><![CDATA[<p>This tutorial will show you how to create type on a path. It will take between 5-10 minutes to complete.</p>
<p>1. Select your pen tool, set it to &#8220;Path&#8221; and &#8220;Pen Tool&#8221; using the buttons towards the top left.<br />...Read More</p>]]></description>
			<content:encoded><![CDATA[<p>This tutorial will show you how to create type on a path. It will take between 5-10 minutes to complete.</p>
<p>1. Select your pen tool, set it to &#8220;Path&#8221; and &#8220;Pen Tool&#8221; using the buttons towards the top left.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Type_on_a_Path_Tutorial_01.jpg" alt="Photoshop_Type_on_a_Path_Tutorial_01.jpg" /></p>
<p>2.  Next create your path.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Type_on_a_Path_Tutorial_02.jpg" alt="Photoshop_Type_on_a_Path_Tutorial_02.jpg" /></p>
<p>3. Select the type tool and move the mouse over the start of your path. You&#8217;ll see the icon will change, when it does click and you&#8217;ll be able to start typing on your path. Type in some mock up text and then click the green check at the top or press the return key.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Type_on_a_Path_Tutorial_03.jpg" alt="Photoshop_Type_on_a_Path_Tutorial_03.jpg" /></p>
<p>4. You&#8217;re done, but if you want to finesses your path a little, choose the Direct Selection Tool.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Type_on_a_Path_Tutorial_04.jpg" alt="Photoshop_Type_on_a_Path_Tutorial_04.jpg" /></p>
<p>5. With the Direct Selection Tool click your path and the handles will appear. Move your points and handles until you&#8217;re happy with the text.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Type_on_a_Path_Tutorial_01.jpg" alt="Photoshop_Type_on_a_Path_Tutorial_05.jpg" /></p>
<p>6. The final results.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Photoshop_Type_on_a_Path_Tutorial_06.jpg" alt="Photoshop_Type_on_a_Path_Tutorial_06.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.smor.tv/tutorials/photoshop-tutorials/photoshop-type-on-a-path-tutorial/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Illustrator Template Tutorial (Business Card)</title>
		<link>http://www.smor.tv/tutorials/illustrator-tutorials/illustrator-template-tutorial-business-card/</link>
		<comments>http://www.smor.tv/tutorials/illustrator-tutorials/illustrator-template-tutorial-business-card/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 06:20:17 +0000</pubDate>
		<dc:creator>Sam Morris</dc:creator>
				<category><![CDATA[Illustrator Tutorials]]></category>
		<guid isPermaLink="false">http://www.smor.tv/?p=620</guid>
		<description><![CDATA[<p>This tutorial will show you how to create a template for a business card in Illustrator. Although I&#8217;ll be using a business card for this tutorial, you can use the same techniques for almost any type of print and web...Read More</p>]]></description>
			<content:encoded><![CDATA[<p>This tutorial will show you how to create a template for a business card in Illustrator. Although I&#8217;ll be using a business card for this tutorial, you can use the same techniques for almost any type of print and web work. The template we&#8217;ll be creating will be 3.75&#8243; by 2.25&#8243; with a 1/8&#8243; bleed and a 1/8 safety. This tutorial will take between 15-30 minutes depending on experience. </p>
<h3>Files</h3>
<div id="files">
<div class="dl ai"><a title="Illustrator_Template_Tutorial_Business_Card_Finished.ai" href="http://www.smor.tv/wp-content/uploads/2009/07/Illustrator_Template_Tutorial_Business_Card_Finished.ai">Illustrator_Template_Tutorial_Business_Card_Finished.ai</a></div>
</div>
<p>Start off by creating a new document in Illustrator. Your settings will need to be the same as mine.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Template_Tutorial_Business_Card_01.jpg" alt="Illustrator_Template_Tutorial_Business_Card_01.jpg" /></p>
<p>1. We&#8217;ll start of by setting up our guides. The goal is so have them look like this when we&#8217;re done. The next steps will show you how to do this.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Template_Tutorial_Business_Card_02.jpg" alt="Illustrator_Template_Tutorial_Business_Card_02.jpg" /></p>
<p>2. Create a square, the size and location doesn&#8217;t matter yet, but make sure it&#8217;s a color that you can see. Do not use a stroke, just a fill color. You&#8217;ll notice the diagonal line going across my screenshot. That&#8217;s the smart guides feature of Illustrator and although I&#8217;m not using them yet I will be soon so you can turn them on if needed by going to View &gt; Smart Guides, or Ctrl+U. Also go to View &gt; Snap to point if it isn&#8217;t checked already.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Template_Tutorial_Business_Card_03.jpg" alt="Illustrator_Template_Tutorial_Business_Card_03.jpg" /></p>
<p>3. Select your square and you&#8217;ll see the width and height at the top. Set them both to 0.125 in. Make sure you&#8217;re not setting the X and Y by mistake. Also you&#8217;ll need to turn off Constrain width and height proportions, which is the icon to the left of the blue H. If your rulers are not on turn them on by going to View &gt; Show Rulers (Ctrl+R). If you&#8217;re measurement units are in pixels or another unit right click on the ruler and set it to inches.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Template_Tutorial_Business_Card_04.jpg" alt="Illustrator_Template_Tutorial_Business_Card_04.jpg" /></p>
<p>4. Deselect your square (click the background), then move the mouse over the top left corner of the square until the smart guides show &#8220;anchor&#8221;.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Template_Tutorial_Business_Card_05.jpg" alt="Illustrator_Template_Tutorial_Business_Card_05.jpg" /></p>
<p>5. Drag your square to the top left corner of the document. Don&#8217;t let go until the smart guides show &#8220;intersect&#8221;.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Template_Tutorial_Business_Card_06.jpg" alt="Illustrator_Template_Tutorial_Business_Card_06.jpg" /></p>
<p>6. When the square is selected notice the X and Y are at what seems like random values. To fix this we&#8217;ll reset the 0 point. If you look at the rulers you&#8217;ll see a white box in the top left where the 2 rulers meet. Drag from the box until you get to the top left of your square. It will say &#8220;anchor&#8221; with the smart guide. When you let go the rulers will update and 0 is now the top left of your document.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Template_Tutorial_Business_Card_07.jpg" alt="Illustrator_Template_Tutorial_Business_Card_07.jpg" /></p>
<p>7. You&#8217;ll see that when you have the square selected the X and Y are both set to .063, this is because the reference point is the center of the square. Although it doesn&#8217;t matter for this tutorial if you wanted to change it, it&#8217;s the set of buttons to the left of &#8220;X:&#8221;. You can see when I set it to top left my X and Y show 0.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Template_Tutorial_Business_Card_08.jpg" alt="Illustrator_Template_Tutorial_Business_Card_08.jpg" /></p>
<p>8. Lets move on, change your reference point back to center. Click your ruler and drag a guide to the right side of your square. Don&#8217;t let go until the smart guides show &#8220;path&#8221;. Drag a second guide from the top ruler to the bottom of the square.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Template_Tutorial_Business_Card_09.jpg" alt="Illustrator_Template_Tutorial_Business_Card_09.jpg" /></p>
<p>9. When you&#8217;re done it should look like this.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Template_Tutorial_Business_Card_10.jpg" alt="Illustrator_Template_Tutorial_Business_Card_10.jpg" /></p>
<p>10. Now we&#8217;ll do the same thing for the bottom right of the document, but instead of dragging the square using smart guides I&#8217;ll use the align tool for the sake of variety. If your align palette isn&#8217;t open go to Window &gt; Align (Shift+F7). Before you click anything you&#8217;ll need to turn on &#8220;Align to Artboard&#8221; which is the icon on the bottom right of the align palette. Now click horizontal align right and then vertical align bottom. If you&#8217;re not sure which icon is which you can hold the mouse over an icon and it will tell you what it does.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Template_Tutorial_Business_Card_11.jpg" alt="Illustrator_Template_Tutorial_Business_Card_11.jpg" /></p>
<p>11. Now that it&#8217;s at the bottom right create guides just like we did before. Remember to use the smart guides and snap to the edge.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Template_Tutorial_Business_Card_12.jpg" alt="Illustrator_Template_Tutorial_Business_Card_12.jpg" /></p>
<p>12. Select the bottom right corner of your square (smart guides will show anchor) then drag up and left so the bottom right corner of the square is where your guides meet. It will say anchor again. Drag a guide to the top and another to the left side of the square.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Template_Tutorial_Business_Card_13.jpg" alt="Illustrator_Template_Tutorial_Business_Card_13.jpg" /></p>
<p>13. Next repeat the same step for the top left. After you place your guides it will look like this.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Template_Tutorial_Business_Card_14.jpg" alt="Illustrator_Template_Tutorial_Business_Card_14.jpg" /></p>
<p>14. Your document should now look like this. The area between the artboard or edge of the document and the first guides (outer) is the bleed. The first guides (outter guides) represent the crop line. The inner guides represent the safety.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Template_Tutorial_Business_Card_15.jpg" alt="Illustrator_Template_Tutorial_Business_Card_15.jpg" /></p>
<p>15. Make a large square, bigger than your artboard. It should be around 3x the width and height of your artboard. It doesn&#8217;t need to be precise in size or location.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Template_Tutorial_Business_Card_16.jpg" alt="Illustrator_Template_Tutorial_Business_Card_16.jpg" /></p>
<p>16. Bring up the pathfinder. Go to Window &gt; Pathfinder or Shift+Ctrl+F9. Make another square in the inner part of your first guides. Have a look at my screenshot, remember to use the smart guides when creating your square.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Template_Tutorial_Business_Card_17.jpg" alt="Illustrator_Template_Tutorial_Business_Card_17.jpg" /></p>
<p>17. Now we&#8217;ll use the pathfinder to cut the green area out of the larger blue area. Select both the green and blue square, then press the Subtract from shape area button under Shape Modes: and then press the expand button. Change the fill color to white. You&#8217;ll see the layer is now called &#8220;&lt;Compound Path&gt;&#8221;.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Template_Tutorial_Business_Card_18.jpg" alt="Illustrator_Template_Tutorial_Business_Card_18.jpg" /></p>
<p>18. There&#8217;s nothing on the business card yet, but I added a few things so you can see what we made in action. Here&#8217;s my mock up business card, you&#8217;ll see the image in the background is going outside of the area of the card. Although you can design a card like this it&#8217;s very hard because visually you&#8217;re seeing a very inaccurate representation of the card.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Template_Tutorial_Business_Card_19.jpg" alt="Illustrator_Template_Tutorial_Business_Card_19.jpg" /></p>
<p>19. Now I&#8217;ll turn on the Compound Path we made, I currently have it hidden. You can see with it on all of the content outside of my business card is now not showing. Make sure your compound path layer is at the very top and isn&#8217;t under anything. Also, notice that my text is going to be way too close to the edge of the card, almost hanging off.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Template_Tutorial_Business_Card_20.jpg" alt="Illustrator_Template_Tutorial_Business_Card_20.jpg" /></p>
<p>20. Now I&#8217;ll turn my guides back on (Ctrl+;). You can see even though I moved my text already it&#8217;s still outside my safety (inner) guides so I&#8217;ll need to move it in more.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Template_Tutorial_Business_Card_21.jpg" alt="Illustrator_Template_Tutorial_Business_Card_21.jpg" /></p>
<p>21. I moved my text back into the safety, I also was getting annoyed with the artboard (black box). You can turn it off by going to View &gt; Hide Artboard. Also, notice how my layers are organized. I generally keep my overlays on top and keep them locked so I don&#8217;t move them by mistake. Lastly I always keep my guides on there own layer. If your guides are scattered throughout many layers you&#8217;ll end up deleting them by mistake when you remove a layer you don&#8217;t want.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/Illustrator_Template_Tutorial_Business_Card_22.jpg" alt="Illustrator_Template_Tutorial_Business_Card_22.jpg" /></p>
<p>As I said at the start this tutorial is for a business card template, but you can use these same techniques in a few other adobe applications like Photoshop (with the marquee) or InDesign. In addition, when I create a website I always use the these same techniques for creating my template in Photoshop.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smor.tv/tutorials/illustrator-tutorials/illustrator-template-tutorial-business-card/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>After Effects Motion Tracking Tutorial</title>
		<link>http://www.smor.tv/tutorials/after-effects-tutorials/after-effects-motion-tracking-tutorial/</link>
		<comments>http://www.smor.tv/tutorials/after-effects-tutorials/after-effects-motion-tracking-tutorial/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 02:23:21 +0000</pubDate>
		<dc:creator>Sam Morris</dc:creator>
				<category><![CDATA[After Effects Tutorials]]></category>
		<guid isPermaLink="false">http://www.smor.tv/?p=541</guid>
		<description><![CDATA[<p>This tutorial will show you how to use the After Effect Tracker Controls which are used for motion tracking. It will take around 30-60 minutes depending on experience with the program. We&#8217;ll be tracking a ball bouncing which I created...Read More</p>]]></description>
			<content:encoded><![CDATA[<p>This tutorial will show you how to use the After Effect Tracker Controls which are used for motion tracking. It will take around 30-60 minutes depending on experience with the program. We&#8217;ll be tracking a ball bouncing which I created in Cinema 4D. This footage has better conditions than you&#8217;ll typical have when tracking real footage, but it will be easier to practice with. Also we&#8217;ll be ignoring the feature region, and search region for this tutorial. They are the 2 boxes around the tracker point, if you want to read up on them, they&#8217;re explained in the help file for After Effects.</p>
<h3>Files</h3>
<div id="files">
<div class="dl aep"><a title="After_Effects_Motion_Tracking_Tutorial_Finished.aep" href="http://www.smor.tv/wp-content/uploads/2009/07/After_Effects_Motion_Tracking_Tutorial_Finished.aep">After_Effects_Motion_Tracking_Tutorial_Finished.aep</a></div>
<div class="dl mov"><a title="After_Effects_Motion_Tracking_Tutorial_Finished.mov" href="http://www.smor.tv/wp-content/uploads/2009/07/After_Effects_Motion_Tracking_Tutorial_Finished.mov">After_Effects_Motion_Tracking_Tutorial_Finished.mov</a></div>
<div class="dl mov"><a title="After_Effects_Motion_Tracking_Tutorial_Footage.mov" href="http://www.smor.tv/wp-content/uploads/2009/07/After_Effects_Motion_Tracking_Tutorial_Footage.mov">After_Effects_Motion_Tracking_Tutorial_Footage.mov</a></div>
</div>
<p>1. Create a new composition with <a title="After_Effects_Motion_Tracking_Tutorial_Footage.mov" href="http://www.smor.tv/wp-content/uploads/2009/07/After_Effects_Motion_Tracking_Tutorial_Footage.mov">After_Effects_Motion_Tracking_Tutorial_Footage.mov</a>. You can drag the footage to the new composition button to keep the settings of the clip.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Motion_Tracking_Tutorial_01.jpg" alt="After_Effects_Motion_Tracking_Tutorial_01.jpg" /> 2. Open up the tracker controls. <img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Motion_Tracking_Tutorial_02.jpg" alt="After_Effects_Motion_Tracking_Tutorial_02.jpg" /></p>
<p>3. In the Tracker Control palette select the layer with the footage as the Motion Source:.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Motion_Tracking_Tutorial_03.jpg" alt="After_Effects_Motion_Tracking_Tutorial_03.jpg" /></p>
<p>4. Create a new Null Object which will be used for your tracker data. You should always put the position data on a null so there will be more flexibility. Rename your null object to Tracker Data.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Motion_Tracking_Tutorial_04.jpg" alt="After_Effects_Motion_Tracking_Tutorial_04.jpg" /></p>
<p>5. Click the Edit Target&#8230; button and then select the Tracker Data layer (Null Object).<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Motion_Tracking_Tutorial_05.jpg" alt="After_Effects_Motion_Tracking_Tutorial_05.jpg" /></p>
<p>6. Move your tracker point to the yellow ball. When you move the point you&#8217;ll see a box which will show you exactly where the point is being placed.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Motion_Tracking_Tutorial_06.jpg" alt="After_Effects_Motion_Tracking_Tutorial_06.jpg" /></p>
<p>7. In the tracker control click the play button. You should be able to get a good amount of points before the tracker starts to loose the ball. When it does click the stop button and move the playhead back until you find the frame where the tracker lost the ball. Click the Analyze 1 frame forward button in the tracker controls. Then reposition the tracker back onto the ball. You may need to do this in the areas where the ball is at the bottom of the arc, on the lighter background. After you notice it&#8217;s able to keep track of the ball (going frame by frame) you can try clicking the play button again. It should be able to get another chunk of the footage before loosing the ball. <span style="color: red;"><strong>Don&#8217;t use the rewind button when your tracker loses the ball or you&#8217;ll rewrite your previous points. Instead move the playhead or go back frame by frame.</strong></span><br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Motion_Tracking_Tutorial_08.jpg" alt="After_Effects_Motion_Tracking_Tutorial_08.jpg" /></p>
<p>8. Eventually you&#8217;ll have all your points (up to where the ball goes off screen). Once you&#8217;re happy with your points you can click the apply button and your points will be translated into position data on your Tracker Data layer.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Motion_Tracking_Tutorial_09.jpg" alt="After_Effects_Motion_Tracking_Tutorial_09.jpg" /></p>
<p>9. After you click the apply button you&#8217;re Tracker Data should have many keyframes on the Position property.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Motion_Tracking_Tutorial_10.jpg" alt="After_Effects_Motion_Tracking_Tutorial_10.jpg" /></p>
<p>10. Create a new solid, make it comp size. The color doesn&#8217;t matter.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Motion_Tracking_Tutorial_11.jpg" alt="After_Effects_Motion_Tracking_Tutorial_11.jpg" /></p>
<p>11. With your solid selected go to Effect &gt; Simulation &gt; CC Particle Systems II.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Motion_Tracking_Tutorial_12.jpg" alt="After_Effects_Motion_Tracking_Tutorial_12.jpg" /></p>
<p>12. In the timeline go to the CC Particle Systems II effect, then go to Producer. Alt click on the stopwatch button which will an add expression to the property.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Motion_Tracking_Tutorial_13.jpg" alt="After_Effects_Motion_Tracking_Tutorial_13.jpg" /></p>
<p>13. Now that you have the expression you need to pick whip the Position under your effect to the Position keyframes on your Tracker Data layer.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Motion_Tracking_Tutorial_14.jpg" alt="After_Effects_Motion_Tracking_Tutorial_14.jpg" /></p>
<p>14. Your done, now just play around with the effect settings for CC Particle Systems II until you find something you like.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Motion_Tracking_Tutorial_15.jpg" alt="After_Effects_Motion_Tracking_Tutorial_15.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.smor.tv/tutorials/after-effects-tutorials/after-effects-motion-tracking-tutorial/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>After Effects Time Remapping Tutorial</title>
		<link>http://www.smor.tv/tutorials/after-effects-tutorials/after-effects-time-remapping-tutorial/</link>
		<comments>http://www.smor.tv/tutorials/after-effects-tutorials/after-effects-time-remapping-tutorial/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 05:51:45 +0000</pubDate>
		<dc:creator>Sam Morris</dc:creator>
				<category><![CDATA[After Effects Tutorials]]></category>
		<guid isPermaLink="false">http://www.smor.tv/?p=612</guid>
		<description><![CDATA[<p>This tutorial will introduce you to the Time Remapping feature of After Effects. The Time Remapping feature can be used for various timing effects such as freeze frames, speed ramps, slow motion, and more. The tutorial will take 10-20 minutes...Read More</p>]]></description>
			<content:encoded><![CDATA[<p>This tutorial will introduce you to the Time Remapping feature of After Effects. The Time Remapping feature can be used for various timing effects such as freeze frames, speed ramps, slow motion, and more. The tutorial will take 10-20 minutes based on experience with After Effects.</p>
<h3>Files</h3>
<div id="files">
<div class="dl mov"><a title="After_Effects_Time_Remapping_Tutorial_Footage.mov" href="http://www.smor.tv/wp-content/uploads/2009/07/After_Effects_Time_Remapping_Tutorial_Footage.mov">After_Effects_Time_Remapping_Tutorial_Footage.mov</a></div>
</div>
<p>1. Start off by importing the footage and dragging it to the new composition icon. You can use the test footage I&#8217;ve provided or recreate what I have on screen.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Time_Remapping_Tutorial_01.jpg" alt="After_Effects_Time_Remapping_Tutorial_01.jpg" /></p>
<p>2. Select the layer with your footage in the Timeline and then go to Layer &gt; Time &gt; Enable Time Remapping (Ctrl+Alt+T). The Time Remapping properties will appear.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Time_Remapping_Tutorial_02.jpg" alt="After_Effects_Time_Remapping_Tutorial_02.jpg" /></p>
<p>3. You should have 2 keyframes on your Time Remap. One at the start of your footage and one at the end. Drag your keyframe from the end until it&#8217;s at 6 seconds or if you&#8217;re using your own footage, 50% of the composition duration. When playing back the video you will notice the 15 seconds of footage have been compacted into 6 seconds.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Time_Remapping_Tutorial_03.jpg" alt="After_Effects_Time_Remapping_Tutorial_03.jpg" /></p>
<p>4. Undo your change so your last keyframe is back at the end of your video. Now we&#8217;ll use Time Remapping to create a freeze frame. Move your playhead to around 4 seconds. Right click Time Remap and create a new keyframe.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Time_Remapping_Tutorial_04.jpg" alt="After_Effects_Time_Remapping_Tutorial_04.jpg" /></p>
<p>5. With the keyframe you made at 4 seconds selected, go to Edit &gt; Copy, or Ctrl+C. Move the playhead to 6 seconds and then go to Edit &gt; Paste, or Ctrl+V. When you playback your movie it should move from 0-4 seconds, then hold until 6 seconds, and then continue playing from 6 seconds to 15 seconds.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Time_Remapping_Tutorial_05.jpg" alt="After_Effects_Time_Remapping_Tutorial_05.jpg" /></p>
<p>8. Lastly we&#8217;ll use the Graph Editor to make some more tweaks. First turn on the Graph Editor and enable it on your Time Remap layer.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Time_Remapping_Tutorial_06.jpg" alt="After_Effects_Time_Remapping_Tutorial_06.jpg" /></p>
<p>9. Move your points around so it looks similar to what I have.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Time_Remapping_Tutorial_07.jpg" alt="After_Effects_Time_Remapping_Tutorial_07.jpg" /></p>
<p>Here&#8217;s the breakdown of what this is doing:</p>
<p>From 0:00-0:04 seconds it will play my whole clip, which is 0:15 seconds long. This means it will be playing at around 400% speed.</p>
<p>From 0:04-0:08 seconds it will play my whole clip, which is 0:15 seconds long. EXCEPT it will now play it backwards. It will still be playing at around 400% speed.</p>
<p>From 0:08-0:15 seconds it will play my whole clip, which is 0:15 seconds long, but because it playing over a longer period of time it will playback at around 200%.</p>
<p>There&#8217;s many uses for Time Remapping, but there&#8217;s 2 uses which I&#8217;ve found to be most useful. One is using the freeze<br />
frame use on logos/endtags etc. Sometimes you may realize the logo you&#8217;ve used is not holding on the screen long enough. You can create an extra 1 second hold using a freeze frame without changing the duration of your whole video. Although, other parts of the video will play slightly faster it most likely won&#8217;t be noticeable.</p>
<p>The other great use for Time Remapping is if you&#8217;re using any 3D applications or high end camera. Instead of rendering/shooting your video at 30fps you can try 60fps. This will give you the ability to manipulate your footage much more than when shooting at 30fps.</p>
<p><strong><span style="color: red;">Two warning when doing Time Remapping&#8230;</span></strong></p>
<p>One is, Time Remapping will effect audio so be careful that you&#8217;re only using it on video. Put your audio back once you&#8217;re finished.</p>
<p>The other warning is, Time Remapping isn&#8217;t going to solve all timing issues. There&#8217;s a limit to how much you can slow down footage. If you have footage shot at 30fps you can make it so it plays back at 1000% with no issues, since you&#8217;re simply throwing away frames/data. Going the other way isn&#8217;t as simple. If you have footage shot at 30fps you will be very limited to how much slower you can make the playback before it start to stutter, especially if there&#8217;s a lot of motion. This is why you may want to consider shooting at a higher framerate when possible.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smor.tv/tutorials/after-effects-tutorials/after-effects-time-remapping-tutorial/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>After Effects Expressions &amp; Audio Tutorial</title>
		<link>http://www.smor.tv/tutorials/after-effects-tutorials/after-effects-expressions-audio-tutorial/</link>
		<comments>http://www.smor.tv/tutorials/after-effects-tutorials/after-effects-expressions-audio-tutorial/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 18:14:25 +0000</pubDate>
		<dc:creator>Sam Morris</dc:creator>
				<category><![CDATA[After Effects Tutorials]]></category>
		<guid isPermaLink="false">http://www.smor.tv/?p=499</guid>
		<description><![CDATA[<p>1. Create a new project and make a new composition. Next, import some audio, it doesn&#8217;t matter what it is anything with sound will work fine. Create a circle by double clicking the Ellipse Tool. When you double click, it...Read More</p>]]></description>
			<content:encoded><![CDATA[<p>1. Create a new project and make a new composition. Next, import some audio, it doesn&#8217;t matter what it is anything with sound will work fine. Create a circle by double clicking the Ellipse Tool. When you double click, it automatically will make your circle the size of your composition. (This also applies when creating masks.) After you have your circle make the scale 50%.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Expression_Audio_01.jpg" border="0" alt="After_Effects_Expression_Audio_01.jpg" /></p>
<p>2. Bring your audio into the composition then right click and go to Keyframe Assistant &gt; Convert Audio to Keyframes.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Expression_Audio_02.jpg" border="0" alt="After_Effects_Expression_Audio_02.jpg" /></p>
<p>3. A null called Audio Amplitude will automatically be created with your data. Under the effects you&#8217;ll see Left, Right, and Both channels. You can delete Left and Right since we won&#8217;t be using them for this tutorial. With scale selected on your shape layer go to Animation &gt; Add Expression.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Expression_Audio_03.jpg" border="0" alt="After_Effects_Expression_Audio_03.jpg" /></p>
<p>4. Use the pick whip and choose &#8220;Slider&#8221;.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Expression_Audio_04.jpg" border="0" alt="After_Effects_Expression_Audio_04.jpg" /></p>
<p>5. Do a RAM Preview by pressing the 0 key on the numpad and you&#8217;ll notice the animation is rather unpleasant to watch since it&#8217;s so quick. Next we&#8217;ll change the expression so we can tweak the settings.</p>
<p>Paste this over your expression:<br />
temp = linear(thisComp.layer(&#8220;Audio Amplitude&#8221;).effect(&#8220;Both Channels&#8221;)(&#8220;Slider&#8221;), 0, 40, 50, 100);<br />
[temp, temp]<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Expression_Audio_05.jpg" border="0" alt="After_Effects_Expression_Audio_05.jpg" /></p>
<p>6. You&#8217;ll need to find the max value for your Slider data. Turn on the graph editor and then include the Slider in the graph editor. Move the playhead to where the audio peaks and then look at the corresponding value of the slider, it will probably be around 40-50.</p>
<p>In the expression there was 4 numbers: 0, 40, 50, 100.<br />
To break this down in human terms, when the Slider value is 0 the scale of my circle will be 50%. When the slider value is 40 (my max), the circle will be 100%. Replace &#8220;40&#8243; with your max value.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Expression_Audio_06.jpg" border="0" alt="After_Effects_Expression_Audio_06.jpg" /></p>
<p>7. We&#8217;ll add a outer glow as a finishing touch.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Expression_Audio_07.jpg" border="0" alt="After_Effects_Expression_Audio_07.jpg" /></p>
<p>8. Pick whip the Slider after making the Size of your outer glow an expression. RAM Preview your movie again to see the results.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Expression_Audio_08.jpg" border="0" alt="After_Effects_Expression_Audio_08.jpg" /></p>
<p>The end result is nothing too interesting, but you can apply the same techniques to particle systems or more advanced effects to make nice graphics driven by your audio.</p>
<p>Also you may want to have a look at <a href="http://www.trapcode.com/products_soundkeys.html" target="_blank">Trapcode Soundkeys</a> which will allow you to do what we just did, but with a lot more control. You can target certain frequencies and more. <a href="http://www.trapcode.com/in_action/soundkeys_intro.html" target="_blank">You can see a demo here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smor.tv/tutorials/after-effects-tutorials/after-effects-expressions-audio-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>After Effects Rendering / Exporting Tutorial</title>
		<link>http://www.smor.tv/tutorials/after-effects-tutorials/after-effects-rendering-exporting-tutorial/</link>
		<comments>http://www.smor.tv/tutorials/after-effects-tutorials/after-effects-rendering-exporting-tutorial/#comments</comments>
		<pubDate>Sun, 06 Jul 2008 03:35:03 +0000</pubDate>
		<dc:creator>Sam Morris</dc:creator>
				<category><![CDATA[After Effects Tutorials]]></category>
		<guid isPermaLink="false">http://www.smor.tv/?p=529</guid>
		<description><![CDATA[<p>This seems to be the most common question with After Effects so here&#8217;s a tutorial that will show you how to export/render in After Effects.</p>
<p>1. Generally when working in After Effects you&#8217;ll constantly be setting the work area start/end...Read More</p>]]></description>
			<content:encoded><![CDATA[<p>This seems to be the most common question with After Effects so here&#8217;s a tutorial that will show you how to export/render in After Effects.</p>
<p>1. Generally when working in After Effects you&#8217;ll constantly be setting the work area start/end points (B key / N key) so you can preview only the part of your composition that you&#8217;re working on. Before you add your composition to the render queue you&#8217;ll need to reset this (assuming you want to render the whole composition).<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Rendering_Exporting_Tutorial_01.jpg" alt="After_Effects_Rendering_Exporting_Tutorial_01.jpg" /></p>
<p>2. Place the playhead at the start of your composition. You can drag, but pressing the home key is the easier and more reliable method.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Rendering_Exporting_Tutorial_02.jpg" alt="After_Effects_Rendering_Exporting_Tutorial_02.jpg" /></p>
<p>3. Now that the playhead is in the right location press B to set the work area start location. Again, you could drag the bar below the playhead, but using the shortcut keys is easier, more efficient, and more reliable.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Rendering_Exporting_Tutorial_03.jpg" alt="After_Effects_Rendering_Exporting_Tutorial_03.jpg" /></p>
<p>4. Now drag the playhead to the end of the composition or press the end key.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Rendering_Exporting_Tutorial_04.jpg" alt="After_Effects_Rendering_Exporting_Tutorial_04.jpg" /></p>
<p>5. Press the N key and set your work area end location. Then add the composition to the render queue.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Rendering_Exporting_Tutorial_05.jpg" alt="After_Effects_Rendering_Exporting_Tutorial_05.jpg" /></p>
<p>6. The Render Queue tab will appear in the timeline area. I&#8217;ll be leaving the name of my file and output location alone, but if you want to give your movie a filename to be saved as you would click on the &#8220;Comp1.mov&#8221; text and it would bring up the &#8220;Output Movie To&#8221; menu. The menu will also allow you to change the location of where your movie will be saved.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Rendering_Exporting_Tutorial_06.jpg" alt="After_Effects_Rendering_Exporting_Tutorial_06.jpg" /></p>
<p>7. Before you render you&#8217;ll want to check your settings. Click the text (in red box) to bring up the Output Module Settings window. I can&#8217;t tell you what settings to use since it depends on your project and what you&#8217;ll be using it for, but I will mention that by default audio output is turned off in After Effects. If you want to export with audio then you&#8217;ll need to check off Audio Output at the bottom of the Output Module Settings. When you&#8217;re happy with your settings click OK.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Rendering_Exporting_Tutorial_07.jpg" alt="After_Effects_Rendering_Exporting_Tutorial_07.jpg" /></p>
<p>8. Click the render button and that&#8217;s it. When your movie is done rendering go to the location you picked for the movie to be saved to and your file should be there.<br />
<img src="http://www.smor.tv/wp-content/uploads/tutorials/After_Effects_Rendering_Exporting_Tutorial_08.jpg" alt="After_Effects_Rendering_Exporting_Tutorial_08.jpg" /></p>
<p>Lastly, I&#8217;ll mention you can also export by going to File &gt; Export, but you&#8217;ll loose the ability to set some settings and it&#8217;s generally not the preferred method for rendering. You should get in the habit of using the render queue if you don&#8217;t already.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smor.tv/tutorials/after-effects-tutorials/after-effects-rendering-exporting-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
