Hi Willie.
I agree with Red, but for Time on Ice it's better to use the script below.
Set it to OnRender and set the text input format to 00:00:00.
Dim intxt, outtxt As xpTextObject
self.GetObjectByName("InTime", intxt)
self.GetObjectByName("OutTime", outtxt)
Dim hide As xpBaseObject
self.GetObjectByName("Hide", hide)
Dim tempTime As System.TimeSpan
TimeSpan.TryParse(intxt.Text, tempTime)
outtxt.Text = (TimeSpan.FromSeconds(tempTime.TotalSeconds * hide.ScaleX)).Minutes.ToString("00") + ":" + (TimeSpan.FromSeconds(tempTime.TotalSeconds * hide.ScaleX)).Seconds.ToString("00")
------------------------------
Roman Yaroshenko
chief specialist
RBC-TV
Moscow Russian Federation
------------------------------