home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / pendekar.swf / scripts / DefineSprite_627 / frame_1 / DoAction.as
Text File  |  2006-05-08  |  351b  |  24 lines

  1. function init()
  2. {
  3.    if(runOnce)
  4.    {
  5.       return undefined;
  6.    }
  7.    runOnce = true;
  8.    this.msg = _parent.getKeyDisplay(keyTarget);
  9.    checkArrows(keyTarget);
  10. }
  11. function checkArrows(code)
  12. {
  13.    if(code >= 37 && code <= 40)
  14.    {
  15.       gotoAndStop(2);
  16.    }
  17.    else
  18.    {
  19.       gotoAndStop(1);
  20.    }
  21. }
  22. this.onLoad = init();
  23. stop();
  24.