use any application .exe by its short key

i want pen an application .exe and make some work in this application using matlab code using the short key of this application as alt+ e is meaning open a new folder as example. to open some thing in this application it must click on keyboard on the following keys one after one
ctrl+e (click on ctrl key and on e key)
alt+js+om+ahmed
tab+tab+tab+tab+enter

3 Comments

Ahmed - rather than posting a new question that is nearly identical to http://www.mathworks.com/matlabcentral/answers/183041-write-alt-key-or-ctrl-or-tab, just update the previous question by responding to Jan's comment and add some clarification to what you are requesting.
yes it also my question and i was delete it
@Ahmed: What exactly is your question?

Sign in to comment.

 Accepted Answer

Try the java robot:
import java.awt.Robot
import java.awt.event.*
robot = Robot;
robot.keyPress(KeyEvent.VK_CONTROL);
robot.keyPress(KeyEvent.VK_E);
robot.keyRelease(KeyEvent.VK_E);
robot.keyRelease(KeyEvent.VK_CONTROL);

More Answers (0)

Community Treasure Hunt

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

Start Hunting!