INTERACT FORUM

More => Old Versions => Media Center 17 => Topic started by: ShayB on September 29, 2012, 04:45:21 am

Title: MC17 question - [track #] is padded with zeros when renaming, how to cancel?
Post by: ShayB on September 29, 2012, 04:45:21 am
hi,

when using the [Track #] in a formula everything looks OK but when that formula is used as the fileName in a rename process, a "0" is added to the left of the track#

it bothers me when I do a check whether my files have the correct name on the disk (based on the same rename formula)

note: this only happened in MC17 (not in earlier versions)
note: the padding is only when the track value is 0-9

how can I avoid it?
Title: Re: MC17 question - [track #] is padded with zeros when renaming, how to cancel?
Post by: Matt on September 29, 2012, 08:56:59 am
Padding track, season, and episode numbers in filenames is the default, and recommended.

But you can use this expression to remove the padding:
FormatNumber([Track #, 0], 0)
Title: Re: MC17 question - [track #] is padded with zeros when renaming, how to cancel?
Post by: ShayB on September 29, 2012, 10:18:38 am
Padding track, season, and episode numbers in filenames is the default, and recommended.

But you can use this expression to remove the padding:
FormatNumber([Track #, 0], 0)


thanks Matt