Holy Cross Regional High School
Holy Cross Regional High School
Home | Profile | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
 All Forums
 Mr Cabralda's Classes
 ICT 11
 DUE: May 21st
 New Topic  Reply to Topic
 Printer Friendly
Author  Topic Next Topic  

cabralda

895 Posts

Posted - 05/21/2009 :  14:16:36  Show Profile  Reply with Quote
Create a box and move it across the screen.

Actionscript:

onClipEvent (load) {
power = 1.0;
yspeed = 0;
xspeed = 0;
friction = 0.95;

}
onClipEvent (enterFrame) {
if (Key.isDown(Key.LEFT)) {
xspeed -= power;
}
if (Key.isDown(Key.RIGHT)) {
xspeed += power;
}
if (Key.isDown(Key.UP)) {
yspeed -= power;
}
if (Key.isDown(Key.DOWN)) {
yspeed += power;
}
xspeed *= friction;
yspeed *= friction;
_y += yspeed;
_x += xspeed;
}
   Topic Next Topic  
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
Holy Cross Regional High School © Holy Cross Regional High School Go To Top Of Page
Snitz Forums 2000