Table of Contents

Flash platform based application development

Advantage of Flash:

Disadvantage:

Dev tool:

Object oriented Develop with AS 3.0

  1. create object in runtime from library
    var c:Node = new Node(); 
    addChild(c); 
  2. get and set Object property
    c.x=graph_x;
    c.y=graph_y;
  3. function definition
    function drawNode(){
     trace("hello");	
    }
     
    drawNode();
  4. array
    var newPos:Array = new Array(2);
    newPos=getPos(c);
  5. global variable
    // as long as in the same page, all accessible

ActionScript IDE

Flash Extended development by other developers