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;
     }
}

Flash Player 7 Beta released Monday, August 04, 2003

Macromedia has released Flash Player 7 to public beta..  http://www.macromedia.com/software/flashplayer/public_beta/  From my early tests it looks like it’s much faster than Flash Player 6 in some areas.

Macromedia has released Flash Player 7 to public beta..  http://www.macromedia.com/software/flashplayer/public_beta/  From my early tests it looks like it’s much faster than Flash Player 6 in some areas.

Flash Player version finder Wednesday, July 02, 2003

ok..  I got tired of going to the Macromedia site to verify what version of the Flash Player I was running (and if it was the debug version or the plain vanilla one).  So I put this page up. 

Page 141 of 145 pages « First  <  139 140 141 142 143 >  Last »