home *** CD-ROM | disk | FTP | other *** search
/ Interactive Bible for Kids - The Life of Paul / Paul.iso / mac / MASTRCST.DIR / 00185_Script_185 < prev    next >
Text File  |  1996-09-12  |  1KB  |  59 lines

  1. on exitFrame
  2.   
  3.   global jumpName, pglist, menu
  4.   
  5.   repeat with i = 38 to 39
  6.     
  7.     --if rollover (i) then
  8.     put 1 into x
  9.     
  10.     --set the memberNum of sprite (I) to the memberNum of sprite (I) + x 
  11.     --updateStage
  12.     
  13.     if rollover (38) then 
  14.       set the cursor of sprite 38 to 0
  15.       puppetSound 1, member 174 of castLib "MASTRCST.DIR"
  16.     end if
  17.     
  18.     if rollover (39) then
  19.       set the cursor of sprite 38 to 0
  20.       puppetSound 1, member 175 of castLib "MASTRCST.DIR"
  21.     end if
  22.     
  23.     repeat while rollover(i)
  24.       
  25.       
  26.       set the memberNum of sprite (i) to the memberNum of sprite (i) + 1
  27.       updateStage
  28.       
  29.       mypause .05
  30.       put x+1 into x
  31.       if x>3 then 
  32.         set the memberNum of sprite (i) to the memberNum of sprite (i) - 3
  33.         put 1 into x
  34.       end if
  35.       
  36.       if the mouseDown then
  37.         --puppetSound "beep3"
  38.         updateStage
  39.         
  40.         if the mouseDown then
  41.           set JumpName to the name of member the member of sprite i
  42.           go jumpName
  43.           abort
  44.         end if
  45.         
  46.       end if
  47.     end repeat
  48.     sound stop 1
  49.     
  50.     
  51.     
  52.     --end if
  53.     
  54.   end repeat
  55.   
  56.   go the frame
  57. end exit frame
  58.  
  59.