Ben Forta presents ColdFusion Powered Flex and Scorpio (CF8)

On 6th of November actionscript.it staff will present a new event about Ajax, ColdFusion, Flex2, Flash Remoting and more. The speakers will be: Ben Forta, Vince Bonfanti, Charlie Arehart and Giorgio Natili.
In particular Ben Forta will present all the new features of ColdFusion 8 (codename Scorpio, planned for released mid-2007) and its integration with Flex2.

These are the other seminars:

  • AJAX & CFML Applications
  • Accessibility & AJAX
  • CFML Developement on .NET & J2EE platform
  • Flex Data Services & Coldfusion – CF8 sneaks
  • Coldfusion debug; Flex, Ajax& Flash Remoting with Fusion Debug
  • FusionReactor

The event will be in Rome at the Ritz hotel.
For more info visit the event page at actionscript.it

Flash, Internet Explorer and Firefox new releases

We had so many milestone releases today!
Flash player 9 for linux is probably the most exciting news.
Second, Microsoft announced Internet Explorer 7. (even if I dont like at all the new look).
Last but not least Firefox 2 is on the way!
Today the Firefox 2 Release Candidate 3 have been released (with Javascript 1.7 support and with Google suggest integrated).

MDM “Designer Vs Developer” Contest

MDM has lauched a flash contest for both Designers and Developers.
The prize is a Flash Goodie Bag with $1000 of Flash Software for each winner.

Check out the Designer Brief and the Developer Brief.
The two Contest winners (one from each category) will each receive a Flash Goodie Bag which includes over $1000 worth of Flash software including:

One Runner up from each contest will also receive a prize of MDM Zinc v2.5.

Launch Date: Monday 24 July 2006
Closing Date: Thursday 31 August 2006

Programming logic

During my tests with Flex2 I encountered a strange behavior with the “for” statement and I first thought about a bug of the player.
This simple script was crashing the player (it enters in an infinite loop):
<?xml version="1.0" encoding="utf-8"?>
private function test():void
{
for(var a:uint = 10; a >= 0; a--)
{
trace(a);
}
}

Once I changed the type of the “a” variable into a “Number” and an “int” I understand what I was missing…
The script worked well after the type change. But to be sure I did also a little test in C which gave me the same results as the flex2 one (infinite loop):

int main(int argc, char *argv[])
{
unsigned int a;
for(a = 10; a >= 0; a--)
{
printf("a = %d\n", a);
}
system("PAUSE");
return 0;
}

Yes, it’s absolutely logical!
After the last step, when a is 0, the program loses next value because it cannot be a negative value and then the loop continues to cicle.

Ok, it’s not a player bug… it’s me 🙁

Adobe and Google

Adobe Signs Multi-Year Distribution Agreement with Google:

Adobe Systems Incorporated (Nasdaq:ADBE) today announced the signing of a multi-year agreement with Google Inc. (Nasdaq:GOOG) to distribute the Google Toolbar with various Adobe products over the life of the deal. As a part of the agreement, Adobe and Google today will launch availability of the Google Toolbar with downloads of Adobe’s Macromedia Shockwave® Player. The Google Toolbar will now be offered as part of the Shockwave Player installation process for Internet Explorer on Windows. Under the terms of the agreement, the Google Toolbar will also be offered as part of other Adobe product installations in the future.

Google is fighting agaist Yahoo toolbar already distributed with adobe flash player and also against Microsoft Live search.
for more info read the press release entry