Hi,
I am new to R, I need your help. I have been said to create a GUI in
R,
I started using Tcltk package which was very easy to learn and code,
but i am unable to arrange the GUI's in proper order in the window
they are always arranged one below the other, please can anyone help me in
solving this problem,
Is there any links which will help me solve this problem with example.
Thanks in advance.
with regards,
Punitha
--
View this message in context: http://r.789695.n4.nabble.com/How-to-arrange-the-GUI-s-in-window-in-tcltk-package-tp4641279.html
Sent from the R help mailing list archive at Nabble.com.
How to arrange the GUI's in window in tcltk package???
5 messages · punitha, steven mosher, j verzani
An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20120825/6ef5b939/attachment.pl>
Thank you steven, tkpack is helping me in arranging the components in container. and yes, i went through gwidgets package, i found it also good to design GUI in R. -- View this message in context: http://r.789695.n4.nabble.com/How-to-arrange-the-GUI-s-in-window-in-tcltk-package-tp4641279p4641294.html Sent from the R help mailing list archive at Nabble.com.
punitha <punitha.c87 <at> wipro.com> writes:
Thank you steven, tkpack is helping me in arranging the components in container. and yes, i went through gwidgets package, i found it also good to design GUI in R.
Try `tkraise`:
library(tcltk)
w1 <- tktoplevel()
tkpack(ttkbutton(w1, text="w1", command=function() {
tkraise(w2)
}))
w2 <- tktoplevel()
tkpack(ttkbutton(w2, text="w2", command=function() {
tkraise(w1)
}))
-- View this message in context: http://r.789695.n4.nabble.com/ How-to-arrange-the-GUI-s-in-window-in-tcltk- package-tp4641279p4641294.html Sent from the R help mailing list archive at Nabble.com.
Thank you jverzaniNWBKZ.... :) -- View this message in context: http://r.789695.n4.nabble.com/How-to-arrange-the-GUI-s-in-window-in-tcltk-package-tp4641279p4641332.html Sent from the R help mailing list archive at Nabble.com.