Displaying 1 result from an estimated 1 matches for "logxscroll".
2008 Nov 03
1
possible tcltk event loop problem
...;- tkframe(CommanderWindow())
putRcmdr("logWindow", tktext(logFrame, bg="white",
foreground=getRcmdr("log.text.color"),
font=getRcmdr("logFont"), height=log.height, width=log.width,
wrap="none", undo=TRUE))
.log <- LogWindow()
logXscroll <- ttkscrollbar(logFrame, orient="horizontal",
command=function(...) tkxview(.log, ...))
logYscroll <- ttkscrollbar(logFrame,
command=function(...) tkyview(.log, ...))
tkconfigure(.log, xscrollcommand=function(...) tkset(logXscroll, ...))
tkconfigure(.log...