<?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>easy Archives - Robert&#039;s Productions | Post Production Tips</title>
	<atom:link href="https://www.robertsproductions.net/tag/easy/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.robertsproductions.net/tag/easy/</link>
	<description>Various software tutorials, downloads, design resources, and much more!</description>
	<lastBuildDate>Sun, 27 Oct 2019 19:45:56 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.5.5</generator>

<image>
	<url>https://www.robertsproductions.net/wp-content/uploads/2019/03/favicon01-3-48x48.png</url>
	<title>easy Archives - Robert&#039;s Productions | Post Production Tips</title>
	<link>https://www.robertsproductions.net/tag/easy/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Closing Multiple Gaps in Sony Vegas</title>
		<link>https://www.robertsproductions.net/closing-multiple-gaps-in-sony-vegas/</link>
					<comments>https://www.robertsproductions.net/closing-multiple-gaps-in-sony-vegas/#comments</comments>
		
		<dc:creator><![CDATA[Robert Carreno]]></dc:creator>
		<pubDate>Mon, 22 Jul 2013 21:10:34 +0000</pubDate>
				<category><![CDATA[Tip of the Week]]></category>
		<category><![CDATA[Vegas Pro]]></category>
		<category><![CDATA[Auto Ripple]]></category>
		<category><![CDATA[Close]]></category>
		<category><![CDATA[Delete]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[Gaps]]></category>
		<category><![CDATA[sony vegas]]></category>
		<category><![CDATA[Video Tutorial]]></category>
		<guid isPermaLink="false">https://www.robertsproductions.net/?p=5877</guid>

					<description><![CDATA[<p>While editing, it&#8217;s easy to end up with gaps in between multiple clips on the timeline. When this happens, it becomes quite tedious dragging the...</p>
<p>The post <a href="https://www.robertsproductions.net/closing-multiple-gaps-in-sony-vegas/">Closing Multiple Gaps in Sony Vegas</a> appeared first on <a href="https://www.robertsproductions.net">Robert&#039;s Productions | Post Production Tips</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>While editing, it&#8217;s easy to end up with gaps in between multiple clips on the timeline. When this happens, it becomes quite tedious dragging the clips back together one by one. Shouldn&#8217;t there be an easier way? Yes! In today&#8217;s post, I&#8217;ll show you a few simple steps you can take to close the gaps in between clips in Sony Vegas. We&#8217;ll not only remove gaps one by one but also all at once with a simple script. Let&#8217;s get to it!</p>
<div class="tut">
<h1><span style="color: #ffffff;">Video Tutorial</span></h1>
<p><iframe title="Closing Multiple Gaps in Sony Vegas" width="719" height="404" src="https://www.youtube.com/embed/_HjAtJaLYu0?feature=oembed" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
</div>
<p>&nbsp;</p>
<p><strong>Method 1:</strong></p>
<p><strong>Double-click</strong> the gap and press <strong>Delete</strong> then <strong>Ctrl + Shift + F</strong> to delete the gap and auto ripple the clips back in place.</p>
<hr />
<p><strong>Method 2:</strong></p>
<p>With <strong>Auto Ripple</strong> turned<strong> on</strong>. <strong>Double-click</strong> the gaps and press <strong>Delete</strong> to get rid of them and auto ripple the clips back in place.</p>
<hr />
<p><strong>Method 3:</strong></p>
<p>Use the following script to automate the process for multiple gaps. Keep in mind, scripts only work in Pro versions of Sony Vegas.</p>
<h2>Script:</h2>
<p><a href="http://j.mp/19e6vWh"><span style="text-decoration: underline;">Download Script Here</span></a>   &#8230; or</p>
<p><strong>Copy</strong> <strong>and Paste</strong> the following code in <strong>Notepad</strong> and <strong>Save-As</strong> &#8211; <strong>preferredname.js</strong></p>
<p>Remember to put &#8220;<strong>.js</strong>&#8221; at the end of the file name in order to initiate the jscript file.</p>
<pre lang="jscript">/** 
* Program: 
* Description: This script will Delete Empty Space Between Events In Selected Tracks
* Author: Philip
* 
* Date: August 31, 2003 
**/ 

import Sony.Vegas; 
import System.Windows.Forms;
import Microsoft.Win32;

//time intervals for split events.

try
{

// step through all selected video events:
var FirstTrack : Track = Vegas.Project.Tracks.Item(0);

// step through all selected video events:
for (var track in Vegas.Project.Tracks) {
if( !track.Selected) continue;
var tracktime = new Timecode(0);
for (var evnt in track.Events) {
evnt.AdjustStartLength(tracktime,evnt.Length,true);
tracktime = tracktime + evnt.Length;
}
}
}

catch (errorMsg)
{
MessageBox.Show(errorMsg, "Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}</pre>
<p>The post <a href="https://www.robertsproductions.net/closing-multiple-gaps-in-sony-vegas/">Closing Multiple Gaps in Sony Vegas</a> appeared first on <a href="https://www.robertsproductions.net">Robert&#039;s Productions | Post Production Tips</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.robertsproductions.net/closing-multiple-gaps-in-sony-vegas/feed/</wfw:commentRss>
			<slash:comments>8</slash:comments>
		
		
			</item>
		<item>
		<title>Upload Screenshots to Imgur from your Desktop</title>
		<link>https://www.robertsproductions.net/upload-screenshots-to-imgur-from-your-desktop/</link>
					<comments>https://www.robertsproductions.net/upload-screenshots-to-imgur-from-your-desktop/#respond</comments>
		
		<dc:creator><![CDATA[Robert Carreno]]></dc:creator>
		<pubDate>Wed, 22 Aug 2012 19:43:36 +0000</pubDate>
				<category><![CDATA[Windows Tips]]></category>
		<category><![CDATA[capture]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[hyperdesktop]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[imgur]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[screenshot]]></category>
		<category><![CDATA[windows]]></category>
		<guid isPermaLink="false">https://www.robertsproductions.net/?p=5130</guid>

					<description><![CDATA[<p>Whether you&#8217;re experiencing computer problems or capturing high scores, you need a way to put those screenshots online for others to see. One way this...</p>
<p>The post <a href="https://www.robertsproductions.net/upload-screenshots-to-imgur-from-your-desktop/">Upload Screenshots to Imgur from your Desktop</a> appeared first on <a href="https://www.robertsproductions.net">Robert&#039;s Productions | Post Production Tips</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Whether you&#8217;re experiencing computer problems or capturing high scores, you need a way to put those screenshots online for others to see. One way this can be done is by using the Snipping Tool, saving it, and uploading it somewhere online. It would be much easier if this can all be done with the click of a button. This is where <a href="http://gethyperdesktop.com/" target="_blank" rel="noopener noreferrer">HyperDesktop</a> comes in.</p>
<p><iframe title="Upload Screenshots to Imgur from your Desktop | Windows Tip" width="719" height="404" src="https://www.youtube.com/embed/ESP-osNDbgY?feature=oembed" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
<p><a href="http://gethyperdesktop.com/" target="_blank" rel="noopener noreferrer">HyperDesktop</a> is a free, easy way to capture, edit and share screenshots on the internet right from your desktop. Basically, all you have to do is take a screenshot and paste the link online. Simply, use one of the customizable shortcut keys for either of the three different types of captures; <strong>Entire screenshot</strong>, <strong>Selective Screenshot</strong>, or <strong>Window Screenshot</strong>.</p>
<p><a href="https://www.robertsproductions.net/wp-content/uploads/2012/08/customshortcutkeys.png" data-rel="lightbox-image-0" data-rl_title="" data-rl_caption=""><img fetchpriority="high" decoding="async" class="aligncenter size-full wp-image-5141" title="" src="https://www.robertsproductions.net/wp-content/uploads/2012/08/customshortcutkeys.png" alt="" width="550" height="347" srcset="https://www.robertsproductions.net/wp-content/uploads/2012/08/customshortcutkeys.png 550w, https://www.robertsproductions.net/wp-content/uploads/2012/08/customshortcutkeys-300x189.png 300w, https://www.robertsproductions.net/wp-content/uploads/2012/08/customshortcutkeys-364x230.png 364w, https://www.robertsproductions.net/wp-content/uploads/2012/08/customshortcutkeys-76x48.png 76w, https://www.robertsproductions.net/wp-content/uploads/2012/08/customshortcutkeys-152x96.png 152w, https://www.robertsproductions.net/wp-content/uploads/2012/08/customshortcutkeys-313x197.png 313w" sizes="(max-width: 550px) 100vw, 550px" /></a></p>
<p>As soon as you snap a screenshot, an optional edit dialog will display allowing you to draw on the image with the<strong> pen tool</strong> or <strong>add text</strong>.</p>
<p style="text-align: center;"><a href="https://www.robertsproductions.net/wp-content/uploads/2012/08/screenshotedit.png" data-rel="lightbox-image-1" data-rl_title="" data-rl_caption=""><img decoding="async" class="aligncenter wp-image-5140" title="" src="https://www.robertsproductions.net/wp-content/uploads/2012/08/screenshotedit.png" alt="" width="560" height="347" srcset="https://www.robertsproductions.net/wp-content/uploads/2012/08/screenshotedit.png 800w, https://www.robertsproductions.net/wp-content/uploads/2012/08/screenshotedit-300x186.png 300w, https://www.robertsproductions.net/wp-content/uploads/2012/08/screenshotedit-768x476.png 768w, https://www.robertsproductions.net/wp-content/uploads/2012/08/screenshotedit-561x348.png 561w, https://www.robertsproductions.net/wp-content/uploads/2012/08/screenshotedit-364x226.png 364w, https://www.robertsproductions.net/wp-content/uploads/2012/08/screenshotedit-758x470.png 758w, https://www.robertsproductions.net/wp-content/uploads/2012/08/screenshotedit-608x377.png 608w, https://www.robertsproductions.net/wp-content/uploads/2012/08/screenshotedit-77x48.png 77w, https://www.robertsproductions.net/wp-content/uploads/2012/08/screenshotedit-155x96.png 155w, https://www.robertsproductions.net/wp-content/uploads/2012/08/screenshotedit-313x194.png 313w, https://www.robertsproductions.net/wp-content/uploads/2012/08/screenshotedit-600x372.png 600w" sizes="(max-width: 560px) 100vw, 560px" /></a></p>
<p>When you&#8217;re happy with the results, <strong>click OK</strong> and <a href="http://gethyperdesktop.com/" target="_blank" rel="noopener noreferrer">HyperDesktop</a> automatically uploads the screenshot to <a href="http://imgur.com/" target="_blank" rel="noopener noreferrer">Imgur</a> and copies the URL to the clipboard for easy sharing. It doesn’t just have to be <a href="http://imgur.com/" target="_blank" rel="noopener noreferrer">Imgur</a>, it can also upload straight to your site or storage location via <strong>FTP</strong>. You can also save screenshots locally.</p>
<p><a href="http://gethyperdesktop.com/" target="_blank" rel="noopener noreferrer">Hyperdesktop</a> works on <strong>Windows XP, Vista, 7 and 8 both 32 and 64-bit</strong>.</p>
<p>If you’ve been looking for a quicker way to take and upload screenshots, check out <a href="http://gethyperdesktop.com/" target="_blank" rel="noopener noreferrer">Hyperdesktop</a>.</p>
<div class="su-button-center"><a href="http://gethyperdesktop.com/" class="su-button su-button-style-flat su-button-wide" style="color:#FFFFFF;background-color:#3a99e5;border-color:#2f7bb8;border-radius:0px" target="_self"><span style="color:#FFFFFF;padding:7px 22px;font-size:17px;line-height:26px;border-color:#76b8ed;border-radius:0px;text-shadow:none"><i class="sui sui-download" style="font-size:17px;color:#FFFFFF"></i> Download HyperDesktop</span></a></div>
<p>Check out some of the other great free <a href="http://imgur.com/" target="_blank" rel="noopener noreferrer">Imgur</a> tools: <a href="http://imgur.com/apps" target="_blank" rel="noopener noreferrer">http://imgur.com/apps</a></p>
<p><strong>What are some of your favorite time saving programs for Windows? Share it with us in the comments below!</strong></p>
<p>The post <a href="https://www.robertsproductions.net/upload-screenshots-to-imgur-from-your-desktop/">Upload Screenshots to Imgur from your Desktop</a> appeared first on <a href="https://www.robertsproductions.net">Robert&#039;s Productions | Post Production Tips</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.robertsproductions.net/upload-screenshots-to-imgur-from-your-desktop/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Sony Vegas: Solo Tracks</title>
		<link>https://www.robertsproductions.net/sony-vegas-solo-tracks/</link>
					<comments>https://www.robertsproductions.net/sony-vegas-solo-tracks/#respond</comments>
		
		<dc:creator><![CDATA[Robert Carreno]]></dc:creator>
		<pubDate>Tue, 03 Jul 2012 20:05:22 +0000</pubDate>
				<category><![CDATA[Tip of the Week]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[group]]></category>
		<category><![CDATA[Hide]]></category>
		<category><![CDATA[remove]]></category>
		<category><![CDATA[single]]></category>
		<category><![CDATA[solo]]></category>
		<category><![CDATA[sony vegas]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[Tracks]]></category>
		<category><![CDATA[Vegas Pro]]></category>
		<guid isPermaLink="false">https://www.robertsproductions.net/?p=4690</guid>

					<description><![CDATA[<p>Soloing tracks or singling out tracks in Sony Vegas is easy. Click the exclamation point (<strong>Solo</strong>) button in the track header for a selected track you want to single out or Solo. That track will be the only one visible. You can also Solo additional tracks to single out a group of tracks. To remove a track from the solo group, click the <strong>Solo</strong> button again...</p>
<p>The post <a href="https://www.robertsproductions.net/sony-vegas-solo-tracks/">Sony Vegas: Solo Tracks</a> appeared first on <a href="https://www.robertsproductions.net">Robert&#039;s Productions | Post Production Tips</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Soloing tracks or singling out tracks in Sony Vegas is easy. Click the exclamation point (<strong>Solo</strong>) button in the track header for a selected track you want to single out or Solo. That track will be the only one visible. You can also Solo additional tracks to single out a group of tracks. To remove a track from the solo group, click the <strong>Solo</strong> button again. If you have a group of tracks soloed, you can hold <strong>Ctrl</strong> while soloing an unsoloed track to remove all other tracks from the solo group. Hold <strong>Ctrl</strong> while clicking Solo on a Soloed track to reset all Solo buttons and return to normal. When you Solo multiple levels of parent and child tracks, the parent track and its compositing children will also be Soloed.</p>
<p style="text-align: center;"><strong>SOLO BUTTON</strong></p>
<p style="text-align: center;"><a href="https://www.robertsproductions.net/wp-content/uploads/2012/07/solotracks.png" data-rel="lightbox-image-0" data-rl_title="" data-rl_caption=""><img decoding="async" class="aligncenter  wp-image-4728" title="" src="https://www.robertsproductions.net/wp-content/uploads/2012/07/solotracks-1024x347.png" alt="" width="686" height="232" /></a></p>
<p style="text-align: center;"><strong>SOLO MULTIPLE TRACKS</strong></p>
<p style="text-align: center;"><a href="https://www.robertsproductions.net/wp-content/uploads/2012/07/solomultitracks.png" data-rel="lightbox-image-1" data-rl_title="" data-rl_caption=""><img loading="lazy" decoding="async" class="aligncenter  wp-image-4730" title="" src="https://www.robertsproductions.net/wp-content/uploads/2012/07/solomultitracks-1024x347.png" alt="" width="686" height="232" /></a></p>
<p style="text-align: center;"><strong>CLICKING SOLO WHILE HOLDING CTRL SINGLES OUT TRACK</strong></p>
<p style="text-align: center;"><a href="https://www.robertsproductions.net/wp-content/uploads/2012/07/solohideall.png" data-rel="lightbox-image-2" data-rl_title="" data-rl_caption=""><img loading="lazy" decoding="async" class="aligncenter  wp-image-4729" title="" src="https://www.robertsproductions.net/wp-content/uploads/2012/07/solohideall-1024x347.png" alt="" width="686" height="232" /></a></p>
<p>The post <a href="https://www.robertsproductions.net/sony-vegas-solo-tracks/">Sony Vegas: Solo Tracks</a> appeared first on <a href="https://www.robertsproductions.net">Robert&#039;s Productions | Post Production Tips</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.robertsproductions.net/sony-vegas-solo-tracks/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Color Wheel for Photoshop</title>
		<link>https://www.robertsproductions.net/color-wheel-for-photoshop/</link>
					<comments>https://www.robertsproductions.net/color-wheel-for-photoshop/#respond</comments>
		
		<dc:creator><![CDATA[Robert Carreno]]></dc:creator>
		<pubDate>Tue, 20 Mar 2012 14:32:52 +0000</pubDate>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[Bug Free]]></category>
		<category><![CDATA[Cheap]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[Color Wheel]]></category>
		<category><![CDATA[Coolorus]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[Extension]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Reliable]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[Try]]></category>
		<category><![CDATA[Wheel]]></category>
		<guid isPermaLink="false">https://www.robertsproductions.net/?p=3827</guid>

					<description><![CDATA[<p>Ever think about alternate ways of selecting color in Photoshop? Could there be a tool that allows us to precisely select a certain color? Like...</p>
<p>The post <a href="https://www.robertsproductions.net/color-wheel-for-photoshop/">Color Wheel for Photoshop</a> appeared first on <a href="https://www.robertsproductions.net">Robert&#039;s Productions | Post Production Tips</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><iframe title="Color Wheel for Photoshop" width="719" height="404" src="https://www.youtube.com/embed/m6w2X2k4skI?feature=oembed" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
<p>Ever think about alternate ways of selecting color in Photoshop? Could there be a tool that allows us to precisely select a certain color? Like a color wheel? You bet, it&#8217;s called, &#8220;Coolorus&#8221;. Coolorus allows you to choose colors from an easy to use color wheel. It offers different Color Schemes, Color Modes, has the ability to work with Background or Stroke colors, and claims to be faster than lightning and bug free unlike other color pickers. It&#8217;s the &#8220;Adobe extension everyone has been waiting for&#8221;. <span style="color: #666666; font-style: normal;">Available for Adobe Flash and Photoshop for both Mac and Windows as an extension.</span><span style="color: #666666; font-style: normal;"> </span></p>
<p><strong>Features:</strong></p>
<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-3838" title="Features" src="https://www.robertsproductions.net/wp-content/uploads/2012/03/Features.jpg" alt="" width="512" height="320" srcset="https://www.robertsproductions.net/wp-content/uploads/2012/03/Features.jpg 512w, https://www.robertsproductions.net/wp-content/uploads/2012/03/Features-300x188.jpg 300w, https://www.robertsproductions.net/wp-content/uploads/2012/03/Features-364x228.jpg 364w, https://www.robertsproductions.net/wp-content/uploads/2012/03/Features-77x48.jpg 77w, https://www.robertsproductions.net/wp-content/uploads/2012/03/Features-154x96.jpg 154w, https://www.robertsproductions.net/wp-content/uploads/2012/03/Features-313x196.jpg 313w" sizes="(max-width: 512px) 100vw, 512px" /></p>
<p><strong>Color Modes:</strong></p>
<p style="text-align: center;"><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-3839" title="Color Modes" src="https://www.robertsproductions.net/wp-content/uploads/2012/03/cmodes.jpg" alt="" width="512" height="320" srcset="https://www.robertsproductions.net/wp-content/uploads/2012/03/cmodes.jpg 512w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cmodes-300x188.jpg 300w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cmodes-364x228.jpg 364w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cmodes-77x48.jpg 77w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cmodes-154x96.jpg 154w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cmodes-313x196.jpg 313w" sizes="(max-width: 512px) 100vw, 512px" /></p>
<p style="text-align: center;">Coolorus has both a full spectrum and simple color mode.</p>
<p><strong>Color Schemes:</strong></p>
[tabs_framed]
[tab title=&#8221;Mono&#8221;]<img loading="lazy" decoding="async" class="aligncenter size-full wp-image-3832" title="cscheme1" src="https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme1.jpg" alt="" width="512" height="320" srcset="https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme1.jpg 512w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme1-300x188.jpg 300w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme1-364x228.jpg 364w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme1-77x48.jpg 77w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme1-154x96.jpg 154w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme1-313x196.jpg 313w" sizes="(max-width: 512px) 100vw, 512px" />[/tab]
[tab title=&#8221;Complementary&#8221;]<img loading="lazy" decoding="async" class="aligncenter size-full wp-image-3833" title="cscheme2" src="https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme2.jpg" alt="" width="512" height="320" srcset="https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme2.jpg 512w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme2-300x188.jpg 300w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme2-364x228.jpg 364w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme2-77x48.jpg 77w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme2-154x96.jpg 154w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme2-313x196.jpg 313w" sizes="(max-width: 512px) 100vw, 512px" />[/tab]
[tab title=&#8221;Triadic&#8221;]<img loading="lazy" decoding="async" class="aligncenter size-full wp-image-3834" title="cscheme3" src="https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme3.jpg" alt="" width="512" height="320" srcset="https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme3.jpg 512w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme3-300x188.jpg 300w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme3-364x228.jpg 364w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme3-77x48.jpg 77w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme3-154x96.jpg 154w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme3-313x196.jpg 313w" sizes="(max-width: 512px) 100vw, 512px" />[/tab]
[tab title=&#8221;Tetradic&#8221;]<img loading="lazy" decoding="async" class="aligncenter size-full wp-image-3835" title="cscheme4" src="https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme4.jpg" alt="" width="512" height="320" srcset="https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme4.jpg 512w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme4-300x188.jpg 300w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme4-364x228.jpg 364w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme4-77x48.jpg 77w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme4-154x96.jpg 154w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme4-313x196.jpg 313w" sizes="(max-width: 512px) 100vw, 512px" />[/tab]
[tab title=&#8221;Analogic&#8221;]<img loading="lazy" decoding="async" class="aligncenter size-full wp-image-3836" title="cscheme5" src="https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme5.jpg" alt="" width="512" height="320" srcset="https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme5.jpg 512w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme5-300x188.jpg 300w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme5-364x228.jpg 364w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme5-77x48.jpg 77w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme5-154x96.jpg 154w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme5-313x196.jpg 313w" sizes="(max-width: 512px) 100vw, 512px" />[/tab]
[tab title=&#8221;Accented Analogic&#8221;]<img loading="lazy" decoding="async" class="aligncenter size-full wp-image-3837" title="cscheme6" src="https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme6.jpg" alt="" width="512" height="320" srcset="https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme6.jpg 512w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme6-300x188.jpg 300w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme6-364x228.jpg 364w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme6-77x48.jpg 77w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme6-154x96.jpg 154w, https://www.robertsproductions.net/wp-content/uploads/2012/03/cscheme6-313x196.jpg 313w" sizes="(max-width: 512px) 100vw, 512px" />[/tab]
[/tabs_framed]
<p>Right now, you have the ability to try it out a couple days before v1.0 is released by the end of this week. Once v1.0 is released, there will be a very small charge for this extension, nothing more than $10 bucks. So if you&#8217;re looking for a better color wheel to use in Photoshop or Flash, give Coolorus a try! <span style="text-decoration: underline;"><a href="http://www.coolorus.com/">http://www.coolorus.com</a></span></p>
<p><strong>Share your thoughts on this extension below!</strong></p>
<p>The post <a href="https://www.robertsproductions.net/color-wheel-for-photoshop/">Color Wheel for Photoshop</a> appeared first on <a href="https://www.robertsproductions.net">Robert&#039;s Productions | Post Production Tips</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.robertsproductions.net/color-wheel-for-photoshop/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Best Anti-Virus Software for Windows</title>
		<link>https://www.robertsproductions.net/best-anti-virus-software/</link>
					<comments>https://www.robertsproductions.net/best-anti-virus-software/#comments</comments>
		
		<dc:creator><![CDATA[Robert Carreno]]></dc:creator>
		<pubDate>Tue, 28 Feb 2012 15:54:15 +0000</pubDate>
				<category><![CDATA[Windows Tips]]></category>
		<category><![CDATA[Anti-Virus]]></category>
		<category><![CDATA[best]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[Essentials]]></category>
		<category><![CDATA[fast]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[Microsoft Security Essentials]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[windows]]></category>
		<guid isPermaLink="false">https://www.robertsproductions.net/?p=3643</guid>

					<description><![CDATA[<p>Are you currently using any type of anti-virus software? If not, you should. There&#8217;s all kinds of new viruses, worms, Trojans and spyware floating around as...</p>
<p>The post <a href="https://www.robertsproductions.net/best-anti-virus-software/">Best Anti-Virus Software for Windows</a> appeared first on <a href="https://www.robertsproductions.net">Robert&#039;s Productions | Post Production Tips</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" class="alignleft size-full wp-image-3651" title="Microsoft Security Essentials" src="https://www.robertsproductions.net/wp-content/uploads/2012/02/Microsoft_Security_Essentials_icon.png" alt="" width="256" height="256" srcset="https://www.robertsproductions.net/wp-content/uploads/2012/02/Microsoft_Security_Essentials_icon.png 256w, https://www.robertsproductions.net/wp-content/uploads/2012/02/Microsoft_Security_Essentials_icon-100x100.png 100w, https://www.robertsproductions.net/wp-content/uploads/2012/02/Microsoft_Security_Essentials_icon-200x200.png 200w, https://www.robertsproductions.net/wp-content/uploads/2012/02/Microsoft_Security_Essentials_icon-140x140.png 140w" sizes="(max-width: 256px) 100vw, 256px" />Are you currently using any type of anti-virus software? If not, you should. There&#8217;s all kinds of new viruses, worms, Trojans and spyware floating around as we speak. If your computer is left unprotected, they can enter your computer and infect anything and everything they come in contact with. Not only that but they can even steal viable information from you. That&#8217;s why it is important to find and use the best antivirus you can find. Usually when you think best you think $$$. That&#8217;s not the case here as the best anti-virus software costs nothing at all.</p>
<p>Who better to use than the people who make Windows itself. <span style="text-decoration: underline;"><strong><a href="http://windows.microsoft.com/en-US/windows/products/security-essentials" target="_blank">Microsoft Security Essentials</a></strong></span> provides you with all the protection you need.</p>
<p><strong>&#8220;The anti-annoying, anti-expensive, anti-virus program&#8221;</strong></p>
<p>It&#8217;s extremely simple to use as it uses a simple red, yellow, green color code platform. When it&#8217;s green, you&#8217;re secured. If yellow or red, you may have some threats you need to take care of and remove. This can all be done in the taskbar without having to open the application itself. And you&#8217;ll only be alerted when you there&#8217;s specific actions you need to take. Why doesn&#8217;t this come pre-installed with Windows in the first place?</p>
<p><img loading="lazy" decoding="async" class="alignleft size-medium wp-image-3656" title="microsoft-security-essentials" src="https://www.robertsproductions.net/wp-content/uploads/2012/02/microsoft-security-essentials-18-300x233.jpg" alt="" width="300" height="233" srcset="https://www.robertsproductions.net/wp-content/uploads/2012/02/microsoft-security-essentials-18-300x233.jpg 300w, https://www.robertsproductions.net/wp-content/uploads/2012/02/microsoft-security-essentials-18-264x205.jpg 264w, https://www.robertsproductions.net/wp-content/uploads/2012/02/microsoft-security-essentials-18-561x436.jpg 561w, https://www.robertsproductions.net/wp-content/uploads/2012/02/microsoft-security-essentials-18-364x283.jpg 364w, https://www.robertsproductions.net/wp-content/uploads/2012/02/microsoft-security-essentials-18-608x473.jpg 608w, https://www.robertsproductions.net/wp-content/uploads/2012/02/microsoft-security-essentials-18-62x48.jpg 62w, https://www.robertsproductions.net/wp-content/uploads/2012/02/microsoft-security-essentials-18-124x96.jpg 124w, https://www.robertsproductions.net/wp-content/uploads/2012/02/microsoft-security-essentials-18-313x243.jpg 313w, https://www.robertsproductions.net/wp-content/uploads/2012/02/microsoft-security-essentials-18-600x466.jpg 600w, https://www.robertsproductions.net/wp-content/uploads/2012/02/microsoft-security-essentials-18-270x210.jpg 270w, https://www.robertsproductions.net/wp-content/uploads/2012/02/microsoft-security-essentials-18-170x132.jpg 170w, https://www.robertsproductions.net/wp-content/uploads/2012/02/microsoft-security-essentials-18.jpg 700w" sizes="(max-width: 300px) 100vw, 300px" />Some virus programs out there think they can just barge in and use all your computer&#8217;s resources. <a href="http://windows.microsoft.com/en-US/windows/products/security-essentials" target="_blank">Microsoft Security Essentials</a> runs quietly in the background as it performs scans and updates when the PC is idle. Your PC will still be snappy when you’re using it.</p>
<p>In order to use this great anti-virus software for free, you need to be running <span style="text-decoration: underline;"><strong><a href="http://windows.microsoft.com/en-US/windows/genuine" target="_blank">genuine Windows</a></strong></span>. If you bought Windows or a computer with Windows, you should have genuine Windows.</p>
<p>This&#8217;ll work on all versions of Windows, XP and up.</p>
<p>As for me, I will no longer be dishing out good money for antivirus software when there&#8217;s a great free alternative. Of course if your happy with what you have, stick with it. Just my recommendation of a great free alternative.</p>
<p><strong>What anti-virus software do you use? Do you think it&#8217;s worth the cost of what your paying for it? What do you think about Microsoft Security Essentials? Share your thoughts in the comments!</strong></p>
<p>The post <a href="https://www.robertsproductions.net/best-anti-virus-software/">Best Anti-Virus Software for Windows</a> appeared first on <a href="https://www.robertsproductions.net">Robert&#039;s Productions | Post Production Tips</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.robertsproductions.net/best-anti-virus-software/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>Photoshop: Mosaic with Multiple Photos</title>
		<link>https://www.robertsproductions.net/photoshop-mosaic-with-multiple-photos/</link>
					<comments>https://www.robertsproductions.net/photoshop-mosaic-with-multiple-photos/#comments</comments>
		
		<dc:creator><![CDATA[Robert Carreno]]></dc:creator>
		<pubDate>Fri, 20 Jan 2012 07:10:34 +0000</pubDate>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Adobe Photoshop]]></category>
		<category><![CDATA[commentary]]></category>
		<category><![CDATA[discussion]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[educational]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[mosaic]]></category>
		<category><![CDATA[need]]></category>
		<category><![CDATA[Photo Manipulation]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[photoshop cs4]]></category>
		<category><![CDATA[photoshop CS5]]></category>
		<category><![CDATA[photoshop download]]></category>
		<category><![CDATA[pic]]></category>
		<category><![CDATA[Software tutorial]]></category>
		<category><![CDATA[tiles]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[tutorial]]></category>
		<guid isPermaLink="false">https://www.robertsproductions.net/?p=3255</guid>

					<description><![CDATA[<p>In this Photoshop CS5 tutorial, I explain the way I&#8217;ve found to create a mosaic out of multiple photos. If you find an easier way...</p>
<p>The post <a href="https://www.robertsproductions.net/photoshop-mosaic-with-multiple-photos/">Photoshop: Mosaic with Multiple Photos</a> appeared first on <a href="https://www.robertsproductions.net">Robert&#039;s Productions | Post Production Tips</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><iframe title="Photoshop: Mosaic with Multiple Photos" width="719" height="404" src="https://www.youtube.com/embed/Cx72JxQpwFs?feature=oembed" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
<p>In this Photoshop CS5 tutorial, I explain the way I&#8217;ve found to create a mosaic out of multiple photos. If you find an easier way of doing this in Photoshop, please let me know in the comments!</p>
<p>Alternative Mosaic Software: <a title="http://j.mp/wDPE83" dir="ltr" href="http://j.mp/wDPE83" rel="nofollow" target="_blank">http://j.mp/wDPE83</a></p>
<p>Twitter: &#8220;@robsproductions&#8221;<br />
<a title="http://twitter.com/robsproductions" dir="ltr" href="http://twitter.com/robsproductions" rel="nofollow" target="_blank">http://twitter.com/robsproductions</a></p>
<p>Facebook:<br />
<a title="http://fb.me/robertsproductions" dir="ltr" href="http://fb.me/robertsproductions" rel="nofollow" target="_blank">http://fb.me/robertsproductions</a></p>
<p>New Forum:<br />
<a title="https://www.robertsproductions.net/forum" dir="ltr" href="https://www.robertsproductions.net/forum" rel="nofollow" target="_blank">https://www.robertsproductions.net/forum</a></p>
<p>Music: Klaypex</p>
<p>The post <a href="https://www.robertsproductions.net/photoshop-mosaic-with-multiple-photos/">Photoshop: Mosaic with Multiple Photos</a> appeared first on <a href="https://www.robertsproductions.net">Robert&#039;s Productions | Post Production Tips</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.robertsproductions.net/photoshop-mosaic-with-multiple-photos/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Photoshop: Film Negatives to Positives</title>
		<link>https://www.robertsproductions.net/photoshop-negatives-to-positives/</link>
					<comments>https://www.robertsproductions.net/photoshop-negatives-to-positives/#respond</comments>
		
		<dc:creator><![CDATA[Robert Carreno]]></dc:creator>
		<pubDate>Wed, 11 Jan 2012 20:05:47 +0000</pubDate>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[Adobe Photoshop]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[commentary]]></category>
		<category><![CDATA[cs4]]></category>
		<category><![CDATA[cs5]]></category>
		<category><![CDATA[download photoshop]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[editing]]></category>
		<category><![CDATA[educational]]></category>
		<category><![CDATA[film]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[negatives]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[Photo Manipulation]]></category>
		<category><![CDATA[photoshop CS5]]></category>
		<category><![CDATA[positives]]></category>
		<category><![CDATA[Software tutorial]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[tutorial]]></category>
		<guid isPermaLink="false">https://www.robertsproductions.net/?p=3203</guid>

					<description><![CDATA[<p>In today&#8217;s tutorial, I show you how to turn film negatives into positives using Photoshop CS5. Twitter: &#8220;@robsproductions&#8221; http://twitter.com/robsproductions Facebook: http://fb.me/robertsproductions Site: https://www.robertsproductions.net Music: Jason...</p>
<p>The post <a href="https://www.robertsproductions.net/photoshop-negatives-to-positives/">Photoshop: Film Negatives to Positives</a> appeared first on <a href="https://www.robertsproductions.net">Robert&#039;s Productions | Post Production Tips</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><iframe title="Photoshop: Film Negatives to Positives" width="719" height="404" src="https://www.youtube.com/embed/B2gLT0SWzpQ?feature=oembed" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
<p>In today&#8217;s tutorial, I show you how to turn film negatives into positives using Photoshop CS5.</p>
<p>Twitter: &#8220;@robsproductions&#8221;<br />
<a title="http://twitter.com/robsproductions" dir="ltr" href="http://twitter.com/robsproductions" rel="nofollow" target="_blank">http://twitter.com/robsproductions</a></p>
<p>Facebook:<br />
<a title="http://fb.me/robertsproductions" dir="ltr" href="http://fb.me/robertsproductions" rel="nofollow" target="_blank">http://fb.me/robertsproductions</a></p>
<p>Site:<br />
<a title="https://www.robertsproductions.net" dir="ltr" href="https://www.robertsproductions.net/" rel="nofollow" target="_blank">https://www.robertsproductions.net</a></p>
<p>Music: Jason Shaw</p>
<p>The post <a href="https://www.robertsproductions.net/photoshop-negatives-to-positives/">Photoshop: Film Negatives to Positives</a> appeared first on <a href="https://www.robertsproductions.net">Robert&#039;s Productions | Post Production Tips</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.robertsproductions.net/photoshop-negatives-to-positives/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Free City at Night Backgrounds</title>
		<link>https://www.robertsproductions.net/free-city-at-night-backgrounds/</link>
					<comments>https://www.robertsproductions.net/free-city-at-night-backgrounds/#respond</comments>
		
		<dc:creator><![CDATA[Robert Carreno]]></dc:creator>
		<pubDate>Thu, 05 May 2011 21:19:45 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[10]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[JPEGS]]></category>
		<category><![CDATA[psd]]></category>
		<guid isPermaLink="false">https://www.robertsproductions.net/?p=1317</guid>

					<description><![CDATA[<p>&#160; Free this month only. Here&#8217;s a pack of stunning backgrounds, including city skylines and night skies available from graphicriver.net made by ToivoMedia. Includes 25...</p>
<p>The post <a href="https://www.robertsproductions.net/free-city-at-night-backgrounds/">Free City at Night Backgrounds</a> appeared first on <a href="https://www.robertsproductions.net">Robert&#039;s Productions | Post Production Tips</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>&nbsp;</p>
<p style="text-align: center;"><a href="http://graphicriver.net/item/city-at-night-backgrounds/140888"><img loading="lazy" decoding="async" class="size-full wp-image-1318 aligncenter" title="city-skyline-web-backgrounds" src="https://www.robertsproductions.net/wp-content/uploads/2011/05/city-skyline-web-backgrounds.jpg" alt="" width="590" height="1695" srcset="https://www.robertsproductions.net/wp-content/uploads/2011/05/city-skyline-web-backgrounds.jpg 590w, https://www.robertsproductions.net/wp-content/uploads/2011/05/city-skyline-web-backgrounds-71x205.jpg 71w, https://www.robertsproductions.net/wp-content/uploads/2011/05/city-skyline-web-backgrounds-104x300.jpg 104w, https://www.robertsproductions.net/wp-content/uploads/2011/05/city-skyline-web-backgrounds-356x1024.jpg 356w, https://www.robertsproductions.net/wp-content/uploads/2011/05/city-skyline-web-backgrounds-348x999.jpg 348w, https://www.robertsproductions.net/wp-content/uploads/2011/05/city-skyline-web-backgrounds-364x1046.jpg 364w, https://www.robertsproductions.net/wp-content/uploads/2011/05/city-skyline-web-backgrounds-17x48.jpg 17w, https://www.robertsproductions.net/wp-content/uploads/2011/05/city-skyline-web-backgrounds-33x96.jpg 33w, https://www.robertsproductions.net/wp-content/uploads/2011/05/city-skyline-web-backgrounds-313x899.jpg 313w, https://www.robertsproductions.net/wp-content/uploads/2011/05/city-skyline-web-backgrounds-73x210.jpg 73w, https://www.robertsproductions.net/wp-content/uploads/2011/05/city-skyline-web-backgrounds-46x132.jpg 46w" sizes="(max-width: 590px) 100vw, 590px" /></a></p>
<p>Free this month only.</p>
<p>Here&#8217;s a pack of stunning backgrounds, including city skylines and night skies available from <a href="http://graphicriver.net/?ref=rproductions" target="_blank">graphicriver.net</a> made by <a href="http://graphicriver.net/user/ToivoMedia" target="_blank">ToivoMedia</a>.</p>
<ul>
<li>Includes 25 JPEGS and a PSD file</li>
<li>10 color variations, plus add your own with a few clicks</li>
<li>Fully layered, editable and easy to use</li>
<li>Textured and clean versions included</li>
<li>Resolution – 1280×960</li>
</ul>
<h4 style="text-align: center;"><a href="http://graphicriver.net/item/city-at-night-backgrounds/140888">DOWNLOAD IT FOR FREE HERE reg $2</a></h4>
<p>The post <a href="https://www.robertsproductions.net/free-city-at-night-backgrounds/">Free City at Night Backgrounds</a> appeared first on <a href="https://www.robertsproductions.net">Robert&#039;s Productions | Post Production Tips</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.robertsproductions.net/free-city-at-night-backgrounds/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Sony Vegas &#8211; Karaoke Effect</title>
		<link>https://www.robertsproductions.net/sony-vegas-karaoke-effect/</link>
					<comments>https://www.robertsproductions.net/sony-vegas-karaoke-effect/#comments</comments>
		
		<dc:creator><![CDATA[Robert Carreno]]></dc:creator>
		<pubDate>Tue, 28 Sep 2010 02:58:19 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Vegas Pro]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[robertsproductions]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[youtube]]></category>
		<guid isPermaLink="false">https://www.robertsproductions.net/?p=629</guid>

					<description><![CDATA[<p>In this tutorial I will show you the basics of creating a karaoke video in Sony Vegas Pro 9. I show you a simple more...</p>
<p>The post <a href="https://www.robertsproductions.net/sony-vegas-karaoke-effect/">Sony Vegas &#8211; Karaoke Effect</a> appeared first on <a href="https://www.robertsproductions.net">Robert&#039;s Productions | Post Production Tips</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><iframe title="Sony Vegas - Karaoke Effect" width="719" height="404" src="https://www.youtube.com/embed/6rscgpCvJvY?feature=oembed" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
<p>In this tutorial I will show you the basics of creating a karaoke video in Sony Vegas Pro 9. I show you a simple more easy way and a longer way. The longer way could turn out to be a time consuming process but you can achieve some pretty good results doing it this way. There&#8217;s probably software out there that can also achieve the same results automatically but I&#8217;m sure(hope) theirs some of us that don&#8217;t want to spend that kind of money and do it all ourselves. Oh, and sorry if I got annoying during this video. I got a little carried away in some parts. Thanks for watching! Subscribe for more!</p>
<p>Song Cover Artist: <a title="http://www.youtube.com/user/michellearseneau" dir="ltr" href="http://www.youtube.com/user/michellearseneau" rel="nofollow" target="_blank">http://www.youtube.com/user/michellea&#8230;</a><br />
Twitter: <a title="http://twitter.com/robsproductions" dir="ltr" href="http://twitter.com/robsproductions" rel="nofollow" target="_blank">http://twitter.com/robsproductions</a><br />
Site: <a title="https://www.robertsproductions.net" dir="ltr" href="../" rel="nofollow" target="_blank">https://www.robertsproductions.net</a></p>
<p>The post <a href="https://www.robertsproductions.net/sony-vegas-karaoke-effect/">Sony Vegas &#8211; Karaoke Effect</a> appeared first on <a href="https://www.robertsproductions.net">Robert&#039;s Productions | Post Production Tips</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.robertsproductions.net/sony-vegas-karaoke-effect/feed/</wfw:commentRss>
			<slash:comments>66</slash:comments>
		
		
			</item>
		<item>
		<title>Photoshop CS4: Straighten Crooked Photos</title>
		<link>https://www.robertsproductions.net/photoshop-cs4-straighten-crooked-photos/</link>
					<comments>https://www.robertsproductions.net/photoshop-cs4-straighten-crooked-photos/#respond</comments>
		
		<dc:creator><![CDATA[Robert Carreno]]></dc:creator>
		<pubDate>Sat, 26 Sep 2009 14:56:00 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[robertsproductions]]></category>
		<category><![CDATA[tripod]]></category>
		<guid isPermaLink="false">http://design.robertsproductions.net/?p=77</guid>

					<description><![CDATA[<p>In this Photoshop tutorial, we&#8217;re going to learn a quick and easy way to straighten crooked photos. Let&#8217;s face it, unless you take all your...</p>
<p>The post <a href="https://www.robertsproductions.net/photoshop-cs4-straighten-crooked-photos/">Photoshop CS4: Straighten Crooked Photos</a> appeared first on <a href="https://www.robertsproductions.net">Robert&#039;s Productions | Post Production Tips</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><iframe title="Photoshop CS4: Straighten Crooked Photos" width="719" height="404" src="https://www.youtube.com/embed/1VIa6DL-Ans?feature=oembed" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
<p>In this Photoshop tutorial, we&#8217;re going to learn a quick and easy way to straighten crooked photos.<br />
Let&#8217;s face it, unless you take all your photos with your camera mounted on a tripod, some of your photos are going to turn out a bit crooked. Fortunately, Photoshop makes it incredibly easy to straighten them in just a few simple steps. Created By: Robert&#8217;s Productions Studios. Now In HD.</p>
<p>Check out the new site design! <a title="https://www.robertsproductions.net" dir="ltr" rel="nofollow" href="https://www.robertsproductions.net/" target="_blank">https://www.robertsproductions.net</a><br />
Join the forum! <a title="https://www.robertsproductions.net/forum" dir="ltr" rel="nofollow" href="https://www.robertsproductions.net/forum" target="_blank">https://www.robertsproductions.net/forum</a></p>
<p>Request Tutorials: <a title="https://www.robertsproductions.net/request" dir="ltr" rel="nofollow" href="https://www.robertsproductions.net/request" target="_blank">https://www.robertsproductions.net/request</a></p>
<p>Thanks for Watching!</p>
<p>The post <a href="https://www.robertsproductions.net/photoshop-cs4-straighten-crooked-photos/">Photoshop CS4: Straighten Crooked Photos</a> appeared first on <a href="https://www.robertsproductions.net">Robert&#039;s Productions | Post Production Tips</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.robertsproductions.net/photoshop-cs4-straighten-crooked-photos/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
