Code:
def askyesnocancel(title=None, message=None, **options):
"Ask a question; return true if the answer is yes, None if cancelled."
[B]s = _show(title, message, QUESTION, YESNOCANCEL, **options)[/B]
# s might be a Tcl index object, so convert it to a string
s = str(s)
Leave a comment: