Hehe, nothing learned in the meantime?
Ok, back to your first posting.
You want to align the playing times exactly below each other and you have asked if this possible and how you can achieve this.
The answer, part one, is "Yes, you can"!
The answer, part two, is as following:
If you want to align tag field content resp. text columns on simple text output, then you have to do some string manipulation in order to set each column to a fixed width.
In general numerical columns are aligned to the right edge and textual columns are aligned to the left edge.
Left aligning resp. truncating at the right edge can be coded like following, e. g.
$left(%ARTIST%$repeat(' ',40),40)
Right aligning resp. truncating at the left edge can be coded like following, e. g.
$right($repeat(' ',7)%LENGTH%,7)
For aligning the tracknumber you may simply code:
$num(%TRACK%,2)
As I do not know exactly to which width your columns have to be truncated to fit on the cover sheet you have to do the math for yourself.
Keep in mind that this method will give readable aligned result only when using a fix pitched printer font like "Fixedsys" or "Courier New" or "Lucida Console" or some other "Mono"-spaced font type.
DD.20090324.0030.CET