Displaying 2 results from an estimated 2 matches for "vectpath".
Did you mean:
getpath
2003 Sep 08
1
add checkbutton and the variable(wrong length of vector "b")
...ponent
of vector "b" is associates with a Tcl variable and load 3 components
(environment, value and pointer) I wanted alone to charge the value (0 done
not select and 1 selected), and the length its wrong. Good, here are the
script so that they see it. Thanks Ruben
library(tcltk)
vectPath<-c()
b<-c()
archivos<-function(){
f<-tkcmd("tk_getOpenFile")
temparch<-tclvalue(f)
assign("vectPath",c(vectPath,temparch),.GlobalEnv)
temp<-0
assign("b",c(b,temp),.GlobalEnv) #charge the variable for t...
2003 Aug 15
1
menubutton don´t work
...n the
menubutton?, therefore always remains as a white one, I intend to charge
the direccion of open files in a vector and then to elect with the
menubutton with which to work but not functions thanks.Ruben
library(tcltk)
arch<-tclVar(init=" ")
archOp<-tclVar(init=" ")
vectPath<-c()
archivos<-function(){
f<-tkcmd("tk_getOpenFile")
temparch<-tclvalue(f)
assign("vectPath",c(vectPath,temparch),.GlobalEnv)
cant<-length(vectPath)
arch<-vectPath[cant]
tkconfigure(mb,state="normal")
tkadd(m, "radio", label=arch, va...