F53
1
I would like to use windows 10 style dialogue boxes, where should I start looking in-order to learn how do this within processing?
The provided dialogue boxes in processing feel dated and seemingly cant return a value
Processing:
What I want to achieve:
Hi,
Which function did you use to open that dialog box in Processing?
1 Like
F53
3
Hi, sorry for the delay, I found the solution to my problem and forgot to check the forum afterwards.
I have lost the original dialogue thing I was using, but found a better solution, that fits the criteria I was looking for:
boolean message(String title, String message){
//println("msg: " + message);
return showConfirmDialog(null, message, title, YES_NO_OPTION) == YES_OPTION;
}
1 Like
Oh, I had something like that here:
1 Like
F53
5
That was the post I found the solution I was using in!
it also has more UI stuff that looks like windows, so its a better solution
2 Likes