Passing files into external application, DO popup remains until you close target app

Hello,
Example, having bunch of images, which can be passed into external app via created button.
Button code is : @sync:"PATH\app.exe" {allfilepath|noterm}
User selects files, hits button, external app receives files, but in DO there is popup, which remains opened until you close external app.
mspaint_2022-12-26_13-37-34

It's supposed to be like that, or I'm using not proper Arguments/Modifiers in button configuration?

If you use @sync you really telling Opus you want to wait for it to finish. Sounds like you don’t want that.

You can also use @noprogress to suppress the progress dialog.

1 Like

Thanks, removing @sync did the trick.