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
Adobe Donates Flex to Apache Friday, November 18, 2011
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;
}
}
sending big strings from Flash to JavaScript Wednesday, August 06, 2003
I just put together a quick tutorial on sending large text strings out from a SWF to JavaScript check it out.. BIG STRING TEST
I just put together a quick tutorial on sending large text strings out from a SWF to JavaScript check it out.. BIG STRING TEST
Events in the Flash 7 Player Monday, August 04, 2003
Events in the Flash 7 Player.. . If you combine these with Central I think you can see some interesting Flash applications that could emerge.
Events in the Flash 7 Player.. . If you combine these with Central I think you can see some interesting Flash applications that could emerge.
