home *** CD-ROM | disk | FTP | other *** search
/ Browser - Artopolis 97 / browser.iso / mac / artrope / artrope.dir / 00026_Script_initReview < prev    next >
Text File  |  1997-10-08  |  508b  |  24 lines

  1. global gSoundAlreadyPlaying
  2.  
  3. on exitFrame
  4.   initReview
  5. end
  6.  
  7. on initReview
  8.   fingerCursor([4,5])  --located in movieScript
  9.   repeat with i = 6 to 13
  10.     set the visible of sprite i to false
  11.     set the cursor of sprite(i) to [55,56]
  12.   end repeat
  13.   set the cursor of sprite(3) to [54,55]
  14.   
  15.   
  16.   if not gSoundAlreadyPlaying then
  17.     puppetSound 1, "review1.aif"
  18.     sound fadeOut 4,120
  19.     sound fadeIn 2, 120
  20.     puppetSound 2, "review2.aif"
  21.   end if
  22.   set gSoundAlreadyPlaying = 0
  23. end
  24.