home *** CD-ROM | disk | FTP | other *** search
/ Creative Review 20 / Creative-Review-CD-ROM-20.iso / pc / studios / l002.dir / 00038_Script_38 < prev    next >
Text File  |  1996-11-27  |  368b  |  19 lines

  1. on exitFrame
  2.   set nextf = label("menu2")
  3.   repeat with which = 3 to 5
  4.     if rollover(which) then
  5.       set nextf = label("menu2") + which - 2
  6.       exit repeat
  7.     end if
  8.   end repeat
  9.   
  10.   if the machineType = 256 then
  11.     if the volume of sprite 2 < 256 then
  12.       set the volume of sprite 2 = 256
  13.     end if
  14.   end if
  15.   
  16.   
  17.   
  18.   go frame nextf
  19. end