home *** CD-ROM | disk | FTP | other *** search
/ Mac Ga Ichiban! Special / macgaichibanspecial1.bin / MOVIES / WORKS / 00072.ls < prev    next >
Encoding:
Text File  |  1995-12-13  |  523 b   |  20 lines

  1. on mouseUp
  2.   if clickOn() = 14 then
  3.     set the movieRate of sprite 14 to 1
  4.     set the movieRate of sprite 15 to 0
  5.     set the movieRate of sprite 16 to 0
  6.   else
  7.     if clickOn() = 15 then
  8.       set the movieRate of sprite 14 to 0
  9.       set the movieRate of sprite 15 to 1
  10.       set the movieRate of sprite 16 to 0
  11.     else
  12.       if clickOn() = 16 then
  13.         set the movieRate of sprite 14 to 0
  14.         set the movieRate of sprite 15 to 0
  15.         set the movieRate of sprite 16 to 1
  16.       end if
  17.     end if
  18.   end if
  19. end
  20.