Re: simple script or kbd shortcut
Re: simple script or kbd shortcut
- Subject: Re: simple script or kbd shortcut
- From: "T.J. Mahaffey" <email@hidden>
- Date: Tue, 30 Jul 2002 22:04:30 -0500
You're on the right track.
You wrote:
>
tell "finder"
>
Open special folder "apple menu items"
>
end
This should work as-is:
tell application "Finder"
open folder "Apple Menu Items" of system folder
end tell
Alternatively, you could just place an alias (aka shortcut in the Windows world)
to the Apple Menu Items folder onto your desktop or wherever you prefer for
quick access. Double clicking this alias would likely open the folder faster
than a script would, since there would be no launching/running of an application
(namely you script applet).
I hope this helps!
Be well and good luck.
--
T.J. Mahaffey
www.tjmahaffey.com/mac
email@hidden
_______________________________________________
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.