Script opens System Profiler but won't quit it

I am able to open the apple system profiler with applescript, but I am unable to make it close. I have applescript that tells it to close, but for some reason this does not work on my system. I am currently running OSX 10.0

Also if anyone knows where I can find the Script editor 7.8 for download it would be greatly appreciated. I have searched and searched and cannot find a download link.

Steve,

Try this, I don’t know what you need in the middle. It works on 10.2, but if you have 10.0 you definitely need to upgrade.


tell application "Apple System Profiler"
	activate
	delay 10
	ignoring application responses
		tell application "Apple System Profiler" to quit
	end ignoring
end tell

Agi
(PS: We’re on the same fm list, too.)