Alt+tab not working
Show older comments
I want to switch between two windows(tabs minimized to task bar) using matlab..For which I wrote the code
if true
% code
end
import java.awt.Robot;
import java.awt.event.*;
mouse = Robot;
mouse.keyPress (java.awt.event.KeyEvent.VK_ALT);
mouse.keyPress (java.awt.event.KeyEvent.VK_TAB);
mouse.keyRelease (java.awt.event.KeyEvent.VK_TAB);
pause(2);
mouse.keyRelease (java.awt.event.KeyEvent.VK_ALT);
But it doesn't work..It stays as it is..Can anyone help ?? Thanx in advance
Answers (2)
Jan
on 7 Apr 2014
0 votes
This works fine on my Windows7/64 and Matlab 2009a. When I paste this into the command window, the window for changing the front process is opened and the next application is activated.
3 Comments
Animesh
on 8 Apr 2014
Animesh
on 8 Apr 2014
Cynthia
on 2 May 2014
I have the same problem. Also, if I put a pause in the matlab code and switch the window by myself, the matlab code does not move the mouse and do the clicking as it is said in the code. I have tried it in Windows 7 and it works. Have you found a solution for this apart from changing of operating system?
raym
on 26 Mar 2017
0 votes
Yes. indeed on my computer, although press Alt-Tab works, but sendkeys not work.
However, justnow I found that Alt-Esc also could toggle windows, and I use vbs to send keys:
vb=actxserver('wscript.shell'); vb.SendKeys('%{ESCAPE}');
it worked!!
Categories
Find more on Startup and Shutdown in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!