A recent question to support caused me to whip up the following AppleScript. Feel free to use it as a template to name PDFs, add tags, or whatever...

on open (theFile)
    tell application "Yojimbo"
        set allCollections to (name of every folder collection)
    end tell

set c to choose from list allCollections with prompt "Add PDF to which collection?"

    tell application "Yojimbo"
        set n to import theFile
        add n to folder collection named c
    end tell
end open

--
Steve Kalkwarf
<[EMAIL PROTECTED]>


--
------------------------------------------------------------------
This message is sent to you because you are subscribed to
 the mailing list <[email protected]>.
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