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

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