In R on Windows (ver 7) I have somehow set the preferences for the R
console window to be always on top. I'm sure at the time I did this it
seemed like a good idea, but in practice it is not. Unfortunately, I
cannot remember where the setting is changed, and thus it is stuck
this way. Does anyone know how to modify this setting?
Thanks,
-Robert
Robert M. Flight, Ph.D.
Bioinformatics and Biomedical Computing Laboratory
University of Louisville
Louisville, KY
PH 502-852-0467
EM robert.flight at louisville.edu
EM rflight79 at gmail.com
Williams and Holland's Law:
If enough data is collected, anything may be proven by
statistical methods.
On 11/03/2010 11:59 AM, Robert M. Flight wrote:> In R on Windows (ver 7) I have somehow set the preferences for the R > console window to be always on top. I'm sure at the time I did this it > seemed like a good idea, but in practice it is not. Unfortunately, I > cannot remember where the setting is changed, and thus it is stuck > this way. Does anyone know how to modify this setting?That was probably done via the bringToTop() function. Call it again as bringToTop(which = -1, stay = FALSE). It's possible you did it with some kind of call to arrangeWindows(), but I don't see how that would happen. If so, it might be fixed by arrangeWindows("restore"). Duncan Murdoch