I want to open a new window with openApp command

Asked by Hitesh Shah

Hello,

Is there a way I can open a new window for an application (command prompt) using the openApp() command?
Everytime I do this, it ends up using the same command prompt window which gets opened whenever I run IDE.

Appreciate your help.
Thanks,
-Hitesh

Question information

Language:
English Edit question
Status:
Solved
For:
SikuliX Edit question
Assignee:
No assignee Edit question
Solved by:
RaiMan
Solved:
Last query:
Last reply:
Revision history for this message
Best RaiMan (raimund-hocke) said :
#1

If you mean, that you want to start a new command line window from inside a script using
openApp("I do not know, what you have her")

then it might be, that this does not work, because of the already open command line window.

With version 1.1.0 you might simply double click sikulix.jar, which doe not open a command line window.

Another option might be to use
run("start ....")

with the respective options.

Revision history for this message
Hitesh Shah (hitesh-shah) said :
#2

Thanks Raiman,