<?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>FLASHNUTZ</title>
	<atom:link href="http://www.flashnutz.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flashnutz.com</link>
	<description>HELPING WEB DEVELOPERS DEVELOP</description>
	<lastBuildDate>Tue, 13 Jul 2010 05:02:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Dear readers… WTF! do you want from me?</title>
		<link>http://www.flashnutz.com/2010/07/dear-readers-wtf-do-you-want-from-me-2/</link>
		<comments>http://www.flashnutz.com/2010/07/dear-readers-wtf-do-you-want-from-me-2/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 04:13:42 +0000</pubDate>
		<dc:creator>Flashnutz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[personalise]]></category>

		<guid isPermaLink="false">http://www.flashnutz.com/2010/07/dear-readers-wtf-do-you-want-from-me-2/</guid>
		<description><![CDATA[I noticed that alot of readers are registering to this blog and don't know why. I don't send/offer any newsletters and there aren't any member only pages. Are you registering because you expect something? I'm wanting to become more involved with my readers and want to start by asking you all what you would like [...]]]></description>
		<wfw:commentRss>http://www.flashnutz.com/2010/07/dear-readers-wtf-do-you-want-from-me-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Find links within text and convert to active links with PHP</title>
		<link>http://www.flashnutz.com/2010/07/find-links-within-text-and-convert-to-active-links-with-php/</link>
		<comments>http://www.flashnutz.com/2010/07/find-links-within-text-and-convert-to-active-links-with-php/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 02:36:31 +0000</pubDate>
		<dc:creator>Flashnutz</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[eregi_replace]]></category>
		<category><![CDATA[text URL to HTML URL]]></category>

		<guid isPermaLink="false">http://www.flashnutz.com/2010/07/find-links-within-text-and-convert-to-active-links-with-php/</guid>
		<description><![CDATA[Recently I have had to integrate some tweets into a clients website via RSS. The problem I found is that the links are hidden in the description and are not active. The solution is as simple as using 3 regular expressions and replace the text URL with a HTML URL using PHPs eregi_replace function. &#160; [...]]]></description>
		<wfw:commentRss>http://www.flashnutz.com/2010/07/find-links-within-text-and-convert-to-active-links-with-php/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Using none web standard fonts with Google Font API</title>
		<link>http://www.flashnutz.com/2010/05/using-none-web-standard-fonts-with-google-font-api/</link>
		<comments>http://www.flashnutz.com/2010/05/using-none-web-standard-fonts-with-google-font-api/#comments</comments>
		<pubDate>Fri, 21 May 2010 04:27:48 +0000</pubDate>
		<dc:creator>Flashnutz</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[embed fonts]]></category>
		<category><![CDATA[embedding fonts]]></category>
		<category><![CDATA[Google Font API]]></category>
		<category><![CDATA[Google Font Directory]]></category>
		<category><![CDATA[web fonts]]></category>

		<guid isPermaLink="false">http://www.flashnutz.com/2010/05/using-none-web-standard-fonts-with-google-font-api/</guid>
		<description><![CDATA[Google has launched Google Font API and Google Font Directory Beta. A developer will be able to link and use a range of fonts legally without the need of them being installed on your machine or web directory, through a single line of code. The Google Font Directory currently has 18 licensed fonts available like [...]]]></description>
		<wfw:commentRss>http://www.flashnutz.com/2010/05/using-none-web-standard-fonts-with-google-font-api/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>List files in a directory using php</title>
		<link>http://www.flashnutz.com/2009/09/working-with-opendir-in-php/</link>
		<comments>http://www.flashnutz.com/2009/09/working-with-opendir-in-php/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 03:20:48 +0000</pubDate>
		<dc:creator>Flashnutz</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[document_root]]></category>
		<category><![CDATA[list files in a directory]]></category>
		<category><![CDATA[opendir]]></category>
		<category><![CDATA[phpinfo]]></category>
		<category><![CDATA[readdir]]></category>

		<guid isPermaLink="false">http://www.flashnutz.com/2009/09/working-with-opendir-in-php/</guid>
		<description><![CDATA[To display a list of files within a directory using PHP you need to use opendir() and readdir(). Below is a function that will return the list of files and remove the . and .. from the listing. &#160; //full path of directory $dir = &#34;/var/www/images/&#34;; &#160; function listFiles&#40;$dir&#41;&#123; &#160; //open directory and read its [...]]]></description>
		<wfw:commentRss>http://www.flashnutz.com/2009/09/working-with-opendir-in-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dynamic variable names in PHP</title>
		<link>http://www.flashnutz.com/2009/08/dynamic-variable-names-in-php/</link>
		<comments>http://www.flashnutz.com/2009/08/dynamic-variable-names-in-php/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 02:09:24 +0000</pubDate>
		<dc:creator>Flashnutz</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[dynamic variable in php]]></category>
		<category><![CDATA[dynamic variables]]></category>

		<guid isPermaLink="false">http://www.flashnutz.com/?p=159</guid>
		<description><![CDATA[I'm going to show you how to use dynamic variable names in php. It's quite simple, just put your variable name in between {} symbols. // declare prefix. In a loop this would probably be a number. $prefix = &#34;pfx&#34;; &#160; // build your variable $&#123;&#34;varname_{$prefix}&#34;&#125; = &#34;success&#34;; &#160; //This would output &#34;success&#34; echo $varname_pfx; [...]]]></description>
		<wfw:commentRss>http://www.flashnutz.com/2009/08/dynamic-variable-names-in-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Scaling a dynamic background image in proportion using flash</title>
		<link>http://www.flashnutz.com/2009/08/scaling-a-dynamic-background-image-in-proportion-using-flash/</link>
		<comments>http://www.flashnutz.com/2009/08/scaling-a-dynamic-background-image-in-proportion-using-flash/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 06:38:53 +0000</pubDate>
		<dc:creator>Flashnutz</dc:creator>
				<category><![CDATA[ActionScript 2.0]]></category>
		<category><![CDATA[dynamic images]]></category>
		<category><![CDATA[flash image quality]]></category>
		<category><![CDATA[saling dynamic images in flash]]></category>
		<category><![CDATA[scale image in proprtion]]></category>

		<guid isPermaLink="false">http://www.flashnutz.com/?p=154</guid>
		<description><![CDATA[Recently I was playing around with scaling background images and had issues with how the scaling behaved and image quality.  When scaling an image in proportion you want to make sure that the image container is centered to the movie clip it belongs to. My example below is the scaling code within a stage listener [...]]]></description>
		<wfw:commentRss>http://www.flashnutz.com/2009/08/scaling-a-dynamic-background-image-in-proportion-using-flash/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Images not working in dompdf</title>
		<link>http://www.flashnutz.com/2009/08/images-not-working-in-dompdf/</link>
		<comments>http://www.flashnutz.com/2009/08/images-not-working-in-dompdf/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 03:38:38 +0000</pubDate>
		<dc:creator>Flashnutz</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[dompdf]]></category>
		<category><![CDATA[html to pdf]]></category>
		<category><![CDATA[html2pdf]]></category>
		<category><![CDATA[images not working in pdf]]></category>

		<guid isPermaLink="false">http://www.flashnutz.com/2009/08/images-not-working-with-dompdf/</guid>
		<description><![CDATA[What is dompdf?  Well basically its a HTML to PDF converter. It's rendering engine is built in PHP and is style-driven which means it will download and read external stylesheets, inline style tags, and the style attributes of individual HTML elements. I won't go into detail of how to use it (unless you want me [...]]]></description>
		<wfw:commentRss>http://www.flashnutz.com/2009/08/images-not-working-in-dompdf/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Using swfObject with Mootools</title>
		<link>http://www.flashnutz.com/2009/08/using-swfobject-with-mootools/</link>
		<comments>http://www.flashnutz.com/2009/08/using-swfobject-with-mootools/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 05:52:23 +0000</pubDate>
		<dc:creator>Flashnutz</dc:creator>
				<category><![CDATA[ActionScript 2.0]]></category>
		<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Mootools]]></category>
		<category><![CDATA[embed flash with mootools]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[swfObject]]></category>

		<guid isPermaLink="false">http://www.flashnutz.com/?p=125</guid>
		<description><![CDATA[I'm sure most of us use swfObject, which in my opinion is the best option when it comes to embedding flash. Lately I've been having a lot of fun with mootools and needed a way to embed flash dynamically. Basically I wanted my flash file to be embedded after a mootools click event was triggered. [...]]]></description>
		<wfw:commentRss>http://www.flashnutz.com/2009/08/using-swfobject-with-mootools/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>FLA crashes when publishing, saving or simply viewing the action tab</title>
		<link>http://www.flashnutz.com/2009/04/fla-crashes-when-publishing-saving-or-simply-viewing-the-action-tab/</link>
		<comments>http://www.flashnutz.com/2009/04/fla-crashes-when-publishing-saving-or-simply-viewing-the-action-tab/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 07:20:33 +0000</pubDate>
		<dc:creator>Flashnutz</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[fla crashes]]></category>

		<guid isPermaLink="false">http://www.flashnutz.com/2009/04/fla-crashes-when-publishing-saving-or-simply-viewing-the-action-tab/</guid>
		<description><![CDATA[Today I came across an annoying issue with a CS3 file that I had edited a month ago. I was required to make simple edits so I re-opened the fla file. It crashed every time I tried publishing, saving or simply viewing the action tab and could not figure out why. After hours of debugging [...]]]></description>
		<wfw:commentRss>http://www.flashnutz.com/2009/04/fla-crashes-when-publishing-saving-or-simply-viewing-the-action-tab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building a Preloader in ActionScript 3</title>
		<link>http://www.flashnutz.com/2009/03/building-a-preloader-in-actionscript-3/</link>
		<comments>http://www.flashnutz.com/2009/03/building-a-preloader-in-actionscript-3/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 06:41:43 +0000</pubDate>
		<dc:creator>Flashnutz</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[contentLoaderInfo]]></category>
		<category><![CDATA[LoaderInfo]]></category>
		<category><![CDATA[preloader]]></category>

		<guid isPermaLink="false">http://www.flashnutz.com/?p=115</guid>
		<description><![CDATA[We are going to explore how to build a preloader in as3.  Before building the preloader you will need to understand how to load external images/data with ActionScript 3. If you read the loading external images post you will know that the image was loaded into the contentLoaderInfo property of the Loader object. This is [...]]]></description>
		<wfw:commentRss>http://www.flashnutz.com/2009/03/building-a-preloader-in-actionscript-3/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
