How to Restore Focus to Matlab after another process steals it

3 次查看(过去 30 天)
I am launching a java process which unfortunately steals the focus away from Matlab. When typing in the command window this is really annoying. I've created some code which hides the launched process window, but I was wondering how I could pragmatically return focus to Matlab. Ideally there would be a single function which would restore focus to the last item with focus in Matlab but I am guessing this functionality doesn't exist. I have a working hack (see my answer) but I'd be interested in others solutions that are a bit more generic or that don't rely on undocumented features.
Thanks, Jim

采纳的回答

Jim Hokanson
Jim Hokanson 2013-1-1
Here's my solution, which only restores focus to the command window. Restoring focus to the command window is easy, the tricky part is knowing whether or not the focus belongs there.
%Step 1 - get focus status
cw = com.mathworks.mde.desk.MLDesktop.getInstance.getClient('Command Window');
cw_has_focus = cw.hasFocus;
%Step 2 - launch process with focus stealer
%Step 3
if cw_has_focus
commandwindow
end

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Startup and Shutdown 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by