Displaying 1 result from an estimated 1 matches for "ausbutton".
Did you mean:
anybutton
2011 Feb 27
1
R Tcl/Tk [MacOSX] TkButton Problem
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.
My problem: When I click the button "OK", the tktoplevel window and the R console don...