Re: Finder tell block
Re: Finder tell block
- Subject: Re: Finder tell block
- From: Gnarlodious <email@hidden>
- Date: Tue, 05 Mar 2002 07:58:27 -0700
At 9:26 +0000 3/4/2002, Mr Tea wrote:
>
tell application "Finder" to do something
>
>
...treated in any way differently to:
>
>
tell application "Finder"
>
do something
>
end tell
This opens an apps scripts folder in the background:
tell application "Finder" to open "" as alias given +class fsel;:{"Scripts"
as alias}
But to move it to the front you need to "activate":
tell application "Finder"
activate
open "" as alias given +class fsel;:{"Scripts" as alias}
end tell
Rachel
http://www.gnarlodious.com
_______________________________________________
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.