Moin,
ich habe eine Ordner-Aktion angelegt, die den Import von Dokumenten in DevonThink automatisiert. Leider funktioniert diese Aktion seit dem Update auf die Version 3.9.3 nicht mehr
-- DEVONthink - Import, OCR & Delete.applescript
-- Created by Christian Grunenberg on Fri Jun 18 2010.
-- Copyright (c) 2010-2014. All rights reserved.
on adding folder items to this_folder after receiving added_items
display alert "Start"
set dbUUID to "x-devonthink-item://XXXXXXXX-87B5-428D-9893-XXXXXXXX" -- Change this line
try
if (count of added_items) is greater than 0 then
display alert "2"
tell application id "DNtp" to launch
repeat with theItem in added_items
display alert "3"
set lastFileSize to 0
set currentFileSize to 1
repeat while lastFileSize ≠ currentFileSize
delay 0.5
set lastFileSize to currentFileSize
set currentFileSize to size of (info for theItem)
end repeat
try
set thePath to theItem as text
display alert "4"
if thePath does not end with ".download:" then
tell application id "DNtp"
display alert "5"
set dest to get record with uuid dbUUID
set theRecord to ocr file thePath to dest
if exists theRecord then tell application "Finder" to delete theItem
end tell
end if
end try
end repeat
end if
end try
end adding folder items to
Zu Debuging-Zwecken sind die display alert’s eingefügt. Alle werden aufgerufen.
Gibt es eine Log-Datei, in welcher ich Fehlermeldungen finden kann?
Hat jemand eine Idee, warum es nicht mehr funktioniert?
Grüße Detlev