Le 15 oct. 08 à 23:28, Jim Ault a écrit :
Unfortunately I am not the one to help here, since I don't know all
the
variations of the operating systems on which convert is dependent,
daylight
savings settings, time zones, etc. Hopefully someone will chime in
on this
for you. It is not a simple issue.
Yes, I understand.
So, to go ahead, I did make this little convert function,
which transforms any seconds into his hh::mm equivalent.
It's a duration in fact, not a clock time !
function MyConvert t
put t div 3600 into h
put ( t - h * 3600 ) div 60 into m
return format( "%02d:%02d", h, m)
end MyConvert
Out of curiosity, I would be very much interested to understand
how we can make the build in convert command work ?
Any convert expert ?
Regards,
Thierry
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution