If you are worried about the changes introduced by AS3 and would like a cheatsheet for a quick reference of most of them, then you should take a look at http://actionscriptcheatsheet.com/ This site provides some interesting printable quick reference cards for the ActionScript language. AS3, Flex, AIR, Papervision, and more. Unfortunately the site seems to …
Actionscript 3
Old readers should remember Flash game creation tutorial – part 1… it’s an ond AS2 tutorial about the creation of a game like Ball Revamped and its sequels. Later Tim Edelaar coded it into AS3 in Step by step AS3 translation of Flash game creation tutorial – part 1, but with the whole code in …
In my opinion one of the most important reasons people are afraid to migrate from AS2 to AS3 is its way of scripting. Pure AS3 coding dislikes coding on the timeline and wants us to write and use custom classes. Don’t worry: you can still write your script on the timeline but you won’t be …
I wrote about Box2D Flash version about a year ago, then I published Playing with Box2DFlashAS3 and Create a Flash game like Totem Destroyer as examples covering what you can do with this library. But I was really impressed by a thread on TriquiTips submitted by Hawdon called Box2DAs3 For Beginners! (read steps 1 and …
Read all posts about "Platform game" gameIf you are looking for AS3 version of step 10, here it is… made by Robin vd Vleuten from the Netherlands with scrolling included! Hello Emanuele, I made it with flex so I use a swc to access the tiles. All the code is now in one actionscript-file, but I’m trying to convert the code …
Read all posts about "Platform game" gameI am sharing with you a basic level editor made for the platform engine but easily adaptable to any tile based game made by Daniel Felipe Rodriguez Your recent set of tutorials about the platform engine inspired me so I decide to contribute to your cause, I made a really really basic level editor but …
First, I would like to say the engine is not finished as I have a lot of tile types to add. This is the AS3 version of part 6. I am fixing some glitches and preparing another post about the theory of platform games This is the code package { import flash.display.Sprite; import flash.ui.Mouse; import …
Read all posts about "Platform game" gameAs announced in Create a Flash game like Snowflakes, here it is the AS3 version. I used the same comments to help you understanding the conversion. package { import flash.display.Sprite; import flash.ui.Mouse; import flash.events.*; public class snowflakesas3 extends Sprite { // max stars on stage var max_stars = 20; // current stars on stage var …
Read all posts about "Snowflakes" gameSome days ago I published Create a Flash game like Cirplosion using AS2, now it’s time to do it using AS3. AS3 is becoming more and more popular so I think it’s time to give it more exposure. This is the uncommented AS3 version of Cirplosion. I would like you to compare it with AS2 …
Read all posts about "Cirplosion" gameAn interesting game released these days is Totem Destroyer Your mission is to destroy the totems without letting the golden Idol (aka Tot) fall into the ground. It’s a game that can be easily done with the AS3 physics engine Box2DFlashAS3, recently updated at version 2.0.1 I already talked about it in the post Playing …
Read all posts about "Totem Destroyer" game