home *** CD-ROM | disk | FTP | other *** search
/ PC/CD Gamer UK 231 / PCG231DA1011.ISO / pc / main.swf / scripts / DefineSprite_184 / frame_1 / DoAction.as
Encoding:
Text File  |  2008-09-01  |  215 b   |  17 lines

  1. clicked = false;
  2. this.onRollOver = function()
  3. {
  4.    if(!clicked)
  5.    {
  6.       this.gotoAndPlay(2);
  7.    }
  8. };
  9. this.onRollOut = function()
  10. {
  11.    if(!clicked)
  12.    {
  13.       this.gotoAndPlay(21);
  14.    }
  15. };
  16. stop();
  17.