Dear all,
I have made a script which is supposed to lunch from graph (after click on text in the graph).
range rwi=[book1]index!1;
window -a graph1;
count=0;
dotool 3;
dotool -d;
def pointproc {
count++;
if(count == 3) dotool 0;
rwi[count] = index;
}
def quittoolbox {
window -a book1;
page.active$ = results;
}
The problem is that it is not working every time I click on it (not getting the index values when I click on the graph), whereas when I lunch the script from the command window it works well.
Can someone tell me what could be the problem ?
Thanks