home *** CD-ROM | disk | FTP | other *** search
/ Creative Review 20 / Creative-Review-CD-ROM-20.iso / pc / studios / l002.dir / 00004_Script_4 < prev    next >
Text File  |  1996-11-27  |  389b  |  18 lines

  1. on exitFrame
  2.   set nextf = label("menu")
  3.   repeat with which = 3 to 5
  4.     if rollover(which) then
  5.       set nextf = label("menu") + which - 2
  6.       exit repeat
  7.     end if
  8.   end repeat
  9.   
  10.   if the timer > (3 * 60) then
  11.     if the visible of sprite 2 = false then
  12.       set the visible of sprite 2 = TRUE
  13.     end if 
  14.     go "menu2"
  15.   else    
  16.     go frame nextf
  17.   end if
  18. end