Move an MC around

— By

// How to move your MC around
MovieClip.prototype.moveAround = function(){
 Key.addListener(this);
 this.onKeyDown = function (){
  this._x += Key.isDown (Key.RIGHT)*1 - Key.isDown (Key.LEFT)*1;
  this._y += Key.isDown (Key.DOWN)*1 - Key.isDown (Key.UP)*1;
 }
};
// How to apply
myMC.moveAround();

MM Flash HQ

— By

Welcome to brajeshwar.com

— By

First of all, I would like to welcome you to my website.

Secondly, let me remind you that this particular article is written around April, 2008 but dated way back to the beginning of this website — 11th June, 2001. The reason being to mark a date of the beginning of this website.