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

  1. on mouseDown
  2.   if trackHit() then
  3.     global DrillQNum, WrongList
  4.     set limit = count(WrongList)
  5.     set place = getOne(WrongList,DrillQNum)
  6.     if place = limit then
  7.       SwapComment 63
  8.       beep
  9.       unload
  10.     else
  11.       unload
  12.       set place = place + 1
  13.       set DrillQNum = getAt(WrongList,place)
  14.       RotateNumber
  15.       go to the frame - 1
  16.     end if
  17.   end if
  18. end