I use the drop dock for a lot of my bookmark and web archive creation. One obvious shortcoming is that I can't tag items while creating them that way.

This morning, I whipped up this script:

tell application "Yojimbo"
    set allTags to (name of every tag)
    set ri to builtin smart collection named "Recent Items"
    set recentItem to last item of ri
    set itemName to name of recentItem
end tell

set newTags to choose from list allTags with prompt "Tag “" & itemName & "” with?" with multiple selections allowed

if (count of newTags) is not 0 then
    tell application "Yojimbo"
        add tags newTags to recentItem
    end tell
end if

Using Daniel Jalkut's excellent FastScripts, I added a Option-F8 as a keystroke, and now I can tag items right after creating them.


--
------------------------------------------------------------------
This message is sent to you because you are subscribed to
 the mailing list <yojimbo-talk@barebones.com>.
To unsubscribe, send mail to: <[EMAIL PROTECTED]>
List archives:  <http://www.listsearch.com/yojimbotalk.lasso>
Have a feature request, or not sure if the software's working
correctly? Please send mail to: <[EMAIL PROTECTED]>

Reply via email to