Voiceover word highlighting in PDFs

Is Voiceover capable of highlighting each individual word it is reading as it progressess through a PDF document in either Preview or Adobe Acrobat 9 Pro? I am aware that Voiceover can read PDF's, but is it capable of indicating which word it is on as it reads through a document? Also, can I stop and start voiceover at the word of my choice on a page like I can in Safari?
Also, I have Snow Leopard and all documents I read are properly OCRed.
Thank you for the help.

Yeah, Apple have indeed announced highlighting support. Too bad it hasn't made to version 1.1. Let's stick with 3rd party stuff.
BTW, not only iAnnotate supports highlighting. Please check out the "+Highlight / annotate text+" row in the main chart of my forthcoming PDF reader roundup at http://winmobiletech.com/sekalaiset/201006iPadPDF/201006iPadPDFv1.html , where I've compared the highlighting features of current PDF readers. To make your life easier, I've copied the relevant info here:
*SmileyDocs 1.4 by Daniel Borsuk:* It does have support but definitely inferior to iAnnotate, though:
++ doesn’t write back to files in a standardized way
++they’re always visible, unlike how better annotator apps do
++a note / highlighting will only be displayed in the same orientation (LS / Portrait) and, what is worse, the same zoom level. If you zoom in/out just a little bit, all the highlights will be gone
++highlights are tied to the actual screen coordinates and not that of the underlying document – actually, this is what the previous bug is caused by.
*iAnnotate PDF 1.1.1 by Aji Ltd*: this is what you should purchase the app for… - excellent!
*Stanza 3.0.1 by Lexcycle*: with books downloaded from the built-in library sources, it works wonderfully: tap-and-hold the text; the given paragraph will be highlighted and, then, dumped to the text view window; there, the word your finger is currently on is selected. With PDF’s from other sources, I’ve got far worse results; sometimes the extracted text was complete garbage.
*ReaddleDocs 1.1.0 by Igor Zhadanov* and *PDF HD 1.0.0 by Igor Zhadanov*: tap-and-hold text; select Highlight from Copy / paste menu. Doesn't actually update the PDF file – highlighting isn't visible in other PDF readers. Previous highlighting can be cleared.

