home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 - Expo 2000 / Image.iso / t-online / show / t_email.dxr / 00016.ls < prev    next >
Encoding:
Text File  |  1996-11-25  |  643 b   |  35 lines

  1. on enterFrame
  2.   global gsMenuName
  3.   set gsMenuName to "intro"
  4.   set glBsListe to ["anfang", "roll"]
  5.   set gsMenuName to "intro"
  6.   InitBsFrame(1)
  7. end
  8.  
  9. on exitFrame
  10.   global gbSldOpen
  11.   if gbSldOpen = 0 then
  12.     if rollOver(7) then
  13.       go(the frame + 2)
  14.     else
  15.       if rollOver(8) then
  16.         go(the frame + 4)
  17.       else
  18.         if rollOver(9) then
  19.           go(the frame + 6)
  20.         else
  21.           if rollOver(10) then
  22.             go(the frame + 8)
  23.           else
  24.             CheckMyRollover()
  25.             go(the frame)
  26.           end if
  27.         end if
  28.       end if
  29.     end if
  30.   else
  31.     CheckMyRollover()
  32.     go(the frame)
  33.   end if
  34. end
  35.