home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1996 June / PCOnline_06_1996.iso / mrmore / mrmore.dir / 00037_Script_37 < prev    next >
Text File  |  1996-04-11  |  568b  |  27 lines

  1. -- Check RollOver ohne Sound
  2.  
  3. on exitFrame
  4.   global gbPopIsOn, gbInstallActive
  5.   
  6.   if gbInstallActive and not gbPopIsOn then  --  ********************** Gibt┤s noch was zu installieren?
  7.     global gsPopupReturn
  8.     put gsPopupReturn
  9.     set gbInstallActive = false
  10.     if gsPopupReturn = "Jetzt" then
  11.       DoItNow()
  12.     else if gsPopupReturn = "SpΣter" then
  13.       DoItLater()
  14.     end if
  15.   end if
  16.   
  17.   if not gbPopIsOn then
  18.     CheckRollOver()
  19.     CheckForTimeOut()
  20.   else
  21.     DoPopupAnim()  
  22.   end if
  23.   
  24.   cursor 0
  25.   
  26.   go to the frame
  27. end