home *** CD-ROM | disk | FTP | other *** search
/ Let's Discover Tennessee! / Let's Discover Tennessee!.iso / pc / FILES / DIS.dxr / 00401_BattlefieldsRoll.ls < prev    next >
Encoding:
Text File  |  2001-06-27  |  345 b   |  20 lines

  1. global nextCategory, currentCategory
  2.  
  3. on mouseEnter me
  4.   puppetSound(4, "DisRoll")
  5.   sprite(the currentSpriteNum + 12).visible = 1
  6. end
  7.  
  8. on mouseLeave me
  9.   sprite(the currentSpriteNum + 12).visible = 0
  10. end
  11.  
  12. on mouseUp me
  13.   if (marker(0) mod 100) = 22 then
  14.     go(marker(0))
  15.   else
  16.     nextCategory = "Battlefields"
  17.     go(marker(1))
  18.   end if
  19. end
  20.