<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: The FindURL class (v1.0)</title>
	<atom:link href="http://www.burnedouthippy.com/2009/07/the-findurl-class-v1-0/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.burnedouthippy.com/2009/07/the-findurl-class-v1-0/</link>
	<description>~ Hugging Flash into submission ~</description>
	<lastBuildDate>Sat, 14 Jan 2012 15:51:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: mars</title>
		<link>http://www.burnedouthippy.com/2009/07/the-findurl-class-v1-0/comment-page-1/#comment-381</link>
		<dc:creator>mars</dc:creator>
		<pubDate>Mon, 04 Oct 2010 13:06:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.burnedouthippy.com/?p=12#comment-381</guid>
		<description>awesome!</description>
		<content:encoded><![CDATA[<p>awesome!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Hippy</title>
		<link>http://www.burnedouthippy.com/2009/07/the-findurl-class-v1-0/comment-page-1/#comment-380</link>
		<dc:creator>The Hippy</dc:creator>
		<pubDate>Mon, 04 Oct 2010 11:06:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.burnedouthippy.com/?p=12#comment-380</guid>
		<description>I&#039;ve replaced the class with a new version - &lt;a href=&quot;http://www.burnedouthippy.com/2010/10/the-findurl-class-v1-2/&quot; rel=&quot;nofollow&quot;&gt;http://www.burnedouthippy.com/2010/10/the-findurl-class-v1-2&lt;/a&gt;/ - this should make things easier for you in the future.

Cheers for the continued interest.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve replaced the class with a new version &#8211; <a href="http://www.burnedouthippy.com/2010/10/the-findurl-class-v1-2/" rel="nofollow">http://www.burnedouthippy.com/2010/10/the-findurl-class-v1-2</a>/ &#8211; this should make things easier for you in the future.</p>
<p>Cheers for the continued interest.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mars</title>
		<link>http://www.burnedouthippy.com/2009/07/the-findurl-class-v1-0/comment-page-1/#comment-379</link>
		<dc:creator>mars</dc:creator>
		<pubDate>Mon, 04 Oct 2010 10:03:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.burnedouthippy.com/?p=12#comment-379</guid>
		<description>thats not what i replaced it with! i guess one of the website&#039;s scripts kinda ripped what i originally posted.</description>
		<content:encoded><![CDATA[<p>thats not what i replaced it with! i guess one of the website&#8217;s scripts kinda ripped what i originally posted.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mars</title>
		<link>http://www.burnedouthippy.com/2009/07/the-findurl-class-v1-0/comment-page-1/#comment-378</link>
		<dc:creator>mars</dc:creator>
		<pubDate>Mon, 04 Oct 2010 09:58:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.burnedouthippy.com/?p=12#comment-378</guid>
		<description>Yes Thanks, I was just working on it, and i found that solution too!
I was just posting you this message when i got ur answer in.

I replaced line 27 of ur findURL class with this;

_wholeThing = textToProcess.replace(regExp1 , &#039; &lt;a href=&quot;$2&quot; rel=&quot;nofollow&quot;&gt;$2&lt;/a&gt;&#039;);

it works perfectly!
Thanks for ur support!

Hippy, your the best!</description>
		<content:encoded><![CDATA[<p>Yes Thanks, I was just working on it, and i found that solution too!<br />
I was just posting you this message when i got ur answer in.</p>
<p>I replaced line 27 of ur findURL class with this;</p>
<p>_wholeThing = textToProcess.replace(regExp1 , &#8216; <a href="$2" rel="nofollow">$2</a>&#8216;);</p>
<p>it works perfectly!<br />
Thanks for ur support!</p>
<p>Hippy, your the best!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Hippy</title>
		<link>http://www.burnedouthippy.com/2009/07/the-findurl-class-v1-0/comment-page-1/#comment-377</link>
		<dc:creator>The Hippy</dc:creator>
		<pubDate>Mon, 04 Oct 2010 09:49:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.burnedouthippy.com/?p=12#comment-377</guid>
		<description>Ok dude, forget everything I said about getURL - I simply didn&#039;t have a chance to look at my class properly (I go through very busy periods). Basically all FindURL is doing is returning a HTML tagged version of a string. So it looks for what could be a link in a text string and then adds HTML a tags.

So to make it open in a new browser you need to find the href part of the regex statement and add a target _blank. Open the FindURL class in an editor and look for:

href=&#039;$2&#039;

replace it with:

href=&#039;$2&#039; target=&#039;_blank&#039;

and that should work the way you want it to. If I get around to it I&#039;ll add a setting to the FindURL class so you can choose your target from the outset...but until then this should be a quick fix.  Hope that helps!!</description>
		<content:encoded><![CDATA[<p>Ok dude, forget everything I said about getURL &#8211; I simply didn&#8217;t have a chance to look at my class properly (I go through very busy periods). Basically all FindURL is doing is returning a HTML tagged version of a string. So it looks for what could be a link in a text string and then adds HTML a tags.</p>
<p>So to make it open in a new browser you need to find the href part of the regex statement and add a target _blank. Open the FindURL class in an editor and look for:</p>
<p>href=&#8217;$2&#8242;</p>
<p>replace it with:</p>
<p>href=&#8217;$2&#8242; target=&#8217;_blank&#8217;</p>
<p>and that should work the way you want it to. If I get around to it I&#8217;ll add a setting to the FindURL class so you can choose your target from the outset&#8230;but until then this should be a quick fix.  Hope that helps!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mars</title>
		<link>http://www.burnedouthippy.com/2009/07/the-findurl-class-v1-0/comment-page-1/#comment-368</link>
		<dc:creator>mars</dc:creator>
		<pubDate>Thu, 30 Sep 2010 14:34:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.burnedouthippy.com/?p=12#comment-368</guid>
		<description>Hey Hippy,

You are saying i should use your getURL() class to get the links to open in a new window. I have no clue how to combine them. 

Could you help me out?

thanks,

Mars</description>
		<content:encoded><![CDATA[<p>Hey Hippy,</p>
<p>You are saying i should use your getURL() class to get the links to open in a new window. I have no clue how to combine them. </p>
<p>Could you help me out?</p>
<p>thanks,</p>
<p>Mars</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mars</title>
		<link>http://www.burnedouthippy.com/2009/07/the-findurl-class-v1-0/comment-page-1/#comment-367</link>
		<dc:creator>mars</dc:creator>
		<pubDate>Thu, 30 Sep 2010 13:53:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.burnedouthippy.com/?p=12#comment-367</guid>
		<description>see u just answered my/our question. Thanks! you&#039;re the bomb!</description>
		<content:encoded><![CDATA[<p>see u just answered my/our question. Thanks! you&#8217;re the bomb!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mars</title>
		<link>http://www.burnedouthippy.com/2009/07/the-findurl-class-v1-0/comment-page-1/#comment-366</link>
		<dc:creator>mars</dc:creator>
		<pubDate>Thu, 30 Sep 2010 13:51:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.burnedouthippy.com/?p=12#comment-366</guid>
		<description>Hey, just what i needed! thanks! great class. works great! Just one question, is it possible to make the links open in a blnk window instead of itself?

Oh, im not the only one with this question. Hope to hear from u soon.

thanks,

Mars</description>
		<content:encoded><![CDATA[<p>Hey, just what i needed! thanks! great class. works great! Just one question, is it possible to make the links open in a blnk window instead of itself?</p>
<p>Oh, im not the only one with this question. Hope to hear from u soon.</p>
<p>thanks,</p>
<p>Mars</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mars</title>
		<link>http://www.burnedouthippy.com/2009/07/the-findurl-class-v1-0/comment-page-1/#comment-365</link>
		<dc:creator>mars</dc:creator>
		<pubDate>Thu, 30 Sep 2010 13:50:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.burnedouthippy.com/?p=12#comment-365</guid>
		<description>Hey, just what i needed! thanks! great class. works great! Just one question, is it possible to make the links open in a blank window instead of itself?

Oh, im not the only one with this question. Hope to hear from u soon.

thanks,

Mars</description>
		<content:encoded><![CDATA[<p>Hey, just what i needed! thanks! great class. works great! Just one question, is it possible to make the links open in a blank window instead of itself?</p>
<p>Oh, im not the only one with this question. Hope to hear from u soon.</p>
<p>thanks,</p>
<p>Mars</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Hippy</title>
		<link>http://www.burnedouthippy.com/2009/07/the-findurl-class-v1-0/comment-page-1/#comment-364</link>
		<dc:creator>The Hippy</dc:creator>
		<pubDate>Thu, 30 Sep 2010 13:21:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.burnedouthippy.com/?p=12#comment-364</guid>
		<description>Hey bf (I&#039;m presuming you&#039;re also Ben?), I never delete questions or comments unless they are spam...but occasionally I don&#039;t check in on my blog and questions get missed from the approval process. 

In answer to the Ben question, try using my &lt;a href=&quot;http://www.burnedouthippy.com/2010/02/actionscript-3-geturl-class/&quot; rel=&quot;nofollow&quot;&gt;getURL() class&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Hey bf (I&#8217;m presuming you&#8217;re also Ben?), I never delete questions or comments unless they are spam&#8230;but occasionally I don&#8217;t check in on my blog and questions get missed from the approval process. </p>
<p>In answer to the Ben question, try using my <a href="http://www.burnedouthippy.com/2010/02/actionscript-3-geturl-class/" rel="nofollow">getURL() class</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

