Search found 2 matches
- 11 Mar 2018, 21:01
- Forum: Support
- Topic: Message box in script closes
- Replies: 2
- Views: 2214
Re: Message box in script closes
Thanks a lot. Using showModal () works. I also had a typo in my example as I wrote onClose: instead of onClosed: . This works fine: function confirm() { var r, c = new MessageBox({ title: "Press yes or no", icon: MessageBox.Question, buttons: MessageBox.Yes | MessageBox.No, text: "Did...
- 10 Mar 2018, 22:33
- Forum: Support
- Topic: Message box in script closes
- Replies: 2
- Views: 2214
Message box in script closes
I have a Yes/No Message Box that asks a question. If answer is Yes it calls a script that does some work with output to user. Then I want to make user confirm Yes/No that everything was OK. Here I open another MessageBox, but this time from script. Problem is that actiona does not wait for the Messa...