home *** CD-ROM | disk | FTP | other *** search
/ Undercover - Rock on Multimedia 2 / UNDERCOVER2.BIN / main.dir / 00754_Script_754 < prev    next >
Text File  |  1996-01-27  |  361b  |  22 lines

  1. on exitFrame
  2.   if not soundBusy(1) then
  3.     playMusic
  4.   end if
  5.   go the frame
  6. end
  7.  
  8. on mouseDown
  9.   if rollover(4) then
  10.     global gNextMovieFrame
  11.     set gNextMovieFrame = "central"
  12.     go "goNextMovie"
  13.   else
  14.     global gMusicPlaying
  15.     if not gMusicPlaying then
  16.       sound stop 1
  17.       playMusic
  18.     end if
  19.     go "beatles"
  20.   end if
  21. end
  22.