Displaying 20 results from an estimated 600 matches similar to: "Problem with tabbed notebook (tcltk, Iwidgets)"
2009 Jun 11
0
Problem with tabbed notebook (tcltk, Iwidgets)
Hi,
I'm using R version 2.9.0 and I'm trying to execute an example using
tabnotebook from iwidgets. Unfortunately I get a problem as you can see
bellow:
> library(tcltk)
Loading Tcl/Tk interface ... done
> library(tkrplot)
> tclRequire("Iwidgets")
<Tcl> 4.0.1
>
> tt <- tktoplevel()
> tkpack(tn <- tkwidget(tt, "iwidgets::tabnotebook"))
2004 Nov 26
2
Tcl error - brace in argument?
Hi all,
Does anyone know a solution for this error ?
> tkwidget(dlg, "iwidgets::spinint", range="{0 23}")
Error in structure(.External("dotTclObjv", objv, PACKAGE = "tcltk"), class =
"tclObj") :
[tcl] wrong # args: should be ".31.1.19 configure -range {begin
end}".
Thanks,
Matthew
[[alternative HTML version
2003 Mar 27
0
R TclTk iwidgets::combobox
Thanks Peter,
I've started a new R session (in Windows) and managed to get
both ways working now :
### THIS WORKS !!! ###
library(tcltk)
tclRequire("IWidgets")
tt<-tktoplevel()
combo <- tkwidget(tt,"iwidgets::combobox")
tkpack(combo)
### AND THIS WORKS TOO !!! ###
tt<-tktoplevel()
win <- .Tk.subwin(tt)
2007 Oct 09
1
misbehaviour of some tk windows, R 2.6.0 on SUSE 10.1?
I don't know whether this is specific to (my installation
of) SUSE 10.1, or is more general.
With R 2.6.0, I am finding that some widgets made through
the tcltk package are having problems which become evident
through scrollbar activity. An example is demo(tkfaq) --
see below. To reproduce the problem, I do the following:
after the tk window appears, hold down the
2013 Jan 15
1
Can not load Rcmdr
I am getting the error message:
> library(Rcmdr)
Loading required package: car
Loading required package: MASS
Loading required package: nnet
Error : .onAttach failed in attachNamespace() for 'Rcmdr', details:
call: structure(.External("dotTclObjv", objv, PACKAGE = "tcltk"), class = "tclObj")
error: [tcl] invalid command name "image".
2012 Mar 28
1
Problems with R Commander version 1.8-3
Dear all,
I use R 2.14.2 for Windows XP
I have no problem with R Commander version 1.7-2, but now I have a
problem with R Commander (Rcmdr) version 1.8-3.
After I lunch R Commander (sdi as well standard) if I try to import
data (i. from Stata datafile) I have this Warning message:
Error in structure(.External("dotTclObjv", objv, PACKAGE = "tcltk"),
class =
2007 Oct 15
0
iwidgets not found in r on windows
Hello,
I have a problem with using Iwidgets in R while i'm able to use BWiget and Tktable. If I let tcl list the names of
packages, Iwidgets seems available. I use R 2.6.0; in addition addTclPath("C:/Tcl/lib") has been used (in which iwidets is present)
> try(tcl("package", "names"))
<Tcl> http opt tcltest ::Utility::expand Widget ::Utility::number
2003 Apr 23
1
iwidgets in tcltk in R 1.7.0
Hi,
I have successfully installed R 1.7.0 and ActiveTcl 8.4.2.0 in
Windows 2000. Yes, I know that Tcl is already bundled with
R 1.7.0, but I want to use the iwidgets package to create a
drop-down listbox, and I don't think iwidgets is included in the
bundled R 1.7.0/TclTk installation package. I have set the
environment variables TCL_LIBRARY and MY_TCLTK to the directory
where I
2007 May 13
1
Dropdown boxes in tcltk and R
Hello,
I'm very much a newbie in R and more so in tcltk so apologies if this
question is stupid. Basically I am trying to use the combobox example
found here:
http://bioinf.wehi.edu.au/~wettenhall/RTclTkExamples/DropDown.html .
What I want to do is in that example get fruitChoice as a variable in R
in general. When I run that code, however, and the ask for fruitChoice
it says
2005 Oct 24
1
tk problem with R 2.2.0 on wine/linux
Actually I am trying to run sciview-R and encounted some problems with
tk, and I thought I'll check the basic library(tcltk) functionallity,
just to be sure. Anybody seen that '[tcl] bad window path name ".1".'
message before?
Prof. Philippe Grosjean: yes, I have managed to load most of
sciview-R under Wine, except the tcltk library!
===================
R : Copyright 2005,
2012 Mar 25
1
How to install tclRequire(Iwidgets)
hi, i'm trying to make "Tabbed Notebook Widget",but cannot install
"tclRequire(Iwidgets)".
I installed Activetcl but I don't know what can be the next step to execute
"tclRequire(Iwidgets)".
how can i do that?
Thanks
--
View this message in context: http://r.789695.n4.nabble.com/How-to-install-tclRequire-Iwidgets-tp4502775p4502775.html
Sent from the R help
2012 Mar 29
0
Subject: Re: Problems with R Commander version 1.8-3
Subject: Re: [R] Problems with R Commander version 1.8-3
Many thanks for your kindly replay. I just use a At this time I use
an earlier version of the package. I try to install the Rcmdr from
R-Forge.
Many tanks again
Message: 21
Date: Wed, 28 Mar 2012 08:04:09 -0400
From: "John Fox" <jfox at mcmaster.ca>
To: <petretta at unina.it>
Cc: r-help at r-project.org
2010 May 26
2
extracat , JGR, iWidgets install problems
[Environment: Win XP, R 2.10.1]
I'm trying to install the packages JGR and iWidgets required by the
extracat package to make the interactive plots
in the package work. I've tried various things, but nothing seems to
work. Here is my most recent attempt,
followed by my sessionInfo().
Does anyone have any suggestions how to make this work?
>
> library(extracat)
Loading
2003 Mar 26
0
R TclTk iwidgets::comboboc
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)
################## THIS FAILS - ATTEMPTS TO CREATE A COMBOBOX ##
tt<-tktoplevel()
win
2009 Aug 04
0
error message "memory not mapped"
Hi there,
I'm automatically generating buttons depending on the amount of rows
my dataframe consists of. The buttons are supposed to call a barplot-
function. Generating the buttons and displaying the barplot isn't a
problem, but once I press one of the buttons, I'm getting an error-
message.
My dataframe contains only integers. The number of rows usually
doesn't exceed 6
2009 Feb 10
3
tcltk, tcltk2, Rcmdr, Mac OS X
Dear Colleagues,
When I try to install Rcmdr the following happens:
----------------------------------
> library(Rcmdr)
Error in structure(.External("dotTclObjv", objv, PACKAGE = "tcltk"), class =
"tclObj") :
[tcl] invalid command name "font".
Error : .onAttach failed in 'attachNamespace'
Error: package/namespace load failed for
2008 Sep 01
2
Error with Rcmdr package
Dear all,
A friend of mine, who just installed Rcmdr package. When calling the
package, the error as following comes up. And actually, I've checked in CRAN
packages, the tcltk package doesn't exist anymore, but tcltk2.
Any help is appreciated
Regards
Nguyen D Nguyen
Garvan Institute of Medical Research
Sydney, Australia
library(Rcmdr)
Loading required package: tcltk
Loading Tcl/Tk
2008 May 14
2
console from tcltk
Is it possible to use the console from within tcltk?
> library(tcltk)
> tcl("puts", "stdout", "Hello, World")
Error in structure(.External("dotTclObjv", objv, PACKAGE = "tcltk"),
class = "tclObj") :
[tcl] can not find channel named "stdout".
> .Tcl('puts stdout "Hello, World"')
Error in
2006 Oct 17
2
tcltk crashes with bad color with text widget
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 world", foreground="reed")
Error in structure(.External("dotTclObjv", objv,
2010 Jan 16
0
'tcltk' crashes related to event-loops (PR#14187)
--0016e6d464cff5d753047d482362
Content-Type: text/plain; charset=UTF-8
I am experiencing some regular crashes on Debian Linux, 32- and
64-bit, involving 'tcltk' and 'cairoDevice' or 'RGtk2'. They make it
very difficult to use tcltk interfaces (Rcmdr) and GTK+ ones (rattle,
playwith, etc.) in the same R session.
NOTE: Before you continue, please read NOTE2 located towards