home *** CD-ROM | disk | FTP | other *** search
- function keyInput(u, l, r, a)
- {
- this.up = u;
- this.left = l;
- this.right = r;
- this.attack = a;
- }
- onEnterFrame = function()
- {
- _visible = false;
- _parent.input = new keyInput(Key.isDown(up),Key.isDown(left),Key.isDown(right),Key.isDown(attack));
- };
-