Task05

Jay Smith

Please install the Flash Player from Adobe to view this content.
Get Adobe Flash player

This game is intended for young childeren who are first starting to use a computer. It set up as an interactive storybook that encourages kids to explore and become comfortable with the computer. The backgrounds are based on fractal patterns. They are intended to keep the kids interested by adding a lot of color and movement. The music is an original composition based on a fractal music sequence. It is intended to make the characters seem more mysterious.

 

Sample code for buttons:

// Import mouse events
import flash.events.MouseEvent;

// Send to specified frame
function onClickArrow(e:MouseEvent):void
{ MovieClip(parent).gotoAndPlay("man");}

// Change transparancy on MouseOver
function manageMouseOver(e:MouseEvent):void{
alpha = .5;
}

// Change back on MouseOut
function manageMouseOut(e:MouseEvent):void{
alpha = 1;
}

// Create Event Listeners
addEventListener(MouseEvent.MOUSE_OUT, manageMouseOut);
addEventListener(MouseEvent.MOUSE_OVER, manageMouseOver);
addEventListener(MouseEvent.MOUSE_DOWN, onClickArrow);