Re: A number can't go after this identifier.
Re: A number can't go after this identifier.
- Subject: Re: A number can't go after this identifier.
- From: Paul Berkowitz <email@hidden>
- Date: Sat, 22 Nov 2003 11:24:57 -0800
On 11/22/03 11:10 AM, "Paul Berkowitz" <email@hidden> wrote:
>
Or, the format I prefer (it's the same thing):
>
>
--------------------
>
>
tell application "Finder" to activate
>
>
tell application "System Events"
>
tell process "Finder"
>
set value of text field 1 of UI element 1 of button "Search" of
>
tool bar 1 of window "Macintosh HD" of application process "Finder" to
>
"<string>"
>
end tell
>
end tell
Oops, I forgot to re-do it:
tell application "Finder" to activate
tell application "System Events"
tell process "Finder"
tell tool bar 1 of window "Macintosh HD"
tell button "Search"
tell UI element 1
set value of text field 1 to "<string>"
end tell
end tell
end tell
end tell
end tell
--
Paul Berkowitz
_______________________________________________
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.