home *** CD-ROM | disk | FTP | other *** search
/ PC Direkt 1998 #11 / PCDIREKT_1198.bin / SHOWDATA / SERVFAQ2.DXR / 00007.ls < prev    next >
Encoding:
Text File  |  1998-03-18  |  464 b   |  17 lines

  1. on mouseUp
  2.   global sharedPath, myplatform
  3.   if voidp(sharedPath) then
  4.     set sharedPath to EMPTY
  5.   end if
  6.   set winpath to getOSDirectory()
  7.   if myplatform = "95" then
  8.     open(sharedPath & "w95help\AOL.HLP", winpath & "\winhlp32.exe")
  9.   else
  10.     if myplatform = "Mac" then
  11.       alert("Bitte starten Sie AOL und ├╢ffnen Sie die AOL-Hilfe dann im Apple-Hilfe-Men├╝!")
  12.     else
  13.       open(sharedPath & "AOL.HLP", winpath & "\winhelp.exe")
  14.     end if
  15.   end if
  16. end
  17.