Displaying 1 result from an estimated 1 matches for "widglist".
Did you mean:
uidlist
2006 Feb 10
0
tk mouse cursor icon widget tkwinfo tkfocus questions
...ncient tcltk mailing lists said change the cursor over every
widget in the window:
foreach widget [winfo children $window] {
$widget config -cursor watch
}
To do this I'll need a list of R/tcl widget objects:
lapply(widglist, function(z) tkconfigure(z, cursor="watch"))
From where can I get this widglist?
I tried:
> tkwinfo("children",topwindow)
<Tcl> .1.1 .1.2 .1.3
I'm guessing this is a string directly returned from tcl.
Is there a way to turn this into...