As addition to the build-in MsgBox / Inputbox- features of the script languages,
I want to suggest to add a option to EmEditor for to create dialogs for user input.
Like:
CreateGui: x100, y120, h400, w850
GuiTitle = “my great tool”
AddText = “my description”
AddEdit vPrefix
AddEdit vSuffix
AddText = “Empty Lines too?”
AddCheckbox vCB1
Used in script:
alert(vPrefix);
alert(vSuffix);
if(vCB1){alert(“In Empty Lines Too”)};
—-
——-
.