Given the potential demise of Photo Mechanic Plus I recently moved my photo catalogue to NeoFinder—and am very pleased with the results. I noted there was an old Alfred workflow for NeoFinder. However, that uses the now deprecated “Run NSAppleScript” Action. The Alfred “Run Script” action should now be set to "/usr/bin/osascript (AppleScript)" and the following script will then work:
Code: Select all
on run argv
set searchTerm to item 1 of argv
tell application "NeoFinder"
activate
find searchTerm
end tell
end run(Apologies if I have posted this in the wrong forum: I was unsure of the most appropriate forum for the post.)
Stephen