home *** CD-ROM | disk | FTP | other *** search
/ Creative Review 34 / Creative-Review-CD-ROM-34.iso / pc / foo / foos.dir / 00165_Script_165 < prev    next >
Text File  |  1998-01-23  |  859b  |  39 lines

  1. on checktimes
  2.   put the text of member "tim" into theTimes
  3.   put the movietime of sprite 1 into timeNow
  4.   --put timeNow
  5.   
  6.   repeat with y = 1 to the number of lines in theTimes
  7.     if integer(item 1 of line y of theTimes) > timeNow then
  8.       put item 2 of line (y-1) of theTimes into myLine
  9.       exit repeat
  10.     end if
  11.     
  12.   end repeat
  13.   
  14.   --put "line:" & myLine
  15.   
  16.   if myLine > 22 then
  17.     puppetsprite 7, true
  18.     set the loch of sprite 7 to 356
  19.     
  20.     
  21.     put ((myLine-22)*16) + 40 into newloc
  22.     --put "new y=" & newloc
  23.     puppetsprite 7, true
  24.     set the locv of sprite 7 to newloc
  25.     
  26.   else
  27.     
  28.     puppetsprite 7, true
  29.     set the loch of sprite 7 to 41
  30.     
  31.     put ((myLine-1)*16) + 40 into newloc
  32.     puppetsprite 7, true
  33.     set the locv of sprite 7 to newloc
  34.   end if
  35.   
  36.   
  37.   
  38.   
  39. end checkTimes