search for: ressw

Displaying 4 results from an estimated 4 matches for "ressw".

Did you mean: ress
2024 Nov 21
1
grDevices::bringToTop is documented but not available: A bug?
...Some other help pages were similarly moved, e.g. - ?windows and ?windowsFonts, document the functions as being Windows-only. - ?msgWindow and ?windows.options have the same issue as ?bringToTop. Maybe someone remembers the intention of that move... Duncan Murdoch On 2024-11-20 1:09 p.m., ressw at meer.net wrote: > > > There is help for grDevices::bringToTop but the function is > not present. > >> bringToTop() > Error in bringToTop() : could not find function "bringToTop" >> grDevices::bringToTop() > Error: 'bringToTop' is not an expor...
2025 Jan 21
1
[tcltk] binding two functions to one event
...use this does not work: > tkbind('all','<<EVENT>>',"+", evresp2) Error in structure(.External(.C_dotTclObjv, objv), class = "tclObj") : [tcl] wrong # args: should be "bind window ?pattern? ?command?". > On 20 Jan 2025, at 02:51 , ressw at meer.net wrote: > > > > Here is some tcl/tk code I am trying to emulate in R. > Paste the following into wish > > ### begin tcl code > toplevel .wtop > proc evresp1 { data } { puts "evresp1 $data" } > proc evresp2 { data } { puts "evresp2 $data&qu...
2024 Nov 20
1
grDevices::bringToTop is documented but not available: A bug?
There is help for grDevices::bringToTop but the function is not present. > bringToTop() Error in bringToTop() : could not find function "bringToTop" > grDevices::bringToTop() Error: 'bringToTop' is not an exported object from 'namespace:grDevices' > getAnywhere(bringToTop) no object named ?bringToTop? was found # help output: > ?bringToTop bringToTop
2025 Jan 20
1
[tcltk] binding two functions to one event
Here is some tcl/tk code I am trying to emulate in R. Paste the following into wish ### begin tcl code toplevel .wtop proc evresp1 { data } { puts "evresp1 $data" } proc evresp2 { data } { puts "evresp2 $data" } bind all <<EVENT>> "evresp1 %d" bind all <<EVENT>> "+evresp2 %d" ### end tcl code Now paste event generate .wtop