home *** CD-ROM | disk | FTP | other *** search
/ GameStar 1998 November (Bonus) / GAMESTAR11B.ISO / ENCYC99 / MM / T620273A.DCR / scripts_5.ls < prev    next >
Encoding:
Text File  |  1998-07-02  |  500 b   |  24 lines

  1. on sendoff xString
  2.   global whichPlatform, version
  3.   case whichPlatform of
  4.     1:
  5.       set theNews to "http://" & xString
  6.       gotoNetPage(theNews)
  7.     2:
  8.       externalEvent(xString)
  9.     3:
  10.       put xString
  11.     otherwise:
  12.       if version contains "net" then
  13.         if the platform contains "macintosh" then
  14.           set whichPlatform to 1
  15.         else
  16.           set whichPlatform to 2
  17.         end if
  18.       else
  19.         set whichPlatform to 3
  20.       end if
  21.       sendoff(xString)
  22.   end case
  23. end
  24.