What could make the threads window stop working?
I have CWARM 2.0.3 and the Threads window was working fine. I rebooted and now it doesn't. I press "Reload Script" and nothing happens. I imported Threads.js into my project so that I could edit the count loop to look for 20 processes rather than the default 10. I did that a long time ago and it has been working fine. Otherwise, I can't think of anything I have done that would cause the Threads window to suddenly stop functioning.
Could it be possible that our IT people pushed something out the interferes with CWARM javascript engine? The reason I suspect that is when I reboot, that is when they shove out their "surprises" then.
-
You should be able to debug this using rudimentary changes.
Threads.js provides a set of functions but the one that's called by the IDE is called update().
Change Threads.js's update() to be:
function update()
{
Threads.clear();
Threads.add("TEST", 0, "", []);
}You can rename old old function to something other than update() for the time being.
When you now reload the script, do you get anything in the Threads window or is it still empty?
Please sign in to leave a comment.
Comments
8 comments