<?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>Illumifi Interactive</title>
	<atom:link href="http://www.illumifi.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.illumifi.net</link>
	<description>interactive</description>
	<lastBuildDate>Thu, 25 Feb 2010 19:29:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Adobe Air&#174; 2.0 + Native Applications!</title>
		<link>http://www.illumifi.net/articles/adobe-air-2-0/</link>
		<comments>http://www.illumifi.net/articles/adobe-air-2-0/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 19:15:28 +0000</pubDate>
		<dc:creator>Cam</dc:creator>
				<category><![CDATA[articles]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://www.illumifi.net/?p=616</guid>
		<description><![CDATA[
We&#8217;ve been working on an Adobe Air® application for quite some time called LiteFile® and production came to a slow halt when the need for launching Native Applications started to sour our love for Air. But with the new version of Air, we hope the affair will rekindle. I&#8217;ve downloaded the beta and worked through [...]]]></description>
		<wfw:commentRss>http://www.illumifi.net/articles/adobe-air-2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing SWFObject Border around Flash&#174;</title>
		<link>http://www.illumifi.net/codex/removing-swfobject-border/</link>
		<comments>http://www.illumifi.net/codex/removing-swfobject-border/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 18:42:34 +0000</pubDate>
		<dc:creator>Cam</dc:creator>
				<category><![CDATA[codex]]></category>

		<guid isPermaLink="false">http://www.illumifi.net/?p=607</guid>
		<description><![CDATA[If you&#8217;re like me and use SWFObject to embed flash into your web pages, then you&#8217;ve noticed the thin border around the swf when it has focus. Well that can easily be removed by using a little CSS.

     object &#123; outline:none; &#125;

That&#8217;s it! Hope it helps. 
]]></description>
		<wfw:commentRss>http://www.illumifi.net/codex/removing-swfobject-border/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing the Wordpress Admin Logo</title>
		<link>http://www.illumifi.net/codex/admin-logo/</link>
		<comments>http://www.illumifi.net/codex/admin-logo/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 22:06:34 +0000</pubDate>
		<dc:creator>Cam</dc:creator>
				<category><![CDATA[codex]]></category>

		<guid isPermaLink="false">http://www.illumifi.net/?p=547</guid>
		<description><![CDATA[One of the most useful snippets I&#8217;ve found gives you the ability to change the Wordpress admin logo.

/**
 * Custom admin logo &#38; remove thank you footer
 */
add_action&#40;'admin_head', 'adminLogo'&#41;;
function adminLogo&#40;&#41; &#123; 
    echo '&#60;style type=&#34;text/css&#34;&#62;
		#header-logo { background-image: url('.get_bloginfo&#40;'wpurl'&#41;.'LOGOIMAGE.png) !important; }
		#footer-left { display: none; }
    &#60;/style&#62;';
&#125;

*Note: The logo image should [...]]]></description>
		<wfw:commentRss>http://www.illumifi.net/codex/admin-logo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Accessing Wordpress Databases</title>
		<link>http://www.illumifi.net/codex/access-wordpress-db/</link>
		<comments>http://www.illumifi.net/codex/access-wordpress-db/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 01:33:00 +0000</pubDate>
		<dc:creator>Cam</dc:creator>
				<category><![CDATA[codex]]></category>

		<guid isPermaLink="false">http://www.illumifi.net/?p=464</guid>
		<description><![CDATA[One of the more useful things I&#8217;ve learned while developing with Wordpress is the use of the $wpdb class which allows you to use the Wordpress database functions in your plugin without including the header and footer. This is useful when you&#8217;re using a bit of jQuery or AJAX to submit a form and get [...]]]></description>
		<wfw:commentRss>http://www.illumifi.net/codex/access-wordpress-db/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TinyMCE in WordPress Plugin</title>
		<link>http://www.illumifi.net/codex/tinymce-wordpress/</link>
		<comments>http://www.illumifi.net/codex/tinymce-wordpress/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 03:13:08 +0000</pubDate>
		<dc:creator>Cam</dc:creator>
				<category><![CDATA[codex]]></category>

		<guid isPermaLink="false">http://www.illumifi.net/uncategorized/tinymce-in-wordpress-plugin/</guid>
		<description><![CDATA[I&#8217;ve been to the edge of the internet and back, before I found this tidbit of code that will allow you to use TinyMCE in your WordPress plugins!
1. Add the following code to your plugin

1
2
3
4
5
6
7
8
9
10
11
12
add_filter&#40;'admin_head','myplugin_tinymce'&#41;;
&#160;
function myplugin_tinymce&#40;&#41; &#123;
    wp_admin_css&#40;'thickbox'&#41;;
    wp_print_scripts&#40;'jquery-ui-core'&#41;;
    wp_print_scripts&#40;'jquery-ui-tabs'&#41;;
    wp_print_scripts&#40;'post'&#41;;
   [...]]]></description>
		<wfw:commentRss>http://www.illumifi.net/codex/tinymce-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Never Stop Learning</title>
		<link>http://www.illumifi.net/codex/never-stop-learning/</link>
		<comments>http://www.illumifi.net/codex/never-stop-learning/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 18:31:53 +0000</pubDate>
		<dc:creator>Cam</dc:creator>
				<category><![CDATA[codex]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://www.illumifi.net/?p=404</guid>
		<description><![CDATA[I&#8217;ve been a developer for over 10 years now and I stumbled upon an extremely simple bit of coding that I&#8217;ve never either seen or realized was out there. It&#8217;s so simple that I feel like a complete n00b for not knowing this!
So What Is It?
When toggling the value of a Boolean variable in ActionScript [...]]]></description>
		<wfw:commentRss>http://www.illumifi.net/codex/never-stop-learning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IM&#8217;s Place at Work</title>
		<link>http://www.illumifi.net/articles/im_at_work/</link>
		<comments>http://www.illumifi.net/articles/im_at_work/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 00:10:50 +0000</pubDate>
		<dc:creator>Cam</dc:creator>
				<category><![CDATA[articles]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://www.illumifi.net/?p=377</guid>
		<description><![CDATA[
IM has the immediacy of telephone without the interruption, and the convenience of email without the delay. For years I&#8217;ve been an advocate for instant messaging in the work place so I figured I&#8217;d take a few minutes and explain why I feel IM should be implemented and how!

How&#8217;s it work?
IM is really simple. You [...]]]></description>
		<wfw:commentRss>http://www.illumifi.net/articles/im_at_work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Destination: Web</title>
		<link>http://www.illumifi.net/articles/destination-web/</link>
		<comments>http://www.illumifi.net/articles/destination-web/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 03:45:07 +0000</pubDate>
		<dc:creator>lisa</dc:creator>
				<category><![CDATA[articles]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://www.illumifi.net/?p=360</guid>
		<description><![CDATA[
I like to consider myself pretty tech-savvy, as are most of my colleagues and friends. I&#8217;ve also found that the Internet is an awesome way to connect with people &#8211; family, friends, clients, potential clients &#8211; whether it be through social networking, email, or our website. As we built our small business, having a website [...]]]></description>
		<wfw:commentRss>http://www.illumifi.net/articles/destination-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social Media &amp; Web 2.0 Defined</title>
		<link>http://www.illumifi.net/articles/web_defined/</link>
		<comments>http://www.illumifi.net/articles/web_defined/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 01:20:41 +0000</pubDate>
		<dc:creator>Cam</dc:creator>
				<category><![CDATA[articles]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://www.illumifi.net/?p=280</guid>
		<description><![CDATA[
Many people think they know what the terms mean but do they really? Do YOU really know? Well if you don&#8217;t, you&#8217;re not alone. It seems as though people are living in a strange new ecosystem (but I like to call it a virtualsystem) full of innovative and highly disruptive applications where people tend to [...]]]></description>
		<wfw:commentRss>http://www.illumifi.net/articles/web_defined/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Harsh Truths About Corporate Blogging</title>
		<link>http://www.illumifi.net/articles/10-harsh-truths-about-corporate-blogging/</link>
		<comments>http://www.illumifi.net/articles/10-harsh-truths-about-corporate-blogging/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 01:37:04 +0000</pubDate>
		<dc:creator>Cam</dc:creator>
				<category><![CDATA[articles]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://www.illumifi.net/?p=287</guid>
		<description><![CDATA[Here&#8217;s a great read about Corporate Blogging written by Paul Boag of Smashing Magazine:
I have reached the conclusion that most organizations have a blog simply because they feel they should. Many marketing departments fail to “get” blogging and have poorly visited blogs with few comments. Because their blog fails to perform, they conclude that blogging [...]]]></description>
		<wfw:commentRss>http://www.illumifi.net/articles/10-harsh-truths-about-corporate-blogging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
