home *** CD-ROM | disk | FTP | other *** search
/ FDR / FDR.iso / FDR / FDR.DXR / 00002_bothErrors.ls < prev    next >
Encoding:
Text File  |  1996-10-22  |  548 b   |  27 lines

  1. global vDelim, vVidExt
  2.  
  3. on exitFrame
  4.   set err to "OK"
  5.   case the machineType of
  6.     256:
  7.       set vDelim to "\"
  8.       set vVidExt to ".avi"
  9.       if the videoForWindowsPresent = 0 then
  10.         set err to "VFW"
  11.       end if
  12.       if the colorDepth <> 8 then
  13.         set err to "ColorsPC"
  14.       end if
  15.     otherwise:
  16.       set vDelim to ":"
  17.       set vVidExt to ".mov"
  18.       if the quickTimePresent = 0 then
  19.         set err to "QT"
  20.       end if
  21.       if the colorDepth <> 8 then
  22.         set err to "ColorsMac"
  23.       end if
  24.   end case
  25.   go(err)
  26. end
  27.