Writing:
fct[input_, output_, type_] := Module[{}, DialogInput[DialogNotebook[ {TextCell[input], InputField[Dynamic[output], type], DefaultButton[DialogReturn[output]]}, Background -> Green, Magnification -> 1.5]] ]; list = ConstantArray[0, 10]; For[i = 1, i <= 10, i++, Clear[msg]; fct["Insert number:", msg, Number]; list = ReplacePart[list, i -> msg] ] through a mask it is possible to populate list.
However, if the first request is entered 1, at the second request I would not like the box to be empty, but contain 1, which can only be changed if desired.
Is it possible to do this by maintaining the structure proposed above?
Thank you!