home *** CD-ROM | disk | FTP | other *** search
- global vDelim, vVidExt
-
- on exitFrame
- set err to "OK"
- case the machineType of
- 256:
- set vDelim to "\"
- set vVidExt to ".avi"
- if the videoForWindowsPresent = 0 then
- set err to "VFW"
- end if
- if the colorDepth <> 8 then
- set err to "ColorsPC"
- end if
- otherwise:
- set vDelim to ":"
- set vVidExt to ".mov"
- if the quickTimePresent = 0 then
- set err to "QT"
- end if
- if the colorDepth <> 8 then
- set err to "ColorsMac"
- end if
- end case
- go(err)
- end
-