Ordner-aktion funktioniert nach Update auf 3.9.3 nicht mehr

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

Und was genau heißt “funktioniert nicht”? Tut nichts, tut was anderes, es gibt ne Fehlermeldung (welche?)

Im englischsprachigen Forum gibt’s gerade einen Thread zum Thema “OCR geht nicht mehr” – könnte es sowas bei dir sein? ( Um das zu sehen, bräuchte es noch ein “alert” denke ich)

Hi,
die alerts werden von Start bis 5 ausgegeben, das war es.
Der Hinweis OCR scheint in die richtige Richtung zu gehen, ziehe ich das Dokument in die “Inbox” wird es importiert, aber kein OCR durchgeführt. Ich kann allerdings den OCR dann manuell über das Kontext-Menü ausführen.

Hab noch ein paar alerts eingefügt:

					if thePath does not end with ".download:" then
						tell application id "DNtp"
							display alert "5"
							
							set dest to get record with uuid dbUUID
							display alert "6"
							set theRecord to ocr file thePath to dest
							display alert "7"
							if exists theRecord then tell application "Finder" to delete theItem
						end tell
					end if

Du hast Recht: Alert 7 wird nicht mehr ausgeführt.

Dann schaue ich mal in das englische Forum, danke

Grüße Detlev.

Haben Sie einen neuen Ordner erstellt, die vorhandene Ordneraktion daran angehängt und gesehen, ob es funktioniert? Es funktioniert hier ohne Probleme.

(Übersetzt mit macOS)

see here: DTP 3.9.3 breaks the apple script command ocr from