My edits are not being accepted or saved

I am having issues with editing a PDF file, scanned from paper hardcopy and then edited in Adobe Acrobat X Pro.  I am able to edit fields either via Content>Edit Text, or also have tried using Recognize Text and OCR Suspects function on this document.  I am able to find the highlighted text I want changed, make the changes by overtyping the values, but, when I the "Accept and Find" button, the old values reappear and my edits do not take or save.  What am I missing?

You are very likely not using ClearScan as your OCR, but searchable image. The latter will always display the image and not the text that you have edited. At least that is a guess.

Similar Messages

  • Anti spam codes for website forms are not being accepted on my imac or iPad

    anti spam codes for website forms are not being accepted on my imac or iPad

    In Safari go to preferences click on privacy and on Block Cookies tick the never box

  • I am not being able to create my apple ID as my card details are not being accepted by the app store. i tried with my visa card as well as master card. help me out to solve the problem..

    I am not being able to create my apple ID as my card details are not being accepted by the app store. i tried with my visa card as well as master card. help me out to solve the problem..

    Were the VISA and MasterCard issued to you by a bank in the country where you reside and do they have a verifiable billing address in the same country?
    Or are these debit cards that you bought in a local store. Apple does not accept debit cards that you bought.

  • My contacts from my iphone 4S are not being uploaded and saved to iCloud.

    Why are the contacts that are on my 4S iphone NOT being uploaded and saved to iCloud contacts?  Yes, contacts toggle is turned to "on" on my phone.  Yes, I have updated manually while plugged in and connected to my WiFi as well as left it plugged in and locked to automatically update iCloud.  Still no contacts in my iCloud folder even though I have 379 contacts sitting on my phone.

    I'm no expert by far, but have had issues with this before.
    IMAP should allow your iPhone to remove messages from the server.
    But have you made sure both the iPhone and Outlook are connecting via IMAP?
    If your iPhone does remove the messages from the server, but your computer is using POP, then the computer may download the email before it is removed form the server by your iPhone.
    This was my issue, that my computer had already downloaded the message, and POP does not check later if it is deleted.
    If you delete a message from Outlook does it disappear on the iPhone?
    Alternativly you may need to check the email server settings.
    Who is your email provider?
    They may be able to check if IMAP allows you to remove emails.

  • HT1473 I am attempting to import my CD's but I'm finding some songs and albums are not being accepted.  Any ideas what I'm doing wrong?

    After attempting to import music from CD's I am seeing that some of the tracks are not listed in my iTunes library and in some cases, whole albums are missing.  Any suggestions on what I am doing wrong or how to correct?

    Now that we've established that you have the CD correctly imported into iTunes, we can move on from there.
    Connect the iPod to iTunes. When it shows up as a Device (in the left window of iTunes) select it. You will be looking at the Summary tab (or pane).
    On this pane, my choice is to have the option to Sync only ticked songs and videos selected. I recommend this option for you. This is relevant to the next step.
    At the top of the pane select Music. On this pane, check the options for Syncing. You need to have Sync Music selected and then choose either Selected Playlists (which will only put your choice of Playlists onto your iPod) or Entire Music Library. If you select "Entire Music Library" then all your songs (one exception) will be transferred to your iPod.
    The exception is: if you un-tick a song in your iTunes Library, then at the next Sync, it will be removed from the iPod but kept in your Library.
    Any luck?

  • HT1904 I HAVE SPOKEN WITH APPLE AND THEY HELPED ME AS I HAVE CANCER AND THIS IS MY COMFORT THE VIDEOS HELP TAKE AWAY MY PAIN,NOW THE ID AND PASSWORD ARE NOT BEING ACCEPTED AGAIN IHAVE HAD SAME FOR TWO YRS .

    I am having a problem with loging in to my apps as i have had same id and password for all and for two years . youtube music video's helped get through the pain of cancer and the computer help me conect to my friend then i went to mail and i was recieving nothing my doctors all have same passwords and lawyers ,and it would be hard and i could never remember many password changes as i was fine with   ,now this is second time google caused this problem and said i must change password as i belived again and did with out anyone accepting it .i con not recieve mail, or go to face book,or google search as was my only browser and they will not accept my id as they say it is wrong as does all othe web sites as well as youtube i am at a loss . please help me .   Sincerely Debra Rossi Jones
    <Email Edited by Host>

    We are fellow users here on these public forums, you're not talking to iTunes Support - I've asked the hosts to remove your email addresses and password from your post. If that is your current password that you've posted for everyone to see then you should change it IMMEDIATELY.
    I'm not sure that I understand all of your post. By 'google' do you mean your gmail email accounts ? If you do then how are you trying to access your email, via the Mail app and/or another app on your phone, the Mail program or a browser on your Mac ? If you are using the Mail app on your phone and you've checked your email account's password then you should be able to add that new password on your phone by tapping on the email account in Settings > Mail, Contacts, Calendars, then tap on the 'account' at the top of the next screen, and you should then be able to enter the new password. If you are using the Facebook app on your iPhone, and you've changed the password for logging into Facebook, then you should be able to update it on your phone via Settings > Facebook
    If you are using the Mail app on your Mac, then to change your gmail password in it (assuming that you've changed the password for it) then go into Mail > Preferences (command-comma), select the Accounts tab on the preferences, select the gmail account on the list of accounts, and on the right-hand side of that screen you should be able to update its password.
    If the problems are on your Mac then you might be better off re-posting in one of the other forums (e.g. Safari, and there are forums for various Mac OS X versions), and there is also a Using iPhone forum - this forum is for the iTunes Store e.g. buying, downloading content from iTunes.

  • Start/End Tags are not being accepted by parse if null.

    The is my database version:
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE    11.2.0.2.0      Production
    TNS for Solaris: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - ProductionWe have a new application that pretty much generates the xml tags. The sending system uses two tags even when a NULL value is being sent. However the Oracle parser does not like it. We get this error:
    ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00231: invalid character 47 ('/') found in a Name or Nmtoken
    Error at line 1When I receive a list of parameters as a clob, I then cast it as xml for processing. When I use a tag like <phase/>, the xml parser accepts it. However, when I put into the format being sent <phase></phase> to signify a NULL value. The following is the code snippet that generates the error.
    vXmlDoc := XMLTYPE(pSearchParams_Tx);My question is there any way to allow the xml parser to accept the default format that is being sent in? Perhaps is the some sort of pre-processing that would allow the sent in format to be used? Thank you.

    I'm not sure I follow fully. I don't have 11.2.0.2 to test against, but I do not encounter any issue with this simple example
    Connected to Oracle Database 11g Enterprise Edition Release 11.2.0.3.0
    SQL> set serveroutput on;
    SQL>
    SQL> declare
      2    pSearchParams_Tx   CLOB;
      3    vXmlDoc            XMLTYPE;
      4  begin
      5    pSearchParams_Tx := '<phase/>';
      6    vXmlDoc := XMLTYPE(pSearchParams_Tx);
      7    dbms_output.put_line('Done 1');
      8    pSearchParams_Tx := '<phase></phase>';
      9    vXmlDoc := XMLTYPE(pSearchParams_Tx);
    10    dbms_output.put_line('Done 2');
    11  end;
    12  /
    Done 1
    Done 2
    PL/SQL procedure successfully completed I get the same thing on 11.1.0.6 as well.
    Do you have a code example that demonstrates the error?

  • My 2009 macbook microsoft word documents are not being accepted as files.

    My 2009 Macbook seems to be falling behind. Using Mac OS X (Version 10.6.8) and Microsoft Word for Mac 2008 (version 12.3.6).
    For some reason, my files do not work online. They are "invalid." For example, "invalid file type" popped up on my school online dropbox and my online grad school application. My files are, however, in the correct (doc, docx, pdf) file types. I had to go on campus and use a PC to upload assignments and applications.
    Not sure if it's my software or old word version.
    Anywho, I just need some answers!

    Regardless of what system you are on (Windows/Mac), a filename extension is required when transferring files online. This was noted in the error message of your initial post:
    No File Extension For This File **File  Name**
    Make sure this  file has the correct extension.
    You would have had the same problem on Windows if you neglected a filename extension.
    It might be a bit more likely to accidentally save a file without an extension on Mac because Mac has been able in the past to work without filename extensions.  This is changing. Everyone should be using filename extensions if they expect to effectively share files.

  • My Apple ID and password are not being accepted by my iphone?  I have reset and reset these items but to no avail!  Thanks

    I have tried and tried to reset my Apple ID and password and on each web page (under Itunes) it has shown that the information was completely reset and no problems were noticed.  When I have put this information into my iphone 4 in order to download my (now 35) updates, the phone says that the password is not correct.  I have seriously attempted each step of these two processes at least 20 times but to no avail. Please help and thank you all for sharing.

    Maybe the apps were downloaded using a different Apple ID.
    Check using iTunes > Get Info on one of the apps. 

  • My serial number for creative suite CS3 production premium student edition is not being accepted.

    I forgot to deactivate it on my last computer before selling it. I now do not have access to it. I am wondering if this is why it won't work. now what do i do? there does not seem to be a phone number advertised that I can call.

    Unfortunately, phone support isn't available for CS3 however you can start a chat by selecting Photoshop from the list here: Contact Customer Care.

  • I've been editing images with ease for a long time but now the changes are not being saved.

    I've been editing images with ease for a long time but now the changes are not being saved.
    Also, it is not liking me adding a large ammount of images in one go?

    Remember: we cannot see your machine. There are 9 different versions of iPhoto and they run on 8 different versions of the Operating System. The tricks and tips for dealing with issues vary depending on the version of iPhoto and the version of the OS.  So to get help you need to give as much information as you can. Basic things like :
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. As full a description of the problem as you can. For instance: 'iPhoto won't export' is best explained by describing how you are trying to export, and so on.
    - History: Is this going on long? Has anything been installed or deleted?
    - Are there error messages?
    - What steps have you tried already to solve the issue.
    - Anything unusual about your set up? Or how you use iPhoto?
    Anything else you can think of that might help someone understand the problem you have.

  • HT4075 I tried the steps mentioned above but the changes are not being saved.

    I am not able to edit or merge PDF files. I followed the steps mentioned in the Mac support community but the changes are not being saved. Any solution to this?

    The link you posted gives be a 404 not found message. 
    The reason you're getting the repeat is because your site name is wilgenroos.nl and the first page of your site is wilgenroos. 
    The standard URL for domain names that are forwarded with the CNAME method is:
    http://www.domain_name.com/site_name/page_name.html.
    You can change the site and page names in iWeb to give you something more informative about the site and page.
    If you're publishing to a  3rd party server and want to get rid of the site name in the url and only have
    http://www.domian_name.com/page_name.html
    do the following:
    publish the site to a folder on your hard drive (already done)
    use Cyberduck to upload just the contents of your site folder to the root folder of your account on the server.
    You should delete the old site folder and files that are currently there beforehand.

  • Messages are not being saved on N96

    On my N96 I have set save sent messages and receive report as 'yes' but after updating firmware (20.050) messages are not being saved.Is there any solution to someone.

    I have exactly the same problem with my N95 but I can't really say when it started. Suddenly I just noticed my phone didn't save sent messages anymore and hadn't done it for some time, but can't really tell after what it started to occur. Really strange problem, not even reseting back to factory settings helped - after I put "receive report" option back it stops saving sent messages to sent folder. Actually if I go to "sent" folder quickly after sending the sms, it shows there for little moment before disappears. Really strange. I couldn't google any other information about this problem than this topic.

  • Notes are not being Saved

    Recently upgraded to an iPhone 3G S from the first generation iPhone. Synced my phone and everything is fine, but when I use the Notes application the notes are not being saved. Anyone know of a way to fix this?

    Ensure that the "sync notes" box is checked in iTunes. Also note that the notes syncing feature doesn't work very well yet.
    If you have a note on both the phone and the computer, and you change/update the one on the phone, the next time you sync the computer version will over write the phone version.
    coop

  • Settings are not being saved when i reboot

    i am having a problem when i restart my computer my settings such as dock settings background settings are not being saved how do i resolve this problem?

    Welcome to the Apple Discussions!
    Is this just for new settings that won't stick? Or have all your original settings reverted to the defaults? Have you started up from your Mac OS X install disk and used the Disk Utility to "repair disk"? Do you have a backup of your important files?
    -Doug

Maybe you are looking for

  • SAP R/3 - START ERROR

    Hello guys! After installation of SAP, I am with problems in hours of the start of sap. Below the Log: b8aix10:qasadm 8> startsap Checking DB6 db Database ABAP Database is not available via R3trans Checking DB6 db Database Starting SAP-Collector Daem

  • Using stylesheets right

    Hi guys, for a GUI i wanted to use a stylesheet to save code but i have some questions in how to use it. 1. Is it possible to make elements position flexible? So if i expand the scene the element will still be at xpos = 10% of Scene size or something

  • RSVP Issue

    Hello everyone, I have a question about the RSVP Agent, and CUCM RSVP CAC. I have 128 kbps Frame Relay interface, with 1 DLCI connected to other peer Router. CUCM is configured with all the necessary Locations for RSVP, with MRGL as well. interface S

  • MV Query RE-write and Interactive reports

    did any you of try queries that do a query re-write on your MVs in Interactive reports in apex 3.1? bharat

  • Problems on 2011 Mac Mini....Help Needed Please!

    Hi, I have an entry level 2011 Mac Mini (base model but with 8gb ram installed), I bought it in early August. It has just started being very unresponsive, crashing, locking up, multi-coloured timer, finder crashing. I have a magic trackpad/wireless k