home *** CD-ROM | disk | FTP | other *** search
/ Enter 2003: The Beautiful Scenery / enter-parhaat-2003.iso / files / frendz.exe / frendz.dcr / Scripts_34_b_MainLoop.ls < prev    next >
Encoding:
Text File  |  2002-12-31  |  329 b   |  19 lines

  1. global gIntroPlayed, gMacSound
  2.  
  3. on exitFrame me
  4.   go(the frame)
  5.   checkGameTime()
  6.   if gIntroPlayed = 1 then
  7.     sprite(5).goToFrame(85)
  8.   end if
  9. end
  10.  
  11. on flashAnimation me, Animation
  12.   case Animation of
  13.     "Intro":
  14.       gIntroPlayed = 1
  15.       set the soundLevel to gMacSound
  16.       sound(8).play(member("goofy"))
  17.   end case
  18. end
  19.