I know there is a way to refresh the to-do list from a cgi task using the following method
print qq|<script language="javascript">if (opener.top.Ctl) {
opener.top.Ctl.pw_refresh();
}
else {
opener.location.reload();
}
self.close();
</script>|;
however is there a way to have an external task refresh the to do list to show progress
i.e. i have 3 external tasks one after the other. Can the to-do list show progress from task 1 to task 2 to task 3
Hazzie