@@ -43,7 +43,7 @@ applications, the applications will not be truly stand-alone, as the application
43
43
will still need the Tcl and Tk libraries.
44
44
45
45
One solution is to ship the application with the Tcl and Tk libraries, and point
46
- to them at run-time using the :envvar: `TCL_LIBRARY ` and :envvar: `TK_LIBRARY `
46
+ to them at run-time using the :envvar: `! TCL_LIBRARY ` and :envvar: `! TK_LIBRARY `
47
47
environment variables.
48
48
49
49
To get truly stand-alone applications, the Tcl scripts that form the library
@@ -62,16 +62,17 @@ Can I have Tk events handled while waiting for I/O?
62
62
63
63
On platforms other than Windows, yes, and you don't even
64
64
need threads! But you'll have to restructure your I/O
65
- code a bit. Tk has the equivalent of Xt's :c:func: `XtAddInput() ` call, which allows you
65
+ code a bit. Tk has the equivalent of Xt's :c:func: `! XtAddInput ` call, which allows you
66
66
to register a callback function which will be called from the Tk mainloop when
67
67
I/O is possible on a file descriptor. See :ref: `tkinter-file-handlers `.
68
68
69
69
70
70
I can't get key bindings to work in Tkinter: why?
71
71
-------------------------------------------------
72
72
73
- An often-heard complaint is that event handlers bound to events with the
74
- :meth: `bind ` method don't get handled even when the appropriate key is pressed.
73
+ An often-heard complaint is that event handlers :ref: `bound <bindings-and-events >`
74
+ to events with the :meth: `!bind ` method
75
+ don't get handled even when the appropriate key is pressed.
75
76
76
77
The most common cause is that the widget to which the binding applies doesn't
77
78
have "keyboard focus". Check out the Tk documentation for the focus command.
0 commit comments