home *** CD-ROM | disk | FTP | other *** search
/ What PC? 1997 February / WPCFEB97.ISO / dxrs / growfeb.dxr / 00014_groanimatesection.ls < prev    next >
Encoding:
Text File  |  1996-12-09  |  753 b   |  33 lines

  1. on groANIMATESection
  2.   global playvid
  3.   if the mouseUp then
  4.     case the rollOver of
  5.       "27":
  6.         set the castNum of sprite 27 to 101
  7.       "28":
  8.         set the castNum of sprite 28 to 100
  9.     end case
  10.   end if
  11.   if the castNum of sprite 10 = 93 then
  12.     if the movieRate of sprite 10 = 0 then
  13.       if not rollOver(27) then
  14.         set the castNum of sprite 27 to 99
  15.         updateStage()
  16.       end if
  17.       if not rollOver(28) then
  18.         set the castNum of sprite 28 to 98
  19.         updateStage()
  20.       end if
  21.     end if
  22.   else
  23.     if not rollOver(27) then
  24.       set the castNum of sprite 27 to 99
  25.       updateStage()
  26.     end if
  27.     if not rollOver(28) then
  28.       set the castNum of sprite 28 to 98
  29.       updateStage()
  30.     end if
  31.   end if
  32. end
  33.