InputBox
Showing a text box and waiting for user input.
Image how it looks like (with params ACaption, APrompt, ADefault)
function InputBox(ACaption : String; APrompt : String; ADefault : String) : String;
DWS\Pascal Script Example:
var CyclesCount : Integer;
st : String;
begin
//Pre-Start config;
st := InputBox('Input Cycles count', 'Cycles count:', '1');
CyclesCount := StrToIntDef)st, 1); //if not figure input - value will be 1
end;
method not implemented.