diff --git a/Applescript/Copy last screenshot to clipboard.applescript b/Applescript/Copy last screenshot to clipboard.applescript new file mode 100644 index 0000000..e5c2d3d --- /dev/null +++ b/Applescript/Copy last screenshot to clipboard.applescript @@ -0,0 +1,13 @@ +on run {input, parameters} + set maxcount to 10 + set sourcepath to "/Users/drewcassidy/Documents/Images/Screenshots" + set sourcefolder to (POSIX file sourcepath) as alias + tell application "Finder" + set screenshots to sort (get every document file of folder sourcefolder) by creation date + set screenshotcount to number of items in screenshots + + set latest to last item of screenshots as alias + + set the clipboard to (read latest as TIFF picture) + end tell +end run \ No newline at end of file diff --git a/Applescript/Manage Screenshots.zip b/Applescript/Manage Screenshots.zip new file mode 100644 index 0000000..542a72c Binary files /dev/null and b/Applescript/Manage Screenshots.zip differ diff --git a/Applescript/OCR screenshots.zip b/Applescript/OCR screenshots.zip new file mode 100644 index 0000000..4cdb2b4 Binary files /dev/null and b/Applescript/OCR screenshots.zip differ diff --git a/Applescript/Services/Put OCR text in comment.zip b/Applescript/Services/Put OCR text in comment.zip new file mode 100644 index 0000000..10149ec Binary files /dev/null and b/Applescript/Services/Put OCR text in comment.zip differ