Re: [R] tcltk error on Linux

2007-08-09 Thread Prof Brian Ripley
On Thu, 9 Aug 2007, Mark W Kimpel wrote: I am having trouble getting tcltk package to load on openSuse 10.2 running R-devel. I have specifically put my /usr/share/tcl directory in my PATH, but R doesn't seem to see it. I also have installed tk on my system. Any ideas on what the problem is?

Re: [R] tcltk error on Linux

2007-08-09 Thread Seth Falcon
Hi Mark, Prof Brian Ripley [EMAIL PROTECTED] writes: On Thu, 9 Aug 2007, Mark W Kimpel wrote: I am having trouble getting tcltk package to load on openSuse 10.2 running R-devel. I have specifically put my /usr/share/tcl directory in my PATH, but R doesn't seem to see it. I also have

Re: [R] tcltk error on Linux

2007-08-09 Thread Mark W Kimpel
Seth and Brian, Today and downloaded and installed the latest R-devel and tcltk now works. My suspicion is that Tcl was not on my path when R-devel was installed previously. BTW, I had though that is was a courtesy to cc: the maintainers of a package when writing either R-devel or R-help

[R] tcltk error on Linux

2007-08-08 Thread Mark W Kimpel
I am having trouble getting tcltk package to load on openSuse 10.2 running R-devel. I have specifically put my /usr/share/tcl directory in my PATH, but R doesn't seem to see it. I also have installed tk on my system. Any ideas on what the problem is? Also, note that I have some warning

Re: [R] tcltk crashing R after the (ab)use of tkwait

2007-05-26 Thread Mike Meredith
library(tcltk) tt - tktoplevel() done - tclVar(0) but - tkbutton(tt, text=OK, command=function() tclvalue(done) - 1) tkpack(but) tkwait.variable(done) works as fine as long as I click the OK. However, if I close the window (by clicking in the X), R enters into an infinite loop and

[R] tcltk support....

2007-04-26 Thread W Eryk Wolski
Rusers, library(Rcmdr) Loading required package: tcltk Error in firstlib(which.lib.loc, package) : Tcl/Tk support is not available on this system While installing R I run configure with configure --prefix=/bla/bla --with-tcltk make make install configure did not returned any errors.

Re: [R] tcltk support....

2007-04-26 Thread Stefan Grosse
tcltk must be installed on your system, it is not a R package. Which Linux are you using? W Eryk Wolski wrote: Rusers, library(Rcmdr) Loading required package: tcltk Error in firstlib(which.lib.loc, package) : Tcl/Tk support is not available on this system While installing R I run

Re: [R] tcltk support....

2007-04-26 Thread Stefan Grosse
To my excuse I can say that I would have expected configure to issue an error or warning. I am absolutely certain that there was a remark during configure... you probably just have overseen that. I did run it configure with --with-tcltk. But there was not a singel message which would

Re: [R] tcltk support....

2007-04-26 Thread W Eryk Wolski
I use ubuntu/kubuntu... I did not had the dev packages installed. The problem is no solved. To my excuse I can say that I would have expected configure to issue an error or warning. I did run it configure with --with-tcltk. But there was not a singel message which would point me to the fact

Re: [R] tcltk support....

2007-04-26 Thread Stefan Grosse
I just read another post so I know youre on (K)ubuntu: you need to install tcl8.4-dev and tk84-dev packages. If there is no tcl/tk R installs nevertheless but is stating that at the configuration that there is no tcl/tk support... so thats where you have to look at. Maybe it is better you

Re: [R] tcltk support....

2007-04-26 Thread Peter Dalgaard
Stefan Grosse wrote: To my excuse I can say that I would have expected configure to issue an error or warning. I am absolutely certain that there was a remark during configure... you probably just have overseen that. There's a whole sequence of them. Here's how it looks when

Re: [R] Tcltk

2007-04-18 Thread Prof Brian Ripley
Sorry, but this works under all the circumstances I tried on my Vista system, so there is nothing I can do to debug it. On Tue, 17 Apr 2007, Prof Brian Ripley wrote: I suspect tcl's own version of 'access', but can you please confirm that this still happens under 'Run as Administrator',

Re: [R] Tcltk

