PDA

View Full Version : Actionscript Stuff.


Saline
05-20-2007, 12:02 PM
Alot of Actionscript Tutorials I have seen, didn't explain anything. They just give you a code. I made My own tutorial (http://swfup.com/file/10609#view) and I explained the code as best I could. If anyone is wondering the code I used is.

onClipEvent(enterFrame){
if(Key.isDown(Key.LEFT)){
_x -= 5
}
if(Key.isDown(Key.RIGHT)){
_x += 5
}if(Key.isDown(Key.UP)){
_y -= 5
}if(Key.isDown(Key.DOWN)){
_y += 5
}
}

Saline
05-23-2007, 04:50 AM
No replies?

Freddeh
06-05-2007, 01:12 PM
It's kinda cool really.

You explained it well.

Gray
06-05-2007, 01:28 PM
Not bad, not bad.

It's really basic, and may help newbs in AS.

Good job.

Apples
06-05-2007, 03:28 PM
It was explained well.
It was good.

Saline
06-13-2007, 03:01 PM
Yeah, I felt like explaining it so nubs could remember better.