I'm trying to make a button that opens only selected files in a program called Mp3Tag. Mp3Tag has a strange(?) behavior -- if you drag a set of files onto it it will load those selected files, but if you try to feed it the same arguments from batch/command-line it only opens the last file.
EXAMPLE:
mp3tag.exe "c:\a.mp3" "c:\b.mp3"
will only open "b.mp3", but dragging both files onto Mp3Tag's .exe will open both of them...?
Anyway, I've learned that a batch file written this way works:
mp3tag.exe "c:\a.mp3"
mp3tag.exe "c:\b.mp3"
Is there any way I can get this to work?
It does what I want, except that it loads the fist file then waits for me to exit before loading the second file.
I would like it to run the command on every file rapidly.
I tried @async, but this did not work.
Which external control code did you use, {filepath$} or {allfilepath$}?
If it was the first, try changing to the second.
All Opus can do is to send the fully qualified file names to the application, and it gives you a couple ways it can do so. After that it's up to the application to do the rest.