Flash CS5 public beta cancelled by Adobe

[dtse][/dtse]Well, that was quick. Adobe has pulled the plug on the previously planned for Flash CS5 public beta, initially announced at MAX in October. So much for getting iFosfr rolling before final release. Official statement from Adobe after the break.

New tutorial on CS5 AS3 iPhone dev reveals improvements 1

[dtse][/dtse]Lee Brimelow, noted Flash Evangelist for Adobe, has posted a new tutorial at gotoandlearn.com on developing iPhone apps in the forthcoming Flash CS5 beta: http://gotoandlearn.com/play?id=116 While the tutorial itself gives a clearer illustration of the development process, what’s more interesting are some of the notable details that clarify or improve upon the MAX announcement back in October.

Tabulate updated to .2 alpha – AS3 tab management

There’s still a long way to go for what is planned for this one, but I have just updated the google code project to the .2 alpha release here doucmentation: http://www.jeffdepascale.com/documentation/tabulate

MouseEvent – relatedObject explained

One of those things that isn’t immediately clear based on its name, the relatedObject property is a reference to the object that the mouse is now over, and is receiving a MouseEvent.MOUSE_OVER event.  This property is valid for both over and out events. This is a really useful property, a typical example is working with ...

Adobe Flash Professional CS5: Applications for iPhone

iPhone + AS3 – didn’t see that one coming! So my question to Adobe is – can an AS3 iPhone app be a component of a larger obj-C based app? Or is AS3 content restricted to being solely a standalone app? Adobe Labs – Adobe Flash Professional CS5: Applications for iPhone.

Managing mutually exclusive overlays and popups efficiently in AS3

Here’s a quickie for handling mutiple in-Flash popups or overlays that should all open exclusively (that is, if one is opened, all other should close) within an application in AS3. A couple of classes, first one is the manager itself:

Is it time to rethink the stage timeline in Flash? 4

EDIT – I revised the title of this post to clarify my position in response to zool’s comment below. The following is NOT an argument against timeline animations, rather, one about where they belong in the modern Flash development flow. I generally avoid writing editorial articles on my blog, sticking strictly to informational code bits ...

Dispatching custom events between child SWFs in AS3 1

I’ve written about this before, but this time around I have an answer to this one. The issue goes a little something like this: a parent SWF a child SWF, dispatches a custom event another child swf, nested in either the parent or the other child, listens for that custom event. The error you’ll receive ...