Re: Fwd: scripts revert to <<class foobar>>
Re: Fwd: scripts revert to <<class foobar>>
- Subject: Re: Fwd: scripts revert to <<class foobar>>
- From: Jon Pugh <email@hidden>
- Date: Tue, 12 Aug 2003 21:35:11 -0700
At 1:10 PM -0700 8/12/03, Matthew Galaher wrote:
>
Is there a standard place(s) to look or way to check what scripting additions a machine has installed?
This script lists all installed scripting additions on X:
set folderList1 to {}
set folderList2 to {}
set folderList3 to {}
try
set folder1 to path to scripting additions from System domain
tell application "Finder"
set folderList1 to name of items of folder1 whose name extension = "osax"
end tell
end try
try
set folder3 to path to scripting additions from local domain
tell application "Finder"
set folderList2 to name of items of folder2 whose name extension = "osax"
end tell
end try
try
set folder3 to path to scripting additions from user domain
tell application "Finder"
set folderList3 to name of items of folder3 whose name extension = "osax"
end tell
end try
{folderList1, folderList2, folderList3}
Jon
_______________________________________________
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.