Re: figure windows not in focus
jhu wrote:
Does anyone know how to make figures created in background (not
minimized) just behind other windows. For example look at this code
for i=1:10
figure(i)
pause(5)
end
so the figure windows do not disturb me always when created
thanks
jhu
Also, if you've already created the figure (and have the handle) you
can do :
set(0,'CurrentFigure',figHandle);
then follow up with your plotting commands. It will set the figure
defined by figHandle as the active one, but not elevate it to the
front.
HTH,
Jason
.
Relevant Pages
- Re: figure windows not in focus
... jhu wrote: ... minimized) just behind other windows. ... (comp.soft-sys.matlab) - Re: Windows 7, another Windows Vista?
... Windows 7 is not. ... But Vista did: remember how apps used to have "menu bars"? ... wants to elevate to admin. ... (comp.sys.mac.advocacy) - Re: Estending the time until "Not Responding"
... You probably would have to elevate regedit to change ... Theres no entry in the registry called HungAppTimeOut. ... See link below which references Windows 2K but seems to be the same in XP ... The "Ultimate Windows Tweaker - Tweak UI For Windows Vista" can also ... (microsoft.public.windows.vista.general) - Re: Windows 7, another Windows Vista?
... the shell is visible and usable even in other applications... ... Windows 7 doesn't really differ noticeably from Vista in this area. ... It will still only silently elevate its own COM objects, and only a signed process can elevate them silently. ... No fancy-pants code injection required for that one. ... (comp.sys.mac.advocacy) - Re: Bring window from elevated process to front in Vista
... I'm writing a task switching application and am having difficulty in ... switch app and the elevated app without success, ... Note that the above code works for windows of non-elevated apps. ... your app to elevate, the user must accept this (the screen darkens and a ... (microsoft.public.vc.mfc) |
|