<?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>pmlmedia</title>
	<atom:link href="http://pmlmedia.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://pmlmedia.co.uk</link>
	<description>home of peter robert moore</description>
	<lastBuildDate>Sun, 25 Jul 2010 12:15:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Helvetireader &#8211; A minimal, anti-social theme for Google Reader</title>
		<link>http://pmlmedia.co.uk/2010/07/25/helvetireader-a-minimal-anti-social-theme-for-google-reader/</link>
		<comments>http://pmlmedia.co.uk/2010/07/25/helvetireader-a-minimal-anti-social-theme-for-google-reader/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 12:04:11 +0000</pubDate>
		<dc:creator>Peter Moore</dc:creator>
				<category><![CDATA[Hints]]></category>
		<category><![CDATA[google reader]]></category>
		<category><![CDATA[google reader skin]]></category>
		<category><![CDATA[helvetireader]]></category>
		<category><![CDATA[news reader skin]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[rss reader]]></category>

		<guid isPermaLink="false">http://pmlmedia.co.uk/?p=535</guid>
		<description><![CDATA[I can&#8217;t get my head round Google Reader but Helvetireader certainly helps. This stylesheet can be installed as a chrome extension or a Firefox add-in and gets rid of all the junk and just serves you the headlines in a nice, legible skin.  Made by Hicksdesign by the way&#8230;]]></description>
			<content:encoded><![CDATA[<div style="float:left">
<a href="http://pmlmedia.co.uk/wp-content/uploads/2010/07/helvetireader.jpg"><img title="helvetireader" src="http://pmlmedia.co.uk/wp-content/uploads/2010/07/helvetireader.jpg" alt="" width="600" height="433" /></a>
</div>
<div style="clear:both"></div>
<p>I can&#8217;t get my head round Google Reader but <a href="http://helvetireader.com/">Helvetireader</a> certainly helps. This stylesheet can be installed as a chrome extension or a Firefox add-in and gets rid of all the junk and just serves you the headlines in a nice, legible skin.  Made by <a href="http://hicksdesign.co.uk/">Hicksdesign</a> by the way&#8230;</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save">Share/Save</a> </p>]]></content:encoded>
			<wfw:commentRss>http://pmlmedia.co.uk/2010/07/25/helvetireader-a-minimal-anti-social-theme-for-google-reader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a URL button in flash AS3</title>
		<link>http://pmlmedia.co.uk/2010/07/05/create-a-url-button-in-flash-as3/</link>
		<comments>http://pmlmedia.co.uk/2010/07/05/create-a-url-button-in-flash-as3/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 09:46:18 +0000</pubDate>
		<dc:creator>Peter Moore</dc:creator>
				<category><![CDATA[life]]></category>
		<category><![CDATA[website design]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[url button]]></category>

		<guid isPermaLink="false">http://pmlmedia.co.uk/?p=471</guid>
		<description><![CDATA[If you need a banner to have a button that when clicked takes you to another webpage when you click the flash button this is how you do it. You need to create a button (in this case a transparent rectangle on top of a web banner animation), add an event listener(a mouse event/click) and]]></description>
			<content:encoded><![CDATA[<p>If you need a banner to have a button that when clicked takes you to another webpage when you click the flash button this is how you do it. You need to create a button (in this case a transparent rectangle on top of a web banner animation), add an event listener(a mouse event/click) and create a function (in this case the function is to request a URL and navigate to it).</p>
<p>1/ Press F8 to convert a rectangle into a symbol, create button and name it myButton.<br />
2/ Click on the button in the main timeline and press F9 to open the actions window.<br />
3/ Use this code to create an event listener and a function for after the click event.<br />
You can use&#8230;<br />
&#8220;_blank&#8221; or &#8220;top&#8221; to open in a new tab<br />
&#8220;_parent&#8221; or &#8220;_self&#8221; open in the same tab</p>
<p><PRE><br />
myButton.addEventListener(MouseEvent.CLICK, myButtonFunction);<br />
function myButtonFunction(event: MouseEvent) {<br />
var request:URLRequest = new URLRequest(&#34;http://www.pmlmedia.co.uk&#34;);<br />
navigateToURL(request, &#34;_self&#34;);<br />
}<br />
</PRE></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save">Share/Save</a> </p>]]></content:encoded>
			<wfw:commentRss>http://pmlmedia.co.uk/2010/07/05/create-a-url-button-in-flash-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add a Google Map into your web page</title>
		<link>http://pmlmedia.co.uk/2010/06/05/find-the-longitude-and-latitude-of-an-address-using-google-maps/</link>
		<comments>http://pmlmedia.co.uk/2010/06/05/find-the-longitude-and-latitude-of-an-address-using-google-maps/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 23:16:28 +0000</pubDate>
		<dc:creator>Peter Moore</dc:creator>
				<category><![CDATA[website design]]></category>
		<category><![CDATA[add a google map]]></category>
		<category><![CDATA[embed a google map]]></category>
		<category><![CDATA[embedded google map]]></category>
		<category><![CDATA[google map]]></category>
		<category><![CDATA[longitude and latitude]]></category>

		<guid isPermaLink="false">http://pmlmedia.co.uk/?p=420</guid>
		<description><![CDATA[1/ Use Google maps to find the longitude and latitude of the address you want to map &#8211; when the map pin is in the middle of the screen, paste this code into your browser&#8230; javascript: void(prompt('',gApplication.getMap().getCenter())); 2/ generate a google maps API key. If you&#8217;ve got more than one map in your site, don&#8217;t]]></description>
			<content:encoded><![CDATA[<p><a href="http://pmlmedia.co.uk/wp-content/uploads/2010/06/map1.jpg"><img class="alignleft size-medium wp-image-434" title="map" src="http://pmlmedia.co.uk/wp-content/uploads/2010/06/map1-300x144.jpg" alt="" width="300" height="144" /></a></p>
<p>1/ Use Google maps to find the longitude and latitude of the address you want to map &#8211; when the map pin is in the middle of the screen, paste this code into your browser&#8230;</p>
<pre>javascript: void(prompt('',gApplication.getMap().getCenter()));</pre>
<p>2/ <a href="http://code.google.com/apis/maps/signup.html">generate a google maps API key</a>. If you&#8217;ve got more than one map in your site, don&#8217;t just genereate a key for your domain name, use the full location of the directory e.g. pmlmedia.co.uk/testwebsites/newsite1/</p>
<p>3/ Edit this code with your newly generated API key, longitude and lattitude, and address (for when someone clicks on your map pin) then paste the edited code into the head of your webpage.</p>
<pre><code>&lt;</code>script src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=<span style="color: #ff0000;">REPLACETHISTEXTWITHYOURAPIKEY</span>&amp;sensor=true" type="text/javascript"<code>&gt;</code><code>&lt;</code>/script<code>&gt;</code> <code>&lt;</code>script type="text/javascript"<code>&gt;</code>// <code>&lt;</code>![CDATA[
/* <code>&lt;</code>![CDATA[ */

    function initialize() {
        if (GBrowserIsCompatible()) {

            var a = <span style="color: #ff0000;">REPLACETHISTEXTWITHYOURLONGITUDE</span>;
            var b = <span style="color: #ff0000;">REPLACETHISTEXTWITHYOURLATITIDE</span>;
            var zoom = 16;
            var html = '

<code>&lt;</code>div class="htmlwindow"<code>&gt;</code>
<span style="color: #ff0000;">REPLACEWITHNAMEOFBUSINESS
REPLACEWITH1STLINEOFADDRESS
REPLACEWITH2NDLINEOFADDRESS</span>&lt;'+'/div<code>&gt;</code>';

            var map = new GMap2(document.getElementById("map_canvas"));
            map.setCenter(new GLatLng((a+0.001), b), zoom);
			map.addControl(new GSmallMapControl());
			//map.addControl(new GMapTypeControl());
 			map.enableScrollWheelZoom();

            var marker = new GMarker(new GLatLng(a, b));
            GEvent.addListener(marker, "click", function() { marker.openInfoWindowHtml(html); });
            map.addOverlay(marker);
            //GEvent.trigger(marker, "click");
        }
    }
    /*  */
// ]]<code>&gt;</code><code>&lt;</code>/script<code>&gt;</code></pre>
<p>4/ Paste these event functions into your opening body tag&#8230;</p>
<pre><code>&lt;</code>body onload="initialize()" onunload="GUnload()"<code>&gt;</code></pre>
<p>&#8230;and create a DIV wherever you want your map to appear and set the width and height for your map.</p>
<pre> <code>&lt;</code>div id="map_canvas" style="width: 529px; height: 300px"<code>&gt;</code><code>&lt;</code>/div&gt;</pre>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save">Share/Save</a> </p>]]></content:encoded>
			<wfw:commentRss>http://pmlmedia.co.uk/2010/06/05/find-the-longitude-and-latitude-of-an-address-using-google-maps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SO YOU NEED A TYPEFACE</title>
		<link>http://pmlmedia.co.uk/2010/05/30/so-you-need-a-typeface/</link>
		<comments>http://pmlmedia.co.uk/2010/05/30/so-you-need-a-typeface/#comments</comments>
		<pubDate>Sun, 30 May 2010 18:04:42 +0000</pubDate>
		<dc:creator>Peter Moore</dc:creator>
				<category><![CDATA[Typography]]></category>

		<guid isPermaLink="false">http://pmlmedia.co.uk/?p=403</guid>
		<description><![CDATA[A cracking idea by 22 year old graphic designer and student Julian Hansen. When things get a bit serious, ridiculously complicated infographics always lighten the mood. Face choices are based on the top 50 from http://www.100besteschriften.de/]]></description>
			<content:encoded><![CDATA[<p><a title="so you need a typeface?" href="http://pmlmedia.co.uk/wp-content/uploads/2010/05/infographiclarge_v2.png" target="_blank"><img src="http://julianhansen.com/files/din.png" alt="" /></a></p>
<p>A cracking idea by 22 year old graphic designer and student <a href="http://julianhansen.com/" target="_blank">Julian Hansen.</a> When things get a bit serious, ridiculously complicated infographics always lighten the mood.</p>
<p>Face choices are based on the top 50 from <a href="http://www.100besteschriften.de/">http://www.100besteschriften.de/</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save">Share/Save</a> </p>]]></content:encoded>
			<wfw:commentRss>http://pmlmedia.co.uk/2010/05/30/so-you-need-a-typeface/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a blur mask in Photoshop [Part 1]</title>
		<link>http://pmlmedia.co.uk/2010/05/05/create-a-blur-mask-in-photoshop-a-linear-gradient-blur-part-1/</link>
		<comments>http://pmlmedia.co.uk/2010/05/05/create-a-blur-mask-in-photoshop-a-linear-gradient-blur-part-1/#comments</comments>
		<pubDate>Wed, 05 May 2010 14:02:01 +0000</pubDate>
		<dc:creator>Peter Moore</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[blur mask]]></category>
		<category><![CDATA[depth of field]]></category>
		<category><![CDATA[focal length]]></category>
		<category><![CDATA[gradient blur]]></category>
		<category><![CDATA[lens blur]]></category>

		<guid isPermaLink="false">http://pmlmedia.co.uk/?p=364</guid>
		<description><![CDATA[Quick and dirty way of adding depth of field to an image is by creating a gradient blur.]]></description>
			<content:encoded><![CDATA[<p><a href="http://pmlmedia.co.uk/wp-content/uploads/2010/05/banner-wblur.jpg"><img title="banner-wblur" src="http://pmlmedia.co.uk/wp-content/uploads/2010/05/banner-wblur.jpg" alt="" width="600" height="204" /></a></p>
<p>Quick and dirty way of adding depth of field to an image is by creating a <strong>gradient blur effect </strong>using a blur mask, levels and the gradient tool&#8230;</p>
<p><strong><span id="more-364"></span></strong></p>
<p>1] Duplicate the image layer you want to add the blur to</p>
<p>2] Layer &gt; New Adjustment Layer &gt; Levels&#8230; to create a levels adjustment layer</p>
<p>3] Press &#8216;G&#8217; to select the gradient tool. Choose the Black to White gradient from the gradient select panel</p>
<p>4] Click with the Gradient Tool in the area you want to remain in focus and drag to where you want it to be out of focus. Use a shallow gradient for a more dramatic blur effect</p>
<p>5] Control click and hold on the layer mask thumbnail to load the gradient as a selection</p>
<p>6] Click the Background layer and select Filter &gt; Blur &gt; Lens Blur (not Gaussian)</p>
<p>7] Drag the slider to adjust the amount of blur and click OK</p>
<p>8]  Ctrl+D to deselect the area.</p>
<p>Finished effect should look like this&#8230;<br />
<!--more--><br />
<a href="http://pmlmedia.co.uk/wp-content/uploads/2010/05/banner-wblur.jpg"><img class="alignleft size-full wp-image-375" title="banner-wblur" src="http://pmlmedia.co.uk/wp-content/uploads/2010/05/banner-wblur.jpg" alt="" width="600" height="204" /></a></p>
<p>&#8230;from this original image&#8230;<br />
<a href="http://pmlmedia.co.uk/wp-content/uploads/2010/05/banner-noblur.jpg"><img class="alignleft size-full wp-image-374" title="banner-noblur" src="http://pmlmedia.co.uk/wp-content/uploads/2010/05/banner-noblur.jpg" alt="" width="600" height="204" /></a></p>
<p>If you want more realistic depth of field effect or perhaps to recreate extremely shallow focal depth on an area of your image (like with a macro lense) , then you should use the lens blur tool again and choose the reflect gradient type. Will post this, along with the reason why you should use lens blur rather than Gaussian in part 2 of this hint.</p>
]]></content:encoded>
			<wfw:commentRss>http://pmlmedia.co.uk/2010/05/05/create-a-blur-mask-in-photoshop-a-linear-gradient-blur-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PDF to Word Convertor</title>
		<link>http://pmlmedia.co.uk/2010/04/30/pdf-to-word-convertor/</link>
		<comments>http://pmlmedia.co.uk/2010/04/30/pdf-to-word-convertor/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 12:37:40 +0000</pubDate>
		<dc:creator>Peter Moore</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[convert pdf]]></category>
		<category><![CDATA[pdf to word]]></category>

		<guid isPermaLink="false">http://pmlmedia.co.uk/?p=356</guid>
		<description><![CDATA[Want to convert a password protected PDF to a word document? This great little app. does exactly what it says on the tin! It&#8217;s free to register at the moment&#8230; http://www.anypdftools.com/pdf-to-word.html]]></description>
			<content:encoded><![CDATA[<p><a href="http://pmlmedia.co.uk/wp-content/uploads/2010/04/Untitled.jpg"><img class="alignleft size-full wp-image-359" title="Untitled" src="http://pmlmedia.co.uk/wp-content/uploads/2010/04/Untitled.jpg" alt="" width="434" height="236" /></a></p>
<div style=clear:both;></div>
<p><span id="more-356"></span><br />
Want to convert a password protected PDF to a word document?<br />
This great little app. does exactly what it says on the tin!</p>
<p>It&#8217;s free to register at the moment&#8230;</p>
<p><a href="http://www.anypdftools.com/pdf-to-word.html">http://www.anypdftools.com/pdf-to-word.html</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save">Share/Save</a> </p>]]></content:encoded>
			<wfw:commentRss>http://pmlmedia.co.uk/2010/04/30/pdf-to-word-convertor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to force download a PDF file instead of view in the browser</title>
		<link>http://pmlmedia.co.uk/2010/04/05/how-to-force-download-a-pdf-instead-of-view-in-the-browser/</link>
		<comments>http://pmlmedia.co.uk/2010/04/05/how-to-force-download-a-pdf-instead-of-view-in-the-browser/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 20:46:56 +0000</pubDate>
		<dc:creator>Peter Moore</dc:creator>
				<category><![CDATA[Hints]]></category>
		<category><![CDATA[download pdf]]></category>
		<category><![CDATA[force download]]></category>
		<category><![CDATA[open save as]]></category>

		<guid isPermaLink="false">http://pmlmedia.co.uk/?p=347</guid>
		<description><![CDATA[ I found this snippet of code to force download a PDF instead of displaying it in the browser.]]></description>
			<content:encoded><![CDATA[<p>Been having problems with my work computer when viewing PDFs in the browser  - takes far too long to start up Adobe Reader on my machine. I found this snippet of code to force download the PDF instead.<br />
Upload the file you want to make available for download to your Web server. For example, huge_document.pdf<br />
Edit a new PHP file and name it the same as your file to be downloaded, only with the extension .php. For example: huge_document.php<br />
Your PHP file should look like this:</p>
<p>&lt;?php<br />
header(&#8216;Content-disposition: attachment; filename=huge_document.pdf&#8217;);<br />
header(&#8216;Content-type: application/pdf&#8217;);<br />
readfile(&#8216;huge_document.pdf&#8217;);<br />
?&gt;</p>
<p>Link to your PHP file as a download link. For example:</p>
<p>&lt;a href=&#8221;huge_document.php&#8221;&gt;Download my huge document (PDF)&lt;/a&gt;</p>
<p>To change the MIME type of the file you want to download, edit line 3</p>
<p>header(&#8216;Content-type: application/pdf&#8217;);</p>
]]></content:encoded>
			<wfw:commentRss>http://pmlmedia.co.uk/2010/04/05/how-to-force-download-a-pdf-instead-of-view-in-the-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Periodic Table of Typefaces</title>
		<link>http://pmlmedia.co.uk/2010/03/24/periodic-table-of-typefaces/</link>
		<comments>http://pmlmedia.co.uk/2010/03/24/periodic-table-of-typefaces/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 16:13:20 +0000</pubDate>
		<dc:creator>Peter Moore</dc:creator>
				<category><![CDATA[Typography]]></category>

		<guid isPermaLink="false">http://pmlmedia.co.uk/?p=343</guid>
		<description><![CDATA[http://www.squidspot.com/Periodic_Table_of_Typefaces/Periodic_Table_of_Typefaces_large.jpg Typefaces set out in a periodic table showing some of the more popular typefaces at the top. there&#8217;s also a periodic table of the internet, and a periodic table of visulisations but it&#8217;s getting a bit  silly now. Created by squidspot.com]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.squidspot.com/Periodic_Table_of_Typefaces/Periodic_Table_of_Typefaces_large.jpg">http://www.squidspot.com/Periodic_Table_of_Typefaces/Periodic_Table_of_Typefaces_large.jpg</a></p>
<p>Typefaces set out in a periodic table showing some of the more popular typefaces at the top. there&#8217;s also a <a title="Periodic table of the internets" href="http://www.wellingtongrey.net/miscellanea/archive/2007-06-23--periodic-table-of-the-internet.html">periodic table of the internet</a>, and a <a href="http://www.visual-literacy.org/periodic_table/periodic_table.html">periodic table of visulisations</a> but it&#8217;s getting a bit  silly now.</p>
<p><a href="http://pmlmedia.co.uk/wp-content/uploads/2010/03/periodic.jpg"><img class="alignleft size-full wp-image-344" title="periodic" src="http://pmlmedia.co.uk/wp-content/uploads/2010/03/periodic.jpg" alt="" width="300" height="200" /></a></p>
<p>Created by squidspot.com</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save">Share/Save</a> </p>]]></content:encoded>
			<wfw:commentRss>http://pmlmedia.co.uk/2010/03/24/periodic-table-of-typefaces/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a robots.txt file for your website</title>
		<link>http://pmlmedia.co.uk/2010/02/10/create-a-robots-txt-file-for-your-website/</link>
		<comments>http://pmlmedia.co.uk/2010/02/10/create-a-robots-txt-file-for-your-website/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 20:07:14 +0000</pubDate>
		<dc:creator>Peter Moore</dc:creator>
				<category><![CDATA[PPC & SEO]]></category>

		<guid isPermaLink="false">http://pmlmedia.co.uk/?p=335</guid>
		<description><![CDATA[After creating an xml sitemap, you'll need to create a robots.txt file to direct googlebot to your sitemap.]]></description>
			<content:encoded><![CDATA[<p>After you&#8217;ve created an xml sitemap, create a new text file in notepad and add the following to guide the google bot to your sitmap. this robots file also disallows the indexing of paths to the pdf and word docs on your site as well &#8211; this helps stop out of date links appearing in Google.</p>
<p>User-agent: *<br />
disallow: /*.pdf$</p>
<p>disallow: /*.DOC$</p>
<p>User-agent: Googlebot</p>
<p>disallow: /*.pdf$</p>
<p>disallow: /*.DOC$</p>
<p>SITEMAP:  http://www.domainname.co.uk/sitemap.xml</p>
]]></content:encoded>
			<wfw:commentRss>http://pmlmedia.co.uk/2010/02/10/create-a-robots-txt-file-for-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a knockout gradient layer in Photoshop CS3</title>
		<link>http://pmlmedia.co.uk/2010/02/03/create-a-knockout-gradient-layer-in-photoshop-cs3/</link>
		<comments>http://pmlmedia.co.uk/2010/02/03/create-a-knockout-gradient-layer-in-photoshop-cs3/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 23:36:50 +0000</pubDate>
		<dc:creator>Peter Moore</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[advanced blending]]></category>
		<category><![CDATA[fade to transparency effect]]></category>
		<category><![CDATA[gradient blend]]></category>
		<category><![CDATA[knockout gradient]]></category>
		<category><![CDATA[transparent gradient]]></category>

		<guid isPermaLink="false">http://pmlmedia.co.uk/?p=327</guid>
		<description><![CDATA[You might want to create a fade to transparency effect on one part of your image like this&#8230;. Easiest way to do this is to use the Advanced Blending options on a layer placed directly above the image you want to knock-out. 1/ Place you image on a new layer  or double click on the]]></description>
			<content:encoded><![CDATA[<p>You might want to create a fade to transparency effect on one part of your image like this&#8230;.</p>
<p><a href="http://pmlmedia.co.uk/wp-content/uploads/2010/02/knockout.jpg"><img class="alignleft size-full wp-image-328" title="knockout" src="http://pmlmedia.co.uk/wp-content/uploads/2010/02/knockout.jpg" alt="" width="498" height="363" /></a>Easiest way to do this is to use the Advanced Blending options on a layer placed directly above the image you want to knock-out.</p>
<p>1/ Place you image on a new layer  or double click on the background layer to turn it into a proper layer</p>
<p>2/ Insert a new blank layer above your image  -(you can just click the &#8216;create a new layer&#8217; icon next to the dustbin at the foot of the layers pallet) and rename it &#8216;knock out gradient&#8217;.  keep the knockout gradient layer selected</p>
<p>3/  Select the gradient tool, if necessary click the linear gradient button and select the default foreground and background colours(to set foreground to black and background to white)</p>
<p>4/ Click the arrow to the right of the gradient display in the options bar to open the gradient picker, then choose the &#8216;foreground to transparent&#8217; gradient  (by default, this is usually the second gradient in  the gradient pallet)</p>
<p>5/ Click, shift and drag from the bottom of the image to the mid point, to create a gradient to go from black at the bottom of the image to transparent at the top.</p>
<p>6/ In the layers pallet, click Layers style &#8216;Fx&#8217; option and choose blending options (double clicking the layer also brings up the layer style options)</p>
<p>7/ In the advanced blending panel, drag the &#8216;fill opacity&#8217; slider to zero percent. Change the knockout drop down from &#8216;none&#8217; to &#8216;deep&#8217;. (note: &#8216;deep&#8217; knocks out to the background,  choose &#8216;shallow&#8217; to knock out just the layer below</p>
<p>8/ click OK to apply the blending options</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save">Share/Save</a> </p>]]></content:encoded>
			<wfw:commentRss>http://pmlmedia.co.uk/2010/02/03/create-a-knockout-gradient-layer-in-photoshop-cs3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
