How to make a window with checkbox and action after choose

Asked by YO

Hi,

I want make a window, something like in VB.
After you choose what you want to do, you could click "Start" Button and sikuli wll do it.

Here is the Example picture of what I want: http://imgur.com/dItyd83

Is it possible to do it by Python?(or in sikuli?)
Could I do it in sikuli1.1.1 nightly ?
What key word should I enter in order to search the code?

Thank you.

Question information

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

Beyond these dialog features

there are no features in SikuliX, to achieve, what you want.

You have to dive into the Java GUI programming and either program the GUI by hand or use a GUI builder, like they are available in Eclipse, NetBeans and IntelliJ IDEA CE.

Revision history for this message
RaiMan (raimund-hocke) said :
#2
Revision history for this message
YO (testseng) said :
#3

Thanks for you link,

I've noticed my request is just similar to "select"

User can choose what they want, with just few word to describe.

Here is the simulated picture(Edited by your picture)
http://imgur.com/a/fbhuW

If this function is successfully make, the programmer could pre-make some function, and the user just need to click a few button , and multiple task can done.

So... May I make it as a Feature Request?

Thanks a lot.

Revision history for this message
RaiMan (raimund-hocke) said :
#4

this is available as a feature:
http://sikulix-2014.readthedocs.io/en/latest/interaction.html#select
(only one item selectable at one run currently)

... but feel free to add a request, to get the layout you want to have with checkboxes and multiple selections possible

Revision history for this message
YO (testseng) said :
#5

Thanks for your Answer, RailMan.