Cannot Save as Plain Text

I am unable to Save As to Plain Text. Need to convert PDF to Plain text. I can Save As Word, but I need to save as plain text.
When it converts and the new text file is opened it is empty.
Jill

If you are using Acrobat 10 or 11 Pro try using "Recognize Text" -- on this file. 
Maybe the document was scanned. A scanned document does not contain any text, it is just a picture. Recognize text will do Optical Character Recognition (OCR) on the document and then you can save as text.  You will have to watch for errors in the OCR.  Sometimes it has difficulty discerning the characters.

Similar Messages

  • How to programmatically Save As Plain Text

    I want to programmatically get the same output that Adobe gives me when I choose File -> Save As and select Text (Plain) or choose File -> Export -> Text -> Text (Plain).
    I have tried other programs but none so far give me the same text as what Adobe gives me. I have tried looking through the SDK and don't see where this can be done. If anyone knows of a program that does this or knows where in the SDK this can be done that would be great.
    Thanks

    The AVConversion APIs in plug-ins give access to the save as formats
    (except PDF).
    Aandi Inston

  • I have 14 address labels on a sheet. I want to amend an entry but I cannot save the new text onto the existing document. Any ideas?

    I have 14 label addresses on a sheet. I cannot amend the text and save it to the original sheet. It just ignores the changes. Has anyone got any ideas how this can be done?

    Be specific, stop beating around the bush.
    Is it Microsoft Works or not?
    If this is just address labels, why not just take the text and put it in a clean Pages template?
    You don't have to convert specific files unless there is some incredibly intricate and worthwhile layout involved. Labels are mostly just text, with possibly some graphics in boxes, Not very complex at all.
    Peter

  • Plain text editor that will open html correctly in browser

    TextEdit isn't the answer. If I save a plain text document full of html code as a "web page (html)" doc, it displays as plain text code in the browser rather than translating the code as a web page. I cannot save it as a .txt doc - the option is not available. If I save it as a .odt, I cannot then append .html to the file. So really, it ***** as a coding app. Isn't there a plain text option for Mac that works just like Notepad (or like SimpleText from years ago)?

    dramaguru wrote:
    If I save a plain text document full of html code as a "web page (html)" doc, it displays as plain text code in the browser rather than translating the code as a web page.
    This is because what you're doing causes it to think that the code is the content of the page.
    You must work in Plain Text mode: when you have completed your code use Save As and save it as filename.html - you will get a dialog box offering to add .txt on the end, but you should decline the offer. This will work perfectly well.
    It's a very useful way of making simple alterations to code: if you want to go for something more advanced you might like to look at PageSpinner ($29.95, trial period available) which gives you colouring dependent on the type of code, pre-formed code to add it, and a live display of the result using Webkit (as in Safari).

  • Saving plain text on a mac (Keyboard shortcuts file)

    Hi there perhaps some mac users can help me...
    I am manually editing the keyboard shortcuts file in TEXT edit on a mac (Im a pc user). I open the file as plain text  all the rich text stuff turned off.
    (Looked up how to do this.)
    I edit one of the shortcuts, no unusual characters etc.
    When I restart CC, it gives an error and shows squiggley characters at that line as the problem.
    On a pc I just edit and save as plain text and there are no issues...
    What am I doing wrong on a mac in Text edit ?
    Thanks Alan.

    The issue you are encountering might be related to how TextEdit handles line endings?  Not sure, but have you tried using the KeyedUp script to edit shortcuts?  I used it for CC and it seems to be working fine.
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&extid=1698043
    Hope that helps,
    Arie

  • Simple text Editor App.. Saving Plain Text

    Hi All,
    I am trying to write my first text application in cocoa... I have got a working app from an Apple tutorial, however when saving, it uses the following:
    Code:
    - (NSData *)dataRepresentationOfType:(NSString *)aType
    NSData *data;
    [self setString:[textView textStorage]];
    data = [NSArchiver archivedDataWithRootObject:[self string]];
    return data;
    Which saves the content as not plain text. Is there anyway I can change the above to save as plain text ?
    Any help / direction would be great! Thanks,

    Perhaps something like this will work for you:
    NSString *s = [textView string];
    NSData *data = [NSData dataWithBytes: [s UTF8String] length: [s length]];

  • How can I save an email as plain text when the save as is greyed out?

    How can I save an email message as a plain text document if the saved as command is greyed out? I am using OSX Mountain Lion. Macbook Pro thanks.

    OK, but is it happening to you with all messages or just some messages? If just some, can you characterize which ones? (Maybe messages with only one "alternative*" form, or with the "wrong" alternative for displayed, or messages containng images but no text?)
    * By "alternative" form, I mean in the sense of Mail > View > Message > Previous Alternative or Next Alternative or Plain Text Alternaive or Best Alternative.)
    Similarly, can you characterize the circumstances under which you cannot save an attachment?

  • How do I save e-mail content on my MacBook Air,so I may print them as plain text?

    How do I save e-mail content on my MacBook Air, so I may ptint the content as plain text?

    10.7 Lion
    http://support.apple.com/kb/PH4858
    10.8 Mountain Lion
    http://support.apple.com/kb/PH11746

  • How do I save mail in rich/plain text with attachments?

    I installed Mavericks last night and see (as I expected) that the save mail with attachments in rich text or plain text function in Mail is still broken, as it was with Mountain Lion for the whole of its life, even through updates. Anyone know how to fix this if Apple won't?

    Hi,
    Currently we send emal notifications as html format by default. but you can change it as plain tex or rich text when you forward or reply the email.
    OR you can use this form to "vote" on popular feature requests, or to add a new one of your own:
    https://adobeformscentral.com/?f=XnF-KJVCovcEVQz9tZHYPQ
    Thanks,
    Guanshuai

  • Save results of javascript operation to a plain text file

    Hi,
    How do you save to a file using Acrobat javascript? Not a PDF file - I know how to do that - but to a plain text file.
    I have javascript that searches through a PDF document and generates some output. I can send the output to a Report (in PDF format, obviously) or to the console, but I can't see how to send it to a plain text file, which is what I need.
    Any assistance gratefully appreciated.
    Thanks,
    Tim.

    Ah, great, yes that seems to do what I want.
    However, I get an error ...
    My code is as follows:
    function CreateOutput()
         // assembles text and puts it into the variable: output
         // e.g.:
         output = "Hello, world";
    var output = "";
    CreateOutput();
    this.createDataObject("testfile.txt", output);
    Unfortunately I get this error and I don't understand it!
    InvalidGetError: Get not possible, invalid or unknown.
    Doc.pageNum:6:Batch undefined:Exec
    Obviously I'm doing somethign wrong ... but what?
    Thanks very much,
    Tim.

  • Save pdf file as plain text using VBA

    I am looking to save a pdf file as plain text through VBA, however I am getting the error "Security Settings Prevent access to this property or method". I had this code working in a trial version of acrobat 9.0, but I now have a licensed version through my company of Acrobat 7.0 Standard and it is not working, even after I cahnge the object reference.  Please help!
    Here is the code I am using in VBA:
    Dim AcroXApp As Object
    Dim AcroXAVDoc As Object
    Dim AcroXPDDoc As Object
    Set AcroXApp = CreateObject("AcroExch.App")
    AcroXApp.Hide
    Set AcroXAVDoc = CreateObject("AcroExch.AVDoc")
    AcroXAVDoc.Open strPDFPath, "Acrobat"
    AcroXAVDoc.BringToFront
    Set AcroXPDDoc = AcroXAVDoc.GetPDDoc
    Dim jsObj As Object
    Set jsObj = AcroXPDDoc.GetJSObject
    jsObj.SaveAs strOutputFile, "com.adobe.acrobat.plain-text"
    AcroXAVDoc.Close False
    AcroXApp.Exit

    Unfortunately, Acrobat 7 is no longer supported.

  • How to save plain text attachments

    I often get email with plain text attachments (e.g., source code).
    Mail tries to be smart and displays the attachments in the body of the mail.
    But I wold like to save them as usual. I can't even control-click on them
    Does anyone have an idea what I can do?
    TIA,
    Gabriel.

    I guess I should've said that up front:
    Yes, I can highlight the text and save it in TextEdit, but that's way too tedious , because I get a lot of emails with several text attachments, and I have a hard time figuring out the boundaries between text attachments ...
    Best regards,
    Gabriel.

  • Cannot paste text from Safari as PLAIN TEXT

    Safari 2.0.4 on Mac OS X 10.4.9.
    Text copied from some web pages like
    http://www.eloquentsw.com/livedictionary.html
    cannot be pasted as plain unformated text. For instance, into Eudora Headings (which should paste it as plain text) or using Shift Command V to paste (which should paste it as plain text).
    But if I copy such text, paste in a web form like this and then copy from here, then it pastes as plain text.
    No problem using other browsers like Firefox. The issue only arises with Safari.
    Any idea? Thanks.

    You might be stuck, then, unless someone else knows a keyboard shortcut that does what you want.
    My workaround for problems like this has always been to paste into a plain text editor (like BBEdit or TextWrangler), then copy and re-paste into the target document. Yes, it's a workaround, but it does work.

  • Text Edit Question:  How Do I Create/Save PLAIN TEXT??

    I've been using Macs now for over a year, and this is still an annoying quibble that I haven't sorted out. I don't know if this is the right place to raise this question or not, but there don't seem to be any other places for it, so it goes here.
    How do create and save a simple, plain text, no code, no embellishments, file using this "TextEdit" program?
    I'm familiar with Notepad in Windows. Used it for a million things for years and years. All it would do is "plain" (i.e. ascii) text. No frills whatsoever.
    No I guess TextEdit is the Mac equivalent of Notepad? But it wants to do both "plain text" and "Rich Text Format," and apparently I haven't learned how to keep them separate.
    I created a new file. I told it to make the file "plain text." Then I typed some stuff, saved and closed the file.
    But when I reopened the file, I found all this crap in the header:
    {\rtf1\ansi\ansicpg1252\cocoartf949\cocoasubrtf330
    {\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 LucidaGrande;}
    {\colortbl;\red255\green255\blue255;\red41\green81\blue169;}
    \margl1440\margr1440\vieww9000\viewh8400\viewkind0
    \deftab720
    \pard\pardeftab720\ql\qnatural
    \f0\fs24 \cf0 \
    And all these slashes and other code-type crap that makes the actual text I typed unreadable.
    So, somebody, please, tell me: how do I create a simple plain text file like I used to be able to do with Notepad, and not have to worry about it being all garbled when I go to re-open it.
    Should be easy, but it's not.
    --PS

    If I format fonts, even in a "plain text" document, am I going to wind up with code again when I reopen it?
    Not unless you save it as rich text.
    Why is a "plain text" document even offering me bold and italics or any other kind of formatting?
    Why would someone wanting to write plain text use bold or italics options? On the other hand, I'm sure many people would like to print and compose formatted text now and then even when they prefer to keep TextEdit in plain text mode for most of their work.
    I miss notepad. All it did was plain text. No options to confuse things. Where is the Mac equivalent of THAT??
    Try TextWrangler

  • Ios 6.0b1 two problems at the moment,cannot save photos, cannot send a text

    I'm using ios 6.0b1 and I'm facing two problems at the moment,
    first, I cannot save photos taken by camera after editing them.
    second, I cannot send a text to several people at the same time,however it can be sent individually.

    this problem already solved, thank you Apple

Maybe you are looking for

  • Ipod mini not recognized on Itunes or Windows

    I bought my mini in 2005, and I had no problems until last night. I just bought a new song and I plugged my ipod in to update, but it didn't show up. At first Windows recognized it, but then it didn't. My brother has a nano, so I plugged that in to s

  • System is very fragile and has trouble booting. Hard Drive Problem?

    Im having a problem with my Intel iMac which I can't solve and it really annoying me. As of lately my mac has been crashing, a lot. I am running Snow Leopard 10.6.2 on my 2008 24" iMac. In the order that I remember them happening, here are the sympto

  • Can Essbase be registered with Shared services if they both belong to different versions

    Hi All, I am analyzing a situation whether Essbase can be registered with Shared services and continue to interact with other components like HFM, FR, Web Analysis, FDMEE, DRM etc, where Essbase will be of one version (possibly 11.1.1.3 or 11.1.2.3)

  • My Phone Won't Activate

    I am trying to activate my phone. I got all the way through the payment and everything twice but it won't activate and now I've put twice as much as I wanted on. My signal is good. What do I do?

  • Getting Rid of Holiday music

    Anyone know if/when Apple will remove the holiday music from my front page. I'd love to see some suggestions - but since I bought about 30 holiday tracks half my suggestions are holiday related. Holiday is also appearing as one my preferred catageori