<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>kreativeKING - Interactive Developer</title>
	
	<link>http://kreativeking.com</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Thu, 05 Nov 2009 18:34:32 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/kreativeking" /><feedburner:info uri="kreativeking" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>kreativeking</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Where’s my Sound ???</title>
		<link>http://feedproxy.google.com/~r/kreativeking/~3/Qvmv6C7Abbk/</link>
		<comments>http://kreativeking.com/?p=572#comments</comments>
		<pubDate>Thu, 05 Nov 2009 18:33:17 +0000</pubDate>
		<dc:creator>Clemente Gomez - kreativeKING</dc:creator>
		
		<category><![CDATA[AS3]]></category>

		<category><![CDATA[event]]></category>

		<category><![CDATA[sound]]></category>

		<category><![CDATA[sound_complete]]></category>

		<guid isPermaLink="false">http://kreativeking.com/?p=572</guid>
		<description><![CDATA[Here&#8217;s a Handy little tip I just figured out today. So I have a button that plays sound and once if finishes playing it should fire the Event.SOUND_COMPLETE. In this events handler, it resets the position back to the beginning of the clip. Now the problem is once I try to play it again, it [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a Handy little tip I just figured out today. So I have a button that plays sound and once if finishes playing it should fire the Event.SOUND_COMPLETE. In this events handler, it resets the position back to the beginning of the clip. Now the problem is once I try to play it again, it doesn&#8217;t seem to fire the Event.SOUND_COMPLETE event. Have you ever had the issue of your Event.SOUND_COMPLETE not firing properly?? Read on and find out why&#8230;&#8230;</p>
<p><span id="more-572"></span></p>
<p>After some debugging, I noticed that every time you pause a sound and play it again, a new SoundChannel is returned. Any event listeners I had applied to the SoundChannel before are disregarded once I pause and play. Instead of :</p>
<p><br class="spacer_" /></p>

<div class="wp_syntax"><div class="code"><pre class="actionscript3" style="font-family:monospace;"><span style="color: #339966; font-weight: bold;">function</span> playSound<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
<span style="color: #000000;">&#123;</span>
      mySound <span style="color: #000000; font-weight: bold;">:</span> <span style="color: #004993;">Sound</span> = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">Sound</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
      mySound.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">Event</span>.<span style="color: #004993;">COMPLETE</span>, soundLoaded<span style="color: #000000;">&#41;</span>;
      mySound.<span style="color: #004993;">load</span><span style="color: #000000;">&#40;</span>MY SONG REQUEST<span style="color: #000000;">&#41;</span>;
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #339966; font-weight: bold;">function</span> soundLoaded<span style="color: #000000;">&#40;</span>e <span style="color: #000000; font-weight: bold;">:</span> <span style="color: #004993;">Event</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
<span style="color: #000000;">&#123;</span>
      myChannel = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">SoundChannel</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
      myChannel.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">Event</span>.<span style="color: #004993;">SOUND_COMPLETE</span>, <span style="color: #004993;">soundComplete</span><span style="color: #000000;">&#41;</span>;
      myChannel = mySound.<span style="color: #004993;">play</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #339966; font-weight: bold;">function</span> <span style="color: #004993;">soundComplete</span><span style="color: #000000;">&#40;</span>e <span style="color: #000000; font-weight: bold;">:</span> <span style="color: #004993;">Event</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
<span style="color: #000000;">&#123;</span>
      <span style="color: #004993;">position</span> = <span style="color: #000000; font-weight:bold;">0</span>;
      playChannel<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>
      pauseChannel<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
      myChannel.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">Event</span>.<span style="color: #004993;">SOUND_COMPLETE</span>, <span style="color: #004993;">soundComplete</span><span style="color: #000000;">&#41;</span>;
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #339966; font-weight: bold;">function</span> pauseChannel<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
<span style="color: #000000;">&#123;</span>
     myChannel.<span style="color: #004993;">stop</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
     <span style="color: #004993;">position</span> = myChannel.<span style="color: #004993;">position</span>;
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #339966; font-weight: bold;">function</span> playChannel<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
<span style="color: #000000;">&#123;</span>
     myChannel =  mySound.<span style="color: #004993;">play</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">position</span><span style="color: #000000;">&#41;</span>;
<span style="color: #000000;">&#125;</span></pre></div></div>

<p>But It should be :</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript3" style="font-family:monospace;"><span style="color: #339966; font-weight: bold;">function</span> playSound<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
<span style="color: #000000;">&#123;</span>
      mySound <span style="color: #000000; font-weight: bold;">:</span> <span style="color: #004993;">Sound</span> = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">Sound</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
      mySound.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">Event</span>.<span style="color: #004993;">COMPLETE</span>, soundLoaded<span style="color: #000000;">&#41;</span>;
      mySound.<span style="color: #004993;">load</span><span style="color: #000000;">&#40;</span>MY SONG REQUEST<span style="color: #000000;">&#41;</span>;
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #339966; font-weight: bold;">function</span> soundLoaded<span style="color: #000000;">&#40;</span>e <span style="color: #000000; font-weight: bold;">:</span> <span style="color: #004993;">Event</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
<span style="color: #000000;">&#123;</span>
      myChannel = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">SoundChannel</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
      myChannel.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">Event</span>.<span style="color: #004993;">SOUND_COMPLETE</span>, <span style="color: #004993;">soundComplete</span><span style="color: #000000;">&#41;</span>;
      myChannel = mySound.<span style="color: #004993;">play</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #339966; font-weight: bold;">function</span> <span style="color: #004993;">soundComplete</span><span style="color: #000000;">&#40;</span>e <span style="color: #000000; font-weight: bold;">:</span> <span style="color: #004993;">Event</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
<span style="color: #000000;">&#123;</span>
      <span style="color: #004993;">position</span> = <span style="color: #000000; font-weight:bold;">0</span>;
      playChannel<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
      pauseChannel<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #339966; font-weight: bold;">function</span> pauseChannel<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
<span style="color: #000000;">&#123;</span>
     myChannel.<span style="color: #004993;">stop</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
     <span style="color: #004993;">position</span> = myChannel.<span style="color: #004993;">position</span>;
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #339966; font-weight: bold;">function</span> playChannel<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
<span style="color: #000000;">&#123;</span>
     myChannel =  mySound.<span style="color: #004993;">play</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">position</span><span style="color: #000000;">&#41;</span>;
     myChannel.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">Event</span>.<span style="color: #004993;">SOUND_COMPLETE</span>, <span style="color: #004993;">soundComplete</span><span style="color: #000000;">&#41;</span>;
<span style="color: #000000;">&#125;</span></pre></div></div>

<p>You need to register the event listener again once you call play. I hope this saves 30 minutes of your day once you start screaming&#8230;WHERE&#8217;S MY SOUND!!!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kreativeking?a=Qvmv6C7Abbk:wgV5BWrtOhk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=Qvmv6C7Abbk:wgV5BWrtOhk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=Qvmv6C7Abbk:wgV5BWrtOhk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=Qvmv6C7Abbk:wgV5BWrtOhk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=Qvmv6C7Abbk:wgV5BWrtOhk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=Qvmv6C7Abbk:wgV5BWrtOhk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=Qvmv6C7Abbk:wgV5BWrtOhk:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=Qvmv6C7Abbk:wgV5BWrtOhk:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=Qvmv6C7Abbk:wgV5BWrtOhk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=Qvmv6C7Abbk:wgV5BWrtOhk:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=Qvmv6C7Abbk:wgV5BWrtOhk:KwTdNBX3Jqk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kreativeking/~4/Qvmv6C7Abbk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kreativeking.com/?feed=rss2&amp;p=572</wfw:commentRss>
		<feedburner:origLink>http://kreativeking.com/?p=572</feedburner:origLink></item>
		<item>
		<title>Shoppable Runway</title>
		<link>http://feedproxy.google.com/~r/kreativeking/~3/gvb5-tUYpxA/</link>
		<comments>http://kreativeking.com/?p=569#comments</comments>
		<pubDate>Sun, 01 Nov 2009 08:23:23 +0000</pubDate>
		<dc:creator>Clemente Gomez - kreativeKING</dc:creator>
		
		<category><![CDATA[actionscript3]]></category>

		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://kreativeking.com/?p=569</guid>
		<description><![CDATA[

Technologies
 - Flash, CSS, AS3


Brief
 - Created @radical.media for Tommy Hilfiger

Role
 - Jr. Flash Developer - Create the page Template
- Made use of a Tweening Engine

Live Site

]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<h6>Technologies</h6>
<p> - Flash, CSS, AS3</p>
</li>
<li>
<h6>Brief</h6>
<p> - Created @radical.media for Tommy Hilfiger</p>
</li>
<h6>Role</h6>
<p> - Jr. Flash Developer - Create the page Template<br />
- Made use of a Tweening Engine</p>
</li>
<li><a href="http://usa.tommy.com/tommy/browse/feature.jsp?categoryId=1M&#038;featureId=cat420002">Live Site</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kreativeking?a=gvb5-tUYpxA:A2o2bs2bCe0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=gvb5-tUYpxA:A2o2bs2bCe0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=gvb5-tUYpxA:A2o2bs2bCe0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=gvb5-tUYpxA:A2o2bs2bCe0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=gvb5-tUYpxA:A2o2bs2bCe0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=gvb5-tUYpxA:A2o2bs2bCe0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=gvb5-tUYpxA:A2o2bs2bCe0:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=gvb5-tUYpxA:A2o2bs2bCe0:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=gvb5-tUYpxA:A2o2bs2bCe0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=gvb5-tUYpxA:A2o2bs2bCe0:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=gvb5-tUYpxA:A2o2bs2bCe0:KwTdNBX3Jqk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kreativeking/~4/gvb5-tUYpxA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kreativeking.com/?feed=rss2&amp;p=569</wfw:commentRss>
		<feedburner:origLink>http://kreativeking.com/?p=569</feedburner:origLink></item>
		<item>
		<title>Outerwear Gallery</title>
		<link>http://feedproxy.google.com/~r/kreativeking/~3/7VvP18BcJMg/</link>
		<comments>http://kreativeking.com/?p=566#comments</comments>
		<pubDate>Sun, 01 Nov 2009 08:19:28 +0000</pubDate>
		<dc:creator>Clemente Gomez - kreativeKING</dc:creator>
		
		<category><![CDATA[actionscript3]]></category>

		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://kreativeking.com/?p=566</guid>
		<description><![CDATA[ul>

Technologies
 - Flash, CSS, AS3


Brief
 - Created @radical.media for Tommy Hilfiger

Role
 - Jr. Flash Developer - Create the page Template
- Made use of a Tweening Engine

Mens Live Site
Womens Live Site

]]></description>
			<content:encoded><![CDATA[<p>ul></p>
<li>
<h6>Technologies</h6>
<p> - Flash, CSS, AS3</p>
</li>
<li>
<h6>Brief</h6>
<p> - Created @radical.media for Tommy Hilfiger</p>
</li>
<h6>Role</h6>
<p> - Jr. Flash Developer - Create the page Template<br />
- Made use of a Tweening Engine</p>
</li>
<li><a href="http://usa.tommy.com/tommy/browse/feature.jsp?featureId=cat400002&#038;categoryId=08">Mens Live Site</a></li>
<li><a href="http://usa.tommy.com/tommy/browse/feature.jsp?categoryId=1M&#038;featureId=cat400004">Womens Live Site</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kreativeking?a=7VvP18BcJMg:sL5tDEVP0mg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=7VvP18BcJMg:sL5tDEVP0mg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=7VvP18BcJMg:sL5tDEVP0mg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=7VvP18BcJMg:sL5tDEVP0mg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=7VvP18BcJMg:sL5tDEVP0mg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=7VvP18BcJMg:sL5tDEVP0mg:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=7VvP18BcJMg:sL5tDEVP0mg:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=7VvP18BcJMg:sL5tDEVP0mg:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=7VvP18BcJMg:sL5tDEVP0mg:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=7VvP18BcJMg:sL5tDEVP0mg:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=7VvP18BcJMg:sL5tDEVP0mg:KwTdNBX3Jqk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kreativeking/~4/7VvP18BcJMg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kreativeking.com/?feed=rss2&amp;p=566</wfw:commentRss>
		<feedburner:origLink>http://kreativeking.com/?p=566</feedburner:origLink></item>
		<item>
		<title>Marvel Powergrid</title>
		<link>http://feedproxy.google.com/~r/kreativeking/~3/qIv7bsdBzsA/</link>
		<comments>http://kreativeking.com/?p=562#comments</comments>
		<pubDate>Sun, 01 Nov 2009 08:11:40 +0000</pubDate>
		<dc:creator>Clemente Gomez - kreativeKING</dc:creator>
		
		<category><![CDATA[actionscript3]]></category>

		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://kreativeking.com/?p=562</guid>
		<description><![CDATA[

Technologies
 - Flash, XML, AS3


Brief
 - Created at Marvel Entertainment

Role
 - Jr. Flash Developer - Translate AS2 to AS3
- Made use of a Tweening Engine
- Receive XML and send Requests via PHP

Live Site

]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<h6>Technologies</h6>
<p> - Flash, XML, AS3</p>
</li>
<li>
<h6>Brief</h6>
<p> - Created at Marvel Entertainment</p>
</li>
<h6>Role</h6>
<p> - Jr. Flash Developer - Translate AS2 to AS3<br />
- Made use of a Tweening Engine<br />
- Receive XML and send Requests via PHP</p>
</li>
<li><a href="http://marvel.com/universe/Iron_Man_%28Anthony_Stark%29">Live Site</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kreativeking?a=qIv7bsdBzsA:OwkNQgRGdio:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=qIv7bsdBzsA:OwkNQgRGdio:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=qIv7bsdBzsA:OwkNQgRGdio:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=qIv7bsdBzsA:OwkNQgRGdio:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=qIv7bsdBzsA:OwkNQgRGdio:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=qIv7bsdBzsA:OwkNQgRGdio:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=qIv7bsdBzsA:OwkNQgRGdio:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=qIv7bsdBzsA:OwkNQgRGdio:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=qIv7bsdBzsA:OwkNQgRGdio:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=qIv7bsdBzsA:OwkNQgRGdio:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=qIv7bsdBzsA:OwkNQgRGdio:KwTdNBX3Jqk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kreativeking/~4/qIv7bsdBzsA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kreativeking.com/?feed=rss2&amp;p=562</wfw:commentRss>
		<feedburner:origLink>http://kreativeking.com/?p=562</feedburner:origLink></item>
		<item>
		<title>Tommy Hilfiger - Fashion Week 2009</title>
		<link>http://feedproxy.google.com/~r/kreativeking/~3/z_Edb5P6gUU/</link>
		<comments>http://kreativeking.com/?p=558#comments</comments>
		<pubDate>Sat, 26 Sep 2009 12:53:10 +0000</pubDate>
		<dc:creator>Clemente Gomez - kreativeKING</dc:creator>
		
		<category><![CDATA[actionscript3]]></category>

		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://kreativeking.com/?p=558</guid>
		<description><![CDATA[

Technologies
 - Flash, CSS, AS3


Brief
 - Created @radical.media for Tommy Hilfiger

Role
 - Jr. Flash Developer - Create the page Template
- Made use of a Tweening Engine

Live Site

]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<h6>Technologies</h6>
<p> - Flash, CSS, AS3</p>
</li>
<li>
<h6>Brief</h6>
<p> - Created @radical.media for Tommy Hilfiger</p>
</li>
<h6>Role</h6>
<p> - Jr. Flash Developer - Create the page Template<br />
- Made use of a Tweening Engine</p>
</li>
<li><a href="http://usa.tommy.com/tommy/browse/peoplesplace.jsp?categoryId=cat390006">Live Site</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kreativeking?a=z_Edb5P6gUU:WNVxMsb_xug:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=z_Edb5P6gUU:WNVxMsb_xug:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=z_Edb5P6gUU:WNVxMsb_xug:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=z_Edb5P6gUU:WNVxMsb_xug:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=z_Edb5P6gUU:WNVxMsb_xug:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=z_Edb5P6gUU:WNVxMsb_xug:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=z_Edb5P6gUU:WNVxMsb_xug:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=z_Edb5P6gUU:WNVxMsb_xug:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=z_Edb5P6gUU:WNVxMsb_xug:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=z_Edb5P6gUU:WNVxMsb_xug:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=z_Edb5P6gUU:WNVxMsb_xug:KwTdNBX3Jqk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kreativeking/~4/z_Edb5P6gUU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kreativeking.com/?feed=rss2&amp;p=558</wfw:commentRss>
		<feedburner:origLink>http://kreativeking.com/?p=558</feedburner:origLink></item>
		<item>
		<title>Get Schooled</title>
		<link>http://feedproxy.google.com/~r/kreativeking/~3/IiUu0dS5sZA/</link>
		<comments>http://kreativeking.com/?p=556#comments</comments>
		<pubDate>Mon, 07 Sep 2009 05:37:01 +0000</pubDate>
		<dc:creator>Clemente Gomez - kreativeKING</dc:creator>
		
		<category><![CDATA[actionscript3]]></category>

		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://kreativeking.com/?p=556</guid>
		<description><![CDATA[

Technologies
 - Flash, CSS, AS3


Brief
 - Created @radical.media for Viacom

Role
 - Jr. Flash Developer - Help style the CSS, animated logo, and minor AS3/AS2 Flash work

Live Site

]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<h6>Technologies</h6>
<p> - Flash, CSS, AS3</p>
</li>
<li>
<h6>Brief</h6>
<p> - Created @radical.media for Viacom</p>
</li>
<h6>Role</h6>
<p> - Jr. Flash Developer - Help style the CSS, animated logo, and minor AS3/AS2 Flash work</p>
</li>
<li><a href="http://www.getschooled.com/">Live Site</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kreativeking?a=IiUu0dS5sZA:yJcpAIL7-Hg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=IiUu0dS5sZA:yJcpAIL7-Hg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=IiUu0dS5sZA:yJcpAIL7-Hg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=IiUu0dS5sZA:yJcpAIL7-Hg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=IiUu0dS5sZA:yJcpAIL7-Hg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=IiUu0dS5sZA:yJcpAIL7-Hg:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=IiUu0dS5sZA:yJcpAIL7-Hg:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=IiUu0dS5sZA:yJcpAIL7-Hg:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=IiUu0dS5sZA:yJcpAIL7-Hg:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=IiUu0dS5sZA:yJcpAIL7-Hg:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=IiUu0dS5sZA:yJcpAIL7-Hg:KwTdNBX3Jqk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kreativeking/~4/IiUu0dS5sZA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kreativeking.com/?feed=rss2&amp;p=556</wfw:commentRss>
		<feedburner:origLink>http://kreativeking.com/?p=556</feedburner:origLink></item>
		<item>
		<title>Burksten Group</title>
		<link>http://feedproxy.google.com/~r/kreativeking/~3/itHl5w-VQwg/</link>
		<comments>http://kreativeking.com/?p=554#comments</comments>
		<pubDate>Mon, 07 Sep 2009 05:23:07 +0000</pubDate>
		<dc:creator>Clemente Gomez - kreativeKING</dc:creator>
		
		<category><![CDATA[xhtml + css]]></category>

		<category><![CDATA[css]]></category>

		<category><![CDATA[wordpress]]></category>

		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://kreativeking.com/?p=554</guid>
		<description><![CDATA[

Technologies
 - Wordpress, PHP, XHTML, CSS


Brief
 - Programmed this design (by BetterInPink) for Wordpress 2.7.1. This features a custom sidebar using CSS Layers and  a custom switching option for unique header on pages

Live Site

]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<h6>Technologies</h6>
<p> - Wordpress, PHP, XHTML, CSS</p>
</li>
<li>
<h6>Brief</h6>
<p> - Programmed this design (by <a href="http://www.betterinpink.com">BetterInPink</a>) for Wordpress 2.7.1. This features a custom sidebar using CSS Layers and  a custom switching option for unique header on pages</p>
</li>
<li><a href="http://www.burksten.com/">Live Site</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kreativeking?a=itHl5w-VQwg:v0-ycwk7nHo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=itHl5w-VQwg:v0-ycwk7nHo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=itHl5w-VQwg:v0-ycwk7nHo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=itHl5w-VQwg:v0-ycwk7nHo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=itHl5w-VQwg:v0-ycwk7nHo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=itHl5w-VQwg:v0-ycwk7nHo:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=itHl5w-VQwg:v0-ycwk7nHo:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=itHl5w-VQwg:v0-ycwk7nHo:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=itHl5w-VQwg:v0-ycwk7nHo:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=itHl5w-VQwg:v0-ycwk7nHo:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=itHl5w-VQwg:v0-ycwk7nHo:KwTdNBX3Jqk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kreativeking/~4/itHl5w-VQwg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kreativeking.com/?feed=rss2&amp;p=554</wfw:commentRss>
		<feedburner:origLink>http://kreativeking.com/?p=554</feedburner:origLink></item>
		<item>
		<title>Cool Flash Tip of the Week 5</title>
		<link>http://feedproxy.google.com/~r/kreativeking/~3/duhknWH4ldo/</link>
		<comments>http://kreativeking.com/?p=530#comments</comments>
		<pubDate>Thu, 23 Jul 2009 21:06:11 +0000</pubDate>
		<dc:creator>Clemente Gomez - kreativeKING</dc:creator>
		
		<category><![CDATA[AS3]]></category>

		<category><![CDATA[cft]]></category>

		<guid isPermaLink="false">http://kreativeking.com/?p=530</guid>
		<description><![CDATA[Hey Flashers, I know its been a long time since the last tip. Time has not been on my side recently, but I&#8217;m getting some more free time and I&#8217;ll be posting regularly again. Be on the look out, I have some new websites and articles coming out. You can see the latest website to [...]]]></description>
			<content:encoded><![CDATA[<p>Hey Flashers, I know its been a long time since the last tip. Time has not been on my side recently, but I&#8217;m getting some more free time and I&#8217;ll be posting regularly again. Be on the look out, I have some new websites and articles coming out. You can see the latest website to date, <a href="http://www.galleysmith.com">Galley Smith Blog</a>. But aside from all of that, down to the tip.<span id="more-530"></span></p>
<p>I&#8217;m currently working on a 3D Flash site and I decided to use Flash 10 3D instead of <a href="http://blog.papervision3d.org/">Papervision3D</a>. I felt it would be overkill to use Papervision for this project since we couldn&#8217;t get our animated 3d models into Papervision successfully. As everyone knows or some who don&#8217;t, FP10 &#8217;s z sorting is non-existent. I needed to have floating panels zoom up to show maximized version of the panel. The problem is that, scaling them up, if it is not at the top of the DisplayList, it would show the other panels in front of it still.</p>
<p>I needed to make a function that would always keep my selected panel above the rest. The <em>kreativeSort</em> function was born. Its still in its infancy, but I see potential in it. I will work on it more throughout the project at keep everyone up to date with the progress. Here is the commented function for everyone to use if you happen to have the same issue.</p>
<h5><em>Update</em></h5>
<p><em>I&#8217;ve been steered in a better direction and found of an alternative and faster way of doing this over at <a href="http://www.actionscript.org">Actionscript.org</a> from <a href="http://www.lordofduct.com/">lordofduct</a>. Check out the updated function at the <a href="#updatedFunction">bottom</a>.</em></p>
<p><br class="spacer_" /></p>
<p><a rel="shadowbox;width=400;height=500;" href="http://www.kreativeking.com/downloads/flash/kreativeSort/withoutSort.swf"><img class="centerImg" src="http://www.kreativeking.com/downloads/images/withoutsort.jpg" alt="Without KreativeSort" width="300" height="30" /></a></p>
<p style="text-align: center;"> </p>
<p><a rel="shadowbox;width=400;height=500;" href="http://www.kreativeking.com/downloads/flash/kreativeSort/withSort.swf"><img class="centerImg" src="http://www.kreativeking.com/downloads/images/withsort.jpg" alt="With KreativeSort" width="300" height="30" /></a></p>
<p><br class="spacer_" /></p>

<div class="wp_syntax"><div class="code"><pre class="actionscript3" style="font-family:monospace;"><span style="color: #3f5fbf;">/**
 * Puts selected DisplayObject on top of other DisplayObects in its container
 *
 * @param parent Container DisplayObject that holds our children.
 * @param panel Child we want to be displayed on top of the rest
 *
 * @author Clemente Gomez - kreativeKING
 */</span>
<span style="color: #0033ff; font-weight: bold;">private</span> <span style="color: #339966; font-weight: bold;">function</span> kreativeSort<span style="color: #000000;">&#40;</span><span style="color: #004993;">parent</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">DisplayObjectContainer</span>, panel<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">DisplayObject</span><span style="color: #000000;">&#41;</span> <span style="color: #000000; font-weight: bold;">:</span> <span style="color: #0033ff; font-weight: bold;">void</span>
<span style="color: #000000;">&#123;</span>
	<span style="color: #6699cc; font-weight: bold;">var</span> i <span style="color: #000000; font-weight: bold;">:</span> <span style="color: #004993;">int</span> = <span style="color: #000000; font-weight:bold;">0</span>;
	<span style="color: #6699cc; font-weight: bold;">var</span> <span style="color: #004993;">length</span> <span style="color: #000000; font-weight: bold;">:</span> <span style="color: #004993;">Number</span> = <span style="color: #004993;">parent</span>.<span style="color: #004993;">numChildren</span>;
&nbsp;
	<span style="color: #009900;">//Position the child is located at.</span>
	<span style="color: #6699cc; font-weight: bold;">var</span> pos<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">int</span>;
&nbsp;
	<span style="color: #0033ff; font-weight: bold;">for</span> <span style="color: #000000;">&#40;</span>i ; i <span style="color: #000000; font-weight: bold;">&amp;</span>lt; <span style="color: #004993;">length</span> ; i<span style="color: #000000; font-weight: bold;">++</span><span style="color: #000000;">&#41;</span>
	<span style="color: #000000;">&#123;</span>
		<span style="color: #009900;">// When child matches the level we are at in the container, recored the level in variable &quot;pos&quot;.</span>
		<span style="color: #0033ff; font-weight: bold;">if</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">parent</span>.<span style="color: #004993;">getChildAt</span><span style="color: #000000;">&#40;</span>i<span style="color: #000000;">&#41;</span> == panel<span style="color: #000000;">&#41;</span>
		<span style="color: #000000;">&#123;</span>
			pos = i;
			<span style="color: #0033ff; font-weight: bold;">break</span>;
		<span style="color: #000000;">&#125;</span>
	<span style="color: #000000;">&#125;</span>
	<span style="color: #009900;">// Removes child out of container.</span>
	<span style="color: #004993;">parent</span>.<span style="color: #004993;">removeChildAt</span><span style="color: #000000;">&#40;</span>pos<span style="color: #000000;">&#41;</span>;
&nbsp;
	<span style="color: #009900;">//Adds the child back on top of the rest.</span>
	<span style="color: #004993;">parent</span>.<span style="color: #004993;">addChildAt</span><span style="color: #000000;">&#40;</span>panel, <span style="color: #004993;">parent</span>.<span style="color: #004993;">numChildren</span><span style="color: #000000;">&#41;</span>;
&nbsp;
<span style="color: #000000;">&#125;</span></pre></div></div>

<p><br class="spacer_" /></p>
<h6 id="updatedFunction">Updated Function</h6>

<div class="wp_syntax"><div class="code"><pre class="actionscript3" style="font-family:monospace;"><span style="color: #339966; font-weight: bold;">function</span> kreativeSort<span style="color: #000000;">&#40;</span> <span style="color: #004993;">parent</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">DisplayObjectContainer</span>, panel<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">DisplayObject</span> <span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
<span style="color: #000000;">&#123;</span>
    <span style="color: #0033ff; font-weight: bold;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #004993;">parent</span>.<span style="color: #004993;">contains</span><span style="color: #000000;">&#40;</span> panel <span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span> <span style="color: #004993;">parent</span>.<span style="color: #004993;">addChild</span><span style="color: #000000;">&#40;</span> panel <span style="color: #000000;">&#41;</span>;
<span style="color: #000000;">&#125;</span></pre></div></div>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kreativeking?a=duhknWH4ldo:wxsrg9q70B4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=duhknWH4ldo:wxsrg9q70B4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=duhknWH4ldo:wxsrg9q70B4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=duhknWH4ldo:wxsrg9q70B4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=duhknWH4ldo:wxsrg9q70B4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=duhknWH4ldo:wxsrg9q70B4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=duhknWH4ldo:wxsrg9q70B4:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=duhknWH4ldo:wxsrg9q70B4:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=duhknWH4ldo:wxsrg9q70B4:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=duhknWH4ldo:wxsrg9q70B4:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=duhknWH4ldo:wxsrg9q70B4:KwTdNBX3Jqk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kreativeking/~4/duhknWH4ldo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kreativeking.com/?feed=rss2&amp;p=530</wfw:commentRss>
		<feedburner:origLink>http://kreativeking.com/?p=530</feedburner:origLink></item>
		<item>
		<title>Galley Smith Website</title>
		<link>http://feedproxy.google.com/~r/kreativeking/~3/CuCr2qvy6Og/</link>
		<comments>http://kreativeking.com/?p=499#comments</comments>
		<pubDate>Wed, 22 Jul 2009 15:13:27 +0000</pubDate>
		<dc:creator>Clemente Gomez - kreativeKING</dc:creator>
		
		<category><![CDATA[xhtml + css]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://kreativeking.com/?p=499</guid>
		<description><![CDATA[

Technologies
 - Wordpress, PHP, XHTML, CSS


Brief
 - Programmed this design (by BetterInPink) for Wordpress 2.8. This features a custom Twitter Feed on the sidebar and various depths using CSS Layers. Also a custom Theme Options panel for changing the options easily.

Live Site
Demo Site

]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<h6>Technologies</h6>
<p> - Wordpress, PHP, XHTML, CSS</p>
</li>
<li>
<h6>Brief</h6>
<p> - Programmed this design (by <a href="http://www.betterinpink.com">BetterInPink</a>) for Wordpress 2.8. This features a custom Twitter Feed on the sidebar and various depths using CSS Layers. Also a custom Theme Options panel for changing the options easily.</p>
</li>
<li><a href="http://www.galleysmith.com">Live Site</a></li>
<li><a href="http://wordpress.kreativeking.com/?themedemo=gs">Demo Site</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kreativeking?a=CuCr2qvy6Og:9emvQ_kFdus:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=CuCr2qvy6Og:9emvQ_kFdus:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=CuCr2qvy6Og:9emvQ_kFdus:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=CuCr2qvy6Og:9emvQ_kFdus:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=CuCr2qvy6Og:9emvQ_kFdus:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=CuCr2qvy6Og:9emvQ_kFdus:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=CuCr2qvy6Og:9emvQ_kFdus:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=CuCr2qvy6Og:9emvQ_kFdus:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=CuCr2qvy6Og:9emvQ_kFdus:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=CuCr2qvy6Og:9emvQ_kFdus:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=CuCr2qvy6Og:9emvQ_kFdus:KwTdNBX3Jqk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kreativeking/~4/CuCr2qvy6Og" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kreativeking.com/?feed=rss2&amp;p=499</wfw:commentRss>
		<feedburner:origLink>http://kreativeking.com/?p=499</feedburner:origLink></item>
		<item>
		<title>Web Designer Magazine 159</title>
		<link>http://feedproxy.google.com/~r/kreativeking/~3/9TFco3burkY/</link>
		<comments>http://kreativeking.com/?p=495#comments</comments>
		<pubDate>Sat, 11 Jul 2009 06:01:09 +0000</pubDate>
		<dc:creator>Clemente Gomez - kreativeKING</dc:creator>
		
		<category><![CDATA[AS3]]></category>

		<category><![CDATA[Business]]></category>

		<category><![CDATA[Design]]></category>

		<category><![CDATA[Flash News]]></category>

		<category><![CDATA[AS 3.0]]></category>

		<category><![CDATA[mp3]]></category>

		<guid isPermaLink="false">http://kreativeking.com/?p=495</guid>
		<description><![CDATA[Hey people, I&#8217;ve been published again in Web Designer Magazine Issue 159. In this tutorial, I walk you through how to make a MP3 player with a sound visualizer. Its a pretty short and straight to the point tutorial. Hopefully everyone will be able to follow along and make some cool mp3 players. If there [...]]]></description>
			<content:encoded><![CDATA[<p>Hey people, I&#8217;ve been published again in Web Designer Magazine Issue 159. In this tutorial, I walk you through how to make a MP3 player with a sound visualizer. Its a pretty short and straight to the point tutorial. Hopefully everyone will be able to follow along and make some cool mp3 players. If there are any concerns or questions, post it here on the blog and I&#8217;ll get back to you ASAP.</p>
<p><br class="spacer_" /></p>
<p>Go pick up your copy and leave some feed back. Check out a preview <a href="http://www.webdesignermag.co.uk/magazine-issues/web-designer-issue-159/">here</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kreativeking?a=9TFco3burkY:ynkDINk5cB0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=9TFco3burkY:ynkDINk5cB0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=9TFco3burkY:ynkDINk5cB0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=9TFco3burkY:ynkDINk5cB0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=9TFco3burkY:ynkDINk5cB0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=9TFco3burkY:ynkDINk5cB0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=9TFco3burkY:ynkDINk5cB0:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=9TFco3burkY:ynkDINk5cB0:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=9TFco3burkY:ynkDINk5cB0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kreativeking?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kreativeking?a=9TFco3burkY:ynkDINk5cB0:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/kreativeking?i=9TFco3burkY:ynkDINk5cB0:KwTdNBX3Jqk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kreativeking/~4/9TFco3burkY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kreativeking.com/?feed=rss2&amp;p=495</wfw:commentRss>
		<feedburner:origLink>http://kreativeking.com/?p=495</feedburner:origLink></item>
	</channel>
</rss>
