QuickShot is like DropVox but for images.
I found this iPhone app by spying on David Barnard’s Home screen. You use QuickShot to take a photo and it will then upload the image to Dropbox for you. It uploads in the background too, so you just snap a pic and close the app.
David explained how he uses the app to take pictures of all his tax-deductible, business expense receipts when on the go. When I read that, I thought to myself, what an extremely clever idea.
I keep my business receipts in Yojimbo, and so I’ve set up a folder action on my QuickShot Dropbox folder to run the below AppleScript. What the AppleScript does is: when I take a photo of a receipt using QuickShot the image will be tossed into Yojimbo with the tags “receipt” and “viaDropbox” and then the original image is deleted from my Dropbox folder.1
on adding folder items to this_folder after receiving these_items
repeat with x from 1 to the count of these_items
set theFile to item x of these_items
set theTags to {"receipt", "viaDropbox"}
try
tell application "Yojimbo"
set newItem to (import theFile)
add tags theTags to newItem
end tell
end try
end repeat
tell application "Finder"
delete these_items
end tell
end adding folder items to
QuickShot is universal and just $1.99 in the iTunes App Store.
- Thanks to my pal, Brett Kelly, for a bit of AppleScript debugging to get the script to work right. Actually, especially thanks to him because it’s a script that works with Yojimbo and we all know he’s an Evernote guy. ↵