home *** CD-ROM | disk | FTP | other *** search
/ Old Testament Foundatiosn with Philip Yancey / Old Testament Foundatiosn with Philip Yancey - Disc 2.iso / pc / data / book34.dir / 00014.ls < prev    next >
Encoding:
Text File  |  1996-09-09  |  454 b   |  21 lines

  1. on mouseDown
  2.   global gColumn, gRow, gPreviousSection
  3.   puppetSound("MouseDown.aif")
  4.   repeat while the mouseDown
  5.     checkColumn()
  6.   end repeat
  7.   startTimer()
  8.   repeat while the timer < 15
  9.     nothing()
  10.   end repeat
  11.   if (gColumn = 0) or (gRow = 0) then
  12.     pupSprites(1, 48, 0)
  13.     go(gPreviousSection)
  14.     updateStage()
  15.   else
  16.     pupSprites(1, 48, 0)
  17.     set myMovie to "book" & gColumn & gRow & ".dir"
  18.     go(gPreviousSection, myMovie)
  19.   end if
  20. end
  21.