Get batch/interactive mode
I'm wondering if there's a way to get suppress modal windows natively. Batch interactive doesn't seem to.
Names default to here(1);
batch interactive(1);
new window("Test", <<Modal,
Textbox("I don't want this to show up if in batch interactive")
);
batch interactive(0);
So I'm wondering if there's a way to get the current batch interactive mode so I can do something like this.
Names defa
...
