Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Slight changes I made to my copy...' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Slight changes I made to my copy...
Authored by: donaciano on Feb 23, '04 08:02:04PM

Great hint! Love it. :)

To speed it up a lil more I wanted "Other..." at the top near the most recently used item so I wouldn't have to work my way up the list with the arrow when I want a recent item.

Change 2 lines to do this :

From :
set runList to (text items of runListString & ("Other ..." as list))
To :
set runList to (("Other ..." as list) & text items of runListString)

That way you get "Other..." at the top instead of the bottom of the list.

Then to have "Other..." selected at the top change
From :
"Choose Application to activate" default items (last item of runList) ¬
To :
"Choose Application to activate" default items (first item of runList) ¬

Not a big deal I know, but it makes it nicer for me. (Great way to learn AppleScript too, take something you like and change it a lil)

-don.



[ Reply to This | # ]