Displaying 1 result from an estimated 1 matches for "plotfuntyp".
Did you mean:
plotfuntype
2007 Jul 11
0
tkfocus issue
Dear All:
I am stuck with this issue:
I have a button on a TK window, once click it, it pops up a individual
plot device:
individual_plot <- function() {
tkconfigure(overlay.button, state="normal")
options(locatorBell = FALSE)
plotfuntype()
trellis.focus("panel", 1, 1,highlight=FALSE)
panel.identify(labels=colnames(dataplot))
}
Now I have another button, originally state="disabled", but activated by
: tkconfigure(overlay.button, state="normal") in previous function:
The overlay function wa...