Problem open files with external program

I have created a filetype-command (context menu) to open files with external programs.

E.g. open selected pictures with Photoshop via context menu:

C:\Program Files\Adobe\Adobe Photoshop CS3\Photoshop.exe" %1

Since DO 9.1.x.x it works only for the first file, all other selected files will be ignored. Also a DO progress bar is open in background until Photoshop has been closed. Why?

If you add @async to the start of the line then you'll probably get back the old behaviour.

If not, %1 only passes one at a time so try %* or {allfilepath}

Hello Nudel,

{allfilepath} did the job. Thanks.