CNSQ Online  |  
The Professional Blog of Engr. Cesar Noel Quinon

ActionScript Programming

April 23rd, 2008 by CNSQ

Flash CS3 Logo

ActionScript is a scripting language based on ECMAScript. ActionScript is used primarily for the development of websites and software using the Adobe Flash Player platform (in the form of SWF files embedded into Web pages), but is also used in some database applications (such as Alpha Five). Originally developed by Macromedia, the language is now owned by Adobe (which acquired Macromedia in 2005), which continues its development. ActionScript was initially designed for controlling simple 2D vector animations made in Adobe Flash (formerly Macromedia Flash). Later versions added functionality allowing for the creation of Web-based games and rich Internet applications with streaming media (such as video and audio).


Sample ActionScript Code:

Greeter.as:

package com.example
{
import flash.text.TextField;
import flash.display.Sprite;

public class Greeter extends Sprite
{
public function Greeter()
{
var txtHello:TextField = new TextField();
txtHello.text = “Hello World”;
addChild(txtHello);
}
}
}

Wanna learn Basic ActionScript Programming for free? Click here

      PHP vs. Rails debate
      How to Building a Flash-based Web Application (Old school style)
      New Gallery for my Graphic Design Works
      Gallery
      Corel Draw vs. Illustrator: Which is the best?

Posted in 2D Graphic Designs, Web Developing, animation |

Leave a Comment

Please note: Comment moderation is enabled and may delay your comment. There is no need to resubmit your comment.