Hi GlynRS
Thank you for your support, have now made some changes to the template would also like to change the format of the movie length to min. I can find but not connect to the format of the time. Can you give me, here's a tip which creates the template file here.
Here once a template for my taste. Rating and movie length will now be brought down.
Despite a happy ever after 2012 and a happy new year.
The easiest way to edit the templates is to use ThumbGen Designer which can be downloaded from the ThumbGen.org home page.
In order to display the movie length in minutes you need to edit the text element line "Duration" so that the text is changed from %DURATIONTEXT% to %DURATION%. That will just display as the number of minutes, so you may want to change it to %DURATION%m.
So:
%DURATIONTEXT% would display as 1h 36m
%DURATION% would display as 96
%DURATION%m would display as 96m
The line in the raw .xml file you want to change is:
<TextElement Name="Duration" X="1025" Y="5" Width="110" Height="40" AutoSize="False" Multiline="False" Font="Arial,20,True,False,False,False,Point,,0" ForeColor="-2500135" StrokeColor="-16777216" StrokeWidth="0" Text="%DURATIONTEXT%" TextAlignment="MiddleLeft" TextQuality="AntiAlias" TGD_IsLocked="False" TGD_IsVisible="True">
<Actions>
<DropShadow Angle="320" Color="-16777216" Distance="3" Opacity="100" Softness="2" TGD_IsVisible="True"/>
</Actions>
</TextElement>
and you want to change that to:
<TextElement Name="Duration" X="1025" Y="5" Width="110" Height="40" AutoSize="False" Multiline="False" Font="Arial,20,True,False,False,False,Point,,0" ForeColor="-2500135" StrokeColor="-16777216" StrokeWidth="0" Text="%DURATION%m" TextAlignment="MiddleLeft" TextQuality="AntiAlias" TGD_IsLocked="False" TGD_IsVisible="True">
<Actions>
<DropShadow Angle="320" Color="-16777216" Distance="3" Opacity="100" Softness="2" TGD_IsVisible="True"/>
</Actions>
</TextElement>
The best way to find out what the various bits do is to have a good look through the example tokens that are built in to Thumbgen Designer.
I hope that helps