I can no longer search for spanish letters in new download of adobe reader

I downloaded Adobe Reader X1 and now cannot search for Spanish letters like ñ or vowels with accents on them?  Please advise/help? Thanks.

No, there's nothing you can do to update the document. This is a strange situation. The only explanation I can think of is that the previous version used some repair mechanism that allowed it to identify those characters, even though they are encoded incorrectly, and that this mechanism was removed from the newer version.
You can report this issue to Adobe as a bug, if you wish, here: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
But as I said, there's nothing else you can do about it.

Similar Messages

  • Delegate can no longer search for bosses contacts

    We recently had an assistant lost the ability to search through her bosses contacts.  She can click on the contacts in Outlook 2010 and browse them just fine.  When she enters a contact name in the search field when her bosses contacts are highlighted
    it only searches the delegates contacts.  Something has changed and I can't figure it out.  We are using Exchange 2003.  She claims this has worked before.  
    She can create contacts so the permissions are untouched.  Something I am missing here.  

    I can answer one, its cached mode.  What search settings?
    It worked recently, like a week ago.  
    Hi,
    Please follow Willard's suggestion to check the Indexing Option settings and confirm if the issue happens in Online mode. If the issue persists in Online mode and folder permission is checked to be configured correctly in the Boss's side, please start
    Outlook in safe mode to have a try:
    Click Start > Run, type Outlook /safe, then click OK to restart Outlook.
    If the contact searching works well in Outlook safe mode, please check the Add-ins and disable any third-party one in cached mode for troubleshooting.
    Regards,
    Winnie Liang
    TechNet Community Support

  • Can no longer search SMS texts

    After updating to ios 8, I can no longer search for SMS messages that were sent/received prior to the up date. Same issue with 8.0.2.

    I tried the "Language & Region" solution multiple times, however it didn't work for me.
    I then went in to the keyboard, turned of Emoji and Spanish (I never turned Spanish on to my knowledge, so I am guessing that it added to my keyboards when I switched language. Search works like a charm in both the "Messages" search bar and the "Spotlight Search"
    Settings> General> Keyboard> Keyboards> English> QWERTY (I already had on QWERTY and never actually went to it, but just letting you know what mine is set on)

  • I can no longer search Apple Mail

    I can no longer search Apple Mail.
    I type my search criteria into the box, press return. Nothing happens.
    This used to work perfectly.  Any ideas?

    First, open the Spotlight preference pane and select the Privacy tab. If any folders are listed, remove them and wait for Spotlight to finish re-indexing, then test. Otherwise, see below.
    Step 1
    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Triple-click anywhere in the line below on this page to select it:
    syslog -F '$Time $Message' -k Sender mdworker -o -k Message Rne Norm -k Sender mds | tail | pbcopy
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    Paste into the Terminal window by pressing the key combination command-V. I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting.
    The command may take a noticeable amount of time to run. Wait for a new line ending in a dollar sign ($) to appear.
    The output of the command will be automatically copied to the Clipboard. If the command produced no output, the Clipboard will be empty. Paste into a reply to this message. 
    The Terminal window doesn't show the output. Please don't copy anything from there.
    If any personal information appears in the output, anonymize before posting, but don’t remove the context.
    Step 2
    Enter the following command as in Step 1 and post the output:
    mdutil -as 2>&- | pbcopy
    You can then quit Terminal.
    Step 3
    Launch the Console application in the same way you launched Terminal. In the Console window, look under the heading DIAGNOSTIC AND USAGE INFORMATION on the left for crash reports related to Spotlight. If you don't see that heading, select
              View ▹ Show Log List
    from the menu bar. A Spotlight crash report has a name beginning in "mds" or "mdworker" and ending in ".crash". Select the most recent such report, if any, from the System and User subcategories and post the entire contents—the text, please, not a screenshot. In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.)
    Please don’t post any other kind of diagnostic report, such as hang logs—they're very long and not helpful.

  • Why can't I search for words anymore?

    Ever since I installed Adobe ExportPDF, I can no longer search a PDF file for words

    Had the same problem. Turn phone off completely and restart. The search bar reappears.

  • I can no longer "send for signature" in Acrobat XI after Echosign update.

    I can no longer "send for signature" in Acrobat XI after Echosign update. Now when I click that option, up comes a box that asks me to enter the recipients email and their name. I did a test and it send it to the recipient without me being able to add signature boxes for the recipient in Echosign. It used to upload the document to Echosign and then I could position the recipients signature boxes before sending to them for their signatures...By the way, I use a Macbook Pro.

    I want to clarify. When I make a document (in my case a real estate form) I click the "sign" tab in Acrobat XI then "get others to sign." A blue box pops up and says "uploading to Echosign." This is normal so far. At this point, before the recent Echosign update, my browser would automatically open up to the Echosign website and show my document that was just uploaded. Then I was able to position signature boxes for the recipients. Now what happens is a box comes up on my screen and just wants me to send the recipient an email. See photo...

  • [CS3 JS] How to search for accented letters with GREP

    Hello,
    In the following script I have two words, each that has an accented letter. It appears that neither in the script nor in the Find and Replace dialog that GREP will recognize words with accents. It will replace accented characters however. I can do a search for words with no accents but that will lead to trouble when I only want to change the word if it has an accent.
    Any advice would be great!
    Tom
    var myDoc = app.activeDocument;
    var rawWordsAccented = ["André","Barrës"]; //find these words
    var rawWordsAccentedDHyphens = ["~-Andr\\x{00E9}","~-Barr\\x{00EB}s"]; //replacement words
    for(var k =0; rawWordsAccented.length > k; k++){
        var numWords = theGrepChanger(myDoc,rawWordsAccented[k],rawWordsAccentedDHyphens[k]);   
        }//end for k
    function theGrepChanger(docRef,grepFindIt,grepChangeIt){
        app.findGrepPreferences = NothingEnum.NOTHING;
        app.changeGrepPreferences = NothingEnum.NOTHING;
        app.findGrepPreferences.findWhat = grepFindIt;
        app.changeGrepPreferences.changeTo = grepChangeIt;
        var arrGrepFindIt = myDoc.changeGrep();
        return arrGrepFindIt;
    }//end theGrepFinder

    John, perhaps it works in CS5 but not in CS3.
    Peter, the problem is not in the replacement word or looping through that array backwards or forwards. The problem is finding a word with an accented character using the GREP mode.
    In using the Find/Replace dialog I cannot find André. Nor Andr\x{00E9}, using Unicode. So if the dialog won't work it appears a script won't work. If I use "Andre" in the Search field it will find "Andre" and "André."
    However I did find that if I change the GREP function in the script to the text mode I can find only words with accented characters and then replace them to my heart's content.
    Tom
    function theTextChanger(docRef,textFindIt,textChangeIt){
        app.findTextPreferences = NothingEnum.NOTHING;
        app.changeTextPreferences = NothingEnum.NOTHING;
        app.findTextPreferences.findWhat = textFindIt;
        app.changeTextPreferences.changeTo = textChangeIt;
        var arrTextFindIt = myDoc.changeText();
        return arrTextFindIt;
    }//end theTextChanger

  • I'm running Lion on a Late 2008 MacBook Air.  With no other applications running, I can no longer Check for Software Updates.  It gets abut half way through the checking process and then freezes.  The MBA passes Disk Utility. Thoughts?

    I'm running Lion on a Late 2008 MacBook Air. 
    With no other applications running, I can no longer Check for Software Updates.  It gets about half way through the checking process and then freezes. 
    The MBA passes Disk Utility. Thoughts?
    Thanks
    Jim Taylor

    How long do you leave it?
    Mine can sometimes sit for quite a while (maybe 10 minutes??) before it finally finishes.
    You could look at the relevant logs via Console (Utilities folder) to see if Software Update is complaining about anything.
    charlie

  • HT5278 MY 1st gen iPad has candy crush ---but it is stuck in "an update mode". My iPad can no longer acceptsupdates for any games beyond 5.1. Therefore, each time I try to access the game it goes into a "pause" mode. I would hate to delete the game becaus

    MY 1st gen iPad has candy crush ---but it is stuck in "an update mode". My iPad can no longer acceptsupdates for any games beyond 5.1. Therefore, each time I try to access the game it goes into a "pause" mode. I would hate to delete the game because I think I will lose my score. But I can't play the game either.  Can someone help me with this?  Can I go back to my last updated candy crush for my ipad, or do I have to delete it and start over?  Also, how would I get the one for my generation iPad

    I have a similar problem. But my iPad shows the connect iTunes screen and gives error 2001 when I try to restore it.
    My iPad's battery was fine but I didn't use it for like 2 weeks. It's battery would've discharged and it turned off. When I tried to charge through wall socket, it got into the restart loop where it would show apple logo and turn off. So I did the simultaneous holding of Home and Sleep buttons for 10 seconds or more. It started showing connect to iTunes.
    When I try to restore, the iTunes does the usual "extracting file" or something and go upto preparing for restore. But the iPad screen turns off from "connect to iTunes" and iTunes gives the error 2001, and the screen is back to connect to iTunes.
    Also, if I don't plug in, the iPad seems dead, doesn't wake up or anything.

  • My mac is infected with viruses, Safari can not normally search for constantly appear commercials and some unknown site. What to do? antivirus free program that you recommend?

    my mac is infected with viruses, Safari can not normally search for constantly appear commercials and some unknown site. What to do? antivirus free program that you recommend?

    You may have installed the "VSearch" trojan, perhaps under a different name. Remove it as follows.
    Malware is constantly changing to get around the defenses against it. The instructions in this comment are valid as of now, as far as I know. They won't necessarily be valid in the future. Anyone finding this comment a few days or more after it was posted should look for more recent discussions or start a new one.
    Back up all data before proceeding.
    Step 1
    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including any that have the word "Spigot," "Trovi," or "Conduit" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    Reset the home page and default search engine in all the browsers, if it was changed.
    Step 2
    Triple-click anywhere in the line below on this page to select it:
    /Library/LaunchAgents/com.vsearch.agent.plist
    Right-click or control-click the line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item named "com.vsearch.agent.plist" selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
    Repeat with each of these lines:
    /Library/LaunchDaemons/com.vsearch.daemon.plist
    /Library/LaunchDaemons/com.vsearch.helper.plist
    /Library/LaunchDaemons/Jack.plist
    Restart the computer and empty the Trash. Then delete the following items in the same way:
    /Library/Application Support/VSearch
    /Library/PrivilegedHelperTools/Jack
    /System/Library/Frameworks/VSearch.framework
    ~/Library/Internet Plug-Ins/ConduitNPAPIPlugin.plugin
    Some of these items may be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    This trojan is distributed on illegal websites that traffic in pirated content. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect much worse to happen in the future.
    You may be wondering why you didn't get a warning from Gatekeeper about installing software from an unknown developer, as you should have. The reason is that this Internet criminal has a codesigning certificate issued by Apple, which causes Gatekeeper to give the installer a pass. Apple could revoke the certificate, but as of this writing, has not done so, even though it's aware of the problem. This failure of oversight has compromised both Gatekeeper and the Developer ID program. You can't rely on Gatekeeper alone to protect you from harmful software.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • After search screen turns gray and can no longer search anything?

    After initial search screen on i pad goes gray and can no longer search anyhting. What did i do/

    Using Spotlight on the iPad or are you talking about Safari?
    If Spotlight, restart the iPad.
    If Safari...
    Go to Settings>Safari>Clear History, Cookies and Data. Restart the iPad. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.

  • I have a company Ipad that belonged to a deceased employee. no access to his icloud or appleID. how can I restore it for use with a new apple ID

    I have a company Ipad that belonged to a deceased employee. no access to his icloud or appleID. how can I restore it for use with a new apple ID?
    The apple ID was his personal account and can no longer gain access. Im sure I can get purchase recipts from the accounting department if needed. I tried to put the Ipad in restore mode and used itunes to "recover" the ipad but it still wont let me in because he registered the device with the "lost iphone" feature or whatever that is.

    Activation Lock in iOS 7  >  http://support.apple.com/kb/HT5818
    The Apple ID and Password that was Originally used to Activate the iDevice is required
    If you do not have that information you will not be able to use the Device.

  • I can no longer receive short videos in iMessage after downloading iOs7 on my iPhone 4 it says "Downloading", only 4.3MB in size

    I can no longer receive short videos in iMessage after downloading iOs7 on my iPhone 4 it says "Downloading", only 4.3MB in size

    I had the same problem today and was able to resolve it without having to do a restore or reset. The problem had something to do with my mail accounts. The upgrade reset my mail settings, switching both my gmail and my .mac mail to "archive all mail". I went into the General Settings, disabled that setting, and resynced the phone. The "other" storage allottment dropped back down to less than a gig.
    Before you restore or reset, I would try that first.

  • Can no longer find owners ipad on itunes to download my photos.  ????

    Can no longer find "owners ipad" on itunes to download my photos from my computer.  Have friends who have the same problem.

    Photos are not downloaded from iTunes.
    Import them from the iDevice to your computer as you would with any other digital camera and leave iTunes out of the equation.

  • When I try to print sth I can´t choose my printer. Adobe Reader only shows a printer I used years ago.I aleady deleted and reinstalled the Reader and deleted all other printers from the computer.How can I add a new printer to Adobe Reader?Thanks for help!

    When I try to print sth I can´t choose my printer. Adobe Reader only shows a printer I used years ago.I aleady deleted and reinstalled the Reader and deleted all other printers from the computer.How can I add a new printer to Adobe Reader?Thanks for help!

    Hi,
    I would suggest you to uninstall Adobe Reader using the cleaner tool and then re-install the latest version.
    Adobe Cleaner Tool:- Download Adobe Reader and Acrobat Cleaner Tool - Adobe Labs.
    Latest version of Adobe Reader:- http://get.adobe.com/reader/
    If you still experience the same issue, please share the following information:-
    - Screenshot of Adobe Reader showing printer options
    - Screenshot of Microsoft Word showing printer options
    - Screenshot of control panel- Control Panel\All Control Panel Items\Devices and Printers
    Regards,
    Nakul 

Maybe you are looking for

  • Is a controller really necessary?

    I just got Logic Express 8. I have an m-audio 61es that stopped working as soon as I bought it. If I get it fixed, could it work as a controller? I'm on a budget, so I fell like m-audio's iControl may be the only one I can afford otherwise. I'm a sin

  • How to use ServerSocket(int port, int backlog, InetAddress bindAddr)

    Hi all, For what we using bindAddr in this constructor, is it possible to give any IP for that argument (i know we can't), what are all the possible IP's we can give if our PC in a workgroup. One more thing when we need this type of constructor. Than

  • Can i give color ot check box in forms 6i

    HI is it possible to change the color of check box in forms 6i..?? i want to change the color of inner part of square of check box.. is it possible?? pls reply me asap .

  • Importing both JPEGS and Raw Files with RAW+JPEG In-Camera Setting...

    I normally shoot with the RAW+JPEG on my cameras, but Aperture only imports the CR2 file. What gives?

  • Computer crashes when installing itunes

    First I was having an issue where iTunes would quit every time I put a CD in (I tried with several CDs) I then tried to upgrade iTunes and halfway through the download my computer shut down. Then I started getting an error message every time I tried