<?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>Noe Ruiz &#187; Tutorials</title>
	<atom:link href="http://noeruiz.com/category/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://noeruiz.com</link>
	<description>South Florida Designer Musician</description>
	<lastBuildDate>Thu, 21 Jan 2010 19:46:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Using iPhone with Logic Studio</title>
		<link>http://noeruiz.com/tutorials/using-iphone-with-logic-studio/</link>
		<comments>http://noeruiz.com/tutorials/using-iphone-with-logic-studio/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 03:36:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Logic Studio]]></category>
		<category><![CDATA[MIDI]]></category>
		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://noeruiz.com/?p=551</guid>
		<description><![CDATA[Using your iPhone as a Wireless MIDI controller. Find out how we can remotely control Logic Studio with our iPhones.

UPDATE: Osculator app now comes with TouchOSC templates!

TouchOSCiPhone
OSCulatorDesktop

Alright so first we&#8217;ll need to download TouchOSC from the App Store.
So while we download that, lets go over to the desktop and download OSCulator. OSCulator is basically going [...]]]></description>
			<content:encoded><![CDATA[<p><embed src="http://blip.tv/play/ge9Rgb%2BKYQA" type="application/x-shockwave-flash" width="320" height="188" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<p>Using your iPhone as a Wireless MIDI controller. Find out how we can remotely control Logic Studio with our iPhones.</p>
<p><span id="more-551"></span></p>
<p><strong>UPDATE:</strong> Osculator app now comes with TouchOSC templates!</p>
<ul>
<li><a href="http://hexler.net/software/touchosc" target="_blank"><strong>TouchOSC</strong><br />iPhone</a></li>
<li><a href="http://www.osculator.net/download/" target="_blank"><strong>OSCulator</strong><br />Desktop</a></li>
</ul>
<p>Alright so first we&#8217;ll need to download TouchOSC from the App Store.</p>
<p>So while we download that, lets go over to the desktop and download OSCulator. OSCulator is basically going to make Touch OSC work with Logic.</p>
<p>Make sure your iPhone and desktop are on the same wifi network. In TouchOSC, your desktop name should show up in network list. Make sure the layout you pick matches with the osculator template you want to use. </p>
<p>Once your connected, test out the controllers in TouchOSC and check OSCulator for a solid green connection. Now in Logic, you can use the Controller Assignment window by hitting Cmd+K. When assigning controllers, always make sure to set the value settings with an unsigned format and a scaled mode.</p>
<p>Heres a quick tip for assigning XY pads with Logics Sculpture Morph Pad.</p>
<p>Goto OSCulator and verify which midi CC is set to the XY. Then in Sculpture, go down to the Midi controller assign area and change the MorphXY settings to the OSCulator midi CC&#8217;s. Now your the iPhone can smoothy change the shape of sound in Logic</p>
<p>Alright there you have it, you get the idea. Of course you can also set this up as a piano, or a drum machine, lots of other cool stuff, I hope you enjoyed the epsode, I&#8217;ll cya next time with another tutorial.</p>
]]></content:encoded>
			<wfw:commentRss>http://noeruiz.com/tutorials/using-iphone-with-logic-studio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Build Custom Wordpress BreadCrumb</title>
		<link>http://noeruiz.com/tutorials/how-to-build-custom-wordpress-breadcrumb/</link>
		<comments>http://noeruiz.com/tutorials/how-to-build-custom-wordpress-breadcrumb/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 20:26:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://noeruiz.com/?p=290</guid>
		<description><![CDATA[Breadcrumbs or breadcrumb trail are a navigation technique used in user interfaces. Its purpose is to give users a way to keep track of their location within programs or documents. So here is a quick code snippet for achieving this in wordpress.

First, add this piece of code to your functions.php
Download Source Code
Second, add this to [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://noeruiz.com/wp-content/themes/ecken/images/tuts/breadcrumb.jpg" alt="" /></p>
<p>Breadcrumbs or breadcrumb trail are a navigation technique used in user interfaces. Its purpose is to give users a way to keep track of their location within programs or documents. So here is a quick code snippet for achieving this in wordpress.<br />
<span id="more-290"></span><br />
First, add this piece of code to your functions.php<br />
<a href="http://noeruiz.com/bread/code-1.txt">Download Source Code</a><br />
Second, add this to piece to somewhere in your template where you&#8217;d like to display the breadcrumb.</p>
<p><a href="http://noeruiz.com/bread/code-2.txt">Download Soure Code</a><br />
Finally, you can style it with CSS. Here how I styled mine:</p>
<p><code>/* BreadCrumb Styles */<br />
#bread {<br />
background: #0a0a0a;<br />
padding: 4px;<br />
margin:10px 0 1px 0;<br />
}<br />
#bread ul {<br />
padding: 0 0 0 10px;<br />
margin: 0;<br />
list-style: none;<br />
font:normal 11px Arial;<br />
}<br />
#bread ul li {<br />
display: inline;<br />
color: #a8a8a8;<br />
margin: 0 4px 0 0;<br />
padding: 0 16px 0 0;<br />
background:url(images/arrow.png) no-repeat right;<br />
}<br />
#bread ul li a {<br />
color:#b3d962;<br />
text-decoration: none;<br />
}<br />
#bread ul li:last-child {<br />
background: none;<br />
}</code></p>
]]></content:encoded>
			<wfw:commentRss>http://noeruiz.com/tutorials/how-to-build-custom-wordpress-breadcrumb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Episode 17: Using GridIron Flow</title>
		<link>http://noeruiz.com/reviews/episode-17-using-gridiron-flow/</link>
		<comments>http://noeruiz.com/reviews/episode-17-using-gridiron-flow/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 16:11:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Pixil.info]]></category>
		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://noeruiz.com/?p=288</guid>
		<description><![CDATA[GridIron Software Flow is a very unique program for creative professionals.
And Its basically a tool that helps you track and manage all the files that go into creating a project. Let me show you what I mean, check this out.


So one of the best features flow has to offer is that it allows you to [...]]]></description>
			<content:encoded><![CDATA[<div class="yt"><object width="300" height="243"><param name="movie" value="http://www.youtube.com/v/sbkDkoQVBxU&#038;hl=en&#038;fs=1&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/sbkDkoQVBxU&#038;hl=en&#038;fs=1&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="300" height="243"></embed></object></div>
<p>GridIron Software Flow is a very unique program for creative professionals.<br />
And Its basically a tool that helps you track and manage all the files that go into creating a project. Let me show you what I mean, check this out.</p>
<div class="clearer"></div>
<p><span id="more-288"></span></p>
<p>So one of the best features flow has to offer is that it allows you to visually see the structure of a project. If you use various programs to create a project, flow can actually see the connection between all the files.</p>
<p>Whats great is that this works for websites, print documents, video composites, just about anything! So It helps you streamline your workflow, and keeps you on top of your project.</p>
<p>So if your project looks like a major cluster, we can organize it down so its less messy.</p>
<p>So I can right click on the images, and select group similar, and we if we keep doing that,youll notice it groups all the images per file format, JPG, PNG, GIF, very nice!</p>
<p>Now whats even better is you can make custom groups. Ill make all these individual files into a group and call it Downloads.</p>
<p>A quick way to see contents in the groups is to right click and select Show Group Contents. Alright and its starting to look a lot more organized.</p>
<p>Alright, now lets take a look at another example. Its a Photoshop document. You can actually see all the layers and bins inside the document, very cool. Heres an after effects project, same thing, you can see the structure of the composition.</p>
<p>Alright and there you have it. Thats a quick demo of GridIrons Flow, now theres a whole bunch of other features like versioning, time tracking, tagging and <bookmarking, but well save that for another episode, so until next time, see you later!</p>
]]></content:encoded>
			<wfw:commentRss>http://noeruiz.com/reviews/episode-17-using-gridiron-flow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create 3D Box in Flash CS4</title>
		<link>http://noeruiz.com/tutorials/how-to-create-3d-box-in-flash-cs4/</link>
		<comments>http://noeruiz.com/tutorials/how-to-create-3d-box-in-flash-cs4/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 22:01:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Animation]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Free Downloads]]></category>
		<category><![CDATA[Pixil.info]]></category>
		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://noeruiz.com/?p=264</guid>
		<description><![CDATA[Today I&#8217;m going to create a 3D Box and animate it using the new 3D Tools and Features in Flash CS4.
Step 1: Create a square shape
Start by drawing out simple square. Hold down the shift key to constrain the proportions. Now lets change the solid fill to a gradient by going the color palette, and [...]]]></description>
			<content:encoded><![CDATA[<div class="yt"><object width="300" height="243"><param name="movie" value="http://www.youtube.com/v/gHYGOKQlP5Q&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/gHYGOKQlP5Q&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="300" height="243"></embed></object></div>
<p>Today I&#8217;m going to create a 3D Box and animate it using the new 3D Tools and Features in Flash CS4.</p>
<p><strong>Step 1: Create a square shape</strong></p>
<p>Start by drawing out simple square. Hold down the shift key to constrain the proportions. Now lets change the solid fill to a gradient by going the color palette, and lets change the type to a Linear gradient. Next lets remove the stroke, just goto the stroke color picker and choose the None option.</p>
<p>Now lets make sure our square is in the center of the stage, we can do that by going to the align panel and click on the horizontal and vertical align buttons.</p>
<div class="clearer"></div>
<p><span id="more-264"></span></p>
<p><strong>Step 2: Position &amp; Convert into a Movie Clip</strong></p>
<p>Okay next lets convert this shape into a movie clip, just right click and select Convert to Symbol&#8230; alright now lets nest this symbol inside another movie clip, and lets name this one 3D Box. So inside the 3D box movie clip is where we&#8217;ll be setting up the 3D layers.</p>
<p><strong>Step 3: Duplicate Layers for Each Box Side</strong></p>
<p>Alright so now we can just copy and paste a few of these squares on some new layers. And lets name each copy after a side of the 3D Box such as top, bottom, left and right.</p>
<p><strong>Step 4: Rotate Each Side 90&ordm; &amp; Position in Place</strong></p>
<p>Now lets convert all the frames into motion tweens by selecting them, right clicking and Create Motion Tween. Now lets start with the top layer and rotate the X axis 90 degrees. You can hold down the shift key to constrained your rotation. Next we can go inside the motion editor to ensure our rotation was a either a positive value, or a negative one. Just to make sure everything is set the name.</p>
<p>Now we&#8217;ll want to move this top layer up about half of the way. So just calculate half  the height of the square and move it up so it sets on top. I like to use the 3D Position and View Panel to do this because you can easily change the values there.</p>
<p>Now lets repeat this process for the bottom layer. But this time we&#8217;ll want move the half way down, so again just change the value in the 3D Position and View Panel. Alright so next lets start on the left and right squares. Starting with left, lets rotate the Y axis  90 degrees and shift it over to the left about half of the width of the square. Again we can go inside the motion edition to check our values. Alright now we can repeat the same process for the right square, but don&#8217;t forget to move it to the right side instead of the left!</p>
<p><strong>Step 5: Test 3D Box Rotation</strong></p>
<p>So once we finish all rotating and positioning, we should be left with a picture frame looking set of rectangles. So lets jump out of the movie clip and goto scene 1. Now lets select our 3D rotation tool and watch as I rotate the box on its Y axis. Pretty sweet huh?</p>
<p>Step 6: Add Drop Shadow</p>
<p>Lets select our bottom layer, and lets goto the filters section in the properties panel and licks pick drop shadow. Lets change the blur X and Y values to something big like 100 pixels, change the quality to high, and distance to 0.</p>
<p><strong>Step 7: Animate 3D Box Rotating</strong></p>
<p>So now lets jump out to our main timeline and lets add a few move frames. Now Ill be using the motion editor to animate the 3D Box and have spin on it Y axis. So lets convert it the frames into a motion tween by right clicking on the frame bar and selecting convert to motion tween. Now we can scrub over to the last frame and then goto the motion editor. So if we want to just rotate the box spinning from left to right, we can simply change the Rotation Y  value to 360 degrees.</p>
<p>Test out the animation by pressing cmd+renturn (cntrl+return on PC).</p>
<p><a href="http://pixil.info/wp-content/plugins/download-monitor/download.php?id=5" class="cta" title="Download Flash CS4 3D Object">Download Flash CS4 3D Object</a></p>
]]></content:encoded>
			<wfw:commentRss>http://noeruiz.com/tutorials/how-to-create-3d-box-in-flash-cs4/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Episode 12 &amp; Tasty Colors</title>
		<link>http://noeruiz.com/tutorials/episode-12-tasty-colors/</link>
		<comments>http://noeruiz.com/tutorials/episode-12-tasty-colors/#comments</comments>
		<pubDate>Thu, 25 Dec 2008 04:36:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Pixil.info]]></category>
		<category><![CDATA[Thoughts]]></category>

		<guid isPermaLink="false">http://noeruiz.com/?p=246</guid>
		<description><![CDATA[Finally, our first episode rendered in HD! On this episode, Dingo shows us how to hack your Wii to get the HomeBrew Channel, and a tutorial on Wii Game Backups. Also, track in the background is a new one I just finished up and released to the public. So check em both out and let [...]]]></description>
			<content:encoded><![CDATA[<div class="yt"><object width="300" height="243"><param name="movie" value="http://www.youtube.com/v/C5fWRhX-dq0&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/C5fWRhX-dq0&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="300" height="243"></embed></object></div>
<p>Finally, our first episode rendered in HD! On this episode, Dingo shows us how to hack your Wii to get the HomeBrew Channel, and a tutorial on Wii Game Backups. Also, track in the background is a new one I just finished up and released to the public. So check em both out and let me know what you think! Thanks for watching and stay tuned for future  episodes &amp; tunes!</p>
<div class="clearer"></div>
<p><a href="http://adjix.com/vtty" class="cta" title="Listen to Tasy Colors by Ecken">Listen &#8211; Tasty Colors</a><a href="http://pixil.info/2008/12/25/episode-12-back-up-wii-installing-homebrew/" class="cta" title="Watch Wii Tutorial by Dingo">Watch &#8211; Burning Wii Games</a></p>
]]></content:encoded>
			<wfw:commentRss>http://noeruiz.com/tutorials/episode-12-tasty-colors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Review/Tutorial on BeatMaker 1.3</title>
		<link>http://noeruiz.com/reviews/tutorial-on-beatmaker/</link>
		<comments>http://noeruiz.com/reviews/tutorial-on-beatmaker/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 01:17:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Free Downloads]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://eckenblog/?p=86</guid>
		<description><![CDATA[So recently I got a hold of the new update for BeatMaker and I&#8217;ve been playing with it pretty thoroughly. I decided I&#8217;d do a review and a tutorial on how to make custom drum kits.
New Features BeatMaker 1.3
So first, Lets take a look at the the upgraded sequencer. With the introduction to the new [...]]]></description>
			<content:encoded><![CDATA[<div class="yt"><object width="300" height="243"><param name="movie" value="http://www.youtube.com/v/JzK3CtCoKzs&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/JzK3CtCoKzs&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="300" height="243"></embed></object></div>
<p>So recently I got a hold of the new update for BeatMaker and I&#8217;ve been playing with it pretty thoroughly. I decided I&#8217;d do a review and a tutorial on how to make custom drum kits.</p>
<p><strong>New Features BeatMaker 1.3</strong></p>
<p>So first, Lets take a look at the the upgraded sequencer. With the introduction to the new preview bar, it makes it easy to scrub through long patterns. We can now zoom in and out of the sequencer and can now insert and remove bars on the timeline.</p>
<p>Next there’s the dynamic access bar which lets us quickly jump between different settings. We can now quickly switch between patterns while in the editor. Drum patterns can now be up to 4 bars long and The &#8220;step resolution&#8221; can now be edited up to 1/64T.</p>
<p><span id="more-86"></span>
<p>Next, we got a whole new pad editing screen for easy access to settings. An improved wav editor with cropping and zooming function… and a new cross controller with fullscreen mode for live effects.</p>
<p>Next up, we got audio recording. Thats right, everyone asked for it, and we finally got it. You can now record directly from the iPhones built-in mic or headset.</p>
<p>Now lets take a look at the new Moog filter. Features low-high and a band-pass frequency with resonance support. Also theres improvement to the delay effect featuring dotted and triplet rhythm support.</p>
<p>Last but not least, you can finally export your beats in midi format.</p>
<p><strong>Use BeatPack to create your own custom kit.</strong></p>
<p>So first we’ll need to download BeatPack from intrua’s website. http://intrua.net/shop.html</p>
<p>When you open up the app, first thing you’ll see is the share kits and samples section. If you read the instructions first you’ll get a head start on how to sync your audio files from your desktop to your iPhone. But first, I’m going to jump to over to the Create Kit section.</p>
<p>The Drag Zone is where we’ll be loading our samples. Simply drag an audio file to the desired pad to load it. This is were your creativity comes into play. I like to arrange my samples in groups, so when I play it live, I can play it with ease. So when your kit is ready, you can fill out the information section and even upload a kit icon. To save it out, click the generate button.</p>
<p>Next, goto the Share kits section and follow the instructions to get your kit onto your iPhone. So heres a quick run down. Goto BeatMaker, in the home section, click on the BeatPack Icon, then click on add server. Next, type in your computers IP address, you can find it in the share kits section in the BeatPack app.</p>
<p>When your ip shows up in the server list, simply click on it and hit the download button. Just navigate to your file and hit the download button. When its done, close it and load it as a kit.</p>
<p>And Thats pretty much how we create a custom kit, with BeatPack. Remeber, you can upload your tunes back over to your desktop by using the upload function.</p>
<p><a href="http://www.ng-host.com/pixilcode/wp-content/uploads/2008/12/EckenBMKit.zip" class="cta" title="Download Free BeatMaker Kit">Download Free BeatMaker Kit</a></p>
]]></content:encoded>
			<wfw:commentRss>http://noeruiz.com/reviews/tutorial-on-beatmaker/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Creating a Layer Comp Workflow</title>
		<link>http://noeruiz.com/tutorials/creating-layer-comp-workflow/</link>
		<comments>http://noeruiz.com/tutorials/creating-layer-comp-workflow/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 01:16:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://eckenblog/?p=84</guid>
		<description><![CDATA[
Advanced Layer Comp WorkflowIn a past episode, we talked about using layer comps to save time when building out websites. Today I&#8217;m going to take a closer look at layer comps, and show you how they can change the entire look of your project. So lets say your client likes the layout… but ask you [...]]]></description>
			<content:encoded><![CDATA[<div class="yt"><object width="300" height="243"><param name="movie" value="http://www.youtube.com/v/HJ4Y5ASxPCU&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/HJ4Y5ASxPCU&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="300" height="243"></embed></object></div>
<p><span id="more-84"></span>
<p><strong>Advanced Layer Comp Workflow</strong><br />In a past episode, we talked about using layer comps to save time when building out websites. Today I&#8217;m going to take a closer look at layer comps, and show you how they can change the entire look of your project. So lets say your client likes the layout… but ask you to change the color scheme. Lets also say our client doesn’t know exactly which colors to choose. Instead of picking just one, our client suggests several color schemes. Best way to do this (in a non-destructive way) is to use Layer Comps.</p>
<p><strong>Step 1: Create a new layer comp.</strong></p>
<p>First, save our project’s current state, so lets open up the layer comps palette and click the create new button. Lets go over these three check boxes.</p>
<p>Visibility keeps track of what layers turned on or off, position stores the location of your layers and appearance holds all of your layer style information.</p>
<p>So depending on how drastic you want your layout to change, you’ll need to check the appropriate boxes. In this example all use all three.</p>
<p><strong>Step 2: Changing your layout.</strong><br />Now that we’ve saved our current state, lets start changing stuff around! So once your happy with your changes, lets save it out as a new layer comp. So in the layer comp palette, create new, make sure to check those appropriate boxes checked and hit okay.</p>
<p>Now you can switch back and forth between your new layer comps. It’s pretty amazing switching thru layer comps like this. Sorta resembles Javascript Style Sheet switching.</p>
<p>Alright so with all that done. Let’s export these out. I’ll be using the “Layer Comps to Files” export script. If your on CS4, you’ll notice adobe added a few new file formats. Alright and with that, you’ve just created an advanced layer comp workflow. Take a moment to play around the position and appearance, try to create something totally different, thanks and cya next time.</p>
]]></content:encoded>
			<wfw:commentRss>http://noeruiz.com/tutorials/creating-layer-comp-workflow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Buildout using Layer Comps and Smart Objects</title>
		<link>http://noeruiz.com/tutorials/web-buildout-using-layer-comps-and-smart-objects/</link>
		<comments>http://noeruiz.com/tutorials/web-buildout-using-layer-comps-and-smart-objects/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 00:55:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Free Downloads]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://eckenblog/?p=74</guid>
		<description><![CDATA[So on my last tutorial, we took a look at using layer comps and smart object for web build out. Today, we&#8217;re going to take a closer look at the How-To&#8217;s and Go In-depth.
How to Create Layer Comps for build outAlright so when your design is ready for build out, you&#8217;ll want to first make [...]]]></description>
			<content:encoded><![CDATA[<div class="yt"><object width="300" height="243"><param name="movie" value="http://www.youtube.com/v/yE34UpHUkkA&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/yE34UpHUkkA&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="300" height="243"></embed></object></div>
<p>So on my last tutorial, we took a look at using layer comps and smart object for web build out. Today, we&#8217;re going to take a closer look at the How-To&#8217;s and Go In-depth.</p>
<p><strong>How to Create Layer Comps for build out</strong><br />Alright so when your design is ready for build out, you&#8217;ll want to first make text layer comps. This will help us easily export our slices. So just click on the new layer comp icon in your layer comp palette, and name it Text On. Make sure you only have &#8220;visibility&#8221; checked.</p>
<p><span id="more-74"></span>
<p>Next, make a Text Off layer comp. Then start turning off all the HTML text. To select a text layer with the move tool, you can hold down cmd or control key and click on the layer. So with all the text turned off and the layer comp selected, click on the Update icon to save the layer comp. Okay, now we can cycling threw them. This will now let us quickly turn off all the HTML text with a single click, which will lets us to export slices much faster.</p>
<p><strong>How to setup the Navigation for build out (with Smart Objects):</strong><br /> Next, let&#8217;s take a look at our navigation. The goal here is to set up the document to have roll over graphics. we can do this by converting the nav into a smart object, and then create roll over graphics along with layer comps and slices. First make a selection of the background layer, make it the size you want the smart object to be and convert it that into a smart object. So just copy merge, Paste, and name the layer. Right click the layer and convert to a smart object. Now open the smart object and copy the graphics over. just click and drag on the folder, and plop it into place. Now we have to double our canvas height. Basically we&#8217;re going to set up the navigation for the CSS sliding doors technique. Duplicate the background layers and folders then shift them down. Create some cool graphics for the roll overs and save. When you switch back to our main layout, make the same marque selection of the background layer. Make that into a mask so you can mask out the roll over graphics. Also you might get warnings the layer comp palette. All you have to do to fix these is to hit the update icon or double click on the warning icon to clear the warning flag. So just cycle threw the layer comps and make sure their set properly.</p>
<p><strong>How to setup Sidebar for build out:</strong><br />Okay next, we&#8217;ll convert our sidebar into a smart object. So just like before, create a marque selection to determine a canvas size for our smart object. drag over the graphics Adjust the layers, save it. Next create text layer comps. These may become tedious if your layers aren&#8217;t organized, so its important to have layer organization.</p>
<p><strong>How to create slices for build out:</strong><br /> Creating slices is a much better method then manually making selections, and exporting each image, piece by piece. By creating slices, we&#8217;re able to save image name, compression setting, dimension, and the ability to export them out all at the same time. Before we start slicing, make sure we have guidelines set up so that they snap easily. Now draw out some slices. Name your slices simple and Make sure they&#8217;re all consistent. So having a naming convention comes in handy. Next create slices in your smart objects. When you export your slices, make sure you switch to the Text Off layer comps. In the Save for Web &amp; Devices dialog, you can change the name of the slices and set the image compression settings. In our save window, we can set to export selected slices only. I almost always have it have it set to this setting. Next export the slices inside the smart objects. You can select multiple slices by holding down the shift key and set the compression settings for all them at the same time. Check on our images when you&#8217;re finished. Alright, that&#8217;s it for my web build out workflow. I hope you&#8217;ve gotten something out of it, try it out. Let me know what you think, by post some comments. I&#8217;ll be posting the PSD file on our site for reference. So you can download it and test it out. Remember, its all about using slices, layer comps, and smart object&#8217;s. Dont forget, the key to making it easy is to being organized. Until next time, cya later.</p>
<p><a href="http://pixil.info/wp-content/uploads/2008/02/nr04.zip" class="cta" title="Download Tutorial File">Download Tutorial File</a></p>
]]></content:encoded>
			<wfw:commentRss>http://noeruiz.com/tutorials/web-buildout-using-layer-comps-and-smart-objects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Buildout Overview</title>
		<link>http://noeruiz.com/tutorials/web-buildout-overview/</link>
		<comments>http://noeruiz.com/tutorials/web-buildout-overview/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 21:26:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://eckenblog/?p=70</guid>
		<description><![CDATA[On today&#8217;s episode, an overview of using layer comps to set up sub-pages and ready-to export slices. Creating slices inside of smart objects and organizing your layers and folders can help you structure your sub-pages.
Layer Comps for Build Out Layer comp are a convenient way to store a snapshot of certain aspects in a document. [...]]]></description>
			<content:encoded><![CDATA[<div class="yt"><object width="300" height="243"><param name="movie" value="http://www.youtube.com/v/sbyDeWbXZo8&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/sbyDeWbXZo8&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="300" height="243"></embed></object></div>
<p>On today&#8217;s episode, an overview of using layer comps to set up sub-pages and ready-to export slices. Creating slices inside of smart objects and organizing your layers and folders can help you structure your sub-pages.</p>
<p><strong>Layer Comps for Build Out</strong> <br />Layer comp are a convenient way to store a snapshot of certain aspects in a document. Here we&#8217;re able to save a layer&#8217;s visibility. Take a look at these two layer comps, text on and text off. When we cycle thru these two you&#8217;ll notice that all this is really doesing is turn off and on the soon-to-be HTML text. By having your comp setup this way, it allows us to quickly export slices with out having to worry about the html text getting exported along with a background image.</p>
<p><strong>Smart Objects &amp; Slicing</strong><br />Here we have an entire sub-page reside in one smart object. Inside our smart oubject we have slices and layer comps. Thats right folks, smart objects support slices.</p>
<p><span id="more-70"></span>
<p>By converting your sub-page into a smart object, your able to create new slices for each new page. Also, notice we have our handy text on and text off layer comps. This is essential for exporting your slices. So in addition to converting your sub-pages into a smart objects, lets take a look at how we have our navigation set up. Here you&#8217;ll find our favorite text on and text off layer comps. We also have our slices.</p>
<p>Just by looking at the layout, you&#8217;ll notice we have it set up for the CSS sliding doors technique. This basically allows one background image contain different anchor states. so If you&#8217;ve done css menus before, you know the drill. thats basically all their is to the navigation. Alright so to sum thing ups, lets take a look at what we&#8217;ve learned so far.</p>
<ul>
<li>Use layer comps to set up sub-pages and ready-to export slices.</li>
<li>Create your slices inside of smart objects.</li>
<li>Organize your layers and folders to help you structure your sub-pages.</li>
<li>Don&#8217;t forget you can convert pieces of your website into smart objects.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://noeruiz.com/tutorials/web-buildout-overview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Animated Buttons in Flash</title>
		<link>http://noeruiz.com/tutorials/animated-buttons-flash/</link>
		<comments>http://noeruiz.com/tutorials/animated-buttons-flash/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 18:49:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Free Downloads]]></category>
		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://eckenblog/?p=68</guid>
		<description><![CDATA[Find out how to turn any graphic into an animated button. These look great on banners!

Create roll over and roll out animations.
Use action script to control button behaviors.
Get familiar with frame labels to set up your animation states.

View TutorialDownload Files
]]></description>
			<content:encoded><![CDATA[<p>Find out how to turn any graphic into an animated button. These look great on banners!</p>
<ul>
<li>Create roll over and roll out animations.</li>
<li>Use action script to control button behaviors.</li>
<li>Get familiar with frame labels to set up your animation states.</li>
</ul>
<p><a class="cta" href="http://ng-host.com/pixilcode/wp-content/uploads/2007/06/nr03.mp4">View Tutorial</a><a class="cta" href="http://ng-host.com/pixilcode/wp-content/uploads/2007/06/nr03.zip">Download Files</a></p>
]]></content:encoded>
			<wfw:commentRss>http://noeruiz.com/tutorials/animated-buttons-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://ng-host.com/pixilcode/wp-content/uploads/2007/06/nr03.mp4" length="12803520" type="audio/mp4" />
		</item>
	</channel>
</rss>
