fCMSPro - Sophisticated CMS solution for Flash
fCMS has been around for a while which itself was revolutionary for Flash movies being CMS driven. It allowed editing on the fly, thanks to FlashTextEditor. With fCMSPro, flashloaded takes Flash-CMS to even taller heights by bringing in a high level of sophistication using php/mysql for database support (a .net version is planned for the future), automated rss feed generation and search engine listings. Yes, flash is now more searhable & updateable.
Try the online demo.
Essential ActionScript 3.0 on its way
Essential ActionScript 3.0, don't forget to get your hands laid on this one if you're serious about "ActionScripting" 3.0. Collin Moock is an Ace with ActionScript with a gifted art of teaching. ASDG and EAS 2.0 have already been big hits! I am confident this one will be as well. Preview chapters available on Safari - http://safari.oreilly.com/0596526946
The current list of chapters available is now as follows:
Chapter 15, Flash Player Security Restrictions
Chapter 16, The Display API and the Display List
Chapter 17, Events and Display Hierarchies
Chapter 18, Interactivity
Chapter 20, Programmatic Animation
Chapter 22, Bitmap Programming
Chapter 24, Loading External Display Assets Source - moockblog
Laco Tween onRollOver / onRollOut problems
If you've ever tried to use a tween onRollOver and then onRollOut you would notice that it fails to display. To correct this problem you would need to set the autoStop property of the tweenManager class to true.
This also happens when using multiple statements for the same movieclip, for eg:
myMC.slideTo(10,10,1,"easeOutQuad");
followed by
myMC.alphaTo(100,1,"easeOutQuad");
instead combine these using the tween statement like this:
myMC.tween(["_x", "_y", "_alpha", [10,10, 100] ,1, "easeOutQuad");
Hope this was useful