home *** CD-ROM | disk | FTP | other *** search
/ 1&1 Multimedia Trend 1996 10 B / MM_TREND.ISO / prog / isdn / intro_i.dir / 00042_Script_42 < prev    next >
Text File  |  1996-08-18  |  879b  |  43 lines

  1. -- loop
  2.  
  3. on exitFrame
  4.   global gbSldOpen, giAuto, gb1u1logo
  5.   
  6.   playMusic "2intro"
  7.   
  8.   if the castnum of sprite 48 >0 then
  9.     set the visible of sprite 48 to false
  10.   end if
  11.   
  12.   CheckMyRollover
  13.   
  14.   if (gbSldOpen = false) and (gb1u1logo = false) then 
  15.     
  16.     if giAuto > 0 then
  17.       go to frame "anfang" of movie "flexibel"
  18.       
  19.     end if 
  20.     
  21.     
  22.     if rollover(2) then go to the frame +1
  23.     else
  24.       if rollover(3) then go to the frame +2
  25.       else
  26.         if rollover(4) then go to the frame +3
  27.         else
  28.           if rollover(5) then go to the frame +4
  29.           else
  30.             if rollover(6) then go to the frame +5
  31.             else
  32.               
  33.               
  34.               go to the frame
  35.             end if
  36.           end if
  37.         end if
  38.       end if
  39.     end if
  40.   else
  41.     go to the frame
  42.   end if    
  43. end