Re: "tell application" without starting application? nor knowing its name
Re: "tell application" without starting application? nor knowing its name
- Subject: Re: "tell application" without starting application? nor knowing its name
- From: Andy Wylie <email@hidden>
- Date: Sat, 30 Nov 2002 11:24:12 +0000
on Fri, 29 Nov 02 01:36:30 +0100 VRic wrote:
>
tell application "Finder" to set itStatus to ("hook" is in creator type
>
of every process)
There's a long standing bug where creator type of every process will return
a list {<<class apsw>>, <<class aPul>>, etc} on many systems.
so ...'every process as string' or to get the list of code strings...
set AppleScript's text item delimiters to ","
tell application "Finder"
set procCodesto ((every process)'s creator type as text)'s every text
item
end tell
set AppleScript's text item delimiters to ""
_____________________________ Andy
_______________________________________________
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.