home *** CD-ROM | disk | FTP | other *** search
/ PC Player 1999 June / LIB_DAY.BIN / DEMOS / DEMOS.DXR / 00022.ls < prev    next >
Encoding:
Text File  |  1998-02-27  |  604 b   |  32 lines

  1. on exitFrame
  2.   global gDestination
  3.   if gDestination = "manual" then
  4.     go("manualstart")
  5.   else
  6.     if gDestination = "demos" then
  7.       go("demostart")
  8.     else
  9.       if gDestination = "games" then
  10.         go("gamesstart")
  11.       end if
  12.     end if
  13.   end if
  14.   if rollOver(7) then
  15.     sendSprite(5, #CycleState)
  16.     go(the frame)
  17.   end if
  18.   if rollOver(11) then
  19.     sendSprite(9, #CycleState)
  20.     go(the frame)
  21.   end if
  22.   if rollOver(15) then
  23.     sendSprite(13, #CycleState)
  24.     go(the frame)
  25.   end if
  26.   if rollOver(19) then
  27.     sendSprite(17, #CycleState)
  28.     go(the frame)
  29.   end if
  30.   go(the frame)
  31. end
  32.