Re: [R] About Tcl/Tk after command in R

2009-01-15 Thread Peter Dalgaard
Duncan Murdoch wrote: > On 1/15/2009 10:18 AM, davide.massi...@unipd.it wrote: >> Dear R-helpers, >> I have a problem with the tcl "after" instruction. When I send: >> >>> library(tcltk) >> Loading Tcl/Tk interface ... done >> >>> tcl("after",1000,cat("try tcl after\n")) >> try tcl after >> >> >>

Re: [R] About Tcl/Tk after command in R

2009-01-15 Thread Duncan Murdoch
On 1/15/2009 10:18 AM, davide.massi...@unipd.it wrote: Dear R-helpers, I have a problem with the tcl "after" instruction. When I send: library(tcltk) Loading Tcl/Tk interface ... done tcl("after",1000,cat("try tcl after\n")) try tcl after the tcl command works fine. Similarly, the tcl com

[R] About Tcl/Tk after command in R

2009-01-15 Thread davide . massidda
Dear R-helpers, I have a problem with the tcl "after" instruction. When I send: > library(tcltk) Loading Tcl/Tk interface ... done > tcl("after",1000,cat("try tcl after\n")) try tcl after the tcl command works fine. Similarly, the tcl command: > tcl("after",1000,plot(rnorm(100))) works fine.