Answered
I've cobbled together a simple input dialog and have failed in multiple attempts and need help.
I'm trying to imitate one now.
Pieced together, it feels like the sense is different again from the writing style I've seen before.
It didn't work, so help me out.
Thank you very much.
A simple one like this one accepts input from the keyboard.

makeDialog();
var myOperator = myOperatorField.editContents; //Change the myOperfield to a realedit box
myOperator = parseFloat(myOperator); //this wouldnt be needed
function makeDialog() {
var theDialog = app.dialogs.add({ name: "simple Dilog test", canCancel: true });
with (theDialog.dialogColumns.add()) {
staticTexts.add({ staticLabel: "KeySymbol: " });
var myOperatorField = realEditboxes.add({ editValue: myOperator });
}
}
