Solved
Thanks Sharon.
Not sure which board I opened this on but with Vuforia Studio, I was able to get what I wanted with this code in the Filter section of a binding:
| https://stackoverflow.com/questions/8211744/convert-time-interval-given-in-seconds-into-more-human-readable-form |
| WORKED! |
| seconds = Number(value); |
| var numyears = Math.floor(seconds / 31536000); |
| var numdays = Math.floor((seconds % 31536000) / 86400); |
| var numhours = Math.floor(((seconds % 31536000) % 86400) / 3600); |
| var numminutes = Math.floor((((seconds % 31536000) % 86400) % 3600) / 60); |
| var numseconds = (((seconds % 31536000) % 86400) % 3600) % 60; |
| value = numyears + " years " + numdays + " days " + numhours + " hours " + numminutes + " minutes " + numseconds + " seconds"; |
| return value; |
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.

