Question
How do I display variable values in the panel?
I'm trying to display the values of A and B at the bottom of the panel as a hint.
AValue and BValue are the variables being read.
This is how it currently looks; how can I modify it to display the variable values?
Thanks.
with (theDialog.dialogColumns.add()) {
staticTexts.add({ staticLabel: "[A B]:" });
}
with (theDialog.dialogColumns.add()) {
staticTexts.add({ staticLabel: 'AValue BValue' });
}

