search for: captura_dato

Displaying 1 result from an estimated 1 matches for "captura_dato".

Did you mean: captura_datos
2005 Jan 08
1
coordinates of mouse position
HI, I need known the position of mouse, but i not know how obtain the parameter %X used in tcl. the script in Tcl is: set w .probe catch {destroy $w} toplevel $w proc Captura_Datos { ancho alto } { puts "El ancho es $ancho" puts "El alto es $alto" } bind $w <Configure> "Captura_Datos %X %Y" In R w<-tktoplevel() f<-function(a,b)^` print(a) print(b) tkbind(w,"<Configure>",f(%X,%Y)) Not works. How to do this? thanks Ru...