<?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>Mr Sun Studios &#187; News</title>
	<atom:link href="http://www.mrsunstudios.com/category/news/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mrsunstudios.com/blog</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Tue, 28 Jul 2009 15:03:18 +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>Tutorial: Create a Game Like Winter Bells in AS2</title>
		<link>http://www.mrsunstudios.com/blog/flash/tutorial-create-a-game-like-winter-bells-in-as2/</link>
		<comments>http://www.mrsunstudios.com/blog/flash/tutorial-create-a-game-like-winter-bells-in-as2/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 12:01:10 +0000</pubDate>
		<dc:creator>MrSun</dc:creator>
				<category><![CDATA[All Tutorials]]></category>
		<category><![CDATA[AS2]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Game Development]]></category>
		<category><![CDATA[Intermediate Tutorials]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[bells]]></category>
		<category><![CDATA[bounce]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[jump]]></category>
		<category><![CDATA[seasonal]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[winter]]></category>

		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=1227</guid>
		<description><![CDATA[Basic Character Programming Programming the &#8220;Bells&#8221; Level Creation Scoring Finishing Touches Step 1: Basic Character Programming Welcome, people, and get ready for yet another tutorial! In celebration of the winter season, we&#8217;re going to make a game like Winter Bells, in ActionScript 2.0. Let us begin, shall we? The basic concept of Winter Bells is [...]]]></description>
			<content:encoded><![CDATA[<div class="toc">
<ol>
<li class="c_chap"><a href="http://mrsunstudios.com/2009/01/tutorial-create-a-game-like-winter-bells-in-as2/">Basic Character Programming</a></li>
<li><a href="http://mrsunstudios.com/2009/01/tutorial-create-a-game-like-winter-bells-in-as2-part-2/">Programming the &#8220;Bells&#8221;</a></li>
<li><a href="http://mrsunstudios.com/2009/01/tutorial-create-a-game-like-winter-bells-in-as2-part-3/">Level Creation</a></li>
<li><a href="http://mrsunstudios.com/2009/01/tutorial-create-a-game-like-winter-bells-in-as2-part-4/">Scoring</a></li>
<li><a href="http://mrsunstudios.com/2009/01/tutorial-create-a-game-like-winter-bells-in-as2-part-5/">Finishing Touches</a></li>
</ol>
</div>
<h3>Step 1: Basic Character Programming</h3>
<p>Welcome, people, and get ready for yet another tutorial! In celebration of the winter season, we&#8217;re going to make a game like <a href="http://www.ferryhalim.com/orisinal/g3/bells.htm">Winter Bells</a>, in ActionScript 2.0. Let us begin, shall we?</p>
<p>The basic concept of Winter Bells is to get as high as you can by jumping on bells. It&#8217;s extremely addictive, and if you haven&#8217;t, you should play <a href="http://www.ferryhalim.com/orisinal/g3/bells.htm">it</a> now.</p>
<p>First of all, let&#8217;s set up our flash file. Keep the default dimensions of the file the same (550&#215;400), but change the background of the stage to black, and make the frame rate 24 fps.  This way, it&#8217;ll look nicer and smoother. The second thing we&#8217;ve got to do is create a character that we&#8217;re going to use. I won&#8217;t go overboard in detail on mine, so it&#8217;s going to be a simple 25&#215;25 white circle. Next, convert it into a MovieClip called &#8220;mcMain&#8221;.  Also, give it an instance name of the same thing, &#8220;mcMain&#8221;.</p>
<p><center><img src="http://www.mrsunstudios.com/obj/tuts/winter-bells-as2/pt1/convert.gif" /></center></p>
<p>Next, set it so that the crosshair is on the center of the circle. You can do this by double clicking on the MovieClip to edit it. Then, change the circle&#8217;s coordinates to -12.5, -12.5. This will make it in the exact center of the MovieClip.</p>
<p>Now, let&#8217;s add some actions to this character. Create a new layer named &#8220;actions&#8221; and then add the following code to it:</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">var</span> mainSpeed:<span style="color: #0066CC;">Number</span> = <span style="color: #cc66cc;">25</span>; <span style="color: #808080; font-style: italic;">//how fast the character will go</span>
&nbsp;
<span style="color: #0066CC;">_root</span>.<span style="color: #0066CC;">onEnterFrame</span> = <span style="color: #000000; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
	<span style="color: #808080; font-style: italic;">//making the character follow the mouse</span>
	<span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">_root</span>.<span style="color: #0066CC;">_xmouse</span> <span style="color: #66cc66;">&gt;</span> mcMain.<span style="color: #0066CC;">_x</span> + <span style="color: #cc66cc;">25</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span> <span style="color: #808080; font-style: italic;">//if the mouse is to the right of mcMain</span>
		mcMain.<span style="color: #0066CC;">_x</span> += mainSpeed;<span style="color: #808080; font-style: italic;">//move mcMain to the right</span>
	<span style="color: #66cc66;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">_root</span>.<span style="color: #0066CC;">_xmouse</span> <span style="color: #66cc66;">&lt;</span> mcMain.<span style="color: #0066CC;">_x</span> - <span style="color: #cc66cc;">25</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span><span style="color: #808080; font-style: italic;">//same thing with the left side</span>
		mcMain.<span style="color: #0066CC;">_x</span> -= mainSpeed;
	<span style="color: #66cc66;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #66cc66;">&#123;</span>
		mcMain.<span style="color: #0066CC;">_x</span> = <span style="color: #0066CC;">_xmouse</span>;<span style="color: #808080; font-style: italic;">//if it's close enough, then make it the same _x  value</span>
	<span style="color: #66cc66;">&#125;</span>
<span style="color: #66cc66;">&#125;</span></pre></div></div>

<p>This code will simply make <tt>mcMain</tt> follow the mouse on it&#8217;s <tt>_x</tt> value. That was pretty easy, right? Now, we have to make it so it can jump. In order to do this, create a MovieClip the same size (550&#215;400) and color (black) as the background with an instance name of <tt>mcBg</tt>. We&#8217;ll use this so that if clicked, the user will jump. First, we have to add some variables to the top of the stage:</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">var</span> mainJumping = <span style="color: #000000; font-weight: bold;">false</span>; <span style="color: #808080; font-style: italic;">//whether or not main is in the air</span>
<span style="color: #000000; font-weight: bold;">var</span> jumpSpeed:<span style="color: #0066CC;">Number</span> = <span style="color: #cc66cc;">0</span>; <span style="color: #808080; font-style: italic;">//how quickly he's jumping at the moment</span>
<span style="color: #000000; font-weight: bold;">var</span> jumpSpeedLimit:<span style="color: #0066CC;">Number</span> = <span style="color: #cc66cc;">25</span>; <span style="color: #808080; font-style: italic;">//how quickly he'll be able to jump</span></pre></div></div>

<p>Next, add these two functions to the bottom of the stage:</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;">mcBg.<span style="color: #0066CC;">onRelease</span> = <span style="color: #000000; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span><span style="color: #808080; font-style: italic;">//if the user clicks</span>
	mainJumping = <span style="color: #000000; font-weight: bold;">true</span>;<span style="color: #808080; font-style: italic;">//then we can start jumping</span>
	jumpSpeed = jumpSpeedLimit<span style="color: #66cc66;">*</span>-<span style="color: #cc66cc;">1</span>;<span style="color: #808080; font-style: italic;">//change the jumpSpeed so that we can begin jumping</span>
<span style="color: #66cc66;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> mainJump<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">Void</span><span style="color: #66cc66;">&#123;</span>
	<span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span>mainJumping<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span><span style="color: #808080; font-style: italic;">//if jumping has been initiated</span>
		<span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span>jumpSpeed <span style="color: #66cc66;">&lt;</span> <span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span><span style="color: #808080; font-style: italic;">//if the guy is still going up</span>
			jumpSpeed <span style="color: #66cc66;">*</span>= <span style="color: #cc66cc;">1</span> - jumpSpeedLimit<span style="color: #66cc66;">/</span><span style="color: #cc66cc;">120</span>;<span style="color: #808080; font-style: italic;">//decrease jumpSpeed slightly</span>
			<span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span>jumpSpeed <span style="color: #66cc66;">&gt;</span> -jumpSpeedLimit<span style="color: #66cc66;">*</span>.1<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span><span style="color: #808080; font-style: italic;">//if jumpSpeed is small enough</span>
				jumpSpeed <span style="color: #66cc66;">*</span>= -<span style="color: #cc66cc;">1</span>;<span style="color: #808080; font-style: italic;">//then begin to go down</span>
			<span style="color: #66cc66;">&#125;</span>
		<span style="color: #66cc66;">&#125;</span>
		<span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span>jumpSpeed <span style="color: #66cc66;">&gt;</span> <span style="color: #cc66cc;">0</span> <span style="color: #66cc66;">&amp;&amp;</span> jumpSpeed <span style="color: #66cc66;">&lt;</span>= jumpSpeedLimit<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span><span style="color: #808080; font-style: italic;">//if main is going down</span>
			jumpSpeed <span style="color: #66cc66;">*</span>= <span style="color: #cc66cc;">1</span> + jumpSpeedLimit<span style="color: #66cc66;">/</span><span style="color: #cc66cc;">120</span>;<span style="color: #808080; font-style: italic;">//incrase the falling speed</span>
		<span style="color: #66cc66;">&#125;</span>
		mcMain.<span style="color: #0066CC;">_y</span> += jumpSpeed;<span style="color: #808080; font-style: italic;">//finally, apply jumpSpeed to mcMain</span>
		<span style="color: #808080; font-style: italic;">//if main hits the floor, then stop jumping</span>
		<span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span>mcMain.<span style="color: #0066CC;">_y</span> <span style="color: #66cc66;">&gt;</span>= <span style="color: #0066CC;">Stage</span>.<span style="color: #0066CC;">height</span> - mcMain.<span style="color: #0066CC;">_height</span> <span style="color: #66cc66;">&amp;&amp;</span> totalHeight <span style="color: #66cc66;">&lt;</span>= <span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
			mainJumping = <span style="color: #000000; font-weight: bold;">false</span>;
			mcMain.<span style="color: #0066CC;">_y</span> = <span style="color: #cc66cc;">387.5</span>;
		<span style="color: #66cc66;">&#125;</span>
	<span style="color: #66cc66;">&#125;</span>
	<span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span>mcMain.<span style="color: #0066CC;">_y</span> <span style="color: #66cc66;">&gt;</span> <span style="color: #cc66cc;">387.5</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
		mcMain.<span style="color: #0066CC;">_y</span> = <span style="color: #cc66cc;">387.5</span>;
	<span style="color: #66cc66;">&#125;</span>
<span style="color: #66cc66;">&#125;</span></pre></div></div>

<p>I&#8217;ve tried to comment the code as best as I can. Hopefully, you can decipher this code. There is one final thing to do in order to make this code to work, however. In the main <tt>onEnterFrame()</tt> function, run the <tt>mainJump()</tt> function. Now, if you test the game, you&#8217;re character should be able to jump!!!</p>
<p>Well, this wraps up this part of the tutorial! Next, we&#8217;ll create &#8220;bells&#8221; to be added to the stage!</p>
<h4>The Final Product</h4>
<p><center><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550" height="400" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://mrsunstudios.com/obj/tuts/winter-bells-as2/pt1/source.swf" /><embed type="application/x-shockwave-flash" width="550" height="400" src="http://mrsunstudios.com/obj/tuts/winter-bells-as2/pt1/source.swf"></embed></object></p>
<p><a href="http://mrsunstudios.com/obj/tuts/winter-bells-as2/pt1/source.fla">Source .fla File</a></center></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mrsunstudios.com/blog/flash/tutorial-create-a-game-like-winter-bells-in-as2/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Merry Flippin&#8217; Christmas!</title>
		<link>http://www.mrsunstudios.com/blog/news/merry-flippin-christmas/</link>
		<comments>http://www.mrsunstudios.com/blog/news/merry-flippin-christmas/#comments</comments>
		<pubDate>Thu, 25 Dec 2008 15:13:06 +0000</pubDate>
		<dc:creator>MrSun</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[christmas]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[gift]]></category>
		<category><![CDATA[hurrah]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=1230</guid>
		<description><![CDATA[Merry Christmas, everyone! As a gift for everyone, I&#8217;ve put up the new re-design! Hopefully, you&#8217;ll like it!]]></description>
			<content:encoded><![CDATA[<p>Merry Christmas, everyone! As a gift for everyone, I&#8217;ve put up the new re-design! Hopefully, you&#8217;ll like it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mrsunstudios.com/blog/news/merry-flippin-christmas/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mr Sun Studios: The Resurrection Pt 1</title>
		<link>http://www.mrsunstudios.com/blog/news/mr-sun-studios-the-resurrection-pt-1/</link>
		<comments>http://www.mrsunstudios.com/blog/news/mr-sun-studios-the-resurrection-pt-1/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 13:50:49 +0000</pubDate>
		<dc:creator>MrSun</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[resurrection]]></category>

		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=1137</guid>
		<description><![CDATA[The resurrection of Mr Sun Studios has begun. The first step to this resurrection was the moving of my web host. Before, it was Blue Host, which wasn&#8217;t the greatest host. Now, I&#8217;ve changed it to Doreo Hosting, which I&#8217;ve seen has had great reviews. Pretty, nice, eh? The next step to the true resurrection [...]]]></description>
			<content:encoded><![CDATA[<p>The resurrection of Mr Sun Studios has begun. The first step to this resurrection was the moving of my web host. Before, it was <a href="http://www.bluehost.com">Blue Host</a>, which wasn&#8217;t the greatest host. Now, I&#8217;ve changed it to <a href="http://www.doreo.com">Doreo Hosting</a>, which I&#8217;ve seen has had great reviews. Pretty, nice, eh? The next step to the true resurrection is a redesign, which I am working on right now</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mrsunstudios.com/blog/news/mr-sun-studios-the-resurrection-pt-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t Worry, I&#8217;m Not Dead!</title>
		<link>http://www.mrsunstudios.com/blog/news/dont-worry-im-not-dead/</link>
		<comments>http://www.mrsunstudios.com/blog/news/dont-worry-im-not-dead/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 02:43:39 +0000</pubDate>
		<dc:creator>MrSun</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[back]]></category>
		<category><![CDATA[resurrection]]></category>

		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=1120</guid>
		<description><![CDATA[Hey guys, I have to deeply apologize for my extreme lack of posts these past few months. I&#8217;d love to tell you guys that I&#8217;ve been so busy with the next game that I&#8217;ve been developing, but that would be a lie indeed. I&#8217;ve just been lazy, playing games and doing whatnot. I probably won&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>Hey guys, I have to deeply apologize for my extreme lack of posts these past few months. I&#8217;d love to tell you guys that I&#8217;ve been so busy with the next game that I&#8217;ve been developing, but that would be a lie indeed. I&#8217;ve just been lazy, playing games and doing whatnot. </p>
<p>I probably won&#8217;t be posting as frequently as I was before, at least not until I get my groove back, but I will start posting my articles again soon (perhaps after the New Year?). You&#8217;ll just have to be patient.</p>
<p>I&#8217;m going to first re-design the site before I make any more posts, so get ready to have your socks knocked off.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mrsunstudios.com/blog/news/dont-worry-im-not-dead/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>I Won a Contest?!?</title>
		<link>http://www.mrsunstudios.com/blog/news/i-won-a-contest/</link>
		<comments>http://www.mrsunstudios.com/blog/news/i-won-a-contest/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 01:28:42 +0000</pubDate>
		<dc:creator>MrSun</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[contest]]></category>
		<category><![CDATA[mochiland]]></category>
		<category><![CDATA[surprise]]></category>

		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=953</guid>
		<description><![CDATA[Wow, I am pretty shocked. It turns out that a few days ago, on Friday, I happened to win a contest that Mochiland was hosting&#8230; I totally forgot that I actually submitted something to it. The game that won was The Alphabet Eater. So, I guess I&#8217;ll be enjoying another $1000 and a Wacom Tablet!]]></description>
			<content:encoded><![CDATA[<p>Wow, I am pretty shocked. It turns out that a few days ago, on Friday, I happened to win a <a href="http://mochiland.com/articles/super-flash-game-friday-contest-winners-announced">contest</a> that Mochiland was hosting&#8230; I totally forgot that I actually submitted something to it. The game that won was <a href="http://www.mochiads.com/contest/jul08/games/the-alphabet-eater/">The Alphabet Eater</a>. </p>
<p>So, I guess I&#8217;ll be enjoying another $1000 and a Wacom Tablet!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mrsunstudios.com/blog/news/i-won-a-contest/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CS4 is HERE!</title>
		<link>http://www.mrsunstudios.com/blog/news/cs4-is-here/</link>
		<comments>http://www.mrsunstudios.com/blog/news/cs4-is-here/#comments</comments>
		<pubDate>Tue, 23 Sep 2008 12:00:23 +0000</pubDate>
		<dc:creator>MrSun</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[cs4]]></category>
		<category><![CDATA[hurrah]]></category>

		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=911</guid>
		<description><![CDATA[Guess what, guys! Adobe has just released CS4, with some snazzy boxing if I do say so myself. Check it out now!]]></description>
			<content:encoded><![CDATA[<p>Guess what, guys! Adobe has just released CS4, with some snazzy boxing if I do say so myself.<br />
<a href="http://www.adobe.com"><img src="http://www.mrsunstudios.com/wp-content/uploads/2008/09/picture-1.gif" alt="" title="Adobe CS4"/></a><br />
<a href="http://adobe.com">Check it out now!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mrsunstudios.com/blog/news/cs4-is-here/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Grand Opening of the New Re-Design</title>
		<link>http://www.mrsunstudios.com/blog/news/the-grand-opening-of-the-new-re-design/</link>
		<comments>http://www.mrsunstudios.com/blog/news/the-grand-opening-of-the-new-re-design/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 13:26:26 +0000</pubDate>
		<dc:creator>MrSun</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=564</guid>
		<description><![CDATA[Well, if you haven&#8217;t noticed, I&#8217;ve created a new re-design for the site. It was all programmed and designed by me, without any help from or editing of other templates. I&#8217;ve tried to test it in all possible ways and fixed most of the bugs. But, there are probably still a few kinks to work [...]]]></description>
			<content:encoded><![CDATA[<p>Well, if you haven&#8217;t noticed, I&#8217;ve created a new re-design for the site. It was all programmed and designed by me, without any help from or editing of other templates. I&#8217;ve tried to test it in all possible ways and fixed most of the bugs. But, there are probably still a few kinks to work out. It would be nice if anyone would comment in this post or e-mail me if they find anything that needs a bit of work.</p>
<p>Well, I hope you enjoy walking around the new Mr Sun Studios!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mrsunstudios.com/blog/news/the-grand-opening-of-the-new-re-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Re-design is on it&#8217;s way</title>
		<link>http://www.mrsunstudios.com/blog/news/a-re-design-is-on-its-way/</link>
		<comments>http://www.mrsunstudios.com/blog/news/a-re-design-is-on-its-way/#comments</comments>
		<pubDate>Thu, 07 Aug 2008 16:38:40 +0000</pubDate>
		<dc:creator>MrSun</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=519</guid>
		<description><![CDATA[Hey guys, I&#8217;m just dropping by to say hello and tell you guys that right now I&#8217;m making a redesign of the site. I really want to show off my web design skills in this one. Here&#8217;s a sneak peak at what the header might look like&#8230; I&#8217;m thinking of taking the birds away&#8230; they [...]]]></description>
			<content:encoded><![CDATA[<p>Hey guys, I&#8217;m just dropping by to say hello and tell you guys that right now I&#8217;m making a redesign of the site. I really want to show off my web design skills in this one. Here&#8217;s a sneak peak at what the header might look like&#8230;</p>
<p><a href="http://mrsunstudios.com/obj/img/posts/redesign-header.gif"  title="Pretty sweet, eh?"><img src="http://mrsunstudios.com/obj/img/posts/redesign-header.gif" alt="Pretty sweet, eh?" /></a></p>
<p>I&#8217;m thinking of taking the birds away&#8230; they kind of seem out of place</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mrsunstudios.com/blog/news/a-re-design-is-on-its-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Strange Bunch of Traffic from Stumble Upon</title>
		<link>http://www.mrsunstudios.com/blog/news/a-strange-bunch-of-traffic-from-stumble-upon/</link>
		<comments>http://www.mrsunstudios.com/blog/news/a-strange-bunch-of-traffic-from-stumble-upon/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 01:03:16 +0000</pubDate>
		<dc:creator>MrSun</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[strange]]></category>
		<category><![CDATA[stumble upon]]></category>
		<category><![CDATA[Traffic]]></category>

		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=468</guid>
		<description><![CDATA[Today, I looked at my WordPress Stats and noticed something very strange. The most visited post for today was my Link Post Sunday 08/03. Here&#8217;s the proof: and I&#8217;m a bit confused on how this happened. I really doubt that my post that linked to other posted really became that popular&#8230; Any ideas? EDIT: I [...]]]></description>
			<content:encoded><![CDATA[<p>Today, I looked at my WordPress Stats and noticed something very strange. The most visited post for today was my <a href="http://www.mrsunstudios.com/2008/08/link-post-sunday-0803/">Link Post Sunday 08/03</a>. Here&#8217;s the proof:</p>
<p><img src="http://mrsunstudios.com/obj/img/posts/stumbleupon-89-hits.gif" alt="wtf?" /></p>
<p>and</p>
<p><img src="http://mrsunstudios.com/obj/img/posts/link-post-sunday-0803.gif" alt="wth?" /></p>
<p>I&#8217;m a bit confused on how this happened. I really doubt that my post that linked to other posted really became that popular&#8230; Any ideas?</p>
<p><strong>EDIT:</strong><br />
I found out what happened. One of the people who I linked to in that post decided to stumble it in order to get his website some hits as well. <a href="http://thedudeblog.stumbleupon.com/tag/graphics/">Quite Clever</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mrsunstudios.com/blog/news/a-strange-bunch-of-traffic-from-stumble-upon/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Comments Re-opened!</title>
		<link>http://www.mrsunstudios.com/blog/news/comments-re-opened/</link>
		<comments>http://www.mrsunstudios.com/blog/news/comments-re-opened/#comments</comments>
		<pubDate>Mon, 04 Aug 2008 03:44:33 +0000</pubDate>
		<dc:creator>MrSun</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[new]]></category>

		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=435</guid>
		<description><![CDATA[Well, I&#8217;ve just decided that I&#8217;m going to re-open comments. We&#8217;ll see how well this turns out, eh?]]></description>
			<content:encoded><![CDATA[<p>Well, I&#8217;ve just decided that I&#8217;m going to re-open comments. We&#8217;ll see how well this turns out, eh?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mrsunstudios.com/blog/news/comments-re-opened/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

