home *** CD-ROM | disk | FTP | other *** search
/ One Click 5 / ONCE005.iso / Jogos / 1636.swf / scripts / DefineSprite_116 / frame_1 / DoAction.as
Encoding:
Text File  |  2006-05-02  |  274 b   |  13 lines

  1. function keyInput(u, l, r, a)
  2. {
  3.    this.up = u;
  4.    this.left = l;
  5.    this.right = r;
  6.    this.attack = a;
  7. }
  8. onEnterFrame = function()
  9. {
  10.    _visible = false;
  11.    _parent.input = new keyInput(Key.isDown(up),Key.isDown(left),Key.isDown(right),Key.isDown(attack));
  12. };
  13.