home *** CD-ROM | disk | FTP | other *** search
/ PC/CD Review 54 / CDREVIEW.iso / kerouac / qscreen.dxr / 00162.ls < prev    next >
Encoding:
Text File  |  1996-02-15  |  585 b   |  31 lines

  1. on exitFrame
  2.   if rollOver(29) then
  3.     puppetSprite(29, 1)
  4.     set the castNum of sprite 29 to 11
  5.     updateStage()
  6.     navhintInf(1)
  7.   else
  8.     puppetSprite(29, 0)
  9.     updateStage()
  10.     navhintInf(0)
  11.   end if
  12.   if rollOver(5) then
  13.     go("slog")
  14.   else
  15.     go(the frame)
  16.   end if
  17. end
  18.  
  19. on navhintInf sw
  20.   if sw = 1 then
  21.     puppetSprite(38, 1)
  22.     set the locV of sprite 38 to the bottom of sprite 29 + 4
  23.     set the locH of sprite 38 to the locH of sprite 29 - 88
  24.     updateStage()
  25.   else
  26.     set the locV of sprite 38 to -1000
  27.     updateStage()
  28.     puppetSprite(38, 0)
  29.   end if
  30. end
  31.