home *** CD-ROM | disk | FTP | other *** search
/ Buffalo Sabres 2001-2002 Promotional CD / Sabres.iso / pc / home.dxr / 00130.ls < prev    next >
Encoding:
Text File  |  2001-09-05  |  285 b   |  17 lines

  1. on startMovie
  2.   gPathDelimiter = determineDelimiter()
  3. end
  4.  
  5. on determineDelimiter
  6.   thisMAchine = the platform
  7.   if thisMAchine contains "Windows" then
  8.     return "\"
  9.   else
  10.     if thisMAchine contains "Macintosh" then
  11.       return ":"
  12.     else
  13.       return "/"
  14.     end if
  15.   end if
  16. end
  17.