I'd like to change the sequence number allocated to the output filename so that it starts from "1" rather than "0". The advantage of this is that it would then tie up with the region index that also starts from "1", and thereby make the audit trail of rendered files back to the regions a little more useful. Keeping having to subtract one is a pain to my brain. It would also be useful if the file sequence number were two digits, so that "1" was written as "01" etc, to make the automatic file sorting get the sequence of files into the right order.
I'm not familiar with the scripting syntax, so would be grateful for a little help from an expert. I'm guessing the needed mod for my first requirement lies somewhere in the following lines of code:
String regionFilename = String.Format("{0}[{1}]{2}",
filename,
regionIndex.ToString(),
renderItem.Extension);
Thanks in advance for any help.
Maurice
I'm not familiar with the scripting syntax, so would be grateful for a little help from an expert. I'm guessing the needed mod for my first requirement lies somewhere in the following lines of code:
String regionFilename = String.Format("{0}[{1}]{2}",
filename,
regionIndex.ToString(),
renderItem.Extension);
Thanks in advance for any help.
Maurice