home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / arcade_animal.swf / scripts / DefineSprite_239 / frame_1 / DoAction.as
Encoding:
Text File  |  2007-03-20  |  556 b   |  30 lines

  1. thisYe = getProperty("/light", _Y);
  2. if("200" < thisye)
  3. {
  4.    thisX = getProperty("/spin1", _X);
  5.    thisY = getProperty("/spin1", _Y);
  6.    spX = getProperty("/light", _X);
  7.    spY = getProperty("/light", _Y);
  8.    difX = thisX - spX;
  9.    difY = thisY - spY;
  10.    xStp = difX / "50";
  11.    yStp = difY / "50";
  12.    setProperty("/light", _X, spX + xStp);
  13.    setProperty("/light", _Y, spY + yStp);
  14.    tellTarget("/l2")
  15.    {
  16.       stop();
  17.    }
  18. }
  19. else
  20. {
  21.    tellTarget("/l1")
  22.    {
  23.       stop();
  24.    }
  25.    tellTarget("/l2")
  26.    {
  27.       play();
  28.    }
  29. }
  30.