2007-04-18 Thread Peter Dalgaard
Prof Brian Ripley wrote: Sorry, but this works under all the circumstances I tried on my Vista system, so there is nothing I can do to debug it. You (i.e. Sofia) could do some investigation yourself. It may prove informative if you search for init.tcl and check whether it is readable (for

Re: [R] Tcltk

2007-04-18 Thread Sofia Wikström
2007 16:11 Till: Prof Brian Ripley Kopia: Sofia Wikström; r-help@stat.math.ethz.ch Ämne: Re: [R] Tcltk Prof Brian Ripley wrote: Sorry, but this works under all the circumstances I tried on my Vista system, so there is nothing I can do to debug it. You (i.e. Sofia) could do some investigation

[R] Tcltk

2007-04-17 Thread Sofia Wikström
I have problems with Tcl/Tk in R 2.4.1, when running it on Windows Vista (see error message below). Regards, Sofia library(tcltk) Loading Tcl/Tk interface ... Error in fun(...) : Can't find a usable init.tcl in the following directories: {C:\Program\R\R-2.4.1/Tcl/lib/tcl8.4}

Re: [R] Tcltk

2007-04-17 Thread Prof Brian Ripley
I suspect tcl's own version of 'access', but can you please confirm that this still happens under 'Run as Administrator', assuming 'C:\Program' is a system area in Swedish Windows Vista? I will be able to take a closer look, but not before 2.5.0 (which is in code freeze and I have limited

[R] tcltk, tclRequire and Tktable help

2007-03-29 Thread Alberto Monteiro
I know almost nothing about the tcltk library, and the documentation seems very poor. What's the meaning of this error, and is there any way to fix it? I'm running R 2.4.1 in a Windows XP machine where I have almost no privileges (but at home I am the Evil Overlord of a Linux machine...)

[R] tcltk crashing R after the (ab)use of tkwait

2007-03-29 Thread Alberto Monteiro
Running this: library(tcltk) tt - tktoplevel() done - tclVar(0) but - tkbutton(tt, text=OK, command=function() tclvalue(done) - 1) tkpack(but) tkwait.variable(done) works as fine as long as I click the OK. However, if I close the window (by clicking in the X), R enters into an infinite loop and

Re: [R] tcltk crashing R after the (ab)use of tkwait

2007-03-29 Thread Dieter Menne
Alberto Monteiro albmont at centroin.com.br writes: library(tcltk) tt - tktoplevel() done - tclVar(0) but - tkbutton(tt, text=OK, command=function() tclvalue(done) - 1) tkpack(but) tkwait.variable(done) works as fine as long as I click the OK. However, if I close the window (by clicking

Re: [R] tcltk crashing R after the (ab)use of tkwait

2007-03-29 Thread Alberto Monteiro
Dieter Menne wrote: library(tcltk) tt - tktoplevel() done - tclVar(0) but - tkbutton(tt, text=OK, command=function() tclvalue(done) - 1) tkpack(but) tkwait.variable(done) works as fine as long as I click the OK. However, if I close the window (by clicking in the X), R enters into an

[R] tcltk difficulties

2006-11-04 Thread Charles Annis, P.E.
Friends: I have a tcltk widget for inputting constants and other values that are needed by subsequent R functions. My widget works well. I have an OnOK function that does what I had hoped it would. Among other input items the widget also uses 6 radio buttons to select one of 6 choices. It

Re: [R] tcltk difficulties

2006-11-04 Thread Peter Dalgaard
Charles Annis, P.E. [EMAIL PROTECTED] writes: Friends: I have a tcltk widget for inputting constants and other values that are needed by subsequent R functions. My widget works well. I have an OnOK function that does what I had hoped it would. Among other input items the widget also

Re: [R] tcltk difficulties

2006-11-04 Thread Charles Annis, P.E.
Of Peter Dalgaard Sent: Saturday, November 04, 2006 8:12 AM To: [EMAIL PROTECTED] Cc: r-help@stat.math.ethz.ch Subject: Re: [R] tcltk difficulties Charles Annis, P.E. [EMAIL PROTECTED] writes: Friends: I have a tcltk widget for inputting constants and other values that are needed by subsequent R

[R] tcltk: multiple listboxes, selection

2006-10-21 Thread JeeBee
Dear list, I have multiple (BWidget) listboxes in the same toplevel window. The problem is, if I select (by left clicking) on one of those listbox elements, the current selection in the *other* listboxes is cleared! Anybody knows how I can prevent this? Here's my code (sorry not complete): (E.g.

Re: [R] tcltk crashes with bad color with text widget

2006-10-17 Thread Duncan Murdoch
On 10/17/2006 8:36 AM, Peter Dalgaard wrote: Duncan Murdoch [EMAIL PROTECTED] writes: On 10/16/2006 10:47 PM, Alex Couture-Beil wrote: Hello I have been playing with tcl/tk in R 2.4.0 on windows XP and have managed to crash R by supplying tcl/tk with an incorrect color. Is this a bug? is

[R] tcltk crashes with bad color with text widget

2006-10-16 Thread Alex Couture-Beil
Hello I have been playing with tcl/tk in R 2.4.0 on windows XP and have managed to crash R by supplying tcl/tk with an incorrect color. Is this a bug? is there a way for me to test the color to see if it is a valid tcl/tk color, to avoid this? tt=tktoplevel() tklabel(parent=tt, text=hello

[R] tcltk problem

2006-09-20 Thread Dina Said
Hi, I'm using fedora core 3. I downloaded R and installed it. After that, I invoked R by the root user and write the command install.packages(Rcmdr, dependencies=TRUE). This command installs Rcmdr automatically. However, whenever I type library(Rcmdr), it tells me that Loading required

Re: [R] tcltk problem

2006-09-20 Thread Prof Brian Ripley
On Wed, 20 Sep 2006, Dina Said wrote: Hi, I'm using fedora core 3. I downloaded R and installed it. After that, I invoked R by the root user and write the command install.packages(Rcmdr, dependencies=TRUE). This command installs Rcmdr automatically. However, whenever I type library(Rcmdr),

[R] tcltk command to figure out which widget is on focus (or clicked)

2006-08-25 Thread Vladislav Petyuk
Hi, I'm making an interface, where a Tcl/Tk window have few listbox widgets. I need to select separate parameters from separate listboxes. It is clear how to get cursor selection value, once you know which listbox widget you clicked. The problem is I can't figure out which one tcltk command to

[R] tcltk command to figure out which widget in active or in focus

2006-08-24 Thread Vladislav Petyuk
Hi, I'm making an interface, where a Tcl/Tk window have few listbox widgets. I need to select separate parameters from separate listboxes. It is clear how to get cursor selection value, once you know which listbox widget you clicked. The problem is I can't figure out which one tcltk command to

[R] tcltk library on linux

2006-08-10 Thread Yohan CHOUKROUN
R-users, Sorry for my English, I'm French. I want to use the Rcmdr package which depends on the tcltk library. I'm on Linux Ubuntu. I don't manage to use Rcmdr even if tcl and tk are installed. I'm a newbie in Linux and I don't know how to specify Configtcl.sh and Configtk.sh location

Re: [R] tcltk library on linux

2006-08-10 Thread Dirk Eddelbuettel
On 10 August 2006 at 15:09, Yohan CHOUKROUN wrote: | I want to use the Rcmdr package which depends on the tcltk library. | | I'm on Linux Ubuntu. $ sudo apt-get install r-cran-rcmdr should be all you need thanks to all the work done on the Debian side. Amicalement, Dirk -- Hell, there are

Re: [R] Tcltk package

2006-08-03 Thread Adrian DUSA
On Tuesday 01 August 2006 19:24, John McHenry wrote: [...] Yes, I built R myself. I couldn't find a debian package for R 2.3.1. The latest available is 2.2.1. Oh, but there is... right on CRAN. For Dapper just add this line to your sources.list: deb

Re: [R] Tcltk package

2006-08-03 Thread John McHenry
Hi Adrian, Thanks for the tip. I re-installed and everything seems to work just fine. Thanks, Jack. Adrian DUSA [EMAIL PROTECTED] wrote: On Tuesday 01 August 2006 19:24, John McHenry wrote: [...] Yes, I built R myself. I couldn't find a debian package for R 2.3.1. The latest available is

[R] Tcltk package

2006-08-01 Thread John McHenry
Hi WizaRds, I ran into trouble trying to install the debug package, which requires TCL/TK support. It seems like the tcltk package is not installed on my system. From: http://tolstoy.newcastle.edu.au/R/help/05/07/7993.html it seems that the tcltk is bundled with the base R distribution. I'm

Re: [R] Tcltk package

2006-08-01 Thread Peter Dalgaard
John McHenry [EMAIL PROTECTED] writes: Hi WizaRds, I ran into trouble trying to install the debug package, which requires TCL/TK support. It seems like the tcltk package is not installed on my system. From: http://tolstoy.newcastle.edu.au/R/help/05/07/7993.html it seems that the tcltk is

Re: [R] Tcltk package

2006-08-01 Thread John McHenry
Hi Peter, Peter Dalgaard [EMAIL PROTECTED] wrote: Did you build R yourself, and can you do library(tcltk) on R's command line? Yes, I built R myself. I couldn't find a debian package for R 2.3.1. The latest available is 2.2.1. library(tcltk) Error in

[R] tcltk: help pop-up

2006-07-11 Thread javier garcia-pintado
Hi all; Please, does anyone have a piece of R-tcltk code that includes a help pop-up for any item and could send it as an example? thanks and best regards, Javier -- Javier García-Pintado Institute of Earth Sciences Jaume Almera (CSIC) Lluis Sole Sabaris s/n, 08028 Barcelona Phone: +34

Re: [R] Tcltk Default Background Color Question

2006-06-05 Thread Dirk Eddelbuettel
On Sun, Jun 04, 2006 at 09:55:20PM -0700, Crimson Turquoise wrote: Hello, I am new at tcltk and would like to identify the default background color for widgets. I have found things like systemBackground or tk_setPalette, but am not able to get them to work in R. Is there a name for this

[R] Tcltk Default Background Color Question

2006-06-04 Thread Crimson Turquoise
Hello, I am new at tcltk and would like to identify the default background color for widgets. I have found things like systemBackground or tk_setPalette, but am not able to get them to work in R. Is there a name for this color such as lightgray, etc? Thank you for your time.

[R] tcltk loading in R-2.2.1 from src

2006-03-09 Thread Patrice Seyed
Hi, Having trouble loading tcltk in R 2.2.1 built from source. ./configure, make, make check, and make install run ok. library(tcltk) Error in firstlib(which.lib.loc, package) : Tcl/Tk support is not available on this system Error in library(tcltk) : .First.lib failed for 'tcltk'

Re: [R] tcltk loading in R-2.2.1 from src

2006-03-09 Thread Erik Iverson
Patrice - I had a very similar problem using TCL/TK 8.3. Below is the email I sent to my computing group at work about how I fixed it. Note that since my TCL/TK header (.h) files were in an odd location, the first step probably isn't relevant for you. But I bet the second step is.

Re: [R] tcltk loading in R-2.2.1 from src

2006-03-09 Thread Peter Dalgaard
Patrice Seyed [EMAIL PROTECTED] writes: Hi, Having trouble loading tcltk in R 2.2.1 built from source. ./configure, make, make check, and make install run ok. library(tcltk) Error in firstlib(which.lib.loc, package) : Tcl/Tk support is not available on this system Error

[R] tcltk error when calling a dialog

2006-03-02 Thread javier garcia-pintado
Hello; I've got several radiobuttons in tcltk with the following sintaxis: tk2.rd - /tkradiobutton(/frame4,command=plotDialog1,text=New Q plot, value=2, variable=OUTPLOTtclVar/)/ All the buttons call the same function plotDialog1. With the objective of call a dialog to select some plotting

[R] TclTk library loading (whole version) Linux

2006-02-27 Thread javier garcia-pintado
Hello; Well, I'm afraid this is the second related problem I report in two days (I'm sorry for this) I've programmed a tcltk interface for a model and it includes a comboBox. The comboBox widget comes with the BWidgets library of Tcl/Tk. It works all perfectly with the windows R GUI (with the

Re: [R] TclTk library loading (whole version) Linux

2006-02-27 Thread Peter Dalgaard
javier garcia-pintado [EMAIL PROTECTED] writes: Hello; Well, I'm afraid this is the second related problem I report in two days (I'm sorry for this) I've programmed a tcltk interface for a model and it includes a comboBox. The comboBox widget comes with the BWidgets library of Tcl/Tk.

Re: [R] tcltk package problems (R 2.2.0, SuSE 10)

2005-10-28 Thread Katharine Mullen
i also had a problem getting 2.2.0 to work with tcltk on SuSE 10.0... and with compiling R from source on SuSE 10.0. on getting tcltk to work: i ended up taking source for tcl and tk from http://www.tcl.tk/software/tcltk/ and recompiling; once you unpack the tar.gz the install instructions are

[R] tcltk package problems (R 2.2.0, SuSE 10)

2005-10-27 Thread Rainer M. Krug
Hi I installed R 2.2.0 from source and I have the packages for tcl and tk installed on my system, but the package tcltk says, when I try to load the library tcltk: Tcl/Tk support is not available on this system. Are there any settings / variables which I have to set so that R recognises that

Re: [R] tcltk, X11 protocol error: Bug?

2005-09-08 Thread John Fox
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nicholas Lewin-Koh Sent: Monday, September 05, 2005 5:16 PM To: [EMAIL PROTECTED] Subject: [R] tcltk, X11 protocol error: Bug? Hi, I am having trouble debugging this one

[R] tcltk, X11 protocol error: Bug?

2005-09-05 Thread Nicholas Lewin-Koh
Hi, I am having trouble debugging this one. The code is attached below, but it seems to be a problem at the C-tk interface. If I run this 1 time there are no problems if I run it more than once I start to get warnings that increase in multiples of 11 everytime I run it. Here is a sample session

[R] tcltk - automatically moving cursor to last line of tktext box - how?

2005-09-02 Thread Søren Højsgaard
Hi; I have a program which writes lines to a tktext box (of height, say, 10) with tkinsert(txto, end, paste(so,\n)) I would like my program to be such that it automatically scrolls down through the text box when it is full so that I always see the last 10 lines written. Can anyone help on

Re: [R] tcltk - automatically moving cursor to last line of tktext box - how?

2005-09-02 Thread Peter Dalgaard
Søren Højsgaard [EMAIL PROTECTED] writes: Hi; I have a program which writes lines to a tktext box (of height, say, 10) with tkinsert(txto, end, paste(so,\n)) I would like my program to be such that it automatically scrolls down through the text box when it is full so that I always

[R] tcltk programming guide

2005-08-11 Thread Simone Gabbriellini
Dear List, I'm looking for some documentation about the R tcltk package The one I found in the help doesn't look exaustive, I need information on the use of the single tk widget, maybe with some examples thank you, simone gabbriellini __ R-help

Re: [R] tcltk programming guide

2005-08-11 Thread John Zhang
Gabbriellini [EMAIL PROTECTED] Date: Thu, 11 Aug 2005 14:04:58 +0200 Subject: [R] tcltk programming guide X-BeenThere: r-help@stat.math.ethz.ch X-Mailman-Version: 2.1.6 List-Id: Main R Mailing List: Primary help r-help.stat.math.ethz.ch List-Unsubscribe: https://stat.ethz.ch/mailman/listinfo/r-help

Re: [R] tcltk programming guide

2005-08-11 Thread Simone Gabbriellini
] Date: Thu, 11 Aug 2005 14:04:58 +0200 Subject: [R] tcltk programming guide X-BeenThere: r-help@stat.math.ethz.ch X-Mailman-Version: 2.1.6 List-Id: Main R Mailing List: Primary help r- help.stat.math.ethz.ch List-Unsubscribe: https://stat.ethz.ch/mailman/listinfo/r-help, mailto:[EMAIL

