Displaying 3 results from an estimated 3 matches for "yscr".
Did you mean:
scr
2010 Jul 21
1
tcltk resizing when using tkgrid for layout
...wettenhall/RTclTkExamples/ (a very helpful site
without which I would never have been able to use the tcltk package at all).
require(tcltk)
tt<- tktoplevel()
xscr<- tkscrollbar(tt, repeatinterval=5,orient="horizontal",
command=function(...)tkxview(txt,...))
yscr<- tkscrollbar(tt, repeatinterval=5,
command=function(...)tkyview(txt,...))
txt<- tktext(tt,bg="white",font="courier",
xscrollcommand=function(...)tkset(xscr,...),yscrollcommand=function(...)tkset(yscr,...),
wrap="none")
tkgrid(tx...
2010 Jun 22
0
Scrolling a tkcanvas non-starter
...r to bring different listboxes into view.
I created this from examples on the forum, but other than that, I cannot find any documentation or online help in this area.
tt <- tktoplevel() # Create a new toplevel window
tkwm.geometry(tt, "700x600")
tkwm.geometry(tt,"+5+5")
...
yscr <- tkscrollbar(tt,orient="vertical",
command=function(...)
tkyview(column1,...) )
column1 = tkcanvas(tt, height=200, yscrollcommand = function(...) tkset(yscr, ...))
divBandListbox1 = tklistbox(column1, width=65, height=15, selectmode="single")
divBandListbox2 = tklistbox...
2003 Jul 30
1
Tktable White column when WIDTH>13
...,
titlecols="3",selectmode="extended",height="27",
width="13",bg="white",state="disabled",cursor="arrow",
drawmode="single",selectmode="single",invertselected=TRUE,
xscrollcommand=function(...)tkset(xscr,...),
yscrollcommand=function(...) tkset(yscr,...))
<SNIP>
>
> When I go to the right border with the scrollbar, I see a
> wihte column without cells and without titlerow. I could
> determine where the problem is.
> But I don't know why this problem is. When I set the "WIDTH&qu...