AppleScript Editor eat memory
AppleScript Editor eat memory
- Subject: AppleScript Editor eat memory
- From: Hagimeno <email@hidden>
- Date: Sat, 23 Jan 2010 21:24:37 +0000 (GMT)
During test of Matt Neuburg script for Spurious Timeout (Apple Events bug) under 10.6.2, we discovered that looking Activity Monitor, the Real memory continue to grow and grow and never stop.
In our intensive test we reached more than 1 GB RAM used by AppleScript Editor.
We think that this is not "normal" even because in the same test under 10.5.8, the memory remain at 12/14 MB.
Any other user can confirm this?
We hope that Apple fix this (and also Spurious Timeout Bug) in next 10.6.3
Alex and Steve
Here below the Matt script:
set i to 0
repeat -- forever
set i to i + 1
with timeout of 5 seconds
try
tell application "Finder"
count Finder windows
end tell
on error errMsg number errNum
display dialog i
error errMsg number errNum
end try
end timeout
if i > 70000 then
display dialog "You passed the barrier!"
exit repeat
end if
end repeat
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden