The research of the embedded index does not work for the PDF file opened with Adobe Reader in a browser

Due to the way in which we use our Document management system, if we want to search through multiple or large files stored in our DMS PDF we merge PDF together and create an embedded index. This works perfectly well, when you open the PDF file in Adobe Reader standalone. Enter a particular term can bring 100 hits (very quickly) in the Adobe Reader search results pane.

However, if we launch the PDF with Adobe Reader in Internet Explorer (any version), enter a term to search (contained in document) only get one result, that of the file name of the document itself.

Unfortunately most of our users will access our DMS documents with internal links.

Any ideas greatly appreciated.

K

It is a problem with Reader 8. You must use that...

Using Reader 9. It will work well with it.

-Arnav Agarwal

Tags: Acrobat

Similar Questions

  • Windows Explorer search feature does not work on a PDF file

    I've upgraded to WINDOWS 7 this month. As in the past I am still investigating several cases filled with PDF files for specific strings in the PDF file. The new feature of windows search is not finding files. I have all the indexed folders and have put the 'Options records' both 'in indexed locations... ". "and"always search file names... ". ». Niether option seems to work. I find that the search for a set of folers containing docx files work so I suspect something in the way the new alogrithm of WIN 7 search interacts with the type of PDF file: maybe something to with the recording of the PDF file to the operating system time?

    In this very basic problem any help is appreciated,

    Fitz

    I am also unable to search the contents of .pdf with Windows 7 files.  Check indexing according to the instructions of Ronnie above Options I have noted that, while the .pdf file has already been fixed for the indexing of content Description filter column shows "Registerd IFilter not found."  I did a bit of research and it seems that Adobe is including the iFilter in its Adobe Reader, but not for 64 bit systems which is what I am running.  A 64-bit filter is available at http://www.adobe.com/support/downloads/detail.jsp?ftpID=4025, but I have not tried.

  • I want the PDF file opened with the bookmark opens automatically.

    Is there a simple way I can open a PDF file (created by MS Word 2010) with the bookmark automatically open?

    Today, the PDF file is opened without bookmark. And whenever I open the same file PDF again, I must say that I want to have bookmarks to open.

    I have only MS Word 2010 og Adobe Reader XI.

    If you enable the "Restore last view settings when reopening documents" under Edition - Preferences - Documents Bookmarks panel manually, and then open and close the file, the next time that you open, the Panel will be opened by default.

  • Upgrade to Flex 4, Halo theme, embedded police does not work for the Label of the spark

    I am upgrading an application in Flex 4 to Flex 3.5 using the Halo theme.  If I get a spark in my application the spark label label does not make the text using the font I set in my CSS.  My MX labels make it very well.  Here is a sample application that replicates to my question.  Thus,.

    Compile and run using spark theme.  The two labels make the text with the correct font.

    Compile and run using Halo theme.  Only the MX label makes the text with the correct font.

    Is it not possible to do what I want?

    Thank you

    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
                      xmlns:s="library://ns.adobe.com/flex/spark" 
                      xmlns:mx="library://ns.adobe.com/flex/mx"
                      minWidth="250" minHeight="250">
         <fx:Style>
              @namespace mx "library://ns.adobe.com/flex/mx";
              @namespace s "library://ns.adobe.com/flex/spark";
              
              @font-face
              {
                   fontFamily: Verdana;
                   fontWeight: normal;
                   fontStyle: normal;
                   src: url("./style/fonts/verdana.ttf");
                   embedAsCFF: false;
              }
              
              @font-face
              {
                   fontFamily: VerdanaCFF;
                   fontWeight: normal;
                   fontStyle: normal;
                   src: url("./style/fonts/verdana.ttf");
                   embedAsCFF: true;
              }
              
              mx|Label
              {
                   font-family: Verdana;
              }
              
              s|Label
              {
                   font-family: VerdanaCFF;
              }
         </fx:Style>
         <fx:Declarations>
              <!-- Place non-visual elements (e.g., services, value objects) here -->
         </fx:Declarations>
         <s:VGroup>
              <mx:Label text="My text" />
              <s:Label text="My text" />          
         </s:VGroup>
    </mx:Application>
    

    I think you need to put the fontLookup:

    s | Label

    {

    do-family: VerdanaCFF;

    fontLookup: "embeddedCFF";

    }

  • delete history of navigation research of bar tools explore does not work for 2 specific web pages

    After you delete the history of navigation research 2 web pages continue to appear.  Even when I do click on these web pages they display automatically.

    After you delete the history of navigation research 2 web pages continue to appear.  Even when I do click on these web pages they display automatically.

    See if this will help...
    Open Internet Explorer > tools > Internet Options > under browsing history, place a check mark to Remove leaving browsing history > for good measure, click on remove... button > delete

    Quit Internet Explorer > restart Internet Explorer.

    2 sites are always there? For the benefits of others looking for answers, please mark as answer suggestion if it solves your problem.

  • Resize image code does not work for some jpg files

    Hello. I use the code to resize images and store them on the server below. However, with some jpg files, resizing produces a reddish tint on the picture. Any ideas of what could be the cause? Here's the original image: http://www.unctv.org/tWxkBbq_10M6wKRRL/PNCWWD01.jpg and here of what happened later: http://www.unctv.org/tWxkBbq_10M6wKRRL/PABDFC01__1289231445291.jpg
    Photoshop CS5 is used to produce the input JPG for this app. thank you.
    public BufferedImage resizeVeryHigh(InputStream inputStream, File resizedFile) throws IOException {
      BufferedImage bufferedImage = null;
      try {
          Image newImage = ImageIO.read(inputStream);
          int newWidth = (int)this.targetWidth;
          ImageIcon imageIcon = new ImageIcon(newImage);
          Image image = imageIcon.getImage();
          Image resizedImage = null;
    
          int iWidth = image.getWidth(null);
          int iHeight = image.getHeight(null);
    
          // This code ensures that all the pixels in the image are loaded.
          Image temp = new ImageIcon(resizedImage).getImage();
    
          // Create the buffered image.
          bufferedImage = new BufferedImage(temp.getWidth(null), temp.getHeight(null), BufferedImage.TYPE_INT_RGB);
    
          // Copy image to buffered image.
          Graphics g = bufferedImage.createGraphics();
    
          // Clear background and paint the image.
          g.setColor(Color.white);
          g.fillRect(0, 0, temp.getWidth(null), temp.getHeight(null));
          g.drawImage(temp, 0, 0, null);
          g.dispose();
    
          // Encodes image as a JPEG data stream
          FileOutputStream out = new FileOutputStream(resizedFile);
          JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
          JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(bufferedImage);
          param.setQuality(1.0f, true);
          encoder.setJPEGEncodeParam(param);
          encoder.encode(bufferedImage);
      }
      catch (Exception e) {
            this.error = e.getMessage();
      }
          return bufferedImage;
    }
    Published by: oneworld95 on November 8, 2010 11:34

    I don't know anything about the jpeg encoder, but I do not see the code which makes no sense to me:

    Image resizedImage = null;
    
    int iWidth = image.getWidth(null);
    int iHeight = image.getHeight(null);
    
    // This code ensures that all the pixels in the image are loaded.
    Image temp = new ImageIcon(resizedImage).getImage();
    

    What is so as to create an ImageIcon from an image zero?

    int newWidth = (int)this.targetWidth;
    

    I don't see where actually use you this variable, then how the image does get resized?

    To learn more create a [url http://sscce.org] NBS, which illustrates the incorrect behavior and maybe someone will take a look.

  • Single-pass does not work for Web sites after the last update of firefox

    Single-pass does not work for Web sites after the last update of firefox. This works in IE and Chrome and it works under windows (when starting the computer), but not with any website in Firefox.

    Firefox 30 spent some less commonly used "Always turned on" plugins "asking to activate. To check and change this to SimplePass, you can use the page modules. Either:

    • CTRL + SHIFT + a
    • "3-bar" menu button (or tools) > Add-ons

    In the left column, click on Plugins. Then on the right, check the control on the right side of the SimplePass.

    You may need to exit Firefox and start it again before it takes effect.

    A little luck?

  • iMessage does not work for me. I have no text to send or receive texts as an alternative. I am able to use the Internet to navigate / social media but iMessage completely ceased to operate. I tried the usual phone turn off / on, reboot, etc.

    iMessage does not work for me. I have no text to send or receive texts as an alternative. I am able to use the Internet to navigate / social media but iMessage completely ceased to operate. I tried the usual phone turn off / on, reboot, etc. and still nothing. What can I do?

    What methods have tired to get it activated?

    You can disconnect from the iMessage

    Disconnect from the iCloud

    Reboot your phone

    Reconnect

    Wait iMessage activate

    Do you have a viable data plan?

  • I keep seeing pop up ads powered by '' cn tatami '' whenever I have to navigate using Safari or open a link on the FB Adblocker app does not work for this. Any suggestions? There is no option to cross the pop-up ad that it redirects to various Web sites.

    I keep seeing pop up ads powered by '' cn tatami '' whenever I have to navigate using Safari or open a link on the FB Adblocker app does not work for this. Any suggestions? There is no option to cross the pop-up ad that it redirects to various Web sites.

    Cache and history of the site Clear settings - Safari -.

    (1232)

  • The button create a new paragraph style does not work for me, is this a bug or something stupid I did?

    The button create a new paragraph style does not work for me, is this a bug or something stupid I did?

    Pages on El Capitan 10.11.1 v5.6.1.

    I just created a quote indented using ITC Garamond Book Italic with left and right margins altered. Well selected, I clicked on the + symbol in the paragraph, named the new Styles pop-up style Indented quote and you press return.

    Always selected in the body of the document, I applied the body paragraph Style to restore the normal formatting and then with the text again, the paragraph of citation Style indented - who worked as expected.

    If you want that your new Style of paragraph to survive across documents, you will need to save it in a model. You can also have two different Pages, documents open in Pages v5.6.1, and copy/paste the custom styles between the selected text in these documents by using the Format menu.

  • The administrator password for all computers on the network does not work for ONE of the computers on the network

    original title: the computers of network/administrator password

    The administrator password for all computers on the network does not work for ONE of the computers on the network. I need to log on as an administrator to install software, but the password does not work. It works on other computers, but not this one. How is this possible and how can it be solved?

    Hello
    Microsoft technical support engineers cannot help you recover the passwords of the files and Microsoft who are lost or forgotten product features. For more information about this policy, please refer to the below sticky

    http://social.answers.Microsoft.com/forums/en-us/vistasecurity/thread/3eba3150-8742-4264-be9f-0daaad2282cd

  • How can I fix the "drag and drop" feature in Windows 7? It used to work, but now does not work, for no apparent reason!

    How can I fix the "drag and drop" feature in Windows 7?  It used to work, but now does not work, for no apparent reason!

    What happens when you try?  Make sure you drag the icon image and not the text of the name.

    If it still doesn't work there are some registry changes that can try to alleviate the problem.  But because the changes to the registry are tedious and dangerous, I recommend to leave the system to repair it for you.  Here's how:
    1. Type of restore in the search box of the start menu to find and open to restore system files and settings from a restore point.
    2. Click Next, choose a date before the problem started, then click Next once more.
    • This process only takes around 2 minutes and only restores your system files/settings: it will not affect any of your files, documents, photos, emails, or anything else.
    If the system restore does not resolve the problem try this to replace missing or corrupted system files.  Here's how:
    1. Type cmd into the start menu search box, and then press Ctrl-Shift-Enter to launch as administrator.
    2. At the command prompt to start the File System Check, type sfc/scannow .
  • "@specTypeName @" placeholder for extensibility of the Email does not work for the master specifications

    Hi all

    • I installed E-mail Feature Pack 4.1 extensibility 6.2 PLM.
    • I use "GSMEmailFileBasedVariablesFormatPluginFactory" to send e-mail notifications when work flowing from one status to another.
    • I am successfully able to generate notifications by e-mail for all GSM specifications with the content specified by me except the master specifications.

    "@specTypeName @" placeholder for extensibility of the Email does not work for the specifications of the master.

    Can you please help me solve the problem?

    FYI,.

    ' @specTypeName @ ' placeholder works in all other GSM specifications.

    Thank you

    Nefertari

    For the resolution of this problem, please see the following knowledge base document:

    Document 2079386.1 - Notifications by email for the specifications of the master only lack the Type of specification field

    Thank you

    Stephen, Oracle Support

  • I want to uninstall the application, because it does not stay charged and want more on my computer and not perform the steps for removing it, but none does not work for me.

    I want to uninstall the application, because it does not stay charged and want more on my computer and not perform the steps for removing it, but none does not work for me.

    Cancel see answer #1 in https://forums.adobe.com/thread/2023066 - includes a link to Chat from Monday to Friday

    Sign out of your account... Uninstall... to run vacuuming...

    -http://helpx.adobe.com/creative-cloud/help/install-apps.html (and uninstall)

    -https://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html

  • embed tag does not work for ms word (it's ok for the pdf)

    Hi dear,

    The following embed tag does not work for ms word documents (it's ok for pdf)

    Why?

    if :P138_TYPE  like '%pdf%'  then
    htp.prn('
     <div style="position: absolute; height: 100%">
     <embed height="100%" width="100%"  name="embed_content" src="'|| apex_util.get_blob_file_src('P138_FILE_CON', :P138_ID)||
     '" type="' || :P138_TYPE || '" />
     </div>
     ');
    else
    htp.prn('
    <div style="">
     <object src="'|| apex_util.get_blob_file_src('P138_FILE_CON',  :P138_ID)||
     '"><embed height="100%" width="100%"  style="position: absolute; height: 100%" name="embed_content" src="'|| apex_util.get_blob_file_src('P138_FILE_CON', :P138_ID)||
     '" type="application/msword" /></object>
     </div>
     ');
    end if;
    
    
    
    
    
    

    concerning

    SIA

    This is a HTML thing and not a thing of the APEX.

    Tags works only for known-to-the-browser MIME types.

    For tags work, your browser must have the plugin appropriate for this MIME type.

    PDF works because (almost) always PDF plugins are installed:

    • FireFox includes its own PDF plugin
    • Adobe Acrobat Reader (which almost everyone has) offers a plug-in also

    MS Office documents... not so much.

    In order to display a Word document in a web browser, you must have a Plugin who knows how to view Word documents.

    (.... Or... be stuck with Internet Explorer...)

    I believe that OpenOffice is a plugin... but you can be guaranteed that the {end} user has this plugin installed.

    MK

Maybe you are looking for