Wait until the visibility of a WIDGET changes (e.g. it appears). If no parameter is given self is used.
(self, window=None)
| 762 | self.tk.call('tkwait', 'window', window._w) |
| 763 | |
| 764 | def wait_visibility(self, window=None): |
| 765 | """Wait until the visibility of a WIDGET changes |
| 766 | (e.g. it appears). |
| 767 | |
| 768 | If no parameter is given self is used.""" |
| 769 | if window is None: |
| 770 | window = self |
| 771 | self.tk.call('tkwait', 'visibility', window._w) |
| 772 | |
| 773 | def setvar(self, name='PY_VAR', value='1'): |
| 774 | """Set Tcl variable NAME to VALUE.""" |