Hi, i´m working on a more visual version of a little script for helping me in my job.
The initial script was a simple console thing with prints and prompts formatted in the end.
Now I would like to make it a bit visual importing the dialogs module.
The documentation, after showing the function says: The edited text is returned as a string (if the dialog is cancelled, None is returned instead), and I’m unable to use the text, it disappears just with the prompt.
Here is part of the code, I hope somebody could give me a hand.
from sys import argv
import dialogs, string
dialogs.text_dialog(title='¿Quién es la persona destinataria de la oferta?')
Thanks a lot...