<?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"
	>

<channel>
	<title>homer gaines</title>
	<atom:link href="http://www.homergaines.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.homergaines.com/blog</link>
	<description>Freelance Web Designer &#38; Flash Developer</description>
	<pubDate>Mon, 17 Nov 2008 17:05:53 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>Cosmetic Design Concept</title>
		<link>http://www.homergaines.com/blog/2008/11/cosmetic-design-concept/</link>
		<comments>http://www.homergaines.com/blog/2008/11/cosmetic-design-concept/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 14:53:50 +0000</pubDate>
		<dc:creator>xirclebox</dc:creator>
		
		<category><![CDATA[Projects]]></category>

		<category><![CDATA[concepts]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[homergaines]]></category>

		<category><![CDATA[xirclebox]]></category>

		<guid isPermaLink="false">http://www.homergaines.com/blog/?p=336</guid>
		<description><![CDATA[Just finished up a design concept for enve cosmetics. It's an interactive makeup assistant that simulates the application of makeup with a few other design elements to add flare.  I kept the navigation simple while still allowing her to be able to move around in the app as she needs.  I have so other ideas as to what I could do with this thing but I'm going to save them for later :)
]]></description>
			<content:encoded><![CDATA[<p>Just finished up a design concept for enve cosmetics. It&#8217;s an interactive makeup assistant that simulates the application of makeup with a few other design elements to add flare.  I kept the navigation simple while still allowing her to be able to move around in the app as she needs.  I have some other ideas as to what I could do with this thing but I&#8217;m going to save them for later <img src='http://www.homergaines.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Also, shouts out to P.L.B with Stock Expert for letting me use her profile in the design!</p>
<p><a href="http://www.homergaines.com/blog/wp-content/uploads/2008/11/enve_pg_1.jpg"><img class="alignnone size-medium wp-image-337" title="enve page 1" src="http://www.homergaines.com/blog/wp-content/uploads/2008/11/enve_pg_1-300x200.jpg" alt="" width="300" height="200" /></a></p>
<p><a href="http://www.homergaines.com/blog/wp-content/uploads/2008/11/enve_pg_2.jpg"><img class="alignnone size-medium wp-image-338" title="enve page 2" src="http://www.homergaines.com/blog/wp-content/uploads/2008/11/enve_pg_2-300x200.jpg" alt="" width="300" height="200" /></a></p>
<p><a href="http://www.homergaines.com/blog/wp-content/uploads/2008/11/enve_pg_3.jpg"><img class="alignnone size-medium wp-image-339" title="enve page 3" src="http://www.homergaines.com/blog/wp-content/uploads/2008/11/enve_pg_3-300x200.jpg" alt="" width="300" height="200" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.homergaines.com/blog/2008/11/cosmetic-design-concept/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Passing Variables to A Function in ActionScript 3</title>
		<link>http://www.homergaines.com/blog/2008/11/passing-varibles-to-a-function-in-as3/</link>
		<comments>http://www.homergaines.com/blog/2008/11/passing-varibles-to-a-function-in-as3/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 21:36:53 +0000</pubDate>
		<dc:creator>xirclebox</dc:creator>
		
		<category><![CDATA[ActionScript 2.0]]></category>

		<category><![CDATA[ActionScript 3.0]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Resources]]></category>

		<category><![CDATA[actionscript]]></category>

		<category><![CDATA[addEventListener]]></category>

		<category><![CDATA[as2]]></category>

		<category><![CDATA[as3]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[function]]></category>

		<category><![CDATA[homergaines]]></category>

		<category><![CDATA[variable]]></category>

		<category><![CDATA[xirclebox]]></category>

		<guid isPermaLink="false">http://www.homergaines.com/blog/?p=320</guid>
		<description><![CDATA[I have asked and have been asked, &#8220;How do I pass a variable to a function when using the addEventListener to call a function in ActionScript 3?&#8221;
Passing a variable to a function in ActionScript 2 was a fairly simple task. However, it is not so easy using ActionScript 3. There are a few more things [...]]]></description>
			<content:encoded><![CDATA[<p>I have asked and have been asked, &#8220;How do I pass a variable to a function when using the addEventListener to call a function in ActionScript 3?&#8221;</p>
<p>Passing a variable to a function in ActionScript 2 was a fairly simple task. However, it is not so easy using ActionScript 3. There are a few more things you must do first.</p>
<p>In ActionScript 2, passing a string variable looked like this.</p>
<blockquote><p>my_btn.onRelease = function(){<br />
doThis(&#8221;whatever variable you want goes here&#8221;);<br />
}</p>
<p>function doThis(a:String){<br />
trace(a);<br />
}</p></blockquote>
<p>In ActionScript 3, this is what I need to do to get the same results.  I initially wrote the example below thinking at some point, I will have several buttons that the user will interact with such as a navigation menu.</p>
<blockquote><p>var b:Array = [b1_btn, b2_btn, b3_btn];<br />
var a:Array = ["zero","one","two"];</p>
<p>for (var i:int = 0; i&lt;b.length; i++) {</p>
<p>b[i].addEventListener(MouseEvent.CLICK, clickedOne);<br />
function clickedOne(e:MouseEvent):void {<br />
for (var j:int = 0; j&lt;a.length; j++) {<br />
if (e.currentTarget.name == b[j].name) {<br />
doThis(a[j])<br />
}<br />
}<br />
}<br />
}</p>
<p>function doThis(v:String):void {<br />
trace(v);<br />
}</p></blockquote>
<p><a href="http://www.homergaines.com/blog/wp-content/uploads/2008/11/hg_passingvars.zip">Get the source fla file here.</a></p>
<p>If you have any questions just drop me a line.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.homergaines.com/blog/2008/11/passing-varibles-to-a-function-in-as3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What I Was Doing at That Moment</title>
		<link>http://www.homergaines.com/blog/2008/11/what-i-was-doing-at-that-moment/</link>
		<comments>http://www.homergaines.com/blog/2008/11/what-i-was-doing-at-that-moment/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 06:26:23 +0000</pubDate>
		<dc:creator>xirclebox</dc:creator>
		
		<category><![CDATA[Skipping Rocks]]></category>

		<category><![CDATA[barak]]></category>

		<category><![CDATA[homergaines]]></category>

		<category><![CDATA[obama]]></category>

		<category><![CDATA[president]]></category>

		<guid isPermaLink="false">http://www.homergaines.com/blog/?p=316</guid>
		<description><![CDATA[
It was November 4th 2008 and I was sitting on my couch talking with my family and chatting with friends on twitter when CNN announced that Barak Obama has won more than the 270 electoral votes needed to secure the presidency.  My phone rang seconds later and continued to ring from a flood of calls [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-medium wp-image-317" title="obama" src="http://www.homergaines.com/blog/wp-content/uploads/2008/11/obama.jpg" alt="" width="104" height="104" /></p>
<p>It was November 4th 2008 and I was sitting on my couch talking with my family and chatting with friends on twitter when CNN announced that Barak Obama has won more than the 270 electoral votes needed to secure the presidency.  My phone rang seconds later and continued to ring from a flood of calls I received from friends and family. When the phone didn&#8217;t ring, my text alert sounded.  People are partying tonight like it&#8217;s new years.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.homergaines.com/blog/2008/11/what-i-was-doing-at-that-moment/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My Creative Design Process</title>
		<link>http://www.homergaines.com/blog/2008/10/my-creative-design-process/</link>
		<comments>http://www.homergaines.com/blog/2008/10/my-creative-design-process/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 05:04:44 +0000</pubDate>
		<dc:creator>xirclebox</dc:creator>
		
		<category><![CDATA[Project Management]]></category>

		<category><![CDATA[Resources]]></category>

		<category><![CDATA[creative process]]></category>

		<category><![CDATA[homergaines]]></category>

		<category><![CDATA[pdf]]></category>

		<category><![CDATA[xirclebox]]></category>

		<guid isPermaLink="false">http://www.homergaines.com/blog/?p=301</guid>
		<description><![CDATA[We as designers all have a design process. It&#8217;s the way we go about creating and building our projects no matter what they may be. So I thought I&#8217;d share mine. It&#8217;s a pdf of my design process that I share with clients. Now it&#8217;s a birds eye view of my process and does not [...]]]></description>
			<content:encoded><![CDATA[<p>We as designers all have a design process. It&#8217;s the way we go about creating and building our projects no matter what they may be. So I thought I&#8217;d share mine. It&#8217;s a pdf of my design process that I share with clients. Now it&#8217;s a birds eye view of my process and does not drill down in to the gritty details of project management. It&#8217;s meant to be simple and straight forward. You can <a href="http://www.homergaines.com/blog/wp-content/uploads/2008/10/homergaines_creativeprocess.pdf">download it here</a>.</p>
<p><a href="http://www.homergaines.com/blog/wp-content/uploads/2008/10/homergaines_creativeprocess_web.png"><img class="alignnone size-medium wp-image-302" title="Homer Gaines's Creative Process" src="http://www.homergaines.com/blog/wp-content/uploads/2008/10/homergaines_creativeprocess_web-215x300.png" alt="" width="215" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.homergaines.com/blog/2008/10/my-creative-design-process/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Migraines!!!</title>
		<link>http://www.homergaines.com/blog/2008/10/migraines/</link>
		<comments>http://www.homergaines.com/blog/2008/10/migraines/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 02:36:48 +0000</pubDate>
		<dc:creator>xirclebox</dc:creator>
		
		<category><![CDATA[Skipping Rocks]]></category>

		<category><![CDATA[homer gaines]]></category>

		<category><![CDATA[migraines]]></category>

		<guid isPermaLink="false">http://www.homergaines.com/blog/?p=286</guid>
		<description><![CDATA[For the past 5 days I have been dealing with stupid migraines.  I get them every now and then for odd reasons but this time has been the worst I a while. I was pretty much out of it for the weekend. When I get a migraine I&#8217;m not nauseous, sensitive to light nor [...]]]></description>
			<content:encoded><![CDATA[<p>For the past 5 days I have been dealing with stupid migraines.  I get them every now and then for odd reasons but this time has been the worst I a while. I was pretty much out of it for the weekend. When I get a migraine I&#8217;m not nauseous, sensitive to light nor loud sounds. I juts get the pounding pain and the lethargic feelings that come with being &#8220;out of it&#8221;.</p>
<p>Well I guess things change with age. In the past I have been very successful with slowing down and meditating to ease the pain. After about an hour of this I&#8217;d be fine. My serotonin levels would be back to normal and back to life. This time around, I noticed that I was feeling slightly nauseous. Nothing severe but not the norm. And no matter how long I tried to focus elsewhere, the pain would break my concentration. So I headed to the doctor Monday morning. After going through the usual routine of FAQ&#8217;s and the collection of vitals, I was sent on my merry way with pain meds and a referral to go see a Neurologist just to see if everything is ok.</p>
<p>Needless to say, at times during the day, it&#8217;s been a bit hard to focus but I&#8217;m pushing through. The painkillers are a big help. I find it funny that they are supposed to make me sleepy and I have yet to feel the effects of being drowsy.  I guess that&#8217;s a good thing. I&#8217;m still able to work on projects and all the other fun stuff I like to do.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.homergaines.com/blog/2008/10/migraines/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Inspire XD</title>
		<link>http://www.homergaines.com/blog/2008/10/inspire-xd/</link>
		<comments>http://www.homergaines.com/blog/2008/10/inspire-xd/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 14:30:43 +0000</pubDate>
		<dc:creator>xirclebox</dc:creator>
		
		<category><![CDATA[Flex]]></category>

		<category><![CDATA[Resources]]></category>

		<category><![CDATA[Skipping Rocks]]></category>

		<guid isPermaLink="false">http://www.homergaines.com/blog/2008/10/inspire-xd/</guid>
		<description><![CDATA[Adobe has launched a flex based bi-monthly publication called INSPIRE which is pretty nice.&#160; The user interface is clean and very straight forward which is good since it&#8217;s manned by the Adobe Experience Design team. The pages transition nice and they have employed the use of the browsers navigation.
I have been reading articles and getting [...]]]></description>
			<content:encoded><![CDATA[<p>Adobe has launched a flex based bi-monthly publication called <a target="_blank" href="http://xd.adobe.com/#/home">INSPIRE</a> which is pretty nice.&nbsp; The user interface is clean and very straight forward which is good since it&#8217;s manned by the Adobe Experience Design team. The pages transition nice and they have employed the use of the browsers navigation.</p>
<p>I have been reading articles and getting some good tid-bits of information about how they work over there at Adobe.&nbsp; As of right now, I am getting more from the sites &#8220;Blog Feed&#8221; section. I&#8217;m sure I&#8217;ll get to the rest of the site later today.</p>
<p>It&#8217;s a very inspiring (no pun intended) piece of work. It makes me want to open up my copy of Flex and get going but I need to stay focused on Flash and AS3 at this moment in my life.&nbsp; But rest assured, Flex is next on my list!!!</p>
<p><a target="_blank" href="http://xd.adobe.com/#/home">Check out the site</a> and shoot them feedback</p>
]]></content:encoded>
			<wfw:commentRss>http://www.homergaines.com/blog/2008/10/inspire-xd/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Staying Busy</title>
		<link>http://www.homergaines.com/blog/2008/10/staying-busy/</link>
		<comments>http://www.homergaines.com/blog/2008/10/staying-busy/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 05:38:55 +0000</pubDate>
		<dc:creator>xirclebox</dc:creator>
		
		<category><![CDATA[Projects]]></category>

		<category><![CDATA[Skipping Rocks]]></category>

		<category><![CDATA[homergaines]]></category>

		<category><![CDATA[updates]]></category>

		<category><![CDATA[xirclebox]]></category>

		<guid isPermaLink="false">http://www.homergaines.com/blog/?p=275</guid>
		<description><![CDATA[Web Work
Things have been crazy busy!!!  We launched the Outfit Guide and  I&#8217;m finishing up a website for a Finishing company in Houston. The site is all flash with custom sounds.  I am looking to have it completed and ready to go live by the weekend.  I also started working on a new design for [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Web Work</strong></p>
<p>Things have been crazy busy!!!  We launched the <a title="Outfit Guide" href="http://www.chicos.com/outfits" target="_blank">Outfit Guide</a> and  I&#8217;m finishing up a website for a Finishing company in Houston. The site is all flash with custom sounds.  I am looking to have it completed and ready to go live by the weekend.  I also started working on a new design for homergaines.com. I don&#8217;t want to give the concept away just yet because I am going to buy the domain that compliments the theme.</p>
<p><strong>Studio Work</strong></p>
<p>For those of you who have an iPod Touch or a iPhone and you write music, download <a title="BeatMaker" href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=285512415&amp;mt=8" target="_blank">BeatMaker</a> from Intua. This little app, as small as it is, is like having an <a title="MPC" href="http://www.akaipro.com/en/index.php" target="_blank">MPC</a> in the palm of your hand.</p>
<p>On my way out to Vegas a couple of weeks ago, I used BeatMaker to write music on the long flight.  I put together a couple of tracks this weekend too. For the most part, they were experimental but the sound kits that I built are good for production work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.homergaines.com/blog/2008/10/staying-busy/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tween.onMotion Methods</title>
		<link>http://www.homergaines.com/blog/2008/10/tweenonmotion-methods/</link>
		<comments>http://www.homergaines.com/blog/2008/10/tweenonmotion-methods/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 15:36:46 +0000</pubDate>
		<dc:creator>xirclebox</dc:creator>
		
		<category><![CDATA[ActionScript 2.0]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Resources]]></category>

		<category><![CDATA[actionscript 2]]></category>

		<category><![CDATA[as2]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[reference]]></category>

		<category><![CDATA[tween]]></category>

		<guid isPermaLink="false">http://www.homergaines.com/blog/?p=271</guid>
		<description><![CDATA[Pulled these out of the Flash Help section and figured I post them here as a reference. 
AS2
Method Description 
Tween.continueTo()
Instructs the tweened animation to continue from its current value to a new value.
Tween.fforward()
Forwards the tweened animation directly to the end of the animation.
Tween.nextFrame()
Forwards the tweened animation to the next frame.

Tween.prevFrame()
Directs the tweened animation to the [...]]]></description>
			<content:encoded><![CDATA[<p>Pulled these out of the Flash Help section and figured I post them here as a reference. </p>
<h2><strong>AS2</strong></h2>
<p><strong>Method Description </strong></p>
<blockquote><p><strong>Tween.continueTo()</strong><br />
Instructs the tweened animation to continue from its current value to a new value.</p>
<p><strong>Tween.fforward()</strong><br />
Forwards the tweened animation directly to the end of the animation.</p>
<p><strong>Tween.nextFrame()</strong><br />
Forwards the tweened animation to the next frame.<br />
<strong><br />
Tween.prevFrame()</strong><br />
Directs the tweened animation to the frame previous to the current frame.</p>
<p><strong>Tween.resume()</strong><br />
Resumes a tweened animation from its stopped point in the animation.</p>
<p><strong>Tween.rewind()</strong><br />
Rewinds a tweened animation to the beginning of the tweened animation.</p>
<p><strong>Tween.start()</strong><br />
Starts the tweened animation from the beginning.</p>
<p><strong>Tween.stop()</strong><br />
Stops the tweened animation at its current position.</p>
<p><strong>Tween.toString()</strong><br />
Returns the class name, &#8220;[Tween]&#8220;.</p>
<p><strong>Tween.yoyo()</strong><br />
Instructs the tweened animation to play in reverse from its last direction of tweened property increments.</p></blockquote>
<p><strong>Event Description </strong></p>
<blockquote><p><strong>Tween.onMotionChanged</strong><br />
Event handler; invoked with each change in the tweened object&#8217;s property that is being animated.</p>
<p><strong>Tween.onMotionFinished</strong><br />
Event handler; invoked when the Tween object finishes its animation.</p>
<p><strong>Tween.onMotionResumed</strong><br />
Event handler; invoked when the Tween.resume() method is called, causing the tweened animation to resume.</p>
<p><strong>Tween.onMotionStarted</strong><br />
Event handler; invoked when the Tween.start() method is called, causing the tweened animation to start.</p>
<p><strong>Tween.onMotionStopped</strong><br />
Event handler; invoked when the Tween.stop() method is called, causing the tweened animation to stop.</p></blockquote>
<h2><strong>AS3</strong></h2>
<p><strong>Method Description </strong></p>
<blockquote><p><strong>Tween(obj:Object, prop:String, func:Function, begin:Number, finish:Number, duration:Number, useSeconds:Boolean = false)</strong><br />
Creates an instance of the Tween class.</p>
<p><strong>continueTo(finish:Number, duration:Number):void </strong><br />
Instructs the tweened animation to continue tweening from its current animation point to a new finish and duration point.</p>
<p><strong>fforward():void </strong><br />
Forwards the tweened animation directly to the final value of the tweened animation.</p>
<p><strong>nextFrame():void </strong><br />
Forwards the tweened animation to the next frame of an animation that was stopped.</p>
<p><strong>prevFrame():void </strong><br />
Plays the previous frame of the tweened animation from the current stopping point of an animation that was stopped.</p>
<p><strong>resume():void </strong><br />
Resumes the play of a tweened animation that has been stopped.</p>
<p><strong>rewind(t:Number = 0):void </strong><br />
Moves the play of a tweened animation back to its starting value.</p>
<p><strong>stop():void </strong><br />
Stops the play of a tweened animation at its current value.</p>
<p><strong>yoyo():void </strong><br />
Instructs the tweened animation to play in reverse from its last direction of tweened property increments.</p></blockquote>
<p><strong>Event Description </strong></p>
<blockquote><p><strong>TweenEvent.motionChange</strong><br />
Indicates that the Tween has changed and the screen has been updated. </p>
<p><strong>TweenEvent.motionFinish</strong><br />
Indicates that the Tween has reached the end and finished. </p>
<p><strong>TweenEvent.motionLoop</strong><br />
Indicates that the Tween has restarted playing from the beginning in looping mode. </p>
<p><strong>TweenEvent.motionResume</strong><br />
Indicates that the Tween has resumed playing after being paused. </p>
<p><strong>TweenEvent.motionStart</strong><br />
Indicates that the motion has started playing. </p>
<p><strong>TweenEvent.motionStop</strong><br />
Indicates that the Tween has been stopped with an explicit call to Tween.stop().</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.homergaines.com/blog/2008/10/tweenonmotion-methods/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Logo Concepts for so-bananas</title>
		<link>http://www.homergaines.com/blog/2008/10/logo-concepts-for-so-bananas/</link>
		<comments>http://www.homergaines.com/blog/2008/10/logo-concepts-for-so-bananas/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 05:09:04 +0000</pubDate>
		<dc:creator>xirclebox</dc:creator>
		
		<category><![CDATA[Lab]]></category>

		<category><![CDATA[Projects]]></category>

		<category><![CDATA[brand]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[homergaines]]></category>

		<category><![CDATA[logo]]></category>

		<category><![CDATA[so-bananas]]></category>

		<category><![CDATA[xirclebox]]></category>

		<guid isPermaLink="false">http://www.homergaines.com/blog/?p=261</guid>
		<description><![CDATA[I was asked by a twitter friend of mine if I could come up with a logo for her company.  So I took a break from Flash and opened up Illustrator and a few paths, points, and pulls later I came up with these initial concepts.]]></description>
			<content:encoded><![CDATA[<p>I was asked by a twitter friend of mine if I could come up with a logo for her company.  So I took a break from Flash and opened up Illustrator and a few paths, points, and pulls later I came up with these initial concepts.</p>
<p><img class="alignnone size-medium wp-image-263" title="so-bananas concept 1" src="http://www.homergaines.com/blog/wp-content/uploads/2008/10/sob_logo-162x300.gif" alt="" width="162" height="300" /></p>
<p><img class="alignnone size-medium wp-image-262" title="so-bananas concept 2" src="http://www.homergaines.com/blog/wp-content/uploads/2008/10/sob_logo2ai-245x300.gif" alt="" width="245" height="300" /></p>
<p>I heard back from my twitter friend and I think the she liked the logo ideas but I could be wrong <img src='http://www.homergaines.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Below was how she responded.</p>
<blockquote><p>ahhh!!! I love them!!! Especially the sb with the star and the random head thing&#8230;.omg I love you</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.homergaines.com/blog/2008/10/logo-concepts-for-so-bananas/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Made it to Vegas</title>
		<link>http://www.homergaines.com/blog/2008/10/made-it-to-vegas/</link>
		<comments>http://www.homergaines.com/blog/2008/10/made-it-to-vegas/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 18:40:06 +0000</pubDate>
		<dc:creator>xirclebox</dc:creator>
		
		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Lab]]></category>

		<category><![CDATA[homergaines]]></category>

		<category><![CDATA[Projects]]></category>

		<category><![CDATA[serge nikolich]]></category>

		<category><![CDATA[xirclebox]]></category>

		<guid isPermaLink="false">http://www.homergaines.com/blog/?p=259</guid>
		<description><![CDATA[Made it in to Vegas last night where I will be working with Creative Director Serge Nikolich on a couple of projects he has in the works.  The first one we are tackling in a pharmaceitical site.  Obviously the whole thing will be in flash and will incorporate some video as well.  This is going [...]]]></description>
			<content:encoded><![CDATA[<p>Made it in to Vegas last night where I will be working with Creative Director <a title="Serge Nikolich" href="http://www.veraglow.com/" target="_blank">Serge Nikolich</a> on a couple of projects he has in the works.  The first one we are tackling in a pharmaceitical site.  Obviously the whole thing will be in flash and will incorporate some video as well.  This is going to be fun.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.homergaines.com/blog/2008/10/made-it-to-vegas/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
