home *** CD-ROM | disk | FTP | other *** search
/ The Princeton Review - Algebra Smart / ALGEBRA.iso / pc / exams / exams.dir / 00008_Script_8 < prev    next >
Text File  |  1996-10-02  |  470b  |  19 lines

  1. on mouseDown
  2.   if trackHit() then
  3.     unload
  4.     set Qlimit = integer(word 2 of line 1 of field "Drill DataField")
  5.     global DrillQNum, turnBack
  6.     puppetsprite 47, 0
  7.     set DrillQNum = DrillQNum + 1
  8.     repeat with x in [2,8,9,30,31,32,33]
  9.       puppetsprite x, 0
  10.     end repeat
  11.     if DrillQNum = (Qlimit + 1) then
  12.       puppetsprite 11, 0
  13.       go to "DrillReport"
  14.     else
  15.       set turnBack = 0
  16.       go to the frame - 2
  17.     end if
  18.   end if
  19. end