フィルターのクリア

use any application .exe by its short key

1 回表示 (過去 30 日間)
ahmed ashiry
ahmed ashiry 2015 年 3 月 14 日
回答済み: Image Analyst 2015 年 3 月 14 日
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 件のコメント
ahmed ashiry
ahmed ashiry 2015 年 3 月 14 日
yes it also my question and i was delete it
Jan
Jan 2015 年 3 月 14 日
@Ahmed: What exactly is your question?

サインインしてコメントする。

採用された回答

Image Analyst
Image Analyst 2015 年 3 月 14 日
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);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCode Generation についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by