home *** CD-ROM | disk | FTP | other *** search
/ 1&1 Multimedia Trend 1996 10 B / MM_TREND.ISO / prog / t-online / 4_ser.dir / 00016_Script_16 < prev    next >
Text File  |  1996-08-18  |  740b  |  40 lines

  1. -- FrameScript im "rollover" Screen "roll"
  2. -- 
  3.  
  4.  
  5. on exitFrame
  6.   global gbSldOpen, giAuto, gb1u1Logo
  7.   
  8.   PlayMusic "telek2"
  9.   
  10.   CheckMyRollover -- funktionen
  11.   
  12.   if (gbSldOpen = false) and (gb1u1Logo = false) then
  13.     
  14.     if (giAuto > 0) then
  15.       go to frame "anfang" of movie "btx"
  16.       
  17.     end if
  18.     debug "check ..."
  19.     -- nur, wenn die Slider nicht ausgefahren sind
  20.     
  21.     if rollover (7) then 
  22.       go to the frame + 2
  23.     else if rollover (8) then
  24.       go to the frame +4
  25.     else if rollover (9) then
  26.       go to the frame +6
  27.     else if rollover (10) then 
  28.       go to the frame +8
  29.     else
  30.       go to the frame
  31.     end if --roll
  32.   else 
  33.     
  34.     go to the frame
  35.   end if
  36. end
  37.  
  38.  
  39.  
  40.