Opening saved sikuli script in Sikuli IDE from command line

Asked by vikramsjn

Is there a way to open previously saved sikuli script (.sikuli folder) in the IDE, starting from the command line ?

I mean, for example
   notepad e:\notes.txt
will start notepad with e:\notes.txt file open --- is anything similar available in Sikuli?

So for example:
   sikuli-ide.exe e:\sendmail.sikuli
starts Sikuli IDE and also opens e:\sendmail.sikuli in the IDE.

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

use
sikuli-ide.bat some-script.sikuli

this will open the IDE with the script opened in a tab.

sikuli-ide.bat -r some-script.sikuli

would run the script, without showing the IDE and stop at script exit.

Revision history for this message
vikramsjn (vikramsjn) said :
#2

Thanks RaiMan, that solved my question.