|
|
|
Check QuickTime Version
Added on 5/26/2000
|
This script uses Buddy API to check the QT version agains the currently installed one. Returns true if it needs to be installed, otherwise false...
shouldIInstall = qtCheck(4.11)
--Copyright 2000 Chuck Neal
--chuck@mediamacros.com
--If you find this code helpful, send me an e-mail and let me know. :-)
on qtCheck whatVersion
the itemDelimiter = "."
if float(baVersion("qt3").item[1..2]) < whatVersion then
return true
else
return false
end if
end
on getBehaviorDescription me
return "Checks the version of quicktime and returns true if it needs to be installed."
end
|
|