home *** CD-ROM | disk | FTP | other *** search
/ Imagination Express: Destination Pyramids / PYRAMIDS.ISO / DEMO / EDMARKDB / MENU.DXR / 00106.ls < prev    next >
Encoding:
Text File  |  1995-10-20  |  755 b   |  37 lines

  1. on enterFrame
  2.   global gbeenThere, theDemoList
  3.   if gbeenThere = 0 then
  4.     preLoad(the frame)
  5.     repeat with nn = 2 to 6
  6.       puppetSprite(nn + 5, 1)
  7.       set the rect of sprite (nn + 5) to the rect of sprite nn
  8.     end repeat
  9.     updateStage()
  10.     if not (theDemoList contains #done) then
  11.       puppetSound("main.aif")
  12.     end if
  13.     set gbeenThere to 1
  14.   end if
  15. end
  16.  
  17. on exitFrame
  18.   global userTimer
  19.   go(the frame)
  20.   menuRoll()
  21. end
  22.  
  23. on menuRoll
  24.   repeat with xx = 7 to 11
  25.     if the visible of sprite (xx - 5) = 1 then
  26.       set the visible of sprite (xx - 5) to 0
  27.     end if
  28.   end repeat
  29.   repeat with nn = 7 to 11
  30.     if rollOver(nn) then
  31.       set the visible of sprite (nn - 5) to 1
  32.       exit repeat
  33.     end if
  34.   end repeat
  35.   updateStage()
  36. end
  37.