Re: [R] tcltk programming guide

2005-08-11 Thread John Fox
PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Simone Gabbriellini Sent: Thursday, August 11, 2005 9:43 AM To: John Zhang Cc: R-help@stat.math.ethz.ch Subject: Re: [R] tcltk programming guide thank you, I knew that link, but I need something more document- oriented, more specific, i.e. if I

[R] tcltk package

2005-07-07 Thread Kurt Sys
Hi all, I have a package depending on the tcltk-package. However, I see that this package has been disappeared... Is there a reason why package 'tcltk' is not available anymore? Or is it replaced by another one? thx, Kurt. __

Re: [R] tcltk package

2005-07-07 Thread Liaw, Andy
It's included in the base R distribution, I believe. Andy From: Kurt Sys Hi all, I have a package depending on the tcltk-package. However, I see that this package has been disappeared... Is there a reason why package 'tcltk' is not available anymore? Or is it replaced by another one?

Re: [R] tcltk package

2005-07-07 Thread Roger D. Peng
How do you know that it has disappeared? -roger Kurt Sys wrote: Hi all, I have a package depending on the tcltk-package. However, I see that this package has been disappeared... Is there a reason why package 'tcltk' is not available anymore? Or is it replaced by another one? thx,

Re: [R] tcltk package [SOLVED]

