To display a real-time clock in your Filemaker application you can use a Web Viewer and add Javascript code to it. You can copy and paste the following code snippet and uncheck all check boxes in the Web Viewer
. "data:text/html, <html> <head> <script language='javascript' type='text/javascript'> function displayClock() { var digital = new Date(); var hours = digital.getHours(); var minutes = digital.getMinutes(); var seconds = digital.getSeconds(); var amOrPm = 'AM'; if (hours > 11) amOrPm = 'PM'; if (hours > 12) hours = hours - 12; if (hours == 0) hours = 12; if (minutes <= 9) minutes = '0' + minutes; if (seconds <= 9) seconds = '0' + seconds; dispTime = '<b>'+hours + ':' + minutes + ':' + seconds + ' ' + amOrPm+'</b>'; document.getElementById('time').innerHTML = dispTime; setTimeout('displayClock()', 1000); } </script> </head> <body style='font size:24; face:Arial;background-color:rgb(153,204,255);margin-left: 0px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;text-align:center; border:0; margin:0; padding:0' onload='displayClock()'> <div id='time'></div> </body> </html>"