Outline box when editing text in PDF using v8

We are running, Windows XP, Acro8 with updates. Created PDF files from within INDCS3. Many of the frames are independent.
When trying to edit the text using the touchup text tool in Acrobat v8, it outlines complete area on the form which are not the same as the frames in INDCS3.
Was this something new in v8 and how could this be removed via preferences.
KPanthen, Albany, NY

This started happening back in AA6 I think. It is not new.

Similar Messages

  • Editing text in PDFs - only the numbers are missing the font

    When editing text in a PDF (created in InDesign), I can edit all the text EXCEPT for any numbers. When I try to input a number, I get the message "The original font XXXX is not available or can't be used in editing. Acrobat is using the font Arial in its place". It then places other characters in its place - not sure what they are but they're not numbers. Anyone have any idea what is causing this?

    Sorry, I found my answer here:
    https://forums.adobe.com/thread/1582291?q=arabic%20numbers
    Apparently, the HINDI DIGITS checkbox under Preferences\Languages is by default checked. This ridiculous default resulted in Arabic numbers when editing the PDF in Acrobat. Editing text was fine, but whenever I would type in a number, it would appear as Arabic characters.

  • Paid to allow edit text in PDF, and not working

    I wanted to 'edit' text in PDF and followed the instructions, it told be to subscribe and pay to do this.  I did subscribe and pay, but the functionality is still not working, keeps directing me to subscribe and pay.

    Hi rrobati,
    I checked your account,your Export PDF subscription is not confirmed yet at our end.
    Once it gets confirmed you will be able to use it hassle free.
    Regards,
    Florence

  • Ary you try to tell me that Illustrator can't have a outline stroke on editable text?

    Ary you try to tell me that Illustrator can't have a outline stroke on editable text? Corel Draw have this.
    I don't want to change to curves my text every time. I want it to e editable.
    Why I can't use a outline stroke on text?

    AU2,
    You can just select the live Type with the (normal) Selection Tool, then click Add New Stroke in the Appearance palette flyout. After that you can select it with the (relevant) Type Tool and edit as you like.

  • Edited/commented on PDF using Adobe Reader iphone 5 and e-mailed to myself so I could review on PC laptop.  I opened on laptop and although I could see the comment bubbles, I was not able to open them to see the comments.

    Edited/commented on PDF using Adobe Reader iphone 5 and e-mailed to myself so I could review on PC laptop.  I opened on laptop and although I could see the comment bubbles, I was not able to open them to see the comments.

    Back to life**
    Oh I know there are many other vocabulary mistakes but never mind them I was just too excited when I wrote all of that while typing very quickly
    P.S: if you have any question then ask and please do tell me if it works or not with u but I'm definitely sure it'll work so tell me this and we'll get excited together
    Also if you have an experience to share then do share it as well please.
    Peace

  • When I print to PDF using Acrobat 11 Pro from any application the acrobat Reader does not launch automatically. Associations are correct. Thx for your help,  Bruce

    When I print to PDF using Acrobat 11 Pro from any application the acrobat Reader does not launch automatically. Associations are correct. Happens from Chrome, IE, Word, Excel, Powerpoint. Previously had deskPDF installed but uninstalled correctly. Can't find a preference setting for the auto launch. Thx for your help,  Bruce

    A simple way is to flatten the form fields, which converts the field appearances to regular page contents. You can do this with JavaScript or PDF Optimizer (Advanced > PDF Optimizer > Discard Objects > Flatten form fields). A very nice script that adds a custom menu item can be found here: http://www.uvsar.com/projects/acrobat/flattener/

  • Extract Text from pdf using C#

    Hi,
    We are Solution developer using Acrobat,as we have reuirement of extracting text from pdf using C# we have downloaded adobe sdk and installed. We have found only four exmaples in C# and those are used only for viewing pdf in windows application. Can you please guide us how to extract text from pdf using SDK in C#.
    Thanks you for your help.
    Regards
    kiranmai

    Okay so I went ahead and actually added the text extraction functionality to my own C# application, since this was a requested feature by the client anyhow, which originally we were told to bypass if it wasn't "cut and dry", but it wasn't bad so I went ahead and gave the client the text extraction that they wanted. Decided I'd post the source code here for you. This returns the text from the entire document as a string.
           private static string GetText(AcroPDDoc pdDoc)
                AcroPDPage page;
                int pages = pdDoc.GetNumPages();
                string pageText = "";
                for (int i = 0; i < pages; i++)
                    page = (AcroPDPage)pdDoc.AcquirePage(i);
                    object jso, jsNumWords, jsWord;
                    List<string> words = new List<string>();
                    try
                        jso = pdDoc.GetJSObject();
                        if (jso != null)
                            object[] args = new object[] { i };
                            jsNumWords = jso.GetType().InvokeMember("getPageNumWords", BindingFlags.InvokeMethod, null, jso, args, null);
                            int numWords = Int32.Parse(jsNumWords.ToString());
                            for (int j = 0; j <= numWords; j++)
                                object[] argsj = new object[] { i, j, false };
                                jsWord = jso.GetType().InvokeMember("getPageNthWord", BindingFlags.InvokeMethod, null, jso, argsj, null);
                                words.Add((string)jsWord);
                        foreach (string word in words)
                            pageText += word;
                    catch
                return pageText;

  • Editing text from pdf file

    how to edit text from pdf file?

    Adobe Reader does not allow editing the text of a PDF document. You will need to get Acrobat on your Windows or Mac to do that.

  • Firefox not displaying buttons and boxes when allow other pages to use their fonts instead of my selection is selected

    Firefox not displaying buttons and boxes when allow other pages to use their fonts instead of my selection is not selected. The irritating thing is that Firefox used to display pages until FF 31. Please fix this
    Thanks
    Randy

    The missing icons are supplied by a font that is downloaded from the server (@font-face) as you can probably see by little boxes that show the hex code of the characters.
    You will have to make sure that you allow pages to choose their own fonts to see such an icon font.
    *Tools > Options > Content : Fonts & Colors > Advanced: [X] "Allow pages to choose their own fonts, instead of my selections above"

  • How to read line number text from PDF using plugin?

    Hi, I would like to know how to read line number text from PDF using plugin?
    Thanks in advance.

    Ok, some background reading of the PDF Reference will help you understand why this is so difficult. PDF files are not organised into lines. It is best to think of each word or character on the page as being a graphic with its own position. The human eye sees lines where a series of graphics (words) are roughly in the same horizontal region.
    In the general case it is difficult or even impossible to answer this. You may have columns with different spacing (but the PDF stores no information on what is a column). You may have subscripts and superscripts. You may have text in graphics coinciding with other text. Commonly, there may be titles, headings or page numbers which are just ordinary text and might count as lines.
    That said, what you need to do is extract the text on the page and its positions. The WordFinder APIs are the way to do that. Now, sort all the words out, using the Y coordinates and size to try and guess what makes a "line". Now you are in a position to find the text (divided into words, not strings) and report the "line number" you have estimated.

  • Need to edit text in pdf file created in Illustrator CS6

    I need for someone else to be able to edit text in a pdf I created from Illustrator. They have full acrobat and should be able to edit it. I have tried it myself to test before sending it but it's not working. The original file was created in Illustrator CS6 and saved as a pdf (text has not been created outlines). I opened the file in acrobat and saved it out as an extended file to be able to edit the text but no luck. Need to be able to highlight existing text and change it. I have tried edit text tool but instead of a selection box around each line of text, it puts a selection box around all of the text. I can highlight the text and delete it but am unable to change it. Each individual text line needs to be editable. Is there something I need to do differently in Illustrator to get it to work correctly in Acrobat?
    If it helps- the file is a calendar and they need to be able to change the dates and events that are already there.

    This really isn't a suitable use of Acrobat. You should all be using the same editing tool (i.e. Illustrator).
    Extending files reduces the amount of editing Acrobat can do, it does not increase it.
    The tool to edit text from Illustrator would be Edit Document Text. There is no guarantee it will break up nicely into lines, it's trying to help by making paragraph text.
    Conceivably you could use a form for this (fill in the blank for dates) but really, you should be using the same tool. Not necessarily Illustrator, more Excel or specialist Calendar software.

  • How do I edit/convert a pdf using Acrobat Pro?

    I am trying to convert/edit(not sure of the proper term to relay my dilemna; my experience with Acrobat Pro and pdf's is limited.) a pdf file.  I want to use edit some of the content on the document.  I am aware of the "typewriter" tool and have used this in completing pdf documents fo "fill in" the blanks (ex: completing an application); however, this will not work when I try to edit the actual content.
    Does anyone have any suggestions?  Keep in mind you HAVE to use very "simple" language when explaining to me how I do this, ha!
    Thank you for any suggestions you may have.

    Maybe you need to remove your PDF security so then you can edit it. Adobe Acrobat cannot edit the limited PDF files.
    Remove the PDF security
    I am now using Adreamsoft PDF eidtor, With this smart PDF edit software, you can edit the text, images, annotation, layouts and pages of a PDF file. And you can also edit a PDF file by setting security password.

  • How can I edit text in pdf?

    newbie here to editing text in a pdf. I make a document in InDesign and exported it into a pdf. I tried to change the text in the pdf, using the touch up tool but it won't let me change it. What am I doing wrong?

    That depends on what type of edits you want to do.
    You can use the touchup text tool to make some changes to text (this assumes that the person on the other end has the exact same fonts installed). The touchup object tool can be used to remove images...Have them look under the "tools" menu to see what is available. Different ones are there depending on their version of Acrobat.
    Why are you having them make edits (just asking to see if there is a better way of doing this because really, you don't want to go down this road)?
    Do they really need to make edits or are they just marking up changes they want done in the document so you can do them? If that's the case, have them use the comment tools.
    There are way too many things to go wrong when you start editing PDF's. They really should be considered simply a digital piece of paper and nothing more.

  • InDesign becomes unresponsive when editing text off the network. Techs are flummoxed!

    Recently my InDesign (CS6 running on Windows 7 Pro 64 bit, 8gb ram) has become almost totally unresponsive when I go to open and edit a file off the company network. Our techs have no idea what is going on and are considering having to re-build my profile as a last resort as we have tried everything else.
    A bit more of a descriptoin of the problem: When I go to edit an InDesign file off the server it first takes longer than normal to load but eventually does. You can scroll up and down the pages, move and resize boxes, place new pictures but as soon as you try to do anything text based (edit new text or make a new text box) the whole program freezes to the point you have to task manager out and kill it. It is not a corupt file because if I copy the file directory with all links over on to my computers local hard disk the file works totally fine it is only when editing over the network and when edouble clicking to edit text.
    What we have done to try and fix the problem:
    Reinstal InDesign - No effect
    Cleared the preferences (shift + ctrl + alt + windows key on InDesign startup) - No effect
    Our techs have tried editing my profile registry to no avail and we are all compleatly at a loss to what is going on. There are several other instances of the program across the company (mainly versions 5.5 and one other 6) and they all work fine editing files straight off the network.
    Anyone have any idea what it could be, such a specific problem being only when it is editing text based areas? The techs dont want to have to re-build my profile as it is a lot of back end work to do to be able to re-instate it straight away.
    Many thanks in advance for any insights into the issue

    So we have finally fixed the issue and are currently cracking out the bubbly!
    It turned out to be the network path shotcut I was using to access the shared drive where I was editing the files from. I work for a restaurant so we have a shared drive where each site can access their files, this is where the food menu files reside and I had created a shortcut that, although accessed the correct area did it using a path which had a double backslash in it.
    The true path for the shared drive is  \\hm\mydocs\restaurant\menufile.indd and this is the shortcut I was using to open the file up from. For all other files like Word, Excel, even other Adobe programs like PSE10, and Lightroom it seems to work fine. For some reason InDesign does not like this path with the double backslash in. As soon as I changed the shortcut path to just m:\ (the letter of the shared drive on the network) everything was working again and we can all sleep, it was driving us mental. Re-installed windows, InDesign created a new network user profile the works.
    I hope this may help someone else in a similar situation in the future

  • Editing text in pdf file

    I just bought Adobe Acrobat and was told that I would be able edit text in a pdf file I open. However I can't figure out how to do this?
    I can select the text but can't edit/change it?

    The Adobe Reader for SymbianOS isn't a PDF editor. You'd need Acrobat
    for that, using the Text Touch-up Tool.
    Aandi Inston

Maybe you are looking for

  • Time out not working in program

    Hello all, I have a program that is not timing out after 2 or 3 hours of on-line execution. I have checked that the parameter abap.timeout and it is set to 5200 secs. I have been told that a commit work or a message statement will reset the timmer th

  • 10.5.8 install issues on an external drive

    I did a fresh install of Leopard onto an external drive I keep for emergencies (I never installed it there -- it's been on Tiger for a while) and ran the update after I booted with that as a startup drive. And now I don't have an external bootable dr

  • DB access in Web Dynpro application in Portal

    Hi, I will develop a web dynpro application which will run in the EP and use an DB. How are the best practices in this scenario ? Should I use a Web Dynpro Model (EJB or WebService) for the persistence operations or should I use Portal Services ? Reg

  • Need Help in Java 6 - Webservices

    Hello, Im creating webservices application using NetBeans 5.5.1,Platform version Java Se 6. Im using the example from this site http://java.sun.com/developer/technicalArticles/J2SE/jax_ws_2/* ,When i deploy the application,its display the below error

  • Convert PDF to TIFF

    Is there any way to convert a PDF file to a TIFF file within SAP? I have only found the ontherway around, which is not useful in my case Thanks in advance.