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

  1. -- FrameScript im "rollover" Screen "roll"
  2. -- 
  3.  
  4. on enterFrame
  5.   global gsMenuName
  6.   
  7.   set gsMenuName = "intro"  -- exit zu intro
  8.   set glBsListe = [ "anfang",  "roll" ]
  9.   set gsMenuName = "intro"
  10.   InitBsFrame true
  11.   
  12. end
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20. on exitFrame
  21.   global gbSldOpen
  22.   
  23.   if gbSldOpen = false then
  24.     -- nur, wenn die Slider nicht ausgefahren sind
  25.     if rollover (7) then 
  26.       go to the frame + 2
  27.     else if rollover (8) then
  28.       go to the frame +4
  29.     else if rollover (9) then
  30.       go to the frame +6
  31.     else if rollover (10) then 
  32.       go to the frame +8
  33.     else
  34.       CheckMyRollover -- funktionen
  35.       go to the frame
  36.     end if --roll
  37.   else -- nur fƒr test
  38.     CheckMyRollover
  39.     go to the frame
  40.   end if
  41. end
  42.  
  43.  
  44.  
  45.