home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 October / CHIP102003.ISO / t-pay / t-pay.swf / scripts / DefineSprite_408 / frame_1 / DoAction.as
Encoding:
Text File  |  2002-12-18  |  300 b   |  18 lines

  1. function toggle()
  2. {
  3.    if(active)
  4.    {
  5.       gotoAndStop(2);
  6.       active = false;
  7.       _level0.soundMusic.setVolume(0);
  8.    }
  9.    else
  10.    {
  11.       gotoAndStop(1);
  12.       active = true;
  13.       _level0.loadMovieNum2("musik.swf",1);
  14.       _level0.soundMusic.setVolume(100);
  15.    }
  16. }
  17. stop();
  18.