<?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>The Burned Out Hippy &#187; processor</title>
	<atom:link href="http://www.burnedouthippy.com/tag/processor/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.burnedouthippy.com</link>
	<description>~ Hugging Flash into submission ~</description>
	<lastBuildDate>Mon, 07 Nov 2011 09:42:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Converting characters into a URL friendly format</title>
		<link>http://www.burnedouthippy.com/2010/11/converting-characters-into-a-url-friendly-format/</link>
		<comments>http://www.burnedouthippy.com/2010/11/converting-characters-into-a-url-friendly-format/#comments</comments>
		<pubDate>Fri, 05 Nov 2010 15:13:18 +0000</pubDate>
		<dc:creator>The Hippy</dc:creator>
				<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Useful code bits]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[processor]]></category>

		<guid isPermaLink="false">http://www.burnedouthippy.com/?p=366</guid>
		<description><![CDATA[There is a handy command in Actionscript that I&#8217;d previously never encountered until this week: escape() If you&#8217;re receiving a text input and needing to send it out to a URL, for example in a search box, you need to convert any special characters into character codes before you request the URL. For example, a [...]]]></description>
			<content:encoded><![CDATA[<p>There is a handy command in Actionscript that I&#8217;d previously never encountered until this week:</p>
<p><code>escape()</code></p>
<p>If you&#8217;re receiving a text input and needing to send it out to a URL, for example in a search box, you need to convert any special characters into character codes before you request the URL. For example, a space should be sent as %20.</p>
<p>The escape() command allows you to do this with one command rather than having to search through character by character and reference it to a character codes array.</p>
<p><span id="more-366"></span>Here&#8217;s a simple function that utilises it:</p>
<p><code>public function processSearchTerm(s:String):void<br />
{<br />
var URLString:String = escape(s);<br />
_rModel.searchTerm = URLString;<br />
}</code></p>
<p>Calling this function, eg:</p>
<p><code>var oldString:String = "a test string";<br />
var newString:String = processSearchTerm(testString);<br />
trace(newString);</code></p>
<p>Should return:</p>
<p><code>a%20test%20string</code></p>
<p>Hopefully if you weren&#8217;t aware of it already, it will save you as much time as it did me!</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/share?url=http://www.burnedouthippy.com/2010/11/converting-characters-into-a-url-friendly-format/&text=Converting+characters+into+a+URL+friendly+format&via=burnedouthippy" title="Post to Twitter"><img class="nothumb" src="http://www.burnedouthippy.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://www.burnedouthippy.com/2010/11/converting-characters-into-a-url-friendly-format/&amp;t=Converting+characters+into+a+URL+friendly+format" title="Post to Facebook"><img class="nothumb" src="http://www.burnedouthippy.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook-micro3.png" alt="Post to Facebook" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://stumbleupon.com/submit?url=http://www.burnedouthippy.com/2010/11/converting-characters-into-a-url-friendly-format/&amp;title=Converting+characters+into+a+URL+friendly+format" title="Post to StumbleUpon"><img class="nothumb" src="http://www.burnedouthippy.com/wp-content/plugins/tweet-this/icons/en/su/tt-su-micro3.png" alt="Post to StumbleUpon" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://digg.com/submit?url=http://www.burnedouthippy.com/2010/11/converting-characters-into-a-url-friendly-format/&amp;title=Converting+characters+into+a+URL+friendly+format" title="Post to Digg"><img class="nothumb" src="http://www.burnedouthippy.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg-micro3.png" alt="Post to Digg" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.burnedouthippy.com/2010/11/converting-characters-into-a-url-friendly-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The FindURL() Class (v1.2)</title>
		<link>http://www.burnedouthippy.com/2010/10/the-findurl-class-v1-2/</link>
		<comments>http://www.burnedouthippy.com/2010/10/the-findurl-class-v1-2/#comments</comments>
		<pubDate>Mon, 04 Oct 2010 10:56:52 +0000</pubDate>
		<dc:creator>The Hippy</dc:creator>
				<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Classes]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[processor]]></category>

		<guid isPermaLink="false">http://www.burnedouthippy.com/?p=328</guid>
		<description><![CDATA[I&#8217;ve updated the FindURL class because a couple of people were asking for the ability to target a new browser window. The class can be completely overwritten and shouldn&#8217;t affect any old code that you may have produced&#8230;it targets the same window as default. However if you want to target a new browser window you [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve updated the <a href="www.burnedouthippy.com/downloads/findURL/FindURL.zip" target="_blank">FindURL class</a> because a couple of people were asking for the ability to target a new browser window. The class can be completely overwritten and shouldn&#8217;t affect any old code that you may have produced&#8230;it targets the same window as default.</p>
<p>However if you want to target a new browser window you can now do so by adding an additional parameter&#8230;&#8221;_blank&#8221;. See the example below:</p>
<p><code>var input:String = "blah blah blah http://www.burnedouthippy.com blah blah blah";<br />
var fU:FindURL = new FindURL(input, "_blank");<br />
var output:String = fU.Process();</code></p>
<p>If you run a trace on output, you&#8217;ll see that the new string has HTML a tags inside it and it also now targets a new browser. You can change &#8220;_blank&#8221; for any other HTML target and it should work just fine&#8230;alternatively, completely leave out the second parameter and it will automatically target &#8220;_self&#8221;.</p>
<p><a href="www.burnedouthippy.com/downloads/findURL/FindURL.zip">Download the FindURL v1.2</a></p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/share?url=http://www.burnedouthippy.com/2010/10/the-findurl-class-v1-2/&text=The+FindURL%28%29+Class+%28v1.2%29&via=burnedouthippy" title="Post to Twitter"><img class="nothumb" src="http://www.burnedouthippy.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://www.burnedouthippy.com/2010/10/the-findurl-class-v1-2/&amp;t=The+FindURL%28%29+Class+%28v1.2%29" title="Post to Facebook"><img class="nothumb" src="http://www.burnedouthippy.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook-micro3.png" alt="Post to Facebook" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://stumbleupon.com/submit?url=http://www.burnedouthippy.com/2010/10/the-findurl-class-v1-2/&amp;title=The+FindURL%28%29+Class+%28v1.2%29" title="Post to StumbleUpon"><img class="nothumb" src="http://www.burnedouthippy.com/wp-content/plugins/tweet-this/icons/en/su/tt-su-micro3.png" alt="Post to StumbleUpon" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://digg.com/submit?url=http://www.burnedouthippy.com/2010/10/the-findurl-class-v1-2/&amp;title=The+FindURL%28%29+Class+%28v1.2%29" title="Post to Digg"><img class="nothumb" src="http://www.burnedouthippy.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg-micro3.png" alt="Post to Digg" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.burnedouthippy.com/2010/10/the-findurl-class-v1-2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>The CSSLoader Class (v1.0)</title>
		<link>http://www.burnedouthippy.com/2009/08/the-cssloader-class-v1-0/</link>
		<comments>http://www.burnedouthippy.com/2009/08/the-cssloader-class-v1-0/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 17:15:48 +0000</pubDate>
		<dc:creator>The Hippy</dc:creator>
				<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Classes]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[loader]]></category>
		<category><![CDATA[processor]]></category>
		<category><![CDATA[stylesheet]]></category>

		<guid isPermaLink="false">http://www.burnedouthippy.com/?p=37</guid>
		<description><![CDATA[AS3 is a wonderful thing, but it can be really long-winded sometimes when you&#8217;re trying to achieve something simple &#8211; the perfect example being the replacement of AS2&#8242;s getURL() class with a series of listeners. I know why it has been set up this way, I understand why it&#8217;s better that everything follows a uniform [...]]]></description>
			<content:encoded><![CDATA[<p>AS3 is a wonderful thing, but it can be really long-winded sometimes when you&#8217;re trying to achieve something simple &#8211; the perfect example being the replacement of AS2&#8242;s getURL() class with a series of listeners. I know why it has been set up this way, I understand why it&#8217;s better that everything follows a uniform methodology and I do wholeheartedly agree with it, but there is no getting around the fact that you can get bogged down writing the same long-winded code over and over again.  Frankly, it can be a pain in the ass and can sap the fun out of simple tasks.</p>
<p>Sometimes I get around these chunks of code using snippets (see <a href="http://www.gotoandlearn.com/play?id=94" target="_blank">Lee Brimelow&#8217;s tutorial on how to set up snippets in Flex Builder</a>), but sometimes the code is crying out for a simple class to be made &#8211; in my opinion, loading external stylesheets is one of these times.</p>
<p><span id="more-37"></span></p>
<p>If you google &#8220;actionscript 3 external stylesheets&#8221; you are very likely to come across <a href="http://www.adobe.com/livedocs/flash/9.0/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&#038;file=00000232.html" target="_blank">this explanation</a> by Adobe. </p>
<p>Now don&#8217;t get me wrong, after studying it for a couple of minutes you&#8217;ll see that the code is pretty straightforward. Firstly it sets up a textfield, then an external file loader. Then it uses the file loader to load the stylesheet and when the stylesheet has been successfully loaded it applies the stylesheet to the textfield and adds the appropriate HTML text. Fine. Long-winded, but fine.</p>
<p>But this is exactly the kind of situation that frustrates me. If I wanted to load several stylesheets for several different textfields, I&#8217;d be backed up in a pile of repeating code setting up loaders and success/error functions. It makes much more sense to me to have a CSSLoader class that I can simply send the instance name of the textfield, the text that I want to put into the textfield and the name/path of the stylesheet file &#8211; and then let the class set up a loader and check that the file has loaded correctly. As I currently can&#8217;t think of a situation where this wouldn&#8217;t apply, that is exactly what I&#8217;ve done.</p>
<p><a href="http://www.burnedouthippy.com/downloads/CSSLoader/CSSLoader.zip" target="_blank">You can find the class here.</a><br />
<a href="http://www.burnedouthippy.com/downloads/CSSLoader/CSSLoader_example_files.zip" target="_blank">You can find example files here.</a></p>
<p>Now all you have to do is create a textfield and then type something similar to the following:</p>
<p><code>var cssLoader:CSSLoader = new CSSLoader(tfield, someText, "example.css");</code></p>
<p>Isn&#8217;t that easier? In this case, &#8220;tfield&#8221; is the instance name of the textfield, &#8220;someText&#8221; is a String containing the HTML text you want to format (eg taken from an XML node) and &#8220;example.css&#8221; is the name/path of the external stylesheet. The class does the rest for you &#8211; it takes the text, throws it into the textfield and styles it.  Much easier I&#8217;m sure you&#8217;ll agree and a lot less confusing when it comes to dealing with large numbers of textfields.</p>
<p>Please remember to set the textfield property &#8220;Multiline&#8221; to &#8220;true&#8221;, or else your HTML paragraph tags won&#8217;t work. Check out my <a href="http://www.burnedouthippy.com/downloads/CSSLoader/CSSLoader_eample_files.zip" target="_blank">basic example</a> to see that in action.</p>
<p>If you can think of any situation where this class may need extending, please let me know. I am open to friendly suggestion of expanding its usefulness. </p>
<p>However if you&#8217;re a hardcore developer and don&#8217;t agree with me simplifying something that is essentially pretty simple to start with &#8211; I apologise if I have offended your sensibility, but this works better for me. Please don&#8217;t spam me, I won&#8217;t reply. I&#8217;m here to help like-minded designer/developers, not to get into an argument. Cheers! <img src='http://www.burnedouthippy.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/share?url=http://www.burnedouthippy.com/2009/08/the-cssloader-class-v1-0/&text=The+CSSLoader+Class+%28v1.0%29&via=burnedouthippy" title="Post to Twitter"><img class="nothumb" src="http://www.burnedouthippy.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://www.burnedouthippy.com/2009/08/the-cssloader-class-v1-0/&amp;t=The+CSSLoader+Class+%28v1.0%29" title="Post to Facebook"><img class="nothumb" src="http://www.burnedouthippy.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook-micro3.png" alt="Post to Facebook" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://stumbleupon.com/submit?url=http://www.burnedouthippy.com/2009/08/the-cssloader-class-v1-0/&amp;title=The+CSSLoader+Class+%28v1.0%29" title="Post to StumbleUpon"><img class="nothumb" src="http://www.burnedouthippy.com/wp-content/plugins/tweet-this/icons/en/su/tt-su-micro3.png" alt="Post to StumbleUpon" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://digg.com/submit?url=http://www.burnedouthippy.com/2009/08/the-cssloader-class-v1-0/&amp;title=The+CSSLoader+Class+%28v1.0%29" title="Post to Digg"><img class="nothumb" src="http://www.burnedouthippy.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg-micro3.png" alt="Post to Digg" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.burnedouthippy.com/2009/08/the-cssloader-class-v1-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updated: FindURL (v1.1)</title>
		<link>http://www.burnedouthippy.com/2009/08/updated-findurl-v1-1/</link>
		<comments>http://www.burnedouthippy.com/2009/08/updated-findurl-v1-1/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 19:20:08 +0000</pubDate>
		<dc:creator>The Hippy</dc:creator>
				<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Classes]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[processor]]></category>

		<guid isPermaLink="false">http://www.burnedouthippy.com/?p=33</guid>
		<description><![CDATA[The FindURL class has been updated and the new version can be found here. This new version corrects a rather embarrassing issue &#8211; the class was returning no text at all if no URL was present in the text. I was so wrapped up with trying to get it to look for URLs in a [...]]]></description>
			<content:encoded><![CDATA[<p>The FindURL class has been updated and <a href="http://www.burnedouthippy.com/downloads/findURL/FindURL.zip" target="_blank">the new version can be found here</a>.</p>
<p>This new version corrects a rather embarrassing issue &#8211; the class was returning no text at all if no URL was present in the text. I was so wrapped up with trying to get it to look for URLs in a text block, it didn&#8217;t cross my mind to test it without any at all! Problem solved now though, simply overwrite the previous version and everything should work as before.</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/share?url=http://www.burnedouthippy.com/2009/08/updated-findurl-v1-1/&text=Updated%3A+FindURL+%28v1.1%29&via=burnedouthippy" title="Post to Twitter"><img class="nothumb" src="http://www.burnedouthippy.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://www.burnedouthippy.com/2009/08/updated-findurl-v1-1/&amp;t=Updated%3A+FindURL+%28v1.1%29" title="Post to Facebook"><img class="nothumb" src="http://www.burnedouthippy.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook-micro3.png" alt="Post to Facebook" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://stumbleupon.com/submit?url=http://www.burnedouthippy.com/2009/08/updated-findurl-v1-1/&amp;title=Updated%3A+FindURL+%28v1.1%29" title="Post to StumbleUpon"><img class="nothumb" src="http://www.burnedouthippy.com/wp-content/plugins/tweet-this/icons/en/su/tt-su-micro3.png" alt="Post to StumbleUpon" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://digg.com/submit?url=http://www.burnedouthippy.com/2009/08/updated-findurl-v1-1/&amp;title=Updated%3A+FindURL+%28v1.1%29" title="Post to Digg"><img class="nothumb" src="http://www.burnedouthippy.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg-micro3.png" alt="Post to Digg" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.burnedouthippy.com/2009/08/updated-findurl-v1-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The FindURL class (v1.0)</title>
		<link>http://www.burnedouthippy.com/2009/07/the-findurl-class-v1-0/</link>
		<comments>http://www.burnedouthippy.com/2009/07/the-findurl-class-v1-0/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 18:13:37 +0000</pubDate>
		<dc:creator>The Hippy</dc:creator>
				<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Classes]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[processor]]></category>

		<guid isPermaLink="false">http://www.burnedouthippy.com/?p=12</guid>
		<description><![CDATA[Please note: This class has been updated. Please click here to see the latest changes. Whilst I was playing around with the Twitter API I was beginning to get wound up by the fact that the XML feed from Twitter only sends out text versions of tweets and not HTML versions. For example, lets say [...]]]></description>
			<content:encoded><![CDATA[<p>Please note: This class has been updated. <a href="http://www.burnedouthippy.com/2010/10/the-findurl-class-v1-2/">Please click here to see the latest changes</a>.</p>
<p>Whilst I was playing around with the Twitter API I was beginning to get wound up by the fact that the XML feed from Twitter only sends out text versions of tweets and not HTML versions. For example, lets say a tweet says &#8220;Check out this cool link: http://www.plagro.com&#8221;, the xml feed from twitter would send out:</p>
<p><code >Check out this cool link: http://www.plagro.com"</code></p>
<p>as oppose to the html version containing the &#8220;a&#8221; link tag:</p>
<p><code >Check out this cool link: &lt;a href="http://www.plagro.com"&gt;http://www.plagro.com&lt;/a&gt;</code></p>
<p>So after trawling the forums looking for alternative feeds and/or HTML convertors, I came to the conclusion that it would be easier to write a small class that simply finds links within blocks of text and adds in the html tags so it can be displayed as HTML text.  The result is the FindURL class.</p>
<p><span id="more-12"></span></p>
<p>You can find the <a href="http://www.burnedouthippy.com/downloads/findURL/FindURL.zip" target="_blank">FindURL class here</a> and <a href="http://www.burnedouthippy.com/downloads/findURL/FindURL_example_files.zip" target="_blank">example files here</a>.</p>
<p>
<object width="400" height="250">
<param name="movie" value="http://www.burnedouthippy.com/downloads/findURL/FindURL.swf"></param>
<param name="quality" value="high"></param>
<param name="wmode" value="window"></param>
<param name="menu" value="false"></param>
<param name="bgcolor" value="#FFFFFF"></param>
<param name="allowScriptAccess" value="always"></param>
<embed type="application/x-shockwave-flash" width="400" height="250" src="http://www.burnedouthippy.com/downloads/findURL/FindURL.swf" quality="high" bgcolor="#FFFFFF" wmode="window" menu="false" ></embed>
</object>
</p>
<p>Using the FindURL class is very simple. Firstly unzip it into the place where you store all of your actionscript classes and then use the following two lines of AS code whenever it&#8217;s needed. Feed it the text you want converting and then receive the String it returns.</p>
<p><code>//create a new FindURL and send it the text to process<br />
var linkFinder:FindURL = new FindURL(testString);<br />
//return the new processed text<br />
var newString:String = linkFinder.Process();</code></p>
<p>Finally, please note that I found the Regular Expression used in my FindURL class online. It IS borrowed, it may not be perfect and I can&#8217;t offer you any support on it. I will also happily credit the line&#8217;s author when I eventually work out who that is &#8211; but that particular piece of code has been used seemingly dozens of times by different developers so the author is still ambiguous.</p>
<p>Hope it&#8217;s of use to you! Let me know how you get on and if there&#8217;s any way you&#8217;d like to see it expanded &#8211; I&#8217;m always open to suggestion.</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/share?url=http://www.burnedouthippy.com/2009/07/the-findurl-class-v1-0/&text=The+FindURL+class+%28v1.0%29&via=burnedouthippy" title="Post to Twitter"><img class="nothumb" src="http://www.burnedouthippy.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://www.facebook.com/share.php?u=http://www.burnedouthippy.com/2009/07/the-findurl-class-v1-0/&amp;t=The+FindURL+class+%28v1.0%29" title="Post to Facebook"><img class="nothumb" src="http://www.burnedouthippy.com/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook-micro3.png" alt="Post to Facebook" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://stumbleupon.com/submit?url=http://www.burnedouthippy.com/2009/07/the-findurl-class-v1-0/&amp;title=The+FindURL+class+%28v1.0%29" title="Post to StumbleUpon"><img class="nothumb" src="http://www.burnedouthippy.com/wp-content/plugins/tweet-this/icons/en/su/tt-su-micro3.png" alt="Post to StumbleUpon" /></a> <a target="_blank" rel="nofollow" class="tt" href="http://digg.com/submit?url=http://www.burnedouthippy.com/2009/07/the-findurl-class-v1-0/&amp;title=The+FindURL+class+%28v1.0%29" title="Post to Digg"><img class="nothumb" src="http://www.burnedouthippy.com/wp-content/plugins/tweet-this/icons/en/digg/tt-digg-micro3.png" alt="Post to Digg" /></a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.burnedouthippy.com/2009/07/the-findurl-class-v1-0/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
	</channel>
</rss>

