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

  1. on enterFrame
  2.   global gbeenThere, gVoiceFlag
  3.   if gbeenThere = 0 then
  4.     repeat with nn = 3 to 7
  5.       puppetSprite(nn, 1)
  6.     end repeat
  7.     if gVoiceFlag = 0 then
  8.       puppetSound("SubMain.aif")
  9.       set gVoiceFlag to 1
  10.     end if
  11.     set gbeenThere to 1
  12.   end if
  13. end
  14.  
  15. on exitFrame
  16.   global userTimer, gAutoMode
  17.   if gAutoMode then
  18.     goSubAuto()
  19.   else
  20.     go(the frame)
  21.     SubmenuRoll()
  22.   end if
  23. end
  24.  
  25. on SubmenuRoll
  26.   if the mouseCast > 1 then
  27.     set tempName to the name of cast the mouseCast
  28.     if tempName contains "_Roll" then
  29.       nothing()
  30.     else
  31.       repeat with nn = 2 to 24
  32.         if the castNum of sprite nn < 1 then
  33.           next repeat
  34.         end if
  35.         if the name of cast the castNum of sprite nn contains "_Roll" then
  36.           set tempOld to the name of cast the castNum of sprite nn
  37.           set tempOld to chars(tempOld, 1, length(tempOld) - 5)
  38.           set the castNum of sprite nn to the number of cast tempOld
  39.           exit repeat
  40.         end if
  41.       end repeat
  42.       repeat with nn = 2 to 24
  43.         if the castNum of sprite nn < 1 then
  44.           next repeat
  45.         end if
  46.         if the name of cast the castNum of sprite nn = tempName then
  47.           set the castNum of sprite nn to the number of cast (tempName & "_Roll")
  48.           exit repeat
  49.         end if
  50.       end repeat
  51.     end if
  52.   end if
  53.   updateStage()
  54. end
  55.