
Originally Posted by
grynmoors
Just so y'all know and to repeat above post that may have gotten lost...there is one flaw...it does not show the seconds correctly when the time is less than 10 seconds. If the time, for example is 3:03, it will appear as 3:3 (leaving out the zero). I don't know how to adjust for that and am hoping someone can give us the solution.
Solution is simple:
http://www.otube.ca/view/2/drag-racing- ... s-desert-/
Do a global "find all" in Dreamweaver of your Vshare folder of the word "Runtime"
And change every place you see something like this....:
Code:
Runtime: {$minutes}:{$seconds}
to something that's formatted to your taste; like this:
Code:
Runtime: {$minutes} minutes {$seconds} seconds
And now instead of
You have
Code:
Runtime 3 minutes 3 seconds
Here's what that looks like:
http://www.otube.ca/view/2/drag-racing- ... s-desert-/
Yes, it says "1 seconds" ... in the plural. No one cares. Everyone gets it. Will only occur on the very rare videos that happen to go exactly one second over a full minute of time.
OR, if you are able, and insist on the MM:SS format, work up some kind of "if" statement that says "IF the runtime minutes =< 9, put a text '0' before displaying the seconds"
Bookmarks