Milliseconds in OS X?
Milliseconds in OS X?
- Subject: Milliseconds in OS X?
- From: bill <email@hidden>
- Date: Sat, 23 Mar 2002 12:12:57 +0800
Hello,
An interesting exploitation this morning:
try
do shell script "defaults read b"
on error errorText
errorText
end try
-- "2002-03-23 12:02:04.583 defaults[1706]
Domain b does not exist"
The digits .583, can we interpret it as 583 milliseconds?
Or, this one:
on markTime()
try
do shell script "defaults read b"
on error errorText
text 12 thru 23 of errorText
end try
end markTime
set timeList to {}
repeat 10 times
set end of timeList to my markTime()
end repeat
TimeList
--{"12:07:55.851", "12:07:55.994", "12:07:56.131", "12:07:56.279",
"12:07:56.415", "12:07:56.551", "12:07:56.685", "12:07:56.822",
"12:07:56.959", "12:07:57.092"}
Is it a potential "ticks" in OS X?
Bye
Bill
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.