When using DocScanFx in integrated mode with Philips iSite PACS an audio beep will be heard when the user clicks the option in iSite to open DocScanFx.  While this is handy to know the integration is working, if you want to disable the beep follow the instructions below.


  1. Browse to your DocScanFx installation folder.  By default this will be C:\Program Files (x86)\DocScanFx
  2. Open the Resources\Integrations\iSite folder.
  3. Find your integration HTML file that is referenced in your iSite Plug-in settings.  Unless you have modified your setup, this file should be named "EnterpriseDocScanFx_Plugin-Scan.htm".  Open this file in a text editor like Notepad, or NotePad++.  Do not open it in an application like MS Word.
  4. Around line 144 (right about in the middle of the file), find the text:  alert(multistr);
  5. Replace the word "alert" with the word "confirm".
  6. Note that you will find this same line of text near the end of the file, too.  You can change "alert" to "confirm" there as well, but that second instance is just used in testing scenarios.
  7. Save the file, exit the editor, re-login to iSite and test if the audio beep is gone.


Note that in newer releases of DocScanFx you may find the "EnterpriseDocScanFx_Plugin-Scan.htm" file has two lines with alert and confirm on each line.  You can choose to have the beep or not by adding "//" to the beginning of one of the lines as shown below:


With Audio Beep:

     alert(multistr);

     //confirm(multistr);


Without Audio Beep:

     //alert(multistr);

     confirm(multistr);