home *** CD-ROM | disk | FTP | other *** search
/ Interactive Bible for Kids - The Life of Paul / Paul.iso / mac / MASTRCST.DIR / 00064_Script_64 < prev    next >
Text File  |  1996-09-12  |  658b  |  34 lines

  1. on exitFrame
  2.   global mrk,rca,rcb,rcc,tym
  3.   cursor 0
  4.   repeat with cur = 1 to 40
  5.     if getAt (camlist, cur) = 640 then
  6.       set the cursor of sprite (cur) to [300,301]
  7.     else
  8.       cursor 0
  9.       updatestage
  10.     end if
  11.   end repeat
  12.   
  13.   repeat with but = 42 to 47
  14.     
  15.     if rollover (but) then
  16.       repeat while rollover (but)
  17.         if the mouseDown then
  18.           put the name of member (the member of sprite but) into mrk
  19.           go mrk
  20.           exit repeat
  21.         end if
  22.       end repeat
  23.       
  24.     end if
  25.     
  26.   end repeat
  27.   
  28.   if the timer > tym*60 then
  29.    go "random anim"
  30.   end if
  31.   
  32.   
  33.   go the frame
  34. end