Re: Opening SD's EnclosingFolder
Re: Opening SD's EnclosingFolder
- Subject: Re: Opening SD's EnclosingFolder
- From: Mark Alldritt <email@hidden>
- Date: Tue, 05 Mar 2002 07:30:53 -0800
>
Did someone write a script for Script Debugger's script menu that will open
>
the enclosing Finder window of the frontmost script?
>
Thanks
You can get to any folder in a script's path by Command-clicking on the
script window's title bar. A popup menu will appear letting you select any
folder in the path.
If you want to do it by script, you can do something like the following:
tell app "Script Debugger"
set theFile to file spec of first script document
end
tell app "Finder"
activate
open container of theFile
end
Cheers
-Mark
---------------------------------------------------------------------
Mark Alldritt Late Night Software Ltd.
Phone: 250-380-1725 333 Moss Street
FAX: 250-383-3204 Victoria, B.C.
WEB:
http://www.latenightsw.com/ CANADA V8V-4M9
_______________________________________________
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.