Open in Photo Mechanic Applescript
Posted: Wed May 20, 2026 5:53 pm
Hi
A lot of PM users looking to Neofinder as a replacement for PM+.
Here is an AppleScript to open a selected file in Photo Mechanic 6;
tell application "NeoFinder"
set sel to selected items
if sel is not {} then
set filepath to finder path of item 1 of sel
tell application "Photo Mechanic 6"
activate
open filepath
end tell
end if
end tell
You can also just drag and drop file onto PM icon in dock
gary
A lot of PM users looking to Neofinder as a replacement for PM+.
Here is an AppleScript to open a selected file in Photo Mechanic 6;
tell application "NeoFinder"
set sel to selected items
if sel is not {} then
set filepath to finder path of item 1 of sel
tell application "Photo Mechanic 6"
activate
open filepath
end tell
end if
end tell
You can also just drag and drop file onto PM icon in dock
gary