I've read about the need to have a time measurement tool.
The following AppleScript will do the job run from ScriptEditor:
(Don't mention, that Camino has to be quit before running the script)
on run
set tTime1 to time of (current date)
tell application "Camino" to activate
set tTime2 to time of (current date)
set totalTime to tTime2 - tTime1
activate
display dialog "Needed " & totalTime & " seconds to startup Camino"
end run
It needed 5 Seconds on my G4 500 while converting a MPEG-2 file into MotionJPEG A in the background... - Not bad!
Thomas
_______________________________________________ Camino mailing list [EMAIL PROTECTED] http://mozdev.org/mailman/listinfo/camino
