How To Supress Acrobat Error Message And Alert Message

Ask a Question related to Adobe Acrobat SDK, Design and Development.

  1. #1

    Default How To Supress Acrobat Error Message And Alert Message

    Is there any way to supress those pop up message?
    If can't, is there any way to catch it?
    ckpang@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. Error message in Acrobat Pro 8.1.2
      Thank you for the suggestion, but I don't have Pitstop on my computer. If other thoughts come to mind, I'd appreciate the help. Bob
    2. Regarding to alert message
      Hi If our text contains only characters but wrongly we add the number so alert message will come. In that we want only to remove the number not...
    3. Adobe Acrobat 5.0 error message
      I am getting Unable to locate scanner when attempting to import and not able to use the scanning function. I am running XP Help!
    4. Error Message for Adobe Acrobat 3.0
      When attempting to download a pdf file, I receive error message - "Could not find Colorspace named Cs6". Then error message - "This file contains...
    5. alert or message box?
      I am not clear ... whether to use alert of JavaScript or messagebox of VBScript in ASP. But what I want is that when a user has some error I want...
  3. #2

    Default Re: How To Supress Acrobat Error Message And Alert Message

    Hi ckpang,

    I'm also looking for these information. I know that you can't suppress the popups (for security reason).

    I think it's possible to catch it using the callback notifications.

    Please share these information once you'll find a solution.

    Thanks in advance,
    Joel_N@adobeforums.com Guest

  4. #3

    Default Re: How To Supress Acrobat Error Message And Alert Message

    It is quite annoying when using OLE automation and facing those popup.
    Even we manage to catch it, I think we still can't programmatically terminate the app.
    ckpang@adobeforums.com Guest

  5. #4

    Default Re: How To Supress Acrobat Error Message And Alert Message

    no, you can't catch alerts/pop ups brought up during OLE automation...
    Leonard_Rosenthol@adobeforums.com Guest

  6. #5

    Default Re: How To Supress Acrobat Error Message And Alert Message

    Hi Leonard,

    And using the SDk? (with a plugin) Is it possible to catch alerts/pop ups?
    Joel_N@adobeforums.com Guest

  7. #6

    Default Re: How To Supress Acrobat Error Message And Alert Message

    You can use hook proc to catch the alert window.
    NoSmoking@adobeforums.com Guest

  8. #7

    Default Re: How To Supress Acrobat Error Message And Alert Message

    In my case I have to catch the alert window generated by Adobe Acrobat.
    I use Acrobat but I hide the Acrobat's windows using it and once an alert popups the window is shown but it doesn't take the focus. So the user can't see/understand that he needs to click 'OK' on the alert/popup which is in the Acrobat window.

    Which procedure do I need to know that an alert occurs? (and I don't want to launch a thread to check if the Acrobat's window is hidden or not;)
    Joel_N@adobeforums.com Guest

  9. #8

    Default Re: How To Supress Acrobat Error Message And Alert Message

    Someone has already faced to this problem?
    Joel_N@adobeforums.com Guest

  10. #9

    Default Re: How To Supress Acrobat Error Message And Alert Message

    CkPang/Joel,

    All the Adobe Acrobat pop-ups are controlled via registry and have blocked many of those for my application users using the same. Let me know the exact pop-up and the steps to re-generate the same and will try to provide a key for disabling.
    Atin Wadehra Guest

  11. #10

    Default Re: How To Supress Acrobat Error Message And Alert Message

    Thanks Atin. But I have an easier way to resolve this problem.
    The solution is to create a thread (or use the AVIdleProc callback) and add a check with AVAppModalWindowIsOpen(). If a modal window is open then you can catch it by doing a search on the windows. The Class name is #32770 (Dialog) and the Window Caption is Adobe Acrobat

    Regards,
    Joel_N@adobeforums.com Guest

  12. #11

    Default Re: How To Supress Acrobat Error Message And Alert Message

    Fine Joel and thanks for the update regarding the code.

    However, the term easier method should be based on the situation like you feel its better to catch and dismiss the popups using the code while I feel its better to disable the Adobe pop-ups once via registry so that they can never come and disturb the users. This solution will work irrespective of whether the application is not running.
    Atin Wadehra Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139