June 2011


Highcharts is a charting library written in pure JavaScript, offering an easy way of adding interactive charts to your web site or web application. Highcharts currently supports line, spline, area, areaspline, column, bar, pie and scatter chart types.

http://www.highcharts.com/

It works in all modern browsers including the iPhone/iPad and Internet Explorer from version 6. Standard browsers use SVG for the graphics rendering. In Internet Explorer graphics are drawn using VML.

Free for non-commercial usage and low licensing fee for single website usage.

Easy to use and beautiful!

Code to quit a fullscreen exe completely (close out of fullscreen AND close down application:


import flash.events.Event;
import flash.ui.Keyboard;

stage.addEventListener(KeyboardEvent.KEY_DOWN, 
                      onStage_KEY_DOWN);

function onStage_KEY_DOWN(evt:KeyboardEvent):void {
            if (evt.keyCode == Keyboard.ESCAPE) {
                fscommand("quit");
            }
 }