When I define a string variable in the AFL of a chart pane like
dummyString = "just a string"
the string contents will show up in the Interpretation window after execution.
How can I prevent that?
When I define a string variable in the AFL of a chart pane like
dummyString = "just a string"
the string contents will show up in the Interpretation window after execution.
How can I prevent that?
Look at: _N( string )
_N() would not define a variable but under "see also" I just learned about
EnableTextOutput(False);
That does the trick. So thanks anyway!