ActionScript 3.0 with Adobe Flash CS3

Navigation - Site Root :: Tutorial Home
Basics - Hello World :: Text IO :: Calculator :: If Statement ::
Games - Mouse Tracker :: Ball Bounce :: Maze :: Pong :: Aja(x) Demo

Tutorial Examples

  1. Hello World
    The classic beginners program with input, process and output.
    The input is a mouse click.
    The process runs a function.
    The output is some text.
     
  2. Text Input Output
    The user enters their name.
    When the button is clicked, the input text is processed.
    The output is then displayed.
     
  3. Calculator
    INPUT: Enter two numbers.
    PROCESS: Add the numbers together.
    OUTPUT: Display the answer.
     
  4. If Statement
    This example adds some error checking to the calculator above.
    The input is validated using IF statements.
    The output is either a valid result or a helpful error message.

Mouse Tracker
Keep track of the co-ordinates of your mouse position.
 

Ball Bounce
This example shows how to animate something using ActionScript code.

Maze
A simple maze game. Teach the target without hitting the walls.

Pong
A simplified version of the classic Pong game.