Dear all,
I am working on an R package intended for CRAN that requires Tcl version 8.6
because of the TclOO tcl extension and the -angle option for canvas text items.
R for Windows currently still ships with Tcl 8.5. Does anyone have experience
with linking R under Windows to a Tcl interpreter
Hi,
I Think you can install devel version by:
devtools::install_github("tcltk/tcl")
from this link https://github.com/tcltk/tcl
Karim
On Mon, Sep 28, 2015 at 6:36 PM, Adrian Waddell wrote:
> Dear all,
>
> I am working on an R package intended for CRAN that requires Tcl version
> 8.6 becaus
OK, I have the answers to my questions:
The GUI error in Windows happens for the sequence: create a toplevel in
Tcl, set an icon, pack something. A small self contained example is:
library(tcltk)
.Tcl("
set icon [image create photo -width 30 -height 20]
$icon put blue -to 0 0 30 20;