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 MX2004 reference panel contents Monday, October 13, 2003

If you don’t have Flash MX2004 yet.. here’s a nice listing of the reference panel contents.. all linked up and pretty in pink.  http://www.dynamicflash.co.uk/jsfl/#Library  give it a whirl. 

If you don’t have Flash MX2004 yet.. here’s a nice listing of the reference panel contents.. all linked up and pretty in pink.  http://www.dynamicflash.co.uk/jsfl/#Library  give it a whirl. 

AS2Unit test framework for ActionScript2 code Monday, October 13, 2003

ok..  now we’re getting somewhere with ActionScript.  There’s now a testing framework for ActionScript2.  Nice stuff.  It can be found here:  http://www.as2unit.org/

ok..  now we’re getting somewhere with ActionScript.  There’s now a testing framework for ActionScript2.  Nice stuff.  It can be found here:  http://www.as2unit.org/

What is it, and what does it do?  Read about it here:  http://www.flashmagazine.com/html/863.htm

basically it’s a component that you add to your AS2 code and you can then run tests on the classes in your application.  You set up what you expect from your code, and if it deviates from it AS2Unit will record it as a failure.  You can develop your apps and build classes independent of one another, have each one tested before connecting them all together, and know that each one is working before you assemble them. 

Page 135 of 145 pages « First  <  133 134 135 136 137 >  Last »