From: Jack Jansen Date: Fri, 22 Jan 1999 13:14:06 +0000 (+0000) Subject: Select the whole default input field in AskString (Joe Strout) X-Git-Tag: v1.5.2b2~300 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d61f92bab39a706ab954199ab39bc72a67bbdbdd;p=thirdparty%2FPython%2Fcpython.git Select the whole default input field in AskString (Joe Strout) --- diff --git a/Mac/Lib/EasyDialogs.py b/Mac/Lib/EasyDialogs.py index 7e94fee1ff71..12dbf973ac68 100644 --- a/Mac/Lib/EasyDialogs.py +++ b/Mac/Lib/EasyDialogs.py @@ -75,6 +75,7 @@ def AskString(prompt, default = "", id=257): SetDialogItemText(h, lf2cr(prompt)) tp, h, rect = d.GetDialogItem(4) SetDialogItemText(h, lf2cr(default)) + d.SelectDialogItemText(4, 0, 999) # d.SetDialogItem(4, 0, 255) d.SetDialogDefaultItem(1) d.SetDialogCancelItem(2) @@ -228,7 +229,7 @@ def test(): ok = AskYesNoCancel("Do you want to proceed?") ok = AskYesNoCancel("Do you want to identify?", yes="Indentify", no="Don't identify") if ok > 0: - s = AskString("Enter your first name") + s = AskString("Enter your first name", "Joe") Message("Thank you,\n%s" % `s`) text = ( "Working Hard...", "Hardly Working..." , "So far, so good!", "Keep on truckin'" )