<?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>Mon, 14 Sep 2009 03:25:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<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 contents
if &#40;$handle = opendir&#40;$dir&#41;&#41; &#123;
while &#40;false !== [...]]]></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;
Simple isn't it....
  Plurk This [...]]]></description>
		<wfw:commentRss>http://www.flashnutz.com/2009/08/dynamic-variable-names-in-php/feed/</wfw:commentRss>
		<slash:comments>0</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 which [...]]]></description>
		<wfw:commentRss>http://www.flashnutz.com/2009/08/scaling-a-dynamic-background-image-in-proportion-using-flash/feed/</wfw:commentRss>
		<slash:comments>6</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 to [...]]]></description>
		<wfw:commentRss>http://www.flashnutz.com/2009/08/images-not-working-in-dompdf/feed/</wfw:commentRss>
		<slash:comments>5</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.
So [...]]]></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 what [...]]]></description>
		<wfw:commentRss>http://www.flashnutz.com/2009/03/building-a-preloader-in-actionscript-3/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Building a simple clock application in as3</title>
		<link>http://www.flashnutz.com/2009/02/building-a-simple-clock-application-in-as3/</link>
		<comments>http://www.flashnutz.com/2009/02/building-a-simple-clock-application-in-as3/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 06:29:57 +0000</pubDate>
		<dc:creator>Flashnutz</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Date class]]></category>
		<category><![CDATA[Date Object]]></category>
		<category><![CDATA[Textfield object]]></category>
		<category><![CDATA[Timer class]]></category>
		<category><![CDATA[Timer object]]></category>

		<guid isPermaLink="false">http://www.flashnutz.com/?p=109</guid>
		<description><![CDATA[Yesterday I posted how the Date class worked in ActionScript 3.  Today I though I would build a simple clock application using the Date class.
Building the clock app involves using the Date class in a couple of ways. The Date class returns the current date and time of when the method is called and only [...]]]></description>
		<wfw:commentRss>http://www.flashnutz.com/2009/02/building-a-simple-clock-application-in-as3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Date Class in AS3</title>
		<link>http://www.flashnutz.com/2009/02/the-date-class-in-as3/</link>
		<comments>http://www.flashnutz.com/2009/02/the-date-class-in-as3/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 04:18:43 +0000</pubDate>
		<dc:creator>Flashnutz</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[Date class]]></category>
		<category><![CDATA[Date Object]]></category>

		<guid isPermaLink="false">http://www.flashnutz.com/?p=104</guid>
		<description><![CDATA[The Date class will allow you to check the current date and time on a user's computer. You'll find this class valuable when developing widgets like an event count down clock. To work with the Date class, you must instantiate a Date object:
var myDate:Date = new Date&#40;&#41;;
trace&#40;myDate&#41;;
When the Date object has been built, you can [...]]]></description>
		<wfw:commentRss>http://www.flashnutz.com/2009/02/the-date-class-in-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>tar: Archive contains obsolescent base-64 headers</title>
		<link>http://www.flashnutz.com/2009/02/tar-archive-contains-obsolescent-base-64-headers/</link>
		<comments>http://www.flashnutz.com/2009/02/tar-archive-contains-obsolescent-base-64-headers/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 23:23:07 +0000</pubDate>
		<dc:creator>Flashnutz</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ghostscript]]></category>

		<guid isPermaLink="false">http://www.flashnutz.com/?p=93</guid>
		<description><![CDATA[I was trying to install Ghostscript on my MediaTemple (mt) Linux server but I kept getting the following error:
tar: This does not look like a tar archive
tar: Skipping to next header
tar: Archive contains obsolescent base-64 headers
tar: Error exit delayed from previous errors
The quick fix around this is to type the following:
gzip -d filename.tar.gz
and then
tar -xf [...]]]></description>
		<wfw:commentRss>http://www.flashnutz.com/2009/02/tar-archive-contains-obsolescent-base-64-headers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
