Hi,
Thank you for your enquiry.
One way to achieve this would be to insert the following script actions at the start and at the very end of your script:
Code:
var myDate = new Date()
var hour = String.format("02.0",myDate.getHours())
var mins = String.format("02.0",myDate.getMinutes())
var secs = String.format("02.0",myDate.getSeconds())
time = hour+":"+mins+":"+secs
Debug.trace(time + "\n")
When the publication is run, these actions should cause a script output window to appear displaying the current time in the format hh:mm:ss. Once the script has completed, the actions at the end of the script should add the current time underneath the first and you should be able to determine how much time has elapsed.
Kind regards,