<?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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Its Not Another Gaming Site</title>
	
	<link>http://www.itsnags.com</link>
	<description>Play, Learn, Create!</description>
	<pubDate>Sat, 11 Jul 2009 17:16:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/ITSNAGS" type="application/rss+xml" /><item>
		<title>Actionscript 3.0 Basics: Working with a class</title>
		<link>http://feedproxy.google.com/~r/ITSNAGS/~3/0o7gi5NbOvU/286</link>
		<comments>http://www.itsnags.com/archives/286#comments</comments>
		<pubDate>Sat, 11 Jul 2009 17:01:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[.as]]></category>

		<category><![CDATA[actionscript 3]]></category>

		<category><![CDATA[as3 basics]]></category>

		<category><![CDATA[class]]></category>

		<category><![CDATA[fla]]></category>

		<category><![CDATA[source]]></category>

		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.itsnags.com/?p=286</guid>
		<description><![CDATA[<font size=2>        As you know I decided to start to make my transition from AS 2.0 to AS 3.0. On my way I've decided to cover a series of tutorials about the basics of actionscript 3. I will mostly be using very simple language and it would be easy to follow if you've already worked on AS2, although it shouldn't be too hard if you're just starting to work on flash.
</font>]]></description>
			<content:encoded><![CDATA[<p><font size=2>        As you know I decided to start to make my transition from AS 2.0 to AS 3.0. On my way I've decided to cover a series of tutorials about the basics of actionscript 3. I will mostly be using very simple language and it would be easy to follow if you've already worked on AS2, although it shouldn't be too hard if you're just starting to work on flash.</p>
<p>       The first thing I noticed was that while using AS 3.0 it would be much more preferable and cleaner to put code in separate class files rather than the timeline. So here I’m providing a simple introduction to class files. </p>
<p><b>STEP 1:</b> Go to File->New->Actionscript File</p>
<p><img src="http://www.itsnags.com/zips/tut1_1.jpg"></p>
<p><b>STEP 2:</b> Type the following code into the file. (It will be explained in due time)</p>
<div class="igBar"><span id="lactionscript-1"><a href="#" onclick="javascript:showCodeTxt('actionscript-1'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite">
<div id="actionscript-1">
<div class="actionscript">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#1B6632; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">package<span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#1B6632; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">display</span>.*;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#1B6632; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #0066CC;">import</span> flash.<span style="color: #0066CC;">text</span>.*;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#1B6632; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">class</span> Myfirstclass <span style="color: #0066CC;">extends</span> <span style="color: #0066CC;">MovieClip</span> <span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#1B6632; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">function</span> Myfirstclass<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#1B6632; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">var</span> objectVariable1:<span style="color: #0066CC;">TextField</span> = <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #0066CC;">TextField</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#1B6632; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; objectVariable1.<span style="color: #0066CC;">text</span> = “Welcome to Classes”;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#1B6632; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addChild<span style="color: #66cc66;">&#40;</span>objectVariable1<span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#1B6632; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#1B6632; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#1B6632; font-weight:bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Explaination of the above code:</p>
<p><b>LINE 1:</b> It declares that this Actionscript file contains a package that defines a class.<br />
<b>LINE 2:</b> Imports a “Library Class” flash.display.* (ie. All functions in flash.display)[If you don’t know what a library class is just <a href="http://www.google.com/search?hl=en&#038;q=what+is+a+library+class&#038;aq=f&#038;oq=&#038;aqi=">google it.</a>]<br />
<b>LINE 3:</b> Imports another library class for text. We’ve imported these two classes cause in our little program we have inserted some “text” and “displayed” it on the screen.<br />
<b>LINE 4:</b> Defines that this class is public ie. It can be accessed by the MovieClip. The name of the class is Myfirstclass (note: the file must also be saved as Myfirstclass.as). the “extends MovieClip” part is appended so as to tell flash that this class works in unison with a MovieClip (the root is also a movieclip)<br />
<b>LINE5:</b> Defines a new function in the class<br />
<b>LINE6:</b> Declaration of a variable named “objectVariable1” of the type “TextField”<br />
<b>LINE7:</b> Putting the string to be displayed into the textbox.<br />
<b>LINE8:</b> Adding the textbox to the root.</p>
<p><b>STEP 3:</b> Go to File->New->Flash File(actionscript 3.0)</p>
<p><img src="http://www.itsnags.com/zips/tut1_2.jpg"></p>
<p><b>STEP 4:</b> In the properties window change the document class value to “Myfirstclass”</p>
<p><img src="http://www.itsnags.com/zips/tut1_3.jpg"></p>
<p>One compilation the .as file is automatically compiled and the text is shown onto the screen.</p>
<p><object width="550" height="400"><param name="movie" value="http://www.itsnags.com/swfs/Myfirstclass.swf"><embed src="http://www.itsnags.com/swfs/Myfirstclass.swf" width="550" height="400"></embed></object></p>
<p>You can download the source files for this Tutorial <a href="http://www.itsnags.com/zips/Myfirstclass.jpg">here.</a><br />
</font></p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="sunil.changrani@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Beer for Actionscript 3.0 Basics: Working with a class" /><input type="hidden" name="currency_code" value="" /><input type="hidden" name="amount" value="" /><input type="image" src="http://www.itsnags.com/wp-content/plugins/buy-me-beer/icon_beer.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=sunil.changrani@gmail.com&amp;currency_code=&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Beer+for+Actionscript+3.0+Basics:+Working+with+a+class" target="paypal">If you liked this post, Buy me some beer (or coffee)</a></p><img src="http://feeds.feedburner.com/~r/ITSNAGS/~4/0o7gi5NbOvU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itsnags.com/archives/286/feed</wfw:commentRss>
		<feedburner:origLink>http://www.itsnags.com/archives/286</feedburner:origLink></item>
		<item>
		<title>AirBorne</title>
		<link>http://feedproxy.google.com/~r/ITSNAGS/~3/Q-JYxe1P9ws/278</link>
		<comments>http://www.itsnags.com/archives/278#comments</comments>
		<pubDate>Mon, 22 Jun 2009 07:25:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Featured Games]]></category>

		<category><![CDATA[Action]]></category>

		<category><![CDATA[Arcade]]></category>

		<category><![CDATA[balloons]]></category>

		<category><![CDATA[destroy]]></category>

		<category><![CDATA[fun]]></category>

		<category><![CDATA[shoot]]></category>

		<category><![CDATA[shooter]]></category>

		<category><![CDATA[weapon]]></category>

		<guid isPermaLink="false">http://www.itsnags.com/?p=278</guid>
		<description><![CDATA[<font size=2>They fly! Destroy them all ruthlessly! Enemies are cruel and guileful! At your order: hotbrain and coldheart, and even more: draughts of dynamite, mines, bombs and something else! In your hands: high-technological powerful accessible weapon of an antiquity - a manual catapult! All you need is: kill, crush and destroy! Annihilate enemies. Upgrade weapons. Trample enemies. Buy new ammunition. Exterminate enemies. Destroy them more and more and more and more...stop!... though...better don't stop! Let's see what you is fit for! Be the real airborne!</font>]]></description>
			<content:encoded><![CDATA[<p><object width="550" height="500"><param name="movie" value="http://www.itsnags.com/swfs/june09last.swf"><embed src="http://www.itsnags.com/swfs/june09last.swf" width="550" height="500"></embed></object></p>
<p><font size=2>Its a common joke among flash game developers: The element that makes a flash game most successful is the balloon popping sound. Well in that case AirBorne should be one of the most successful games in its genre. The game has the simple concept of a toy catapult. </p>
<p>A lot of balloons come flying out of nowhere and all you need to do is to destroy them using rocks, dynamite, mines and what not. The game glued me to my computer for 1 and a half hour after which I gave up and tried something else. The multiple level system, currency system and the difficulty curve is perfect to have a fun afternoon or just pop some balloons during the lunch break. </p>
<p>In the end: I loved this game and so would you, I give it 9.5/10 </font></p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="sunil.changrani@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Beer for AirBorne" /><input type="hidden" name="currency_code" value="" /><input type="hidden" name="amount" value="" /><input type="image" src="http://www.itsnags.com/wp-content/plugins/buy-me-beer/icon_beer.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=sunil.changrani@gmail.com&amp;currency_code=&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Beer+for+AirBorne" target="paypal">If you liked this post, Buy me some beer (or coffee)</a></p><img src="http://feeds.feedburner.com/~r/ITSNAGS/~4/Q-JYxe1P9ws" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itsnags.com/archives/278/feed</wfw:commentRss>
		<feedburner:origLink>http://www.itsnags.com/archives/278</feedburner:origLink></item>
		<item>
		<title>Lucky Roll</title>
		<link>http://feedproxy.google.com/~r/ITSNAGS/~3/cG_eaDJgfnY/276</link>
		<comments>http://www.itsnags.com/archives/276#comments</comments>
		<pubDate>Thu, 04 Jun 2009 01:52:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[In House productions]]></category>

		<category><![CDATA[Casino]]></category>

		<category><![CDATA[Other]]></category>

		<category><![CDATA[puzzles]]></category>

		<guid isPermaLink="false">http://www.itsnags.com/?p=276</guid>
		<description><![CDATA[<font size=2>There are times in every flash developer's life when they're just lying awake in the bed and think, Man!! I should just go create a game tonight. Well Lucky Roll was one such creation. I did it in about 2 hours and rolled it out the next morning. I won't rate it good, I won't rate it bad, but if you like casino style games maybe you'll enjoy it.</font>]]></description>
			<content:encoded><![CDATA[<p><object width="550" height="400"><param name="movie" value="http://www.itsnags.com/swfs/inhousejune0902.swf"><embed src="http://www.itsnags.com/swfs/inhousejune0902.swf" width="550" height="400"></embed></object></p>
<p><font size=2>There are times in every flash developer's life when they're just lying awake in the bed and think, Man!! I should just go create a game tonight. Well Lucky Roll was one such creation. I did it in about 2 hours and rolled it out the next morning. I won't rate it good, I won't rate it bad, but if you like casino style games maybe you'll enjoy it.</font></p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="sunil.changrani@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Beer for Lucky Roll" /><input type="hidden" name="currency_code" value="" /><input type="hidden" name="amount" value="" /><input type="image" src="http://www.itsnags.com/wp-content/plugins/buy-me-beer/icon_beer.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=sunil.changrani@gmail.com&amp;currency_code=&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Beer+for+Lucky+Roll" target="paypal">If you liked this post, Buy me some beer (or coffee)</a></p><img src="http://feeds.feedburner.com/~r/ITSNAGS/~4/cG_eaDJgfnY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itsnags.com/archives/276/feed</wfw:commentRss>
		<feedburner:origLink>http://www.itsnags.com/archives/276</feedburner:origLink></item>
		<item>
		<title>Good Games Vs Great Games</title>
		<link>http://feedproxy.google.com/~r/ITSNAGS/~3/cSsmLj-UR7g/270</link>
		<comments>http://www.itsnags.com/archives/270#comments</comments>
		<pubDate>Wed, 03 Jun 2009 15:57:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Flash Developers Guide]]></category>

		<category><![CDATA[create]]></category>

		<category><![CDATA[Developers]]></category>

		<category><![CDATA[games]]></category>

		<category><![CDATA[Guide]]></category>

		<category><![CDATA[how to make good flash games]]></category>

		<guid isPermaLink="false">http://www.itsnags.com/?p=270</guid>
		<description><![CDATA[<font size=2>Christopher Gregorio recently explained on Mochi Forums the difference between "Good" flash games and "Great" flash games. I think he was pretty accurate and this article will help developers making that jump from Good to Great. Great read!! enjoy!!</font>]]></description>
			<content:encoded><![CDATA[<p><font size=2>I read this post on the Mochi Forums by <a href="https://www.mochiads.com/community/profile/Xdragonx10">Christopher Gregorio</a> He mentioned how some developers create good games (around 10k to 500k views) while others go on to create great games(More than a million plays)</p>
<p>Here's how he suggests developers make the jump from making good games to making great games:</p>
<p>What you need:</p>
<p>    * A good knowledge base of ActionScript<br />
    * Either the ability to produce appealing art or the ability to hire someone to make it for you (Doesn't have to be amazing)<br />
    * Time<br />
    * The desire to make a game where you can truly say "I want to play this" when you're finished</p>
<p>If you don't have any of the above making a great game isn't going to happen for you.</p>
<p>Some things to point out:</p>
<p>    * Genre does not matter, a good game can come from anywhere<br />
    * The key to a great game is execution, the original concept only has a slight impact<br />
    * Polish is extremely important, having bugs and loose ends can ruin an otherwise great game<br />
    * Your game should include a lot of content, games made in 1-2 days rarely become massive hits.</p>
<p>Alright, now to actually go through the steps of making a great game -</p>
<p>    * Come up with a concept, copying previously successful base concepts is fine as long as you don't leave too many similarities. Your concept should be more complex than "A Mouse Avoider", make it very detailed. When doing this step I would suggest fully laying everything out (but always leave room for changes). You can also go the "Make it up as I go" approach, but this can often leave you uninspired when you don't see where you're headed. Make sure when the game is finished it has a lot of variety, nobody likes doing the same thing more than few times.<br />
    * Envision the end goal, you need to know that you're going to make this game as good as possible.<br />
    * Start Coding<br />
    * Make/Collect the art, and add it into the game<br />
    * Finish a Prototype<br />
    * Get people to test your game, collect feedback and make changes accordingly<br />
    * Add more content (And by content I mean more unique features that vary the gameplay, not just ways to make the game longer)<br />
    * Have others beta test the game and look at their feedback critically, if you want your game to be great you need them to honestly tell you they enjoy playing your game just as much as other top hits. FGL's FI system is very useful here.<br />
    * Always look at your game and say "How can I make it better", "What can I add", and "What do other games have that I don't" and constantly make changes until your answers are "I can't (be very honest, don't get lazy and say you can't because it would take too long)", "Nothing", and "Nothing" respectively.<br />
    * Balance the game, a good difficulty curve is crucial<br />
    * Polish the game making sure there are no loose ends and adding in little extras (These go a long way).<br />
    * Beta test again, leave no bugs or loose ends<br />
    * Get Sponsored, release the game<br />
    * Smile as you watch you MochiBot climb to millions of plays.</p>
<p>Now the above things will make your game well liked and spread well, but if you want a lot of plays you need to include factors that make the game replayable.</p>
<p>What makes a game replayable-</p>
<p>    * Achievements<br />
    * Level Editor<br />
    * Randomness<br />
    * Lots of content W/ a save system<br />
    * Customization of something</p>
<p>Final note: Good games always fall short somewhere along the list of steps to make a great a game, making great games doesn't require more skill than good games, all you have to do is not try to cut corners.</font></p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="sunil.changrani@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Beer for Good Games Vs Great Games" /><input type="hidden" name="currency_code" value="" /><input type="hidden" name="amount" value="" /><input type="image" src="http://www.itsnags.com/wp-content/plugins/buy-me-beer/icon_beer.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=sunil.changrani@gmail.com&amp;currency_code=&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Beer+for+Good+Games+Vs+Great+Games" target="paypal">If you liked this post, Buy me some beer (or coffee)</a></p><img src="http://feeds.feedburner.com/~r/ITSNAGS/~4/cSsmLj-UR7g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itsnags.com/archives/270/feed</wfw:commentRss>
		<feedburner:origLink>http://www.itsnags.com/archives/270</feedburner:origLink></item>
		<item>
		<title>D-Finder 3</title>
		<link>http://feedproxy.google.com/~r/ITSNAGS/~3/tDtq3yriRLQ/267</link>
		<comments>http://www.itsnags.com/archives/267#comments</comments>
		<pubDate>Wed, 03 Jun 2009 15:25:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Featured Games]]></category>

		<category><![CDATA[differences]]></category>

		<category><![CDATA[find]]></category>

		<category><![CDATA[puzzle]]></category>

		<category><![CDATA[Spot]]></category>

		<guid isPermaLink="false">http://www.itsnags.com/?p=267</guid>
		<description><![CDATA[<font size=2> Difference Finder 3 is a "spot the difference" game that offers nothing new in the genre. But it is a game that has been perfectly executed and I'd surely recommend the average casual gamer to try it out. Definitely worth playing.</font>]]></description>
			<content:encoded><![CDATA[<p><object width="690" height="500"><param name="movie" value="http://www.itsnags.com/swfs/june0902.swf"><embed src="http://www.itsnags.com/swfs/june0902.swf" width="690" height="500"></embed></object></p>
<p><font size=2> This is just another differences game. But it has been executed to "almost" perfection. The art, the sound, the effects are neither too boring nor to flashy. The game itself is perfect for playing fully at least once. I enjoyed the way the developer has included difficulty modes and levels that progressively get a little more fun as you play through difference finder 3.</p>
<p>I enjoyed the game and passed about an hour of my time on this. I would recommend it to the average casual gamer.</p>
<p>I rate it 8/10</font></p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="sunil.changrani@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Beer for D-Finder 3" /><input type="hidden" name="currency_code" value="" /><input type="hidden" name="amount" value="" /><input type="image" src="http://www.itsnags.com/wp-content/plugins/buy-me-beer/icon_beer.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=sunil.changrani@gmail.com&amp;currency_code=&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Beer+for+D-Finder+3" target="paypal">If you liked this post, Buy me some beer (or coffee)</a></p><img src="http://feeds.feedburner.com/~r/ITSNAGS/~4/tDtq3yriRLQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itsnags.com/archives/267/feed</wfw:commentRss>
		<feedburner:origLink>http://www.itsnags.com/archives/267</feedburner:origLink></item>
		<item>
		<title>Goodbye Action Script 2</title>
		<link>http://feedproxy.google.com/~r/ITSNAGS/~3/qA7oAD8yJXA/263</link>
		<comments>http://www.itsnags.com/archives/263#comments</comments>
		<pubDate>Tue, 02 Jun 2009 07:07:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[as2]]></category>

		<category><![CDATA[as3]]></category>

		<category><![CDATA[migration]]></category>

		<guid isPermaLink="false">http://www.itsnags.com/?p=263</guid>
		<description><![CDATA[<font size=2>After a great thought I've decided to scrap all my on going AS2 projects. The language is as good as dead now. Its better for me and you to move forward and look at the great opportunities that AS3 has to offer to us. Good-bye AS2, We'll miss you.</font>]]></description>
			<content:encoded><![CDATA[<p><font size=2>Its difficult to migrate from one language to another. For me this is even more difficult as actionscript 2 was one of the first programming languages that I tried my hand on. I was never able to master it. I never got the time to do that and now I must move onto Action Script 3. I haven't posted a tutorial for a long time because  I didn't think posting one in AS2 was worth it any more.</p>
<p>I will be leaving my home for a month going to a gulf country for some internship. Hopefully I'll get ample amount of time there to learn AS3 from scratch and when I'm back I'll be posting a series of good tutorials on this site.</p>
<p>But till then, lets bow our heads in silence for a minute in remembrance of this great gift to flash gamers world wide. Lets mourn the loss of AS2 and hope AS3 brings greater and better things.</font></p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="sunil.changrani@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Beer for Goodbye Action Script 2" /><input type="hidden" name="currency_code" value="" /><input type="hidden" name="amount" value="" /><input type="image" src="http://www.itsnags.com/wp-content/plugins/buy-me-beer/icon_beer.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=sunil.changrani@gmail.com&amp;currency_code=&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Beer+for+Goodbye+Action+Script+2" target="paypal">If you liked this post, Buy me some beer (or coffee)</a></p><img src="http://feeds.feedburner.com/~r/ITSNAGS/~4/qA7oAD8yJXA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itsnags.com/archives/263/feed</wfw:commentRss>
		<feedburner:origLink>http://www.itsnags.com/archives/263</feedburner:origLink></item>
		<item>
		<title>Bugwar</title>
		<link>http://feedproxy.google.com/~r/ITSNAGS/~3/hjVdomEvn9I/260</link>
		<comments>http://www.itsnags.com/archives/260#comments</comments>
		<pubDate>Tue, 02 Jun 2009 05:34:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Featured Games]]></category>

		<category><![CDATA[bugs]]></category>

		<category><![CDATA[defence]]></category>

		<category><![CDATA[domination]]></category>

		<guid isPermaLink="false">http://www.itsnags.com/?p=260</guid>
		<description><![CDATA[<font size=2>Bugwar on the surface is defence/offence game revolving around the insect world of colonies and domination. However it was the first game in a long time that made me play it through to the end and left me craving for more.</font>]]></description>
			<content:encoded><![CDATA[<p><object width="640" height="480"><param name="movie" value="http://www.itsnags.com/swfs/june0901.swf"><embed src="http://www.itsnags.com/swfs/june0901.swf" width="640" height="480"></embed></object></p>
<p><font size=2>Bugwar is the first flash game in a long while that I played right through to the end and it left me craving for more. The game is based around the theme of insect colonies trying to dominate a particular area. Its a great blend of defence, offence and strategy. Great sound, good features, upgrades and the fast pace of this game makes it perfect to pass a couple of hours of your free time.<br />
The interface is also one of the least frustrating ones I've seen as its easy to play lost levels, pause the game when needed or even just playing the game makes you wonder how this entire game can revolve around the left mouse click.</p>
<p>I was disappointed however when I couldn't find a reset level button when stuck in hopeless situations.</p>
<p>All in all a great game.<br />
I give it a 9/10<br />
</font></p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="sunil.changrani@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Beer for Bugwar" /><input type="hidden" name="currency_code" value="" /><input type="hidden" name="amount" value="" /><input type="image" src="http://www.itsnags.com/wp-content/plugins/buy-me-beer/icon_beer.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=sunil.changrani@gmail.com&amp;currency_code=&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Beer+for+Bugwar" target="paypal">If you liked this post, Buy me some beer (or coffee)</a></p><img src="http://feeds.feedburner.com/~r/ITSNAGS/~4/hjVdomEvn9I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itsnags.com/archives/260/feed</wfw:commentRss>
		<feedburner:origLink>http://www.itsnags.com/archives/260</feedburner:origLink></item>
		<item>
		<title>More Ponderings Over Conficker</title>
		<link>http://feedproxy.google.com/~r/ITSNAGS/~3/R9z1rqkXChc/257</link>
		<comments>http://www.itsnags.com/archives/257#comments</comments>
		<pubDate>Tue, 07 Apr 2009 08:49:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[Conficker]]></category>

		<category><![CDATA[downadup]]></category>

		<category><![CDATA[Kido]]></category>

		<category><![CDATA[method]]></category>

		<category><![CDATA[removal]]></category>

		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.itsnags.com/?p=257</guid>
		<description><![CDATA[Conficker/Downadup/Kido is a really bad worm infection that your computer can get. I was unlucky enough to be infected with it and here is my story on how I went about removing conficker from my system.]]></description>
			<content:encoded><![CDATA[<p><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:ApplyBreakingRules /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:UseFELayout /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if !mso]><span class="mceItemObject"   classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></span> <mce:style><!<br />
st1\:*{behavior:url(#ieooui) }<br />
--> <!--[endif]--><!--[if gte mso 10]> <mce:style><!</p>
<p class="MsoNormal">I am no security expert, but I think I was able to rid my old laptop of the Downadup infection it had got. Since this virus is so complex I’m still not sure if my laptop is clean but I’m quite positive about things.</p>
<p class="MsoNormal">
<p class="MsoNormal"><strong>What is Conficker?</strong></p>
<p>Kido worm also known as Downadup, Downup and Conficker is a network worm that has was first detected in November 2008. Since then it is continuing to spread very rapidly and estimates vary from 9 million infected windows computers to as high as 40 million infections.</p>
<p>Conficker exploits a vulnerability in windows which was patched incidentally a month before Conficker was encountered. Unfortunately most people like myself do not bother to update windows regularly. I for one have a slow connection and get really irritated by windows having to download one update or another every 5 hours or so.</p>
<p class="MsoNormal"><strong>What is Conficker so deadly?</strong></p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal">Conficker is deadly because it spreads through networks and USB devices alike. Most antivirus systems were not able to detect or disinfect Conficker until very recently. But once on the system it can do the following that makes Kido very dangerous. As far as I have the information it can:</p>
<ul style="margin-top: 0in;" type="disc">
<li class="MsoNormal">Download      updates for itself through HTTP or P2P</li>
<li class="MsoNormal">Disable      windows updates/ security center/ defender / antivirus</li>
<li class="MsoNormal">Disable      Windows firewall.</li>
</ul>
<p class="MsoNormal">
<p class="MsoNormal">Conficker was supposed to receive certain updates on April 1 2009 after which it was supposed to become more deadly. Although most of the security experts believe this never happen I noticed some weird changes on my system that might have been related or coincidence on April 1. These were I believe the effects of some version of Kido on my system (there are many versions and I won’t discuss about them). These were the changes that happened on my system:</p>
<ul style="margin-top: 0in;" type="disc">
<li class="MsoNormal">My      KIS8 antivirus got disabled and exited and I was unable to start it.</li>
<li class="MsoNormal">I was      unable to boot in safe mode and was encountering a BSOD</li>
<li class="MsoNormal">When I      uninstalled KIS8 and tried to install Avast I encountered BSOD</li>
<li class="MsoNormal">My      system and Internet Access became slower.</li>
<li class="MsoNormal">My      windows defender and security center were missing.</li>
</ul>
<p class="MsoNormal">
<p class="MsoNormal">
<p class="MsoNormal"><strong>How to defend yourself from Conficker?</strong></p>
<p class="MsoNormal">Install the suitable update for your system according to <a title="http://www.microsoft.com/technet/security/bulletin/MS08-067.mspx" href="http://www.microsoft.com/technet/security/bulletin/MS08-067.mspx">MS08-067</a>, <a href="http://www.microsoft.com/technet/security/bulletin/ms08-068.mspx">MS08-068</a> and <a href="http://www.microsoft.com/technet/security/bulletin/ms09-001.mspx">MS09-001</a> right now. This would help you if you haven’t been infected. If you have been, well I’ll come to that later.</p>
<p class="MsoNormal">
<p class="MsoNormal"><strong>How to remove Conficker (according to the internet)?</strong></p>
<p class="MsoNormal">
<p class="MsoNormal">Once you are infected you can use some of the tools provided by various security vendors. These are free tools and claim to remove Conficker but since the virus is so self evolving it might happen that they might not completely disinfect the system</p>
<p class="MsoNormal">
<p class="MsoNormal">You might need a proxy to get to these sites if you have a virus. I’d personally recommend Your-freedom (<a href="http://www.your-freedom.net/">http://www.your-freedom.net</a>)</p>
<p class="MsoNormal">
<p class="MsoNormal"><a href="http://www.bitdefender.com/VIRUS-1000462-en--Win32.Worm.Downadup.Gen.html"><strong><span style="text-decoration: none; color: #000000;">BitDefender</span></strong></a> : <a href="http://www.bitdefender.com/site/Downloads/downloadFile/1584/FreeRemovalTool">Win32.Worm.Downadup.Gen Remover</a> (can be downloaded from bdtools.net)<br />
<a href="http://technet.microsoft.com/en-us/security/dd452420.aspx"><strong><span style="text-decoration: none; color: #000000;">Microsoft</span></strong></a> : <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=AD724AE0-E72D-4F54-9AB3-75B8EB148356&amp;displaylang=en">Windows Malicious Software Removal Tool</a><br />
<a href="http://support.kaspersky.com/faq/?qid=208279973"><strong><span style="text-decoration: none; color: #000000;">Kaspersky</span></strong></a> : <a href="http://data2.kaspersky-labs.com:8080/special/KidoKiller_v3.3.3.zip">KidoKiller</a><br />
<a href="ftp://193.110.109.53/anti-virus/tools/beta/f-downadup.txt"><strong><span style="text-decoration: none; color: #000000;">F-Secure</span></strong></a> : <a href="ftp://ftp.f-secure.com/anti-virus/tools/beta/f-downadup.zip">F-downadup</a><br />
<!--[if !supportLineBreakNewLine]--><br />
<!--[endif]--></p>
<p class="MsoNormal">
<p class="MsoNormal"><strong>How I went about removing (and removed) Kido from my system?</strong></p>
<p class="MsoNormal"><span> </span></p>
<p class="MsoNormal">A little background: I encountered Kido on my system in Feb 09. Then I updated my KIS8 one day and got a message that my system is protected so I assumed the virus had been neutralized. Then I encountered the changes I mentioned above.</p>
<p class="MsoNormal">
<p class="MsoNormal">Well first of all I disconnected my system from the network, I would suggest everyone does the same before starting the disinfection.</p>
<p class="MsoNormal">
<p class="MsoNormal">Then I downloaded the following tools from another system:</p>
<p class="MsoNormal">Patch for Microsoft vulnerability</p>
<p class="MsoNormal"><strong>Security Update for Windows XP </strong>(<em><strong>KB958644</strong></em>)<strong><span> </span>(</strong><a href="http://www.microsoft.com/downloads/details.aspx?familyid=0D5F9B6E-9265-44B9-A376-2067B73D6A03&amp;displaylang=en">http://www.microsoft.com/downloads/details.aspx?familyid=0D5F9B6E-9265-44B9-A376-2067B73D6A03&amp;displaylang=en</a><strong>)</strong></p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal">I’m using windows XP, you will need to download the appropriate patch according to the vulnerabilities mentioned above.</p>
<p class="MsoNormal">
<p class="MsoNormal"><strong>Removal tool</strong></p>
<p class="MsoNormal">First I used the BitDefender tool available from <a href="http://www.bdtools.net/">http://www.bdtools.net/</a></p>
<p class="MsoNormal">Then I ran the Kido Killer just to be sure <a href="http://www.kaspersky.com/technews?id=203038750">http://www.kaspersky.com/technews?id=203038750</a></p>
<p class="MsoNormal">
<p class="MsoNormal">Then I rebooted my machine and installed the microoft patch then rebooted and installed BitDefender Total Security 2009 and activated the trial version. I did a deep computer scan to remove all the malware infecting my computer because of the computer security going down. Then connected the computer to the internet downloaded updates and again performed a deep system scan again. So far the system is working properly so I think I have removed the virus.</p>
<p class="MsoNormal">
<p class="MsoNormal">More updates will follow.</p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="sunil.changrani@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Beer for More Ponderings Over Conficker" /><input type="hidden" name="currency_code" value="" /><input type="hidden" name="amount" value="" /><input type="image" src="http://www.itsnags.com/wp-content/plugins/buy-me-beer/icon_beer.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=sunil.changrani@gmail.com&amp;currency_code=&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Beer+for+More+Ponderings+Over+Conficker" target="paypal">If you liked this post, Buy me some beer (or coffee)</a></p><img src="http://feeds.feedburner.com/~r/ITSNAGS/~4/R9z1rqkXChc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itsnags.com/archives/257/feed</wfw:commentRss>
		<feedburner:origLink>http://www.itsnags.com/archives/257</feedburner:origLink></item>
		<item>
		<title>Airport Manie: First Flight</title>
		<link>http://feedproxy.google.com/~r/ITSNAGS/~3/CLdkk4-Zixs/255</link>
		<comments>http://www.itsnags.com/archives/255#comments</comments>
		<pubDate>Mon, 06 Apr 2009 05:46:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[airport]]></category>

		<category><![CDATA[click management]]></category>

		<category><![CDATA[cute]]></category>

		<category><![CDATA[planes]]></category>

		<category><![CDATA[Reflexive]]></category>

		<category><![CDATA[runway]]></category>

		<category><![CDATA[simulation]]></category>

		<guid isPermaLink="false">http://www.itsnags.com/?p=255</guid>
		<description><![CDATA[Pack your bags for a trip through the skies in Airport Mania!]]></description>
			<content:encoded><![CDATA[<p><object width="550" height="412"><param name="movie" value="http://www.itsnags.com/swfs/ap09001.swf"><embed src="http://www.itsnags.com/swfs/ap09001.swf" width="550" height="412"></embed></object></p>
<p>Description: Pack your bags for a trip through the skies in Airport Mania! Travel through amusing airports while you land a variety of planes, earn upgrades, and avoid delays. Stay on your toes as some planes carry precious cargo and will need to land in a hurry, while others might need a trip to the repair shop. But, with good planning, you'll make it to the gate on time! With unique challenges, whimsical characters, and fun that will put a smile on your face, Airport Mania is one flight you can't miss!</p>
<p>    * Width: 550 px   Height: 412 px<br />
    * Content Rating: Everyone</p>
<p>Control Scheme:</p>
<p>    * fire: left mouse<br />
    * movement: mouse</p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="sunil.changrani@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Beer for Airport Manie: First Flight" /><input type="hidden" name="currency_code" value="" /><input type="hidden" name="amount" value="" /><input type="image" src="http://www.itsnags.com/wp-content/plugins/buy-me-beer/icon_beer.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=sunil.changrani@gmail.com&amp;currency_code=&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Beer+for+Airport+Manie:+First+Flight" target="paypal">If you liked this post, Buy me some beer (or coffee)</a></p><img src="http://feeds.feedburner.com/~r/ITSNAGS/~4/CLdkk4-Zixs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itsnags.com/archives/255/feed</wfw:commentRss>
		<feedburner:origLink>http://www.itsnags.com/archives/255</feedburner:origLink></item>
		<item>
		<title>I was attacked</title>
		<link>http://feedproxy.google.com/~r/ITSNAGS/~3/ZfTRoJx6UIs/252</link>
		<comments>http://www.itsnags.com/archives/252#comments</comments>
		<pubDate>Mon, 06 Apr 2009 05:18:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[antivirus]]></category>

		<category><![CDATA[Conficker]]></category>

		<category><![CDATA[Kido]]></category>

		<category><![CDATA[malware]]></category>

		<category><![CDATA[removal]]></category>

		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.itsnags.com/?p=252</guid>
		<description><![CDATA[So here is a brand new category to my blog, the Security category! You guys must have noticed that the blog has been dead mostly in recent. This was due to many reasons, one of them being that my computer was infected by Conficker aka Downadup aka Kido. A stupid worm that does a lot of stupid things to one's personal computer. ]]></description>
			<content:encoded><![CDATA[<p>Hey,</p>
<p>So here is a brand new category to my blog, the Security category! You guys must have noticed that the blog has been dead mostly in recent. This was due to many reasons, one of them being that my computer was infected by Conficker aka Downadup aka Kido. A stupid worm that does a lot of stupid things to one's personal computer. </p>
<p>I did not want to format my computer so I decided that instead I'll find a way to remove this virus. Recently I was able to remove it(I hope) using a free tool from www.bdtools.net<br />
I'm still unable to access my firewall and antivirus so I'm not sure how to fix my computer. I've decided to keep this information updated everyday as approximately 25 million computers worldwide are infected. </p>
<p>So more on my battle with Kido coming soon.</p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="sunil.changrani@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Beer for I was attacked" /><input type="hidden" name="currency_code" value="" /><input type="hidden" name="amount" value="" /><input type="image" src="http://www.itsnags.com/wp-content/plugins/buy-me-beer/icon_beer.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=sunil.changrani@gmail.com&amp;currency_code=&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Beer+for+I+was+attacked" target="paypal">If you liked this post, Buy me some beer (or coffee)</a></p><img src="http://feeds.feedburner.com/~r/ITSNAGS/~4/ZfTRoJx6UIs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itsnags.com/archives/252/feed</wfw:commentRss>
		<feedburner:origLink>http://www.itsnags.com/archives/252</feedburner:origLink></item>
	</channel>
</rss>
