May, 2009

Buttons

Thursday, May 28th, 2009

Ok, I’m going to use the Flash section of this site to display finished work, but I’ll also use it for code snippets and other tips I discover as I work. I’ve just started using Actionscript 3, so it will be useful for me to have this stuff on hand, and hopefully useful for any of you who are also learning.

To start off with – buttons. Buttons have changed to fit with the event dispatcher model that AS3 uses extensively. Previously, a button link would be something like this:

button.onRelease = function():void {
// do something
};

Now, however, it need to be linked to an event, like so:

function buttonFunction(event:MouseEvent):void {
// do something
};
button.addEventListener(MouseEvent.CLICK, buttonFunction);

Otherwise if you want a cut-down version you can also drop the function into the button event:

button.addEventListener(MouseEvent.CLICK, function() {
// do something
});

No Comments »

MAA Foundation

Thursday, May 14th, 2009

I’ve donated a couple of artworks to the MAAF Charity Card site at the request of Franzi. MAA Foundation is a small NGO who support the education of underpriviledged kids in Bangladesh and Uganda, and 100% of the profit from these cards go straight to them. Check out their site for more information Thanks to Franzi for giving me the opportunity to help out, and I hope you’ll head over there and check them out.

My cards are Floating and Flying, and I recommend having a look around the page because there are plenty of really good works from talented artists.

No Comments »

Design A Raskull Competition

Sunday, May 10th, 2009

Design A Raskull

This is my entry into the Design a Raskull competition – check out the full details here. His name is “Headhunter”.

2 Comments »

Tickle Monster 2.0 Artwork

Friday, May 8th, 2009

Tickle Monster

We’re working on an update to the The Good Dog Design Tickle Monster app. Two new monsters, check out the artwork.

No Comments »