Auto Renumbering

Im a newbie to this fine piece of software. I read some where but cannot find it as a function that its possible to auto renumber a group of tracks in an album? for instance I have an opera with over 80 tracks having removed 20 & 21 I want to renumber the rest.

Thanks a lot

So you want to have the original track number 22 being number 20, right?

As a semi automated way you could add a script in Options > Scripting like e.g.:

$if($gt(%tracknumber%,21),$set(tracknumber,$sub(%tracknumber%,2)))
$set(totaltracks,$sub(%totaltracks%,2))

Disable this script (so it does not run always when you run a release) and run it manually on the Opera release by right clicking on the release and select Run script > Your script name.

1 Like

Thank you! Ill give that a go.