2005-07-07 Thread Kurt Sys
I had R 2.0.1... It's not included in that distribution of R. It's ok in distribution 2.1.1. thx (to all that've been replying that it's included in the base distribution), Kurt. Liaw, Andy wrote: It's included in the base R distribution, I believe. Andy From: Kurt Sys Hi all, I

Re: [R] tcltk package [SOLVED]

2005-07-07 Thread Martin Maechler
Kurt == Kurt Sys [EMAIL PROTECTED] on Thu, 07 Jul 2005 15:07:52 +0200 writes: Kurt I had R 2.0.1... It's not included in that distribution of R. That's not correct. The tcltk package has been part of R for a very long time. The question is where you got the version of 'R 2.0.1' from

[R] tcltk problem

2004-12-23 Thread Liviu M Vladutu
Hi all, I have R Version 2.1.0 installed on a box running Redhat Fedora Core 2. When I try: library() it shows the package tcltk. But if I try: library(tcltk) I get the same error message like in this thread: http://tolstoy.newcastle.edu.au/R/help/01c/3418.html The same, tcl and tk are

Re: [R] tcltk problem

2004-12-23 Thread Marc Schwartz
On Thu, 2004-12-23 at 11:32 -0500, Liviu M Vladutu wrote: Hi all, I have R Version 2.1.0 installed on a box running Redhat Fedora Core 2. Are you really running 2.1.0 (which is an unreleased development version) or are you running 2.0.1, which is the present released version? What does the

