Re: Window basics...
Re: Window basics...
- Subject: Re: Window basics...
- From: Paul Berkowitz <email@hidden>
- Date: Thu, 13 Dec 2001 10:58:28 -0800
On 12/13/01 10:15 AM, "Domains4Days.com" <email@hidden> wrote:
>
Instead of the line below that picks a particular folder, how can I select
>
THE FRONTMOST WINDOW (that's open) and apply changes to that one?
>
>
>
tell application "Finder"
>
activate
>
set position of container window of folder "MyFOLDER" of disk "Main" to
>
{10, 50}
>
end tell
tell application "Finder"
activate
set position of window 1 to {10, 50}
end tell
--
Paul Berkowitz