topical media & game development
animation-ch19-SoundEvents.ax
animation-ch19-SoundEvents.ax
[swf]
[flash]
flex
package
{
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.events.Event;
import flash.media.Sound;
import flash.net.URLRequest;
public class @ax-animation-ch19-SoundEvents extends Sprite
{
private var ball:animation_ch19_Ball;
private var vx:Number;
private var vy:Number;
private var bounce:Number = -0.7;
private var boing:Sound;
public function @ax-animation-ch19-SoundEvents()
{
init();
}
private function init():void
{
stage.scaleMode = StageScaleMode.NO_SCALE;
stage.align=StageAlign.TOP_LEFT;
boing = new Sound(new URLRequest("local/assets/ax/boing.mp3"));
ball = new animation_ch19_Ball();
ball.x = stage.stageWidth / 2;
ball.y = stage.stageHeight / 2;
vx = Math.random() * 10 - 5;
vy = -10;
addChild(ball);
addEventListener(Event.ENTER_FRAME, onEnterFrame);
}
private function onEnterFrame(event:Event):void
{
ball.x += vx;
ball.y += vy;
var left:Number = 0;
var right:Number = stage.stageWidth;
var top:Number = 0;
var bottom:Number = stage.stageHeight;
if(ball.x + ball.radius > right)
{
boing.play();
ball.x = right - ball.radius;
vx *= bounce;
}
else if(ball.x - ball.radius < left)
{
boing.play();
ball.x = left + ball.radius;
vx *= bounce;
}
if(ball.y + ball.radius > bottom)
{
boing.play();
ball.y = bottom - ball.radius;
vy *= bounce;
}
else if(ball.y - ball.radius < top)
{
boing.play();
ball.y = top + ball.radius;
vy *= bounce;
}
}
}
}
(C) Æliens
04/09/2009
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.