home *** CD-ROM | disk | FTP | other *** search
/ Blender Volume 1 #1 / Blender_1_1.iso / BLENDER / FILES / CONTENT1.DIR / 00007.ls < prev    next >
Encoding:
Text File  |  1994-11-01  |  874 b   |  40 lines

  1. on exitFrame
  2.   if rollOver(3) then
  3.     puppetSprite(25, 1)
  4.     set the castNum of sprite 25 to 75
  5.   else
  6.     set the castNum of sprite 25 to 55
  7.     puppetSprite(25, 0)
  8.   end if
  9.   if rollOver(4) then
  10.     puppetSprite(24, 1)
  11.     set the castNum of sprite 24 to 74
  12.   else
  13.     set the castNum of sprite 24 to 54
  14.     puppetSprite(24, 0)
  15.   end if
  16.   if rollOver(5) then
  17.     puppetSprite(23, 1)
  18.     set the castNum of sprite 23 to 73
  19.   else
  20.     set the castNum of sprite 23 to 53
  21.     puppetSprite(23, 0)
  22.   end if
  23.   if rollOver(6) then
  24.     puppetSprite(27, 1)
  25.     set the castNum of sprite 27 to 77
  26.   else
  27.     set the castNum of sprite 27 to 57
  28.     puppetSprite(27, 0)
  29.   end if
  30.   if rollOver(7) then
  31.     puppetSprite(26, 1)
  32.     set the castNum of sprite 26 to 76
  33.   else
  34.     set the castNum of sprite 26 to 56
  35.     puppetSprite(26, 0)
  36.   end if
  37.   updateStage()
  38.   go(the frame - 24)
  39. end
  40.