Re: [R] R Tcl/Tk [MacOSX] TkButton Problem

2011-02-27 Thread Stefan Richter
Hi, > I think you'll need to post a complete example to illustrate the problem. > I'd suggest posting it to the R-sig-mac list, since it seems to be a problem > specific to that platform. > > Duncan Murdoch ok, thank you. I will post it there. Stefan Richter _

Re: [R] R Tcl/Tk [MacOSX] TkButton Problem

2011-02-27 Thread Stefan Richter
Hi, > On 11-02-27 7:31 AM, Stefan Richter wrote: >> Hi, >> >> I have a tktoplevel window and in it a tkbutton: >> >> AUS<- function() >> { >> foo(parameters); >> } >> AUSButton.but<- tkbutton(tt,text="OK",command=AUS) >> >> The function foo(...) does a time-consuming calculation, and durin

Re: [R] R Tcl/Tk [MacOSX] TkButton Problem

2011-02-27 Thread Duncan Murdoch
On 11-02-27 10:09 AM, Stefan Richter wrote: Hi, On 11-02-27 7:31 AM, Stefan Richter wrote: Hi, I have a tktoplevel window and in it a tkbutton: AUS<- function() { foo(parameters); } AUSButton.but<- tkbutton(tt,text="OK",command=AUS) The function foo(...) does a time-consuming calcul

Re: [R] R Tcl/Tk [MacOSX] TkButton Problem

2011-02-27 Thread Duncan Murdoch
On 11-02-27 7:31 AM, Stefan Richter wrote: Hi, I have a tktoplevel window and in it a tkbutton: AUS<- function() { foo(parameters); } AUSButton.but<- tkbutton(tt,text="OK",command=AUS) The function foo(...) does a time-consuming calculation, and during this calculation there is printe

[R] R Tcl/Tk [MacOSX] TkButton Problem

2011-02-27 Thread Stefan Richter
Hi, I have a tktoplevel window and in it a tkbutton: AUS <- function() { foo(parameters); } AUSButton.but <- tkbutton(tt,text="OK",command=AUS) The function foo(...) does a time-consuming calculation, and during this calculation there is printed some progress information to the console.