Hi guys,
I was tring to write a function that can repeatly run itself once per second,and I used app.scheduleTask().
like this,
function newFunction () {
......
......
scheduleTask("newFunction ()",1000,false);
}
Sometimes it worked, sometimes it didn't work.
Is there something about scheduleTask() that I don't know ?
Or, could you guys tell me how to write a function that can diaplay a number that increase 1 per second on a scriptUI panel ?
Thank you!!!!!