Displaying 4 results from an estimated 4 matches for "butok".
Did you mean:
buton
2023 Mar 13
1
tcl tk: set the position button
...drigo Badilla wrote:
> Hi all,
> I am using tcltk2 library to show buttons and messages. Everything
> work fine but I would like set the tk2button to the right of my screen, by default it display at the left of my screen.
> my script example:
> library(tcltk2) win1 <- tktoplevel() butOK <- tk2button(win1, text = "TEST", width = 77) tkgrid(butOK)
> Thanks in advance
> Saludos
> Rodrigo
>
>
> --
> Este correo electr?nico ha sido analizado en busca de virus por el software antivirus de Avast.
> www.avast.com
> [[alternative HTML version dele...
2018 Jun 11
2
Rgui 3.5.0 print issue
..., and is still there #
# in R 3.5.0 patched build for Windows, as well as in #
# R-Devel. #
###############################################################
# Reproducible example
library(tcltk)
data(cars)
win1 <- tktoplevel()
butOK <- tkbutton(win1, text = "OK", command = function() print(cars))
tkgrid(butOK)
# NOTE: Upon pressing OK, the rownames of cars are not printed on
# screen, but end up into R's prompt.
################################
# R version and platform info. #
##############...
2023 Mar 13
1
tcl tk: set the position button
Hi all,
I am using tcltk2 library to show buttons and messages. Everything
work fine but I would like set the tk2button to the right of my screen, by default it display at the left of my screen.
my script example:
library(tcltk2) win1 <- tktoplevel() butOK <- tk2button(win1, text = "TEST", width = 77) tkgrid(butOK)
Thanks in advance
Saludos
Rodrigo?
--
Este correo electr?nico ha sido analizado en busca de virus por el software antivirus de Avast.
www.avast.com
[[alternative HTML version deleted]]
2018 Jun 13
0
Rgui 3.5.0 print issue
...r Windows, as well as in #
>
> # R-Devel. #
>
> ###############################################################
>
> # Reproducible example
>
> library(tcltk)
>
> data(cars)
>
> win1 <- tktoplevel()
>
> butOK <- tkbutton(win1, text = "OK", command = function() print(cars))
>
> tkgrid(butOK)
>
> # NOTE: Upon pressing OK, the rownames of cars are not printed on
>
> # screen, but end up into R's prompt.
>
>
>
>
>
> ###########################...