|
From: Joe E. <jen...@fl...> - 2005-02-01 17:23:25
|
Alexander Schoepe wrote:
> I have installed Tcl/Tk BI 8.4.9 on Mac OS X 10.3.7
> Check this out:
>
> () 1 % package require tile
> 0.6
> () 2 % ttk::entry .e
> .e
> () 3 % pack .e
>
> There will be no insert cursor in the TEntry widget.
The insert cursor (and, on Aqua, the fuzzy blue highglight
border) is only displayed if the entry widget has keyboard
focus. Try clicking on the widget, or using:
focus -force .e
--Joe English
jen...@fl...
|