home *** CD-ROM | disk | FTP | other *** search
- global gQTState, gDisableQT, gPathDelimiter
-
- on startMovie
- gPathDelimiter = determineDelimiter()
- gQTState = #unknown
- gDisableQT = 0
- checkForQT(5)
- case gQTState of
- #QTPresent:
- nothing()
- #wrongversion:
- go("wrongversion")
- #notPresent:
- go("noQT")
- end case
- initMovie()
- end
-
- on checkForQT versionNumber
- if voidp(versionNumber) then
- exit
- end if
- currentVersion = QuickTimeVersion()
- if currentVersion <> 0 then
- if currentVersion >= versionNumber then
- gQTState = #QTPresent
- else
- gQTState = #wrongversion
- end if
- else
- gQTState = #notPresent
- end if
- end
-
- on initMovie
- end
-
- on determineDelimiter
- thisMAchine = the platform
- if thisMAchine contains "Windows" then
- return "\"
- else
- if thisMAchine contains "Macintosh" then
- return ":"
- else
- return "/"
- end if
- end if
- end
-