<?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/"
	>

<channel>
	<title>Soft Tech Reviews &#187; Tutorials</title>
	<atom:link href="http://www.softtechreviews.com/topic/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.softtechreviews.com</link>
	<description>Software, technology, reviews and more.</description>
	<pubDate>Sun, 12 Oct 2008 02:55:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7-hemorrhage</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Load Animated Flash Header One Time During the Session</title>
		<link>http://www.softtechreviews.com/tutorials/how-to-load-animated-flash-header-one-time-during-the-session/</link>
		<comments>http://www.softtechreviews.com/tutorials/how-to-load-animated-flash-header-one-time-during-the-session/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 19:33:59 +0000</pubDate>
		<dc:creator>Alisha</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Web Design]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[header]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[session]]></category>

		<guid isPermaLink="false">http://www.softtechreviews.com/?p=797</guid>
		<description><![CDATA[After a client had made a request for a Flash header to not animate every time a new page is loaded, I needed to figure out how to do this. Not for this one request, but for any future requests. I have previously looked this up, but came up empty. It seemed there was one [...]]]></description>
			<content:encoded><![CDATA[<p>After a client had made a request for a Flash header to not animate every time a new page is loaded, I needed to figure out how to do this. Not for this one request, but for any future requests. I have previously looked this up, but came up empty. It seemed there was one solution, but it really wasn&#8217;t the greatest, because when you return to the home page, the animation would play again.</p>
<p>I eventually came across a solution that had no comments from other people, so I didn&#8217;t really know if it would work. The person who provided the solution also provided a link to his/her website with it in action, so I was able to see that it worked.</p>
<p>This solution uses PHP sessions. It works by displaying the full Flash header only if never viewed during the current session. If it has already been viewed, it will display the second (non-animated) header until the session ends, which is on browser close. The next time the website is viewed in a new session, it will display the original animated header.</p>
<p>The first code you need to add is placed at the top, before any other code (DOCTYPE &amp; HTML), in the header. This code checks to see if there are any views during the current session.</p>
<blockquote>
<pre>&lt; ?php
session_start();
if (isset($_SESSION['views']))
$_SESSION['views']=$_SESSION['views']+1;

else
$_SESSION['views']=1;
?&gt;</pre>
</blockquote>
<p>The next code is for displaying the Flash, just as you would normally, except it&#8217;s using PHP.</p>
<blockquote>
<pre>&lt; ?php if ($_SESSION['views']&gt;1) //if session views are more than one
echo "Flash embed code here";
else //if session view is one
echo "Flash embed code here";
?&gt;</pre>
</blockquote>
<p>This code is just saying: If views are more than one, display the second (non-animated) header. If views are one, display the full animated header. It is really simple.</p>
<p>Make sure to remove the space that appears at the beginning of the PHP code: &lt; ?php. Also, when adding the Flash embed code to be echoed, escape any quotes with a &#8216;\&#8217; (without the single quotes).</p>
<p>Full credit for this solution goes to <a title="Addison County Eagles" href="http://www.addisoncountyeagles.com">www.addisoncountyeagles.com</a>. The actual solution is in the <a title="How to make the swf run only once per session or at the home page only" href="http://www.coffeecup.com/forums/viewtopic.php?id=5738">Coffee Cup forums</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.softtechreviews.com/tutorials/how-to-load-animated-flash-header-one-time-during-the-session/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Learning Flash and ActionScript</title>
		<link>http://www.softtechreviews.com/tutorials/learning-flash-and-actionscript/</link>
		<comments>http://www.softtechreviews.com/tutorials/learning-flash-and-actionscript/#comments</comments>
		<pubDate>Sat, 03 May 2008 23:31:44 +0000</pubDate>
		<dc:creator>Alisha</dc:creator>
		
		<category><![CDATA[Shopping]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[ActionScript]]></category>

		<category><![CDATA[books]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://www.softtechreviews.com/?p=743</guid>
		<description><![CDATA[For my job, I have to learn Flash and ActionScript. I&#8217;m slowly learning on my own. To do this, though, I had to watch videos and read books, which I&#8217;m not finished with yet. A couple of the books I have focus on animation/interactivity.
If you&#8217;re wanting to purchase Flash and ActionScript books, try to go [...]]]></description>
			<content:encoded><![CDATA[<p>For my job, I have to learn <a title="Adobe Flash CS3" href="http://www.amazon.com/gp/product/B000NDICRW?ie=UTF8&amp;tag=mpas-20&amp;link_code=as3&amp;camp=211189&amp;creative=373489&amp;creativeASIN=B000NDICRW">Flash and ActionScript</a>. I&#8217;m slowly learning on my own. To do this, though, I had to watch videos and read books, which I&#8217;m not finished with yet. A couple of the books I have focus on animation/interactivity.</p>
<p>If you&#8217;re wanting to purchase Flash and ActionScript books, try to go with used books. If you look on Amazon, there are lots of used books being sold, some in really great condition. All of the used books I bought look almost brand new, excluding one which really was brand new at a used price!</p>
<p>Some of the books also come with a CD, so if you want the CD when purchasing new, be sure to read all of the sellers&#8217; comments before buying.</p>
<p>There are some great resources available for learning Flash and ActionScript, online and offline. I thought I would share what books I purchased from Amazon and where to find videos and tutorials for learning.</p>
<p><strong>Books</strong></p>
<ul>
<li><a href="http://www.amazon.com/gp/product/0321117859?ie=UTF8&amp;tag=mpas-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0321117859">Macromedia Flash MX Creative Web Animation and Interactivity</a></li>
<li><a href="http://www.amazon.com/gp/product/0201770229?ie=UTF8&amp;tag=mpas-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0201770229">Macromedia Flash MX ActionScripting: Advanced Training from the Source</a></li>
<li><a href="http://www.amazon.com/gp/product/1590595181?ie=UTF8&amp;tag=mpas-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1590595181">Foundation ActionScript Animation: Making Things Move!</a></li>
</ul>
<p>Look for more <a href="http://www.amazon.com/gp/search?ie=UTF8&amp;keywords=Flash%2C%20ActionScript&amp;tag=mpas-20&amp;index=books&amp;linkCode=ur2&amp;camp=1789&amp;creative=9325">Flash and ActionScript</a> books on Amazon.</p>
<p><strong>Videos</strong></p>
<ul>
<li><a title="Lynda" href="http://www.lynda.com/">Lynda</a></li>
<li><a title="LearnFlash" href="http://www.learnflash.com/">LearnFlash</a></li>
<li><a title="CartoonSmart" href="http://www.cartoonsmart.com/">CartoonSmart</a></li>
<li><a title="gotoandlearn" href="http://www.gotoandlearn.com/">gotoandlearn</a></li>
<li><a title="TechVideos" href="http://www.techvideos.com/flash/cs3/">TechVideos</a></li>
</ul>
<p><strong>Text Tutorials</strong></p>
<ul>
<li><a title="W3Schools" href="http://www.w3schools.com/Flash/default.asp">W3Schools</a></li>
<li><a title="Tutorialized" href="http://www.tutorialized.com/tutorials/Flash/1">Tutorialized</a></li>
<li><a title="LukaMaras" href="http://www.lukamaras.com/">LukaMaras</a></li>
</ul>
<p>Please leave a comment if you know of some other really good videos, books or tutorials.</p>
<p><em>Disclosure: This post includes Amazon affiliate links.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.softtechreviews.com/tutorials/learning-flash-and-actionscript/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A Few Great Tutorials</title>
		<link>http://www.softtechreviews.com/tutorials/a-few-great-tutorials/</link>
		<comments>http://www.softtechreviews.com/tutorials/a-few-great-tutorials/#comments</comments>
		<pubDate>Fri, 24 Aug 2007 19:04:31 +0000</pubDate>
		<dc:creator>Alisha</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.softtechreviews.com/tutorials/a-few-great-tutorials/</guid>
		<description><![CDATA[Here are a few great tutorials for doing things with CSS! I hope you enjoy them as much as I did!

Using PHP to generate CSS is a great way to centralize your color definitions just by using variables. One fun and possibly useful thing to do with this is automatically generating a color gradient from [...]]]></description>
			<content:encoded><![CDATA[<p>Here are a few great tutorials for doing things with CSS! I hope you enjoy them as much as I did!</p>
<ol>
<li>Using PHP to generate CSS is a great way to centralize your color definitions just by using variables. One fun and possibly useful thing to do with this is automatically generating a color gradient from just one base color!<a href="http://www.barelyfitz.com/projects/csscolor/" title="CSS Colors: Take Control Using PHP"> </a><a href="http://www.barelyfitz.com/projects/csscolor/" title="CSS Colors: Take Control Using PHP">Read this tutorial</a> to generate CSS using PHP.</li>
<li>Create a Lightbox effect with CSS, without using any JavaScript! This is one tutorial I am definitely going to try out, because I don&#8217;t like to use JavaScript for all those neat effects that are becoming more and more common on websites. <a href="http://www.emanueleferonato.com/2007/08/22/create-a-lightbox-effect-only-with-css-no-javascript-needed/" title="Create a Lightbox Effect Only With CSS - No JavaScript Needed">Read this tutorial</a> to create a Lightbox effect with CSS.</li>
<li>Want to create tables using CSS? There&#8217;s an easy to read tutorial over at Veerle&#8217;s blog. <a href="http://veerle.duoh.com/blog/comments/a_css_styled_table/" title="A CSS Styled Table">Read this first tutorial</a> and then the <a href="http://veerle.duoh.com/blog/comments/a_css_styled_table_version_2/" title="A CSS Styled Table Version 2">second tutorial for creating tables using CSS</a>.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.softtechreviews.com/tutorials/a-few-great-tutorials/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Photoshop: Removing Backgrounds</title>
		<link>http://www.softtechreviews.com/tutorials/photoshop-removing-backgrounds/</link>
		<comments>http://www.softtechreviews.com/tutorials/photoshop-removing-backgrounds/#comments</comments>
		<pubDate>Fri, 24 Aug 2007 16:05:20 +0000</pubDate>
		<dc:creator>Alisha</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.softtechreviews.com/tutorials/photoshop-removing-backgrounds/</guid>
		<description><![CDATA[This is a tutorial for removing backgrounds quickly in Photoshop, rather than using the eraser tool method. This tutorial comes from ThemBid.com. Although, I don&#8217;t agree that it is a quicker way than using the eraser tool. Maybe that&#8217;s just because it was my first time. It is easier in that it allows me to [...]]]></description>
			<content:encoded><![CDATA[<p>This is a tutorial for removing backgrounds quickly in Photoshop, rather than using the eraser tool method. This tutorial comes from <a href="http://blog.thembid.com/index.php/2007/08/22/removing-backgrounds-quickly-in-photoshop/" title="Removing Backgrounds Quickly In Photoshop">ThemBid.com</a>. Although, I don&#8217;t agree that it is a quicker way than using the eraser tool. Maybe that&#8217;s just because it was my first time. It is easier in that it allows me to erase parts that I messed up on without erasing the actual picture with it.</p>
<p>The tutorial is really easy to follow, so if you need a new way of removing backgrounds from images, try it out! Check out the one I did below. I took an image of a man golfing, and placed the man on an image with snow. It may not look perfect, because I&#8217;m very new to this.</p>
<p style="text-align: center"><img src="http://www.softtechreviews.com/wp-content/uploads/2007/08/man_golf_orig1.png" alt="Man Golfing" /></p>
<p style="text-align: center"><img src="http://www.softtechreviews.com/wp-content/uploads/2007/08/man_golf1.png" alt="Man Golfing" /></p>
<p><em>Pictures taken from <a href="http://www.sxc.hu/" title="stock.xchng">stock.xchng</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.softtechreviews.com/tutorials/photoshop-removing-backgrounds/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Firefox: How Many Tabs?</title>
		<link>http://www.softtechreviews.com/software/firefox-how-many-tabs/</link>
		<comments>http://www.softtechreviews.com/software/firefox-how-many-tabs/#comments</comments>
		<pubDate>Wed, 01 Aug 2007 15:26:09 +0000</pubDate>
		<dc:creator>Alisha</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.softtechreviews.com/software/firefox-how-many-tabs/</guid>
		<description><![CDATA[How many tabs do you open in a Firefox window? Five, eight, twenty? I usually start off with one and then it increases to five, ten and then fifteen until I can&#8217;t see all of the tabs anymore. Firefox makes me scroll to find the hidden ones. Firefox does this so the tabs are readable, [...]]]></description>
			<content:encoded><![CDATA[<p>How many tabs do you open in a Firefox window? Five, eight, twenty? I usually start off with one and then it increases to five, ten and then fifteen until I can&#8217;t see all of the tabs anymore. Firefox makes me scroll to find the hidden ones. Firefox does this so the tabs are readable, but in a previous version the tabs would shrink so much that they weren&#8217;t readable. Who cares about readable, that&#8217;s what wide screens and favicons are for!</p>
<p>This has bothered me for some time, but never thought there could be a setting or even a plugin to change this. Yesterday I was doing my usual, going from one website to another, searching for this or that and came upon a blog I didn&#8217;t know would make future browsing easier. <a href="http://www.humanized.com/" title="Humanized">Humanized</a> is a company helping make the computer experience better for people.</p>
<p>On to the workaround to fix the forever scrolling tabs.</p>
<blockquote>
<ol>
<li>Open a new Firefox tab</li>
<li>Type <strong>about:config</strong> into the address bar</li>
<li>Type <strong>tab</strong> into the filter field</li>
<li>Change the settings of both <strong>browsers.tab.tabClipWidth</strong> and <strong>browsers.tab.tabMinWidth</strong> to 5 (or whatever your preference is)</li>
<li>Restart Firefox</li>
</ol>
</blockquote>
<p>To learn more about how these tabs work (the workaround and previously) I recommend <a href="http://www.humanized.com/weblog/2007/04/05/firefox_20_tabs_gone_wrong/" title="Firefox 2.0: Tabs Gone Wrong">reading Firefox 2.0: Tabs Gone Wrong</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.softtechreviews.com/software/firefox-how-many-tabs/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google: Can&#8217;t Find Server</title>
		<link>http://www.softtechreviews.com/tutorials/google-cant-find-server/</link>
		<comments>http://www.softtechreviews.com/tutorials/google-cant-find-server/#comments</comments>
		<pubDate>Fri, 27 Jul 2007 14:55:03 +0000</pubDate>
		<dc:creator>Alisha</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.softtechreviews.com/tutorials/google-cant-find-server/</guid>
		<description><![CDATA[Today I tried visiting Google to search for something, but then it said that it couldn&#8217;t find the server. This seemed very strange because I had just been there minutes before. I checked Gmail (since I had it open) and it worked just fine. I checked another website and that one was displayed. So, I [...]]]></description>
			<content:encoded><![CDATA[<p>Today I tried visiting Google to search for something, but then it said that it couldn&#8217;t find the server. This seemed very strange because I had just been there minutes before. I checked Gmail (since I had it open) and it worked just fine. I checked another website and that one was displayed. So, I tried Google again and it told me it couldn&#8217;t find the server, again.</p>
<p>I couldn&#8217;t figure out what was wrong, so I told David and learned something new. He told me to do the following:</p>
<ol>
<li>Open up a command prompt. (Start &gt; Run: type <strong>cmd</strong> and press enter.)</li>
<li>Type <strong>ipconfig /flushdns</strong></li>
<li>Press enter.</li>
</ol>
<p>I checked Google and the search engine was found!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.softtechreviews.com/tutorials/google-cant-find-server/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Steps to Installing Yakuake</title>
		<link>http://www.softtechreviews.com/linux/steps-to-installing-yakuake/</link>
		<comments>http://www.softtechreviews.com/linux/steps-to-installing-yakuake/#comments</comments>
		<pubDate>Sat, 10 Mar 2007 01:22:01 +0000</pubDate>
		<dc:creator>Alisha</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Yakuake]]></category>

		<guid isPermaLink="false">http://www.myphotoalbumspace.com/linux/steps-to-installing-yakuake/</guid>
		<description><![CDATA[For those of you who are coming here for help installing Yakuake, you may not have found what you were looking for. I apologize. I should have included those steps in my entry: Terminal on Demand. Or, you could just read the INSTALL file that is provided with Yakuake. This file goes into a lot [...]]]></description>
			<content:encoded><![CDATA[<p>For those of you who are coming here for help installing Yakuake, you may not have found what you were looking for. I apologize. I should have included those steps in my entry: <a href="http://www.softtechreviews.com/linux/terminal-on-demand/" title="Terminal on Demand">Terminal on Demand</a>. Or, you could just read the INSTALL file that is provided with Yakuake. This file goes into a lot more detail if you&#8217;re having problems.</p>
<p>I&#8217;m not going to provide a very detailed step-by-step tutorial, because I hope that most of you know how to follow a few commands. If you&#8217;re ready to begin, open a terminal and follow these steps:</p>
<ol>
<li>Enter in the <strong>su</strong> command to log in as root.</li>
<li>After logging in, make sure you&#8217;re in the Yakuake directory that was created after extracting the compressed archive. I will assume you know how to use the <strong>cd</strong> command.</li>
<li>  Enter in <strong>./configure </strong>(this may take a while)</li>
<li>Enter in <strong>make</strong></li>
<li>Enter in <strong>make install</strong></li>
<li>Enter in <strong>make clean</strong> to remove files from the source code directory. (optional)</li>
</ol>
<p>Assuming everything went smoothly without any errors during steps 3-5, Yakuake should be installed and ready to use. As I noted in my previous entry (linked above), I recommend changing the Kerry Beagle Search&#8217;s F12 shortcut, if you have that on your system. Yakuake uses F12 to open.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.softtechreviews.com/linux/steps-to-installing-yakuake/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Create Your Own Coloring Pages</title>
		<link>http://www.softtechreviews.com/tutorials/create-your-own-coloring-pages/</link>
		<comments>http://www.softtechreviews.com/tutorials/create-your-own-coloring-pages/#comments</comments>
		<pubDate>Sun, 25 Feb 2007 22:10:04 +0000</pubDate>
		<dc:creator>Alisha</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[coloring page]]></category>

		<category><![CDATA[Lightning McQueen]]></category>

		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.myphotoalbumspace.com/tutorials/create-your-own-coloring-pages/</guid>
		<description><![CDATA[I found a tutorial for creating coloring pages from photos. This is a great idea. It can also be great as gifts from the kids for other family members. Plus, this is a good way to save money on all those coloring books!
I opened the picture I wanted to use and created a new layer. [...]]]></description>
			<content:encoded><![CDATA[<p>I found a tutorial for <a href="http://fototiller.com/blog/2006/06/26/coloring-pages-from-your-photos-3-easy-photoshop-steps/" title="Coloring Pages From Your Photos - 3 Easy Photoshop Steps">creating coloring pages from photos</a>. This is a great idea. It can also be great as gifts from the kids for other family members. Plus, this is a good way to save money on all those coloring books!</p>
<p>I opened the picture I wanted to use and created a new layer. Then I used the photocopy filter and adjusted the settings for detail and darkness until I was satisfied. Then I created a new adjustment layer and changed the shadow and highlight levels. I was tempted to use the lasso tool to cut the background out of the picture, because I think this would make a better coloring page if it was just the car alone, but that would involve more work and I was just trying this out. Read the tutorial for detailed steps.</p>
<p><a href="http://www.softtechreviews.com/wp-content/uploads/2007/02/109_0952_img_colorpage.jpg" title="Pixar's Cars Lightning McQueen Eclipse Coloring Page"><img src="http://www.softtechreviews.com/wp-content/uploads/2007/02/109_0952_img_colorpage.thumbnail.jpg" alt="Pixar's Cars Lightning McQueen Eclipse Coloring Page" title="Pixar's Cars Lightning McQueen Eclipse Coloring Page" /></a></p>
<p>I chose to use my <a href="http://www.softtechreviews.com/tutorials/pixars-cars-mcqueen-eclipse/" title="Pixar's Cars Lightning McQueen Eclipse">last project</a> as the picture for this coloring page. Click the preview on the right to view the full image.</p>
<p>If you are here searching for actual coloring pages of any of the Cars characters, take a look at this <a href="http://www.disneyscars.com/coloring.html" title="Disney Cars coloring pages">Disney Cars page</a>. <a href="http://www.coloring-book.info/coloring/coloring_page.php?id=108" title="Coloring Book">Coloring Book</a> has the best selection of Cars coloring pages.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.softtechreviews.com/tutorials/create-your-own-coloring-pages/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Pixar&#8217;s Cars Lightning McQueen Eclipse</title>
		<link>http://www.softtechreviews.com/tutorials/pixars-cars-mcqueen-eclipse/</link>
		<comments>http://www.softtechreviews.com/tutorials/pixars-cars-mcqueen-eclipse/#comments</comments>
		<pubDate>Fri, 23 Feb 2007 13:30:15 +0000</pubDate>
		<dc:creator>Alisha</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Lightning McQueen]]></category>

		<category><![CDATA[Pixar]]></category>

		<guid isPermaLink="false">http://www.myphotoalbumspace.com/tutorials/pixars-cars-mcqueen-eclipse/</guid>
		<description><![CDATA[I have very little experience with Photoshop when it comes to customizing images, but I do know some basics from the training I received at work. I came across a tutorial for transforming a picture of a car into one of the cars from the movie Cars.
Because I thought it was cute, I gave it [...]]]></description>
			<content:encoded><![CDATA[<p>I have very little experience with Photoshop when it comes to customizing images, but I do know some basics from the training I received at work. I came across a <a href="http://forums.nasioc.com/forums/showthread.php?t=1151725" title="How to do the ">tutorial</a> for transforming a picture of a car into one of the cars from <a href="http://disney.go.com/disneyvideos/animatedfilms/cars/" title="Cars the movie">the movie <em>Cars</em></a>.</p>
<p>Because I thought it was cute, I gave it a try. The steps on the tutorial could go into more detail for some of us who aren&#8217;t that great with Photoshop, but I managed to figure things out. I probably could have done better, but I&#8217;m satisfied with how it turned out and glad I was able to learn something new. Plus, my son enjoyed seeing it; he loves the movie. As I was adding the eyes to the car, he immediately mentioned the movie.</p>
<p><a href="http://www.softtechreviews.com/wp-content/uploads/2007/02/109_0952_img.jpg" title="Cars McQueen Eclipse"><img src="http://www.softtechreviews.com/wp-content/uploads/2007/02/109_0952_img.thumbnail.jpg" alt="Cars McQueen Eclipse" title="Cars McQueen Eclipse" /></a></p>
<p>For my car, I used a picture of David&#8217;s Mitsubishi Eclipse that I had taken a few years ago. Since it was raining, the car has a wet look to it. I would have preferred a nicer picture, but I had to work with what I had. For the eyes and mouth, I went with Lightning McQueen because he&#8217;s a red car and I knew it would be less of a challenge of getting it to blend in. Click on the preview on the right to view the full image.</p>
<p>A couple other people have tried this as well. I didn&#8217;t know this at first, but one of them (Adam) is the one who created the theme I added to my website just yesterday! Anyway, <a href="http://pomomusings.com/2007/01/01/photoshop-fun-with-cars/" title="Adam's car">here&#8217;s Adam&#8217;s car</a> and <a href="http://www.sporadicnonsense.com/2006/12/28/pixar-cars-photoshop-fun/" title="Shawn's car">here&#8217;s the other one by Shawn from Sporadic Nonsense</a>. They both did much better than I did, because I&#8217;m a beginner at this and don&#8217;t have much experience at all. Good job you two!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.softtechreviews.com/tutorials/pixars-cars-mcqueen-eclipse/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
