Adobe Donates Flex to Apache Friday, November 18, 2011

In a move that appears to be another step away from its Flash platform, Adobe has submitted the code for its Flash-based Flex framework to the Apache Software Foundation (ASF) to be managed as an independent project.  more here




Toggle between log and linear axis with Flex LineChart Wednesday, November 09, 2011
private var normal:Boolean = true;		
public function init():void{
logScale_btn.addEventListener(MouseEvent.CLICK, toggleLog);
}
public function toggleLog(e:Event):void{
     if(normal){
           var LA:LogAxis = new LogAxis();
           myChart.verticalAxis = LA;
           normal = false;
     }else{
           var NA:LinearAxis = new LinearAxis();
           myChart.verticalAxis = NA;
           normal=true;
     }
}

Macromedia announces MX2004 products Sunday, August 24, 2003

Macromedia has announced the next version of Flash, Dreamweaver, etc..  the new product line is MX 2004
Find out all about it here:  http://www.macromedia.com/software/mx2004/

Macromedia has announced the next version of Flash, Dreamweaver, etc..  the new product line is MX 2004
Find out all about it here:  http://www.macromedia.com/software/mx2004/

ActionScript Performance talk from Flashkit 2003 Saturday, August 23, 2003

I spoke at the Flashkit 2003 conference yesterday in San Jose..  the topic was ActionScript Performance, and it was an attempt to gather together all the “tips” I could find for improving the performance of Actionscript and test them to see if they work or not. 

I spoke at the Flashkit 2003 conference yesterday in San Jose..  the topic was ActionScript Performance, and it was an attempt to gather together all the “tips” I could find for improving the performance of Actionscript and test them to see if they work or not. 

The results are HERE - let me know if you find any errors or have any other tips. 

The talk went well with one exception..  one of the Jupiter Media workers apparently got confused and interrupted me before my time was up.. so I had to wrap it up 2 full minutes early.  Sigh. 

Page 139 of 145 pages « First  <  137 138 139 140 141 >  Last »