Similar Messages

  • Highlight in pdf ms word

    Hello.I created a table with the statement.
    create table hdocs (
    id number primary key,
    fmt varchar2(10),
    text varchar2(80)
    Then I transfer thru ftp protocol from my pc to the server some files in specific file system and then i did the flollowing inserts records in the table.
    insert into hdocs values(1, ’binary’, ’file1.doc’);
    insert into hdocs values(2, ’binary’, ’file2.doc’);
    insert into hdocs values(3, ’binary’, ’file3.doc’);
    insert into hdocs values(4, ’binary’, ’file4.doc’);
    insert into hdocs values(5, ’binary’, ’file5.doc’);
    insert into hdocs values(6, ’binary’, ’a96594.pdf’);
    insert into hdocs values(7, ’text’, ’file1_txt.txt’);
    insert into hdocs values(8, ’text’, ’file2_txt.txt’);
    insert into hdocs values(9, ’text’, ’file3_txt.txt’);
    Then I createted the fil_datastore preference with the statement:
    begin
    ctx_ddl.create_preference(’COMMON_DIR’,’FILE_DATASTORE’);
    ctx_ddl.set_attribute(’COMMON_DIR’,’PATH’,’/home/oracle/search/files’);
    end;
    and finally build the index
    create index create index hdocsx on hdocs(text) indextype is ctxsys.context
    parameters ('datastore COMMON_DIR filter ctxsys.inso_filter format column fmt');
    All document indexed.okWhen I search with a word all results display ok no problem.i also use some code for highlight as follows.
    procedure showDoc(p_id IN NUMBER, p_query IN VARCHAR2) is
    v_clob_selected CLOB;
    v_read_amount integer;
    v_read_offset integer;
    v_buffer varchar2(32767);
    v_query varchar2(2000);
    v_cursor integer;
    v_id VARCHAR2(20);
    begin
    v_id:=to_char(p_id);
    begin
    ctx_doc.markup(index_name=>'hdocsx',
         textkey=>v_id,
                        text_query=>p_query,
                        restab=>v_clob_selected,
                        starttag=>'<font color=''red''>',
                        endtag=>'</font>');
    v_read_amount:=32767;
         v_read_offset:=1;
         begin
         loop
              dbms_lob.read(v_clob_selected, v_read_amount, v_read_offset, v_buffer);
              htp.p(v_buffer);
              v_read_offset:=v_read_offset + v_read_amount;
              v_read_amount:=32767;
              end loop;
              exception
              when no_data_found then
    null;
         end;
    exception
         when others then
         htp.p('ERROR '|| to_char(SQLCODE) || SQLERRM );
    null;
    end;
    --dbms_lob.freetemporary(v_clob_selected);
    end showDoc;
    The problem is that only in the text files highlight works not in pdf document, and ms word documents.Is some workaround for highlight also in word documents, pdf documents?Thanks in advance Panagiotis.

    Oracle Text at the moment, does not support PDF nor MS Word highlighting. It does support highlighting the filtered version of PDF/MS Word.

  • How do I add a note or highlight a word in a pdf file in iBooks?

    How do I add a note or highlight a word in a pdf file in iBooks?
    iBooks version 3.1 on iPad 4 running iOS 6.1.3.

    That functionality in iBooks is limted to ebook files and is not available for standard PDFs. Try Adobe Reader.

  • Extract highlighted words from a pdf (Acrobat SDK, OLE)

    Hello Acrobat gurus ! :-)
    I'm new to the SDK, so please excuse any "stupid" question i might have.
    Here is what i want to do:
    I want to search for a group of words in a pdf document. According to the SDK documentation, once i search for a text using AcroExch.AVDoc.FindText(), the function "Finds the specified text, scrolls so that it is visible, and highlights it."
    I was assuming that after calling this function with my string, once the string is found i will have acces to the coordinates of the rectangle containing the highlighted group of words (i presumed that those words would be automatically contained in an object of the type AcroExch.HiliteList) and to the coordinates of those words.But i'm not able to do so, i cannot find any function(s) that give me that kind of access.
    So question is:
    Is it possible to access the coordinates of the rectangle/words that are highlighted in a pdf after calling the FindText() function ? Can someone help me get on the right track ?
    Thanks

    Ok, let me give you an more elaborate example, maybe i don't ask the right question.
    Let's say i have a pdf, containing the following text in the first page
    --- arbitrary number of ":"
    Mother's Name: Joanna
    Father's Name: Josh
    other text
    If i call the function like this: FindText("Mother's Name:"), acrobat is going to find the first occurance of my string. What i want to do is to be able to get the coordinates of this WHOLE string OR the coordinates of the last character in the string  (in this case ":").
    The problem is that if i go for the coordinates ofthe double dots i cannot just look for them in the pdf, because i may have an unknown number of double dots (":") before the ones i'm interested in. The logical solution in this case would be to get the coordinates of the entire string ("Mother's Name:" in this case) and then get the coordinates of the double dots i'm interested in.
    Would that be possible ?

  • After installing Mavericks I can no longer save a new word document or pdf by typing the name of the destination folder in the Finder window.  The save button greys out.  Solutions anyone?

    After installing Mavericks I can no longer save a new word document or pdf by typing the name of the destination folder in the Finder window.  The save button greys out.  Solutions anyone?

    Please follow these directions to delete the Mail "sandbox" folders. In OS X 10.9 there are two sandboxes, while in 10.8 there is only one. If you're running a version older than 10.8, this comment isn't applicable.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Containers/com.apple.mail
    Right-click or control-click the highlighted line and select
              Services ▹ Reveal
    from the contextual menu.* A Finder window should open with a folder named "com.apple.mail" selected. If it does, move the selected folder—not just its contents—to the Desktop. Leave the Finder window open for now.
    Log out and log back in. Launch Mail and test. If the problem is resolved, you may have to recreate some of your Mail settings. You can then delete the folder you moved and close the Finder window.
    This action will delete any custom Mail stationery that you have created. If you want to preserve it, ask for instructions.
    If you still have the problem, quit Mail again and put the folder back where it was, overwriting the one that may have been created in its place. Repeat with this line:
    ~/Library/Containers/com.apple.MailServiceAgent
    Caution: If you change any of the contents of the sandbox, but leave the folder itself in place, Mail may crash or not launch at all. Deleting the whole sandbox will cause it to be rebuilt automatically.
    *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.

  • Adding definitions to Specific Words within a PDF file

    I have a client who wants me to add definitions to Glossary words throughout a PDF file. They want it to look like a "roll over" or when you click on the glossary word a definition pops up. Is there a way to do this in Acrobat 9 or it can't be done?

    You can achieve this with one of my custom-made tools:
    http://try67.blogspot.com/2008/11/acrobat-highlight-all-instances-of.html
    If you set the comment color to "Transparent", it will act just like a pop-up that shows when you hover with the mouse over the text.

  • Storing MS Word, MS Excel, PDF, etc in DB and retrieving through WebForms

    Hi,
    We have an application that requires storing MS Word, MS Excel,
    PDF and HTML docs. We're planning on storing these documents in
    a table as BLOB's with a column in the table that would indicate
    the MIME type for the document. We need to be able to retrieve
    these documents using the WebForms application we created. The
    user would prefer to view a Word document in MS Word, an Excel
    document in MS Excel, and so on. As of now there is no
    requirement for searching within these documents, all we have to
    do is retrieve them from the db and display them to the client.
    Keep in mind this is a web based app, developed with Forms6i, we
    would like to give the user the ability to press a button and
    have the document displayed in the appropriate program.
    I've searched for examples for this type of situation and have
    been unsuccessful. But after reading about Oracle Text it
    sounds like this could be what I'm looking for, minus the search
    capability that is. Am I looking in the right place? Is it
    possible to accomplish the requirements described above using
    Oracle Text? If not where should I be looking.
    Any help, info or even better sample code on this would be
    greatly appreciated.
    Thanks in advance,
    Jeff Butler

    Jeff,
    I'm not familiar with WebForms so I will only comment about
    Oracle Text.
    You can use Oracle Text to store, index, and search documents in
    different types of formats (HTML, XML, MS Office, PDF, etc.).
    Oracle Text also provides document services like a markup version
    of a document, highlighting, themes, and other linguistic
    features.
    Take a look at the OTN page for some sample code
    http://otn.oracle.com/sample_code/products/text/content.html
    Hi,
    We have an application that requires storing MS Word, MS Excel,
    PDF and HTML docs. We're planning on storing these documents in
    a table as BLOB's with a column in the table that would indicate
    the MIME type for the document. We need to be able to retrieve
    these documents using the WebForms application we created. The
    user would prefer to view a Word document in MS Word, an Excel
    document in MS Excel, and so on. As of now there is no
    requirement for searching within these documents, all we have to
    do is retrieve them from the db and display them to the client.
    Keep in mind this is a web based app, developed with Forms6i, we
    would like to give the user the ability to press a button and
    have the document displayed in the appropriate program.
    I've searched for examples for this type of situation and have
    been unsuccessful. But after reading about Oracle Text it
    sounds like this could be what I'm looking for, minus the search
    capability that is. Am I looking in the right place? Is it
    possible to accomplish the requirements described above using
    Oracle Text? If not where should I be looking.
    Any help, info or even better sample code on this would be
    greatly appreciated.
    Thanks in advance,
    Jeff Butler

  • Highlighting in PDF

    I use Adobe Acrobat 7.0 Professional. I am opening up a PDF that has random words highlighted and I need to take all of the highlighting off of the PDF. I have tried using the highlight tool and it did not work. I have tried clicking on the highlighted area and deleting the comment and it still does not work. I have tried Advanced - PDF Optimizer - Discard Objects - Discard all comments and form widgets. I have yet to find someone to help or find a solution to this issue. Is there a way to remove the highlighting from the PDF?

    The highlight effect may have been applied to the authoring file from which the PDF was created.
    In such a scenario the highlight is part of the page content (just like the textual characters).
    The Highlight tool has no affect on such as they are not PDF highlight annotations.
    Be well...

  • Adobe does not recognize footers in Microsoft Word 2007 to PDF

    I have copied and pasted the details, below, from a previous message I have sent out to an assistive technology listserv.
    I am encountering this problem with various builds and versions of Adobe Acrobat:
    Acrobat X on a Windows Vista 64-bit build (note that this is the best Acrobat I can install on Windows Vista, Adobe Reader XI is not even supported)
    Acrobat X on a Windows XP build, sorry, do not know the bit count (it is my work computer so I can't upgrade anything)
    Acrobat 9 on a Windows 7 64-bit build.
    I have also encountered and checked into whether or not the PDF reads (and does what I want it to) in JAWS 14, latest update (Feb 2013). We encounter the same problem with JAWS and this morning found out that there is a conversion error between Word and Adobe. (See this post, where the ---- are).
    Summary, I have spoken with JAWS, put out a support ticket with NVDA via e-mail, spoken with Microsoft, and tried to communicate with Adobe about this issue for help and Adobe is refusing to help. The other places tried everything they knew but they could not get it to work. I even tried to strip all the page numbers from Word and number using Adobe's page numbering feature, but that was not successful either because I cannot use Roman numerals.
    I would appreciate any feedback the Adobe Forums can give me; please note that I cannot post a sample document at this time as the only document I have is a private work document (cannot share those by policy, so I will have to make up a fake document if I get the time and energy).
    Thank you very much for your time and expertise. The pertient info is above and below in "Original Message" and "Activities section" - the other information is there if you'd like to look. And to provide feedback to Adobe about things I think they could improve, since they will not let me email them directly.
    ----Original Message----
    My question concerns the reading of Footers / Headers in Microsoft Word 2007 and Adobe Acrobat (headers/footers designed in Microsoft Word 2007 and then converted to PDF with "Bookmark" checked in Adobe Acrobat conversion settings).
    The document is a word document containing 50+ pages. There are 12 pages of "front matter" that are marked with Roman numerals. Subsequently, the body text of the document has an Arabic number (1, 2, 3, 4, etc.) in the bottom right corner. Footers are used properly in the document. All Table of Contents links, which do link to both headings in the "front matter" and to headings in the body text, are picked up properly. Literately, the only thing not reading on the document are page numbers (the Word Status bar is reading its page numbers, but the page numbers in the footer are not reading).
    I then need to convert the document to Adobe Acrobat PDF. Granted, I have a full copy of Adobe Acrobat X available to me, and my various assistive technologies have always functioned better when opened directly in Acrobat (rather than Adobe Reader). So, I set the accessibility options (from Word) properly, asking it to bookmark Headers and Footers as appropriate, thinking that this will pick up the page numbers and make them read as the bottom right corner of my PDF.
    All links work in Adobe to navigate by section/heading. All figures are alt tagged. Everything is perfect - but the one thing that NVDA won't read are the page numbers. Visually, the page numbers are there on the document, but NVDA won't pick them up. Additionally, I also changed the appropriate page numbers in Adobe (Page Thumbnail Pane, on the Navigation Pane I believe it is called) - to reflect the section where it is Roman numerals and Arabic numerals. This did not help, and for what it is worth, I cannot get NVDA to voice when I am in this pane, so I don't seem to have a chance of getting the page number info from there.
    NVDA reads the document just fine except for the above-mentioned snare. However, when it reads, it will go to the next page, and say, "Page 2 of 54, (page text), Page 3 of 54 (page text)," etc. when I will need it to say Page ii of 54 (page text), Page iii of 54 (page text)," and so on, changing to "Page 1" when the Arabic numbers are used.
    I know that the Page Label issue is part of Adobe's issue, with them not releasing the PageLabel aspect. (I have looked through some NVDA tickets). I do not know how to put a "changeset" into my copy of NVDA though, or even if it would help (I have no computer scripting skill). The easy answer would be to upgrade to Adobe Reader XI and see if that helps, but I don't have the ability to put it on every computer I use, and *I need this file to read consistently across multiple versions of Adobe* (including Adobe Reader/Acrobat 9, X, and XI). (This file is also going out to people who may not have the latest version of Adobe, but are also running some copy of NVDA, either a portable or a full install).
    Is there any way to pick up the Footers with page numbers voicing in NVDA, and/or have it read the user-editable page number box that is on Adobe's Toolbar (next to the 1 of 54 parentheses). This user-editable box, to jump to page numbers, reflects the Roman numerals I have loaded into the pages of Adobe. When I press Ctrl+Shift+N in Adobe, I can also go to the appropriate page (if I type in iii, it will take me to iii, if I type in 34, it will take me to the Arabic number 34 -- NOT the 34 of 54, which would land me on a different page. And I want to land on the page that has the Arabic 34, so that's functioning fine.
    I just need the page numbers in the footer to voice, "Page iii," or "Page iv," or "Page 29," etc. If I could get NVDA to do that, I could say to viewers of this document, "If you are using NVDA, remember to Ctrl+Shift+N to get the GoTo Box, then type in the page number you want if you cannot follow a link or a bookmark." This document is *very* accessible in my opinion with lots of ways to navigate...the only aspect of navigation that isn't being picked up are those footer page numbers!
    I do have my Document Formatting settings on the NVDA menu set to "Report Headers," but that does not seem to help in either Microsoft Word 2007 or Adobe Acrobat. I have even switched the page numbers from the footer to the header to see if that would help and it didn't.
    ----Activities I have done today----
    I spent over an hour on the phone today with Freedom Scientific (makers of JAWS) trying to troubleshoot this. We discovered that Footers will not read very well in JAWS and Microsoft Word 2007 (only solution is to stop reading document text and read Virtual Viewer text briefly, then go back out to document text, then back into Virtual Viewer which is NOT an acceptable or accessible solution whatsoever -- too much work for someone trying to read the document) -- and then we also discovered that:
    Upon conversion from Word 2007 to .txt file (.docx to .txt), there are no alt tags for the figures in the document, or page numbers.
    Upon conversion from Word 2007 to Adobe Acrobat X then to .txt file, every insert of a page number and footer is replaced with the same alt numberpad numerical code: the one that generates female. ♀No wonder JAWS and NVDA are skipping this, neither understand how to communicate it.
    On the advice of JAWS Technical Support I contacted Microsoft Accessibility Technical Support and spent an hour on the phone with them. They say that unless Adobe can find a solution, it appears that it is impossible for Microsoft products to read the footer if JAWS was unsuccessful doing what I wanted it to do. The document/footer in question includes about 12 pages of front matter (numbered in Roman numerals) and 44 pages of body text (numbered in Arabic numerals).
    I kindly explained to the Microsoft Support Agent that I found this issue hard to believe, although I understood. Sighted folks have the ability to make their documents look quite professional and that is the caliber and quality of documents anticipated from everyone, especially college students graduating from school, or job applicants. That a coding issue prevents the footer from being read properly, except in Edit view, is disappointing. The representative was with me 100% of the way. She completely understood where I came from. And yes, when I am designing the document myself, I know what I put there (or I pretty much do, anyway). But if I recieve a document, it is much harder to tell what is really there or not, or how the page numbers really lay. And this is confusing as heck, believe me.
    I then called Adobe Technical Support, after having a brief online chat with them. Granted, I had to leave the chat in the middle because I got interuptted by something that was high-priority, but the woman chatting from Adobe says that chat is only for installation issues, and I will have to pay to open a support ticket. Excuse me? I have paid a hefty sum of money for Adobe Acrobat 9 and Adobe Acrobat X (work paid for the other Acrobat X copy). I deserve this problem to be troubleshooted for free. There was even a statement on the Adobe Acrobat X website that said Acrobat X users didn't have to pay for support, but Reader users did.
    ----Slight bit of rant and constructive criticism----
    In speaking with Adobe Technical Support, I had to wait on hold for 30 minutes before my call was answered, and then I had to consent to being on hold countless times and had to answer, "Yes, I am converting from Word 2007 to PDF using Adobe Acrobat X" at least 6 times. The representative would put me on hold, then ask me the question, then put me on hold again, repeated 6 times over 45 minutes. At the end of 45 minutes (1 hour and 20 minutes of wasted time by now, that I must justify to my employer) - I told the representative I wanted to speak with his supervisor immediately, I did not care if he was trying to fill out a support ticket (and putting me on hold at least 4 more times in 10 minutes while he claimed he was filling out the support ticket) - and finally he put me on hold again and gave me to a very helpful supervisor. Within 6 minutes of speaking with the supervisor the supervisor had my support ticket filled out and I should recieve a call from Adobe within the next 30 minutes if his estimation was right (he estimated two hours, but it's been an hour and a half).
    I have yet to know what can be done about my document. Freedom Scientific Technical Support is closed now for the day and I need to work tomorrow and Friday away from the phone. As I stated to Microsoft Accessibility Support, I truly feel that Adobe should read the page footers, every document says that Adobe should be able to read the page footers, and I feel slighted that as a person who uses assistive technology, there is some glitch that isn't making this happen. I am not blaming a specific place per se, except I am a little frustrated with Adobe especially since they have not gotten back to me, and I am frustrated with their customer service. JAWS customer service and Microsoft customer service were both exemparly, and I cannot say enough good things about them. My wasted time with Adobe however, that was disrespect in my opinion. And I certainly will not pay to open a support ticket, and my workplace has a site license. They've paid enough already.
    If you've read this far, thank you. I look forward to replies, or at least understanding. And if anyone has ideas, I'd appreciate it very much (yes, I have tried taking the page numbers off and using Adobe's page number feature, but that would not allow Roman numerals. Only Arabic.).

    Greetings NoNameGiven,
    If I understand the problem correctly (I’m not sure I do) you would prefer ‘iii’ to be read as “eye eye eye” rather than “three”? The alt text property is the only way that I know of to make this happen. Hope this helps.
    a ‘C’ student

  • Attachments (word docs and PDFs) to emails can not be opened by the receivers. Are received as .dat files or application/octet-stream

    Attachments I add to emails (word doc or PDFs) can not be opened by the email receivers. Word documents attachments are received with ATT00427.dat (application/octet-stream) or .doc with (application/octet-stream). PDF attached files arrive with .pdf (application/octet-stream). My copy of my sent email has the same attachment extensions.
    == This happened ==
    Every time Firefox opened

    Firefox doesn't do email, it's a web browser.
    If you are using Firefox to access web mail, you need to seek support from your service provider or a forum for that service.
    If your problem is with Thunderbird, see this forum for support.
    [http://www.mozillamessaging.com/en-US/support/]
    or this one
    [http://forums.mozillazine.org/viewforum.php?f=39]

  • Acrobat distiller won't open file from word to create pdf

    I can choose acrobat from word and print pdf -- but acrobat pro 9 gives me an error message when I try to select a file from word to create a pdf. I can print acrobat from word but not from acrobat
    The error message just says can't open, check if you have read permissions for this file.  I've been doing this, but now it won't select a file from word.
    Thanks.

    Sorry Bill, It's Word 7.  I can create an acrobat pdf by choosing it when I print in word but if I try to create a pdf from acrobat - from the file - it won't work.  I get the same error.  Can't open  do you have read priviledges.  Not sure what that is or if there is a setting someplace that got checked or unchecked.
    Thanks.

  • Have Windows XP and Adobe 9 Reader and need to send a series of large documents to clients as a matter of urgency     When I convert 10 pages a MS-Word file to Pdf this results in file of 6.7 MB which can't be emailed.     Do I combine them and then copy

    I have Windows XP and Adobe 9 Reader and need to send a series of large documents to clients as a matter of urgency When I convert 10 pages a MS-Word file to Pdf this results in file of 6.7 MB which can't be emailed.  Do I combine them and then copy to JPEG 2000 or do I have to save each page separately which is very time consuming Please advise me how to reduce the size and send 10 pages plus quickly by Adobe without the huge hassles I am enduring

    What kind of software do you use for the conversion to pdf? Adobe Reader can't create pdf files.

  • How do I move my documents from word to a PDF ?

    How do I change my existing documents to a PDF ?

    You need to convert PDF documents to other formats like Word.
    You need to convert Word documents to PDF.  You can do that in various ways:
    use Microsoft Word 2007+ and save it as PDF
    use the PDF Pack online service
    use Adobe Acrobat

  • How can I embed files of word, excel, and pdf format in a pdf document

    I have a word document of the product, which I am updating for next product release. However, there are some excel, word, and pdf files embedded within a word document. When I double click these embedded files in word, these files open in a new window. However, we deliver documentation to the customer in the pdf format. Therefore, when I am converting the word document in the pdf format, only an icon of the embedded file is displayed and the files do not open in a new window. Can someone let me know how can I embed these files (in word, excel, and pdf format) in a pdf document?

    You must attach them to the PDF file after it is created. You cannot embed file attachments onto a page as you can with Word.

  • How to convert word doc into pdf - which product of adobe i need to use- what upgrades - am a newbie

    How to convert word doc into pdf - which product of adobe i need to use- what upgrades - am a newbie -  simple answers please - Thanks in advance.

    @Pipeline2007 - which version of Microsoft Office have you got? Older versions of Acrobat aren't compatible with the latest versions of Office, see this link for info:
    http://helpx.adobe.com/acrobat/kb/compatible-web-browsers-pdfmaker-applications.html

Maybe you are looking for

  • Enable screen field in WebDynpro ABAP

    i, I have WebDynpro ABAP screen where I have defined a read-only input field. Now I want to make this field input enable based on certain logic during run time.   CALL METHOD lo_el->set_attribute_property     EXPORTING       attribute_name = 'SP'    

  • Hiding Bank Detail feild in IT009

    Hi, IT009 is part of the dynamic actions in PA40, the default is set to "C" (cheque), to ensure employee vendor record is created.  How do we mask the bank and account details from IT009 so that the users simply have to save and move to the next Info

  • What is in other in storage

    Hello, everyone When I go into apple then about this mac and then more info and finaly storage I get this I wanted to know if there was a way to figure out what is in the other column  because It is takeing up a lot of my space.

  • How to uninstall Lightroom from a Mac?

    is there an uninstall protocol or do oI simply move the LR application to trash? Thanks

  • Flash 8 Crashes when trying to publish??

    Anyone know a fix for this problem? Every time I try to publish or test my fla it crashes to desktop. Is this a known problem?