Re: [R] tcltk problem

2004-12-23 Thread Marc Schwartz
On Thu, 2004-12-23 at 11:32 -0600, Marc Schwartz wrote: On Thu, 2004-12-23 at 11:32 -0500, Liviu M Vladutu wrote: Hi all, I have R Version 2.1.0 installed on a box running Redhat Fedora Core 2. Are you really running 2.1.0 (which is an unreleased development version) or are you running

[R] how to use chinese font in R/tcltk

2004-10-07 Thread
I can use Chinese fonts in R. I can also use Chinese fonts in tcl/tk. But I can not write Chinese using tkgrid in R. The attached file is an example trying to write Chinese. The Chinese font can not be displayed correctly. Can anyone help me ? Sincerely library(tcltk) tkt.test-tktoplevel()

[R] tcltk: repeat event while button is down?

2004-08-05 Thread Duncan Murdoch
Is there a way in TCL/TK to trigger an event multiple times while a button is held down? I'd like to have an rgl scene continuously rotate until the button is released. Duncan Murdoch __ [EMAIL PROTECTED] mailing list

Re: [R] tcltk: repeat event while button is down?

2004-08-05 Thread Peter Dalgaard
Duncan Murdoch [EMAIL PROTECTED] writes: Is there a way in TCL/TK to trigger an event multiple times while a button is held down? I'd like to have an rgl scene continuously rotate until the button is released. Something involving after, I'd say. Set up the rotate action to reschedule itself

