All about RIA development using Flash, Flex, Flash Media Server (Flashcom) with various middleware and backends.
21 Feb
Last month Yahoo! released version 1.1 of Yahoo! ASTRA libraries for Flash and Flex. Based on community feedback, they revised it and came up with a maintenance release as 1.1.1. Hence there are no new components but many fixes to minor bugs. Here are release notes from Josh Tynjala directly:
AlertManager (Flash)
Charts (Flash)
MenuBar (Flash)
TabBar (Flash)
AutoCompleteManager (Flex)
 This updated version is available on Yahoo! Flash Developer Center as following:
Via - http://www.yswfblog.com/blog/2008/02/20/announcing-astra-111/
19 Feb
Today adobe announces new version of Adobe Director 11. Also with this new product release, they also announced a new release for shockwave player also.
Here are the Top features in Director 11:
Useful Links:
18 Feb
We are using FlashDevelop as our AS3 code in our daily coding since a long time at Avinashi.
FlashDevelop is came up with a new Beta 6 release for version 3 with obviously some cool features and some bug-fixes. These features are as following:
Changes:
Important:
Full Release Notes can be found here.
Download FlashDevelop 3.0.0 Beta 6 (Built from rev. 2133)
And obviously if that seems a nice editor for Flash CS3 developers, you should donate too J
13 Feb
Doing test that how fast it updates with feedburner.
9 Feb
We are working on a complex product line for one of our client. The key issue was to load different products / SWF applications into a single html page. It was causing increment in memory used by the browser in the system even if one unloads the loaded SWF from loader. Technical reason behind this was Garbage Collector (GC) was not cleaning its content from it while you unload the SWF from loader. This stuff was working fine previously with AS2.
As AS3 is more powerful in terms of performance and all, it also has some strict rules to follow to gain all the new AVM benefits. Loader will not unload the loaded SWF unless it completely stops doing any activities or listening / broadcasting events. In AS3 there is also changed mechanism of receiving mouse move events on any movieclip. Now we require to obtain such events from stage instead of particular movieclip.
The only workaround to this issue is a trick mentioned by Grant Skinner, which is to initiate new LocalConnections with same name twice. As it will generate error, we require to use catch.
[AS]
try {
new LocalConnection().connect(’foo’);
new LocalConnection().connect(’foo’);
} catch (e:*) {}
// the GC will perform a full mark/sweep on the second call.
[/AS]
Thanks Grant, for finding the catch and Adobe should do something about this issue J