Am 06.06.2023 um 10:17 schrieb Mark:
The option insertOffTime only works with "standard" Tk widgets, but not with ttk widgets:
package require Tk
option add *insertOffTime 0
ttk::entry .e1
pack .e1 -expand true -fill both
.e1 insert end "ttk::entry is blinking"
entry .e2
pack .e2 -expand true -fill both
.e2 insert end "entry is not blinking"
Don't know, if blinking can be specified using ttk:styles.
Paul