<?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>Hummel Interactive</title>
	<atom:link href="http://hummelinteractive.com/feed" rel="self" type="application/rss+xml" />
	<link>http://hummelinteractive.com</link>
	<description>High Gloss Web Since 1999</description>
	<lastBuildDate>Sat, 03 Sep 2011 03:03:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Manually creating a new site with WPMU (WordPress Multi Site)</title>
		<link>http://hummelinteractive.com/manually-creating-a-new-site-with-wpmu-wordpress-multi-site</link>
		<comments>http://hummelinteractive.com/manually-creating-a-new-site-with-wpmu-wordpress-multi-site#comments</comments>
		<pubDate>Sat, 03 Sep 2011 02:58:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://hummelinteractive.com/?p=208</guid>
		<description><![CDATA[My given task for the day is to figure out how to write a custom script that will create a new user and assign that user to a new website on a WordPress MultiSite installation. There are many plugins out there that do this for you but most of them, like gravityforms, unfortunately integrate with [...]]]></description>
			<content:encoded><![CDATA[<p>My given task for the day is to figure out how to write a custom script that will create a new user and assign that user to a new website on a WordPress MultiSite installation. There are many plugins out there that do this for you but most of them, like gravityforms, unfortunately integrate with one payment processor; paypal. We need ours to integrate with a much more complex system that uses authorize.net to process credit cards and it needs the ability to take Promo Codes. I cant find anything out there that does this so ive resorted to building it from scratch.</p>
<p>Heres what ive learned so far. There are four wordpress functions that are key in making a smooth site registration work. First you must make use of the new site validation functions which are:</p>
<pre class="brush: php; title: ; notranslate">
$username_exists = username_exists($user_name); // check sanitized username
$email_exists = email_exists($user_email);

if ($username_exists) die(&quot;username already $user_name in use.&quot;);
if ($email_exists) die(&quot;the email $user_email is already in use. &quot;);

// get validation result for multi-site fields
$validation_result = wpmu_validate_blog_signup($site_address, $site_title);

$error_msg = (isset($validation_result['errors']-&gt;errors['blogname'][0])) ? $validation_result['errors']-&gt;errors['blogname'][0] : false;
if($error_msg != false) die($error_msg);

$error_msg = (isset($validation_result['errors']-&gt;errors['blog_title'][0])) ? $validation_result['errors']-&gt;errors['blog_title'][0] : false;
if($error_msg != false) die($error_msg);
</pre>
<p>Assuming your form has passed the necessary fields $<strong>user_name</strong>, $<strong>user_email</strong>, $<strong>site_address</strong> and $<strong>site_title</strong>. These functions will make sure the username or the site address doesn&#8217;t already exists. if it does it simply halts the script.. Obviously you may want to create a more graceful error notice to the user.</p>
<p>Once all the important information is validated, you can move on to create the username:</p>
<pre class="brush: php; title: ; notranslate">&lt;/span&gt;
&lt;pre&gt;$user_id = wp_create_user( $user_name, $password, $user_email );
if(is_wp_error($user_id)) die($user_id-&gt;get_error_message());

// set user metadata
update_user_meta($user_id, 'first_name', $firstname);
update_user_meta($user_id, 'last_name', $lastname);
update_user_meta($user_id, 'phone', $phone);
update_user_meta($user_id, 'package', $package);

// set user role
if(!empty($role) || $role == 'subscriber') {
	$userobj = new WP_User($user_id);
	$userobj-&gt;set_role($role);
}

// send user/admin notifications
wp_new_user_notification($user_id, $password);
</pre>
<p>And finally create the site and assign the user we just created as administrator of that site:</p>
<pre class="brush: php; title: ; notranslate">
create_new_multisite($user_id);

function create_new_multisite($user_id) {
    global $wpdb, $current_site, $base, $site_address, $site_title;

    $user = get_userdata($user_id);

    // get the domain name
    $domain = '';

    if(!preg_match( '/(--)/', $site_address) &amp;&amp; preg_match('|^([a-zA-Z0-9-])+$|', $site_address) )
        $domain = strtolower($site_address);

    // get the site title and user email
    $email = $user-&gt;user_email;

    // final check to make sure our essentials are good to go
    if(empty($domain) || empty($email) || !is_email($email))
        die('no domain or email or invalid email');

    if(is_subdomain_install()){
        $newdomain = $domain . '.' . preg_replace( '|^www\.|', '', $current_site-&gt;domain );
        $path = $base;
    } else {
        $newdomain = $current_site-&gt;domain;
        $path = $base . $domain . '/';
    }

    // create the new site!
    $id = wpmu_create_blog($newdomain, $path, $site_title, $user_id , array( 'public' =&gt; 1 ), $current_site-&gt;id);

    if(is_wp_error($id)) { die($id-&gt;get_error_message()); }

    $dashboard_blog = get_dashboard_blog();
    if(!is_super_admin($user_id) &amp;&amp; get_user_option('primary_blog', $user_id) == $dashboard_blog-&gt;blog_id)
        update_user_option( $user_id, 'primary_blog', $id, true );

    //send new site notifications
    $content_mail = sprintf(__( &quot;New site created by %1s\n\nAddress: http://%2s\nName: %3s&quot;, &quot;jummelreg&quot;), $current_user-&gt;user_login , $newdomain . $path, stripslashes($site_title));
    wp_mail(get_site_option('admin_email'), sprintf(__('[%s] New Site Created', &quot;jummelreg&quot;), $current_site-&gt;site_name ), $content_mail, 'From: &quot;Site Admin&quot;     wpmu_welcome_notification($id, $user_id, $password, $site_title, array('public' =&gt; 1));

}
</pre>
<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fhummelinteractive.com%2Fmanually-creating-a-new-site-with-wpmu-wordpress-multi-site&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://hummelinteractive.com/manually-creating-a-new-site-with-wpmu-wordpress-multi-site/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Assign button mouse events in for loop &#8211; actionscript 3.0</title>
		<link>http://hummelinteractive.com/assign-button-mouse-events-in-for-loop-actionscript-3-0</link>
		<comments>http://hummelinteractive.com/assign-button-mouse-events-in-for-loop-actionscript-3-0#comments</comments>
		<pubDate>Wed, 31 Aug 2011 17:54:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://hummelinteractive.com/?p=198</guid>
		<description><![CDATA[Have you ever needed to assign button Click events and Mouse Over events and encapsulate data to a button in Flash? I have, pretty much every day. Im not sure where i picked up this technique but ive been using it for a very long time. The basic setup is simple. Say you have 5 [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever needed to assign button Click events and Mouse Over events and encapsulate data to a button in Flash? I have, pretty much every day. Im not sure where i picked up this technique but ive been using it for a very long time. The basic setup is simple. Say you have 5 buttons with instance names; btn1, btn2, btn3, btn4, btn5.</p>
<p>Instead of trying to assign event handlers to each button one by one, i setup a for loop like the following:</p>
<pre class="brush: as3; title: ; notranslate">
for (var i:int=1;i&lt;=5;i++) {
	this[&quot;btn&quot;+i].addEventListener(MouseEvent.CLICK, clickHandler);
	this[&quot;btn&quot;+i].addEventListener(MouseEvent.MOUSE_OVER, overHandler);
	this[&quot;btn&quot;+i].addEventListener(MouseEvent.MOUSE_OUT, outHandler);
}
</pre>
<p>The for loop will loop through all five of your btns and assign the mouse click, rollover and rollover events for each. Simple <img src='http://hummelinteractive.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Once you grasp that concept, then its time to inject metadata into the button itself so that each mouse event handler can use that data.</p>
<p>say we have an array of info for each button, which would contain a title, and description.</p>
<pre class="brush: as3; title: ; notranslate">
var buttonData:Array = new Array([&quot;title 1&quot;,&quot;description 1&quot;],
					[&quot;title 2&quot;,&quot;description 2&quot;],
					[&quot;title 3&quot;,&quot;description 3&quot;],
					[&quot;title 4&quot;,&quot;description 4&quot;],
					[&quot;title 5&quot;,&quot;description 5&quot;]);
</pre>
<p>now, in out loop we can target that data, and inject it into the button movieclip instance. like so:</p>
<pre class="brush: as3; title: ; notranslate">
for (var i:int=1;i&lt;=5;i++) {
	this[&quot;btn&quot;+i].addEventListener(MouseEvent.CLICK, clickHandler);
	this[&quot;btn&quot;+i].addEventListener(MouseEvent.MOUSE_OVER, overHandler);
	this[&quot;btn&quot;+i].addEventListener(MouseEvent.MOUSE_OUT, outHandler);
	this[&quot;btn&quot;+i].title = buttonData[i][0];
	this[&quot;btn&quot;+i].desc = buttonData[i][1];
}
</pre>
<p>once that data has been injected.. we can access it at any time, in any of our mouse events like so:</p>
<pre class="brush: as3; title: ; notranslate">
function clickHandler(e:MouseEvent):void {
	trace(&quot;title: &quot;+e.currentTarget.title);
	trace(&quot;desc: &quot;+e.currentTarget.desc);
}
</pre>
<p>the full script would look something like this (just make sure you have 5 buttons with the correct instance names on the stage):</p>
<pre class="brush: as3; title: ; notranslate">
var buttonData:Array = new Array([&quot;title 1&quot;,&quot;description 1&quot;],
					[&quot;title 2&quot;,&quot;description 2&quot;],
					[&quot;title 3&quot;,&quot;description 3&quot;],
					[&quot;title 4&quot;,&quot;description 4&quot;],
					[&quot;title 5&quot;,&quot;description 5&quot;]);

for (var i:int=1;i&lt;=5;i++) {
	this[&quot;btn&quot;+i].addEventListener(MouseEvent.CLICK, clickHandler);
	this[&quot;btn&quot;+i].addEventListener(MouseEvent.MOUSE_OVER, overHandler);
	this[&quot;btn&quot;+i].addEventListener(MouseEvent.MOUSE_OUT, outHandler);
	this[&quot;btn&quot;+i].title = buttonData[i][0];
	this[&quot;btn&quot;+i].desc = buttonData[i][1];
}

function clickHandler(e:MouseEvent):void {
	trace(&quot;title: &quot;+e.currentTarget.title);
	trace(&quot;desc: &quot;+e.currentTarget.desc);
}
function overHandler(e:MouseEvent):void {
	trace(&quot;over event: &quot;+e.currentTarget)

}
function outHandler(e:MouseEvent):void {
	trace(&quot;out event: &quot;+e.currentTarget)
}
</pre>
<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fhummelinteractive.com%2Fassign-button-mouse-events-in-for-loop-actionscript-3-0&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://hummelinteractive.com/assign-button-mouse-events-in-for-loop-actionscript-3-0/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash is Dead. If I had a nickel for every time I heard that.</title>
		<link>http://hummelinteractive.com/flash-is-dead-if-i-had-a-nickel-for-every-time-i-heard-that</link>
		<comments>http://hummelinteractive.com/flash-is-dead-if-i-had-a-nickel-for-every-time-i-heard-that#comments</comments>
		<pubDate>Wed, 17 Aug 2011 03:55:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://hummelinteractive.com/?p=176</guid>
		<description><![CDATA[Being a Flash Developer since version 4, you know back when Flash was still owned and operated by Macromedia, has been a temperamental love hate relationship. Even so Flash has allowed me to pull off some pretty amazing things on the web. Now with the advent of iOS and the tyrant anti-flash hitler nazi that [...]]]></description>
			<content:encoded><![CDATA[<p><img alt="" src="http://www.macenstein.com/images/2010/shirt_woot_flash1.jpg" title="flash dead" class="alignright" width="340" />Being a Flash Developer since version 4, you know back when Flash was still owned and operated by Macromedia, has been a temperamental love hate relationship. Even so Flash has allowed me to pull off some pretty amazing things on the web. Now with the advent of iOS and the tyrant anti-flash hitler nazi that is steve jobs, Flash is directly threatened to be put to rest. Don&#8217;t get me wrong, I own and iPhone and have been working on a MacBook Pro for the past five years. He&#8217;ll I&#8217;m even writing this post on an iPad right now.</p>
<p>What people don&#8217;t understand about developers is, even if Flash did die, It&#8217;s not like were out of a job. We, as developers, use whatever tools are available to us to get the job done. And in the process, we come up with new and clever ways to solve problems. People think that if our title is Flash Developer, than all we know is Flash. Wrong. To even get Flash running on a website you have to know a little bit of HTML CSS and why not JavaScript. We have a multifaceted skill-set that shouldn&#8217;t be underestimated.</p>
<p>I think a lot of developers are waiting for HTML5 to mature a bit more. One of the main reasons I&#8217;m not using HTML5 heavily yet is because there isn&#8217;t any support for protected video streams. Be it, DRM or streaming video through RTMP which flash is notorious for.</p>
<p>Do I believe Flash will die soon? Maybe, but I&#8217;m not holding my breath. So all you Flash is dead chanters can keep on chanting. Were not listening. We don&#8217;t need too. Were already three steps ahead.</p>
<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fhummelinteractive.com%2Fflash-is-dead-if-i-had-a-nickel-for-every-time-i-heard-that&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://hummelinteractive.com/flash-is-dead-if-i-had-a-nickel-for-every-time-i-heard-that/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iHotelier by TravelClick &#8211; How to post data to their Reservation Engine</title>
		<link>http://hummelinteractive.com/ihotelier-by-travelclick-how-to-post-data-to-their-reservation-engine</link>
		<comments>http://hummelinteractive.com/ihotelier-by-travelclick-how-to-post-data-to-their-reservation-engine#comments</comments>
		<pubDate>Thu, 11 Aug 2011 23:35:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://hummelinteractive.com/?p=97</guid>
		<description><![CDATA[Today we had the quick job of posting some data to Travel Click&#8217;s iHotelier application. We had a client that has a hotel (obviously) and needed their reservation form connected to ihotelier&#8217;s web based reservation application. I figured it would help someone if i documented the steps it took to send data to them.. We [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-102 alignright" title="Screen shot 2011-08-11 at 4.36.38 PM" src="http://hummelinteractive.com/wp-content/uploads/2011/08/Screen-shot-2011-08-11-at-4.36.38-PM.png" alt="" width="255" height="159" /></p>
<p>Today we had the quick job of posting some data to Travel Click&#8217;s iHotelier application. We had a client that has a hotel (obviously) and needed their reservation form connected to ihotelier&#8217;s web based reservation application.</p>
<p>I figured it would help someone if i documented the steps it took to send data to them..</p>
<p>We placed the form action to ihotelier appication and you end up with a page like this:</p>
<p><a href="http://hummelinteractive.com/wp-content/uploads/2011/08/Screen-shot-2011-08-11-at-4.36.55-PM.png"><img class="alignnone size-medium wp-image-101" title="Screen shot 2011-08-11 at 4.36.55 PM" src="http://hummelinteractive.com/wp-content/uploads/2011/08/Screen-shot-2011-08-11-at-4.36.55-PM-300x177.png" alt="" width="300" height="177" /></a></p>
<p>The main thing to know is that the ihotelier application accepts $_GET data in a certain formation as follows:</p>
<ul>
<li>DateIn</li>
<li>DateOut</li>
<li>Adults</li>
<li>Children</li>
<li>Rooms</li>
<li>HotelID</li>
<li>LanguageID</li>
</ul>
<p>The full url that we ended up posting to was something like:</p>
<pre class="brush: xml; title: ; notranslate">https://reservations.ihotelier.com/istay.cfm?DateIn=9/1/2011&amp;DateOut=9/7/2011&amp;Adults=1&amp;Children=0&amp;Rooms=1&amp;HotelID=13187&amp;LanguageID=1</pre>
<p>Its actually a pretty simple system once you know the variables it wants. We had to figure it from trial and error unfortunately.</p>
<p>Hope this helps.. See ya!</p>
<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fhummelinteractive.com%2Fihotelier-by-travelclick-how-to-post-data-to-their-reservation-engine&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://hummelinteractive.com/ihotelier-by-travelclick-how-to-post-data-to-their-reservation-engine/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yamaha University</title>
		<link>http://hummelinteractive.com/yamaha-university</link>
		<comments>http://hummelinteractive.com/yamaha-university#comments</comments>
		<pubDate>Thu, 11 Aug 2011 02:08:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Past Projects]]></category>

		<guid isPermaLink="false">http://hummelinteractive.com/?p=44</guid>
		<description><![CDATA[Project: Yamaha University &#160; &#160; &#160;]]></description>
			<content:encoded><![CDATA[<p><a href="http://yu.webgines.com" onclick="pageTracker._trackPageview('/outgoing/yu.webgines.com?referer=');"><img class="alignnone size-full wp-image-36" title="y1" src="http://hummelinteractive.com/wp-content/uploads/2011/08/y1.jpg" alt="" /></a></p>
<p><a href="http://yu.webgines.com" onclick="pageTracker._trackPageview('/outgoing/yu.webgines.com?referer=');"><img class="alignnone size-full wp-image-37" style="border-style: initial; border-color: initial;" title="y2" src="http://hummelinteractive.com/wp-content/uploads/2011/08/y2.jpg" alt="" /></a></p>
<p>Project: Yamaha University</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fhummelinteractive.com%2Fyamaha-university&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://hummelinteractive.com/yamaha-university/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zuniga Interiors</title>
		<link>http://hummelinteractive.com/zuniga-interiors</link>
		<comments>http://hummelinteractive.com/zuniga-interiors#comments</comments>
		<pubDate>Thu, 11 Aug 2011 01:58:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Past Projects]]></category>

		<guid isPermaLink="false">http://hummelinteractive.com/?p=41</guid>
		<description><![CDATA[Past Completed Interior Design Website]]></description>
			<content:encoded><![CDATA[<p>Past Completed Interior Design Website</p>
<p><a href="http://zunigainteriors.com" onclick="pageTracker._trackPageview('/outgoing/zunigainteriors.com?referer=');"><img class="alignnone size-full wp-image-22" title="a1" src="http://hummelinteractive.com/wp-content/uploads/2011/08/a1.jpg" alt="" /></a><a href="http://zunigainteriors.com" onclick="pageTracker._trackPageview('/outgoing/zunigainteriors.com?referer=');"><img class="alignnone size-full wp-image-23" title="a2" src="http://hummelinteractive.com/wp-content/uploads/2011/08/a2.jpg" alt="" /></a></p>
<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fhummelinteractive.com%2Fzuniga-interiors&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://hummelinteractive.com/zuniga-interiors/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zipmatch, LLC</title>
		<link>http://hummelinteractive.com/zipmatch</link>
		<comments>http://hummelinteractive.com/zipmatch#comments</comments>
		<pubDate>Thu, 11 Aug 2011 01:57:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Recent Projects]]></category>

		<guid isPermaLink="false">http://hummelinteractive.com/?p=21</guid>
		<description><![CDATA[A feature rich Social Community based around an Active lifestyle. The goal of zipmatch was to bring people together to connect one another via various activities. In doing so, people would no longer have an excuse of, &#8220;I don&#8217;t have anyone to go running with&#8221;. We wanted people get out of the house and do [...]]]></description>
			<content:encoded><![CDATA[<p>A feature rich Social Community based around an Active lifestyle. The goal of zipmatch was to bring people together to connect one another via various activities. In doing so, people would no longer have an excuse of, &#8220;I don&#8217;t have anyone to go running with&#8221;. We wanted people get out of the house and do something. Technologies Utilized: PHP5, XHTML, CSS, Javascript<a href="http://zipmatch.org" onclick="pageTracker._trackPageview('/outgoing/zipmatch.org?referer=');"><img class="alignnone size-full wp-image-38" title="zip1" src="http://hummelinteractive.com/wp-content/uploads/2011/08/zip1.jpg" alt="" /></a></p>
<p><a href="http://zipmatch.org" onclick="pageTracker._trackPageview('/outgoing/zipmatch.org?referer=');"><img class="alignnone size-full wp-image-39" title="zip2" src="http://hummelinteractive.com/wp-content/uploads/2011/08/zip2.jpg" alt="" /></a></p>
<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fhummelinteractive.com%2Fzipmatch&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://hummelinteractive.com/zipmatch/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hummel Interactive gets a facelift!</title>
		<link>http://hummelinteractive.com/hummel-interactive-gets-a-facelift</link>
		<comments>http://hummelinteractive.com/hummel-interactive-gets-a-facelift#comments</comments>
		<pubDate>Thu, 11 Aug 2011 01:27:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://hummelinteractive.com/?p=5</guid>
		<description><![CDATA[We&#8217;ve decided to get some content on our site! Hope you&#8217;re all as excited as we are. We plan to post a lot of blog tutorials showing step by step procedure on a lot of the cool things we make here. Stay tuned.]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve decided to get some content on our site!</p>
<p>Hope you&#8217;re all as excited as we are.</p>
<p>We plan to post a lot of blog tutorials showing step by step procedure on a lot of the cool things we make here. Stay tuned.</p>
<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fhummelinteractive.com%2Fhummel-interactive-gets-a-facelift&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://hummelinteractive.com/hummel-interactive-gets-a-facelift/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Link-to-Learn Music</title>
		<link>http://hummelinteractive.com/link-to-learn-music</link>
		<comments>http://hummelinteractive.com/link-to-learn-music#comments</comments>
		<pubDate>Thu, 04 Aug 2011 20:01:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Recent Projects]]></category>

		<guid isPermaLink="false">http://hummelinteractive.com/?p=121</guid>
		<description><![CDATA[Link-to-Learn This full blow e-Commerce website was built with Music Enthusiasts in mind. You can purchase Virtual Products on how to use your musical instrument right from the website. This website utilizes Flash, PHP, Magento, XML, XHTML, CSS technologies.]]></description>
			<content:encoded><![CDATA[<p>Link-to-Learn This full blow e-Commerce website was built with Music Enthusiasts in mind. You can purchase Virtual Products on how to use your musical instrument right from the website. This website utilizes Flash, PHP, Magento, XML, XHTML, CSS technologies.<a href="http://linktolearnmusic.com" onclick="pageTracker._trackPageview('/outgoing/linktolearnmusic.com?referer=');"><img class="alignnone size-full wp-image-30" title="l1" src="http://hummelinteractive.com/wp-content/uploads/2011/08/l1.jpg" alt="" /></a><a href="http://linktolearnmusic.com" onclick="pageTracker._trackPageview('/outgoing/linktolearnmusic.com?referer=');"><img class="alignnone size-full wp-image-31" title="l2" src="http://hummelinteractive.com/wp-content/uploads/2011/08/l2.jpg" alt="" /></a></p>
<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fhummelinteractive.com%2Flink-to-learn-music&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://hummelinteractive.com/link-to-learn-music/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Transmarine</title>
		<link>http://hummelinteractive.com/transmarine</link>
		<comments>http://hummelinteractive.com/transmarine#comments</comments>
		<pubDate>Wed, 03 Aug 2011 19:59:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Recent Projects]]></category>

		<guid isPermaLink="false">http://hummelinteractive.com/?p=119</guid>
		<description><![CDATA[Transmarine was a full website project built utilizing Flash, XML, XHTML, PHP technologies]]></description>
			<content:encoded><![CDATA[<p>Transmarine was a full website project built utilizing Flash, XML, XHTML, PHP technologies<a href="http://transmarine.com" onclick="pageTracker._trackPageview('/outgoing/transmarine.com?referer=');"><img class="alignnone size-full wp-image-34" title="t1" src="http://hummelinteractive.com/wp-content/uploads/2011/08/t1.jpg" alt="" /></a><a href="http://transmarine.com" onclick="pageTracker._trackPageview('/outgoing/transmarine.com?referer=');"><img class="alignnone size-full wp-image-35" title="t2" src="http://hummelinteractive.com/wp-content/uploads/2011/08/t2.jpg" alt="" width="452" height="312" /></a></p>
<div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fhummelinteractive.com%2Ftransmarine&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=segoe+ui&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:80px;" allowTransparency="true"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://hummelinteractive.com/transmarine/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

