Autochrome Photography Wordpress theme for just $25. Get Yours

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();

Brajeshwar

Brajeshwar believes in simplicity; pushes the envelop and envisions the betterment of usable and practical solutions.

More by Brajeshwar

  • Brad Harris

    one day I'm gonna have a big brain like you!

    Nice 'lil snippet o' code, thanks!

    -bh

  • Brad Harris

    one day I'm gonna have a big brain like you!

    Nice 'lil snippet o' code, thanks!

    -bh

  • uhoiuh

    :-)

  • uhoiuh

    :-)

Teknopoint Multimedia - Adobe Training, Design and Development, RIA Consulting. Teknopoint Multimedia - Adobe Training, Design and Development, RIA Consulting.

Themes