Posted on November 9, 2009 by anton.
Just been implementing TweenLite in to a current project here at Cube (more at a later date) and updated our source files to find TweenLite has been superseded by the fantastic Teening Platform v11 engine, the GreenSock stuff just gets better and better! if your in need of a small and extremely fast tweening engine you should deffinitely check out http://blog.greensock.com/ it’s packed full of features!
The particular part I like is the queueing system using TimelineLite, it’s so simple to get up and running but has a wealth of features to create incredibly complex queues of tweens (for more info check: http://blog.greensock.com/timelinelite):
1
2
3
4
5
6
7
8
9
10
11
12
| // create a tween queue
private var tweenQueue:TimelineLite = new TimelineLite({onComplete:queueComplete});
private function queueComplete():void
{
trace("queue complete");
}
// populate it with tweens
for(var i:int = 0; i < 10; i++)
{
tweenQueue.append(new TweenLite(desiredMC, 1, {x:i*50, y:100}));
} |
Tags: actionscript 3as3
Category Actionscript
Posted on September 25, 2009 by anton.
Another quick update. I’m also due to begin lecturing in Swansea Metropolitan University on the MSc Multimedia course beginning next week. Still planning some bit’s and pieces but be sure there will be lot’s of AS3, php/mySql integration, Air and hopefully a handful of 3D to break things up…. Great Stuff!
anton.
Category General Chit Chat
Posted on September 17, 2009 by anton.
Just a quick post!
I’ve been looking to begin lecturing for some time now and I’m extremely excited to say I’ve been given the opportunity to undertake some part-time lecturing for the University of Wales Newport. I being on the 28th of September on a six week introduction to Flash course. Cube Interactive have been very supportive and released me each week so I can do this which is great…. can’t wait!
anton.
Tags: Flashlecturing
Category General Chit Chat
Posted on September 16, 2009 by anton.
Cocos2D-iPhone and project setup
I’ve been building iPhone applications for a while now and some very simple games using UIKit but unfortunately UIKIT as it stands is just not cut out for games. So I’ve been looking at different frameworks that I could use, and after trying a few I stumbled across the fantastic Cocos2D framework.
I’m always a bit cautious when it comes to learning frameworks, preferring to read the docs, see examples and perform some small test apps before really committing to learning how to develop using it. After doing just that I took the plunge and began developing using it and found that it’s a great framework to have under your belt for iPhone games.
So for the last month I’ve been hammering away at creating a small iPhone game using the fantastic Cocos2D-iPhone framework. The game is really just a test bed to get to grips with everything in Cocos2D land, and there’s a lot!
My main gripe with Cocos2D is the documentation of the project. It’s just not that detailed but it’s definitely improving. What the Cocos2D team (riq?) have provided us with are an excellent set of test apps that come bundled with the source. These tests show lots of the functionalities of the framework in use and are excellent resource to use when it comes to learning Cocos2D. If you ever need to see how implement AtlasSprites for example, open the AtlasSprite test and you will have a wealth of source to read, learn and use.
I’m hoping to put together a few tutorials together on my travels down the Cocos2D path, hopefully they might be helpful to some of you out there or even if your just curious about the framework. Give it a whirl!
Read the rest of this entry →
Tags: Cocos2DframeworkiOS
Category iOS
Posted on September 8, 2009 by anton.
These last two months have been scarily busy, I’ve recently waved goodbye to my role as Rich Media Developer in sequence and moved on to pastures new.
In this case the ‘pastures new’ is an agency named Cube Interactive based in Cardiff Bay. If you’ve not heard of them before, they are an incredibly tight knit team of talented designers and developers who focus on creating highly interactive Flash childrens portals, games and websites for clients such as S4C and Microsoft.
The reason why I found Cube so interesting and really wanted to work with them, is that after a few meetings and lots of emails throwing idea’s back and forth, I found they had such a fantastic passion for the work they were doing and the direction they want the company to continue down was perfect for me. I was lucky enough for them to offer me a position and, well, here I am. Absolutely loving working in my new agency and feeling very refreshed.
Cube are extremely supportive of the iPhone platform and I’ll be taking on the iPhone game/app development side of things here. For the last month I’ve been developing a small game using the Cocos2D framework which I’m hoping to show some screen shots or a video of it any day now. The framework is fantastic for 2D games on the iPhone and something I will remain using, my one real gripe is that the documentation is very poor and doesnt make picking up and using the framework a trivial task. It means reading endless source files and learning the methods and how everything ticks (which in an extrememely geeky way, I really like!).
So as the title of the post suggests (see, I was getting to it!) I will be putting together a series of posts on getting to grips with the framework and putting together a small game. I probably won’t be very fast at putting these together as I’m still writing the book but hopefully they should help in some small way. Keep an eye peeled for the first instalment in the next week!
anton.
Tags: Cocos2DiOS
Category iOS
Posted on June 30, 2009 by anton.


I am delighted to announce that I have just picked up a book deal with Friends of ED to write a new iPhone development book with a twist!
It’s called “The Essential Guide to iPhone Development for Flash Users” and I am extremely excited about it. I’ve planned the Table of Contents and I’ve just begun writing, all is going well. I’m hoping to really leverage what we as Flash developers already know for game and application creation and how that can be used to learn Obective-C and the basics of iPhone development. So if your a Flash dev and interested in the possibilities of iPhone development but havent made that step yet, this is for you!
I’ll be covering lot’s of topics ranging from basics of the Objective-C language, converting simple Actionscript to Objective-C to much more advanced topics like Mapping and some OpenGL.
I would love to hear any comments, thoughts for topics you’d like to see in the book, anything your currently stuck on if you are trying to learn iPhone / Objective-C or even if you might be interested in doing a little bit of writing as I am looking for a co-author to take on half of the book with me.
Leave as much or as little info as you want, even if it’s just something like “it would be cool if you covered…” as at the end of the day it’s for you guys so I want to include as much of the content you’d like to read or learn about!
anton.
Tags: ActionscriptbookFlashiOS
Category General Chit Chat, iOS
Posted on June 16, 2009 by anton.
It’s not everyday you get to feature in a magazine so I’m thrilled to have two features in one month! One for .NET magazine and the other for Computer Arts.
The Flash tutorial written for .NET magazine focuses on the Text Layout Framework Panel beta created by Adobe which offers vastly improved control of type in our Flash projects and some really interesting little features like columns and the ability to add images to text fields.
The Computer Arts tutorial teaches how to simply link Flash and Flickr by creating simple querys and displaying the results in Flash. It strives to teach the fundamentals of connectivity between the two but also gives the reader a 3D Stack Panel style image viewer they can use in their own projects.
Here are some photos if you haven’t seen them yet:



If you’ve read either of these and have any feedback or are having any problems then feel free to give me a shout either on my email address me@antonmills.com or on this thread and I’ll help out.
anton.
Category Actionscript
Posted on May 9, 2009 by anton.

PureMVC
For quite a while now I’ve been looking at different AS3 frameworks that I could adhere my code to to make it easier to scale as the project grows, more reusable and easier to understand for others. I’ve always wanted to pick up Cliff’s PureMVC but I’ve found few tutorials on the net that really get granular enough to explain how and why to use it for total new comers like myself.
I’ve spent the last few days learning from various little tutorials and I’m hoping to start using the framework in all my work projects. If all goes well I’m going to start piecing together quite a large multipost tutorial on here that will help in picking up PureMVC if you’ve never used it before.
anton.
Tags: as3frameworkpuremvc
Category Actionscript