home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 1998 October / PCpro_1998_10.ISO / compuser / Service.dxr / 00307.ls < prev    next >
Encoding:
Text File  |  1998-04-08  |  749 b   |  42 lines

  1. on enterFrame
  2.   global gSystem
  3.   if rollOver(7) then
  4.     go("EX_1")
  5.     exit
  6.   end if
  7.   if rollOver(8) then
  8.     go("EX_2")
  9.     exit
  10.   end if
  11.   if rollOver(20) then
  12.     puppetSprite(48, 1)
  13.     set the castNum of sprite 48 to the number of member "BUB_1"
  14.     updateStage()
  15.     exit
  16.   else
  17.     puppetSprite(48, 0)
  18.   end if
  19.   if rollOver(21) then
  20.     puppetSprite(48, 1)
  21.     set the castNum of sprite 48 to the number of member "BUB_2"
  22.     updateStage()
  23.     exit
  24.   else
  25.     puppetSprite(48, 0)
  26.   end if
  27.   if rollOver(22) then
  28.     puppetSprite(48, 1)
  29.     set the castNum of sprite 48 to the number of member "BUB_3"
  30.     updateStage()
  31.     exit
  32.   else
  33.     puppetSprite(48, 0)
  34.   end if
  35.   go("EXPLORER")
  36. end
  37.  
  38. on exitFrame
  39.   mTimeSwitch()
  40.   go(the frame)
  41. end
  42.