Hello everyone,
I have a number of already created graphs - all one graph in a single window.
Now I'm creating a script that goes over all open graph windows and changes some text within the graph.
I got this far:
wList = Get Window List(Type("Reports"));
For(w = 1, w <= nitems(wList), w++,
Print(wList[w] << Get Window Title());
wList[w] << SendToReport( [...]
Basicially, once I have the window, I'd like to access the Graph Builder and the SendToReport functionality.
Needless to say, a Window isn't the same thing as a Graph Builder, so this isn't working. How do I get from having the window to having the Graph Builder?
I'm imagining something along the lines of wList[w] << Get Graph Builder << SendToReport()
I also realize that this would be a lot easier to do in the script that actually created those graphs, but for various reasons that solution will only be implemented in the future and right now I'm unable to do it that way and will have to work with the finished graphs.
Thank you in advance.