Hello
I made an order on all my files which is not alphabetically but matches my %title2% column.
When the export in .text, I would like to keep this order, but systematically it the puts me alphabetically by filename!
This is something simple, but I do not!
Thanks in advance for your help
Jean
Script .txt:
$title2(txt,utf-8)$loop(%_path%)%title2%
$loopend()
Thank you!!
Best regards
Jean
If you have arranged the column for the tag-field TITLE2 by hand ...
and you want to preserve this order for this tag-field when creating a report output, ...
then you may insert a helper column resp. a helper tag-field, called MY_ORDER or so, ...
which contains an ordered sequence of numbers, ...
so that the $loop(%MY_ORDER%) can work with the given numerical order.
After you have arranged the list view in order of the tag-field TITLE2 by hand ...
then run ...
Action "Format value"
Field: MY_ORDER
Format string: %_counter%
Afterwards let the report run ..
1: $filename($getEnv('USERPROFILE')'\Desktop\Mp3tag.Report.txt',UTF-8)
2: $loop(%MY_ORDER%)%TITLE2%' - '%_filename_ext%
3: $loopend()
At end remove the helper tag-field from the files.
DD.20130207.1532.CET