Re: [R] tcltk: repeat event while button is down?

2004-08-05 Thread Duncan Murdoch
On 05 Aug 2004 22:55:10 +0200, Peter Dalgaard [EMAIL PROTECTED] wrote : Duncan Murdoch [EMAIL PROTECTED] writes: Is there a way in TCL/TK to trigger an event multiple times while a button is held down? I'd like to have an rgl scene continuously rotate until the button is released. Something

Re: [R] tcltk: repeat event while button is down?

2004-08-05 Thread Peter Dalgaard
Duncan Murdoch [EMAIL PROTECTED] writes: On 05 Aug 2004 22:55:10 +0200, Peter Dalgaard [EMAIL PROTECTED] wrote : Duncan Murdoch [EMAIL PROTECTED] writes: Is there a way in TCL/TK to trigger an event multiple times while a button is held down? I'd like to have an rgl scene continuously

Re: [R] tcltk problem with Button-2

2003-11-30 Thread Peter Dalgaard
Gabor Grothendieck [EMAIL PROTECTED] writes: But if I simply replace Control-Button-1 with Button-2 in the tkbind command, i.e. the last line, then nothing happens when I press Button-2 (which I assume is the right mouse button). It's the middle button (Tk was designed for three-button

[R] tcltk problem with Button-2

