1. Could a dialog for "Fill track number from list order" be added with the possibility to edit the starting number?
I think this feature would be nice. Just got through hand numbering a 2 cd set so that the tracks from the second cd kept ascending from the track # at the end of the 1st cd
While not exactly obvious, this functionality already exists...
Try the following:
Select a bunch of files.
In the tag action window, click on the track # field to edit it.
type:
=counter(1)Press enter.
All selected tracks will be numbered sequentially, starting from 1
To number the selected tracks sequentially, starting from 15 you would use:
=counter(15)It's possible to specify an increment value too, so if you were looking to number files as 2, 4, 6, 8, etc. you would use:
=counter(2,2)Finally, you can apply the counter to any field for a given selection of files, so you might like to add some leading zeros in there too...
=padnumber(counter(1),3)would produce 001, 002, 003, 004, etc. etc.
-marko.