I want to open a Tcl/Tk dialog on linux (kde,vnc) and put some information in:
package require Tk
toplevel .my
pack [label .my.l -text "hallo"]
Doing this, the dialog opens and the new dialog takes the focus.
How can I prevent this?
package require Tk
toplevel .my
<something with> .my
pack [label .my.l -text "hallo"]
I saw several question regarding the similar topic, but none for Tcl/Tk.