2003-11-29 Thread Gabor Grothendieck
The following R code works as expected: require( tcltk ) tt - tktoplevel() # create a button labelled A that changes to B when pressed pressed - function() tkconfigure( tt.but, text=B ) tt.but - tkbutton( tt, text=A, command=pressed ) tkpack(tt.but) # if Control-Button-1 pressed change button

[R] tcltk - tkcreate question

2003-11-27 Thread Thomas Stabla
Hello, i'm trying to translate following tcltk source code, which I found in newsgroup comp.lang.tcl, written by Tom Wilkason, into R Code. proc scrolled_Canvas {base} { frame $base.fm -borderwidth 2 -relief sunken canvas $base.fm.cv -yscrollcommand $base.fm.cv_vertscrollbar set

Re: [R] tcltk - tkcreate question

2003-11-27 Thread Peter Dalgaard
Thomas Stabla [EMAIL PROTECTED] writes: I have successfully translated the code until the line $base.fm.cv create window 0 0 -anchor nw -window $hull -width 10 -height 500 -tag window which i don't fully understand because i started with tcltk just this week. I tried to

Re: [R] tcltk - tkcreate question

2003-11-27 Thread Thomas Stabla
On 27 Nov 2003, Peter Dalgaard wrote: Thomas Stabla [EMAIL PROTECTED] writes: I have successfully translated the code until the line $base.fm.cv create window 0 0 -anchor nw -window $hull -width 10 -height 500 -tag window which i don't fully understand because i started with

[R] R TclTk iwidgets::comboboc

2003-03-26 Thread James Wettenhall
Hi, I am trying to create a drop-down combobox in R TclTk. The following works fine for a ListBox but fails for a combobox: # THIS WORKS FINE - CREATES AN EMPTY LISTBOX ## tt-tktoplevel() win - .Tk.subwin(tt) .Tcl(paste(listbox,.Tk.ID(win),.Tcl.args())) tkpack(win

Re: [R] R TclTk iwidgets::combobox

2003-03-26 Thread James Wettenhall
! Regards, James On 27 Mar 2003, Peter Dalgaard BSA wrote: James Wettenhall [EMAIL PROTECTED] writes: Hi, I am trying to create a drop-down combobox in R TclTk. The following works fine for a ListBox but fails for a combobox: # THIS WORKS FINE - CREATES AN EMPTY

[R] tcltk makes R crash?

2003-03-03 Thread Kurt Sys
Hello all, I got a problem using the tcltk-package. It makes 'R crash': I can use R and different packages without any problem. However, when I start the tcltk-package, the terminal I'm running R in (no matter what this 'terminal' is), will not recieve any input anymore once I set at statement

Re: [R] tcltk makes R crash?

2003-03-03 Thread Dirk Eddelbuettel
On Mon, Mar 03, 2003 at 01:14:04PM +0100, Kurt Sys wrote: I got a problem using the tcltk-package. It makes 'R crash': I can use R and different packages without any problem. However, when I start the tcltk-package, the terminal I'm running R in (no matter what this 'terminal' is), will not

[R] tcltk installation problem

2003-02-05 Thread SAULEAU Erik-André
Dear all, I want to use GraspeR (on R 1.6.0) and have to install tcltk library. When I try to do this, I get back this error message: Error in firstlib(which.lib.loc, package) : TCL_LIBRARY is not set Error in library(pkg, character.only = TRUE) : .First.lib failed But I have

Re: [R] tcltk installation problem

2003-02-05 Thread AlessandroSemeria
You have to install the previous version of Active Tcl/Tk : 8.3.5.0. A.S. |+| |Alessandro Semeria |Tel. +39 544 536811 |

Re: [R] tcltk installation problem

2003-02-05 Thread Uwe Ligges
SAULEAU Erik-André wrote: Dear all, I want to use GraspeR (on R 1.6.0) and have to install tcltk library. When I try to do this, I get back this error message: Error in firstlib(which.lib.loc, package) : TCL_LIBRARY is not set Error in library(pkg, character.only = TRUE) :