Author Topic: pdfe MessageBox doesn't show under some conditions.  (Read 4134 times)

0 Members and 1 Guest are viewing this topic.

Amazed

  • Newbie
  • *
  • Posts: 8
pdfe MessageBox doesn't show under some conditions.
« on: August 18, 2016, 05:40:10 AM »
Modified this post. I'm more certain now. pdfe MessageBox doesn't show up when hide output window is unselected in script manager. I don't want to shoiw the output window but I do want to display output in some way like MessageBox or Alert or similiar.

Any ideas?

Thanks.

RTT

  • Administrator
  • *****
  • Posts: 907
Re: pdfe MessageBox doesn't show under some conditions.
« Reply #1 on: August 18, 2016, 04:36:07 PM »
The tool considers a non-interactive running environment when the output window is set hidden, and so it suppresses these internally handled user interaction methods.
Anyway, you may use any other object methods, such as the WshShell.PopUp one.
You may also create a library script in VBScript language, to declare message and input help functions that use the language MsgBox and InputBox methods, include that library in your jscript script (check this post on how to do that) and call these methods from your script.

Amazed

  • Newbie
  • *
  • Posts: 8
Re: pdfe MessageBox doesn't show under some conditions.
« Reply #2 on: August 18, 2016, 05:08:02 PM »
Thanks,

I'll try that.  :D