Reader 9 view

Hi, In Adobe Reader 9 how do I set the option to open all documents in "height" mode only?  I need to view the whole document not just the width.   Any advice is greatly appreciated (psychiatric advice as well!).
= :-)-P(+++)===|   find a cure

Second to my (long suffering) husband, you are my hero!  Thank you.  This has been bugging me for the past hour.

Similar Messages

  • How will read the value from Adobe Reader/Viewer in c# windows App

    I m using VS2005 . working in windows appliction. i am using adobe Reader 9, Then the new pdf document open  inside the Acrobat adobe reader , Exsiting PDF file is created by Adobe Forms(Adobe LiveCycle designer and Adobe pro 9).
    Using the Class is:
    1.AcroExch.App
    2.AcroExch.AVDoc
    3.AcroExch.pdDoc
    4.Acrobat.CAcroApp
    namespace is:
    using AxAcroPDFLib;
    using AFORMAUTLib;
    using Acrobat;
    Using DLL is:
    1. Interop.Acrobat
    2. Interop.AcroPDFLib
    3. Interop.AFORMAUTLib
    4. AxInterop.AcroPDFLib
    My problem is,
    I am Working in
                       PDFis open inside the adobe reader/Viewer, but i can not able to get the value from PDF Forms.
                        ( This Pdf forms is Some more Control Design is Available)
    Ex:
    I have Attached my Pdf  disgn file.        Please see this Pdf file.
    I am not able to get the value from  inside window(adobe Reader/Viewer),  but i can able to get the value from the out side of adobe viewer/Reader.
    This coding not working properly,
    try
                    CAcroAVDoc AcroExchAVDoc = default(CAcroAVDoc);
                    CAcroApp AcroExchApp = default(CAcroApp);
                    CAcroPDDoc oDoc = default(CAcroPDDoc);
                    AFORMAUTLib.AFormApp AFormAut = default(AFORMAUTLib.AFormApp);
                    AFORMAUTLib.Field Field = default(AFORMAUTLib.Field);
                    AFORMAUTLib.Fields Fields = default(AFORMAUTLib.Fields);
                    bool OK = false;
                    AcroExchApp = new AcroApp();
                    oDoc = new AcroPDDoc();
                    AcroExchAVDoc = new AcroAVDoc();
                    AFormAut = new AFormAppClass();
                    //AcroExchApp = (Acrobat.AcroApp)Activator.CreateInstance(Type.GetTypeFromProgID("AcroExch.App" ));
                    //oDoc = (Acrobat.AcroPDDoc)Activator.CreateInstance(Type.GetTypeFromProgID("AcroExch.PD Doc"));
                    //AcroExchAVDoc = (Acrobat.AcroAVDoc)Activator.CreateInstance(Type.GetTypeFromProgID("AcroExch.AV Doc"));
                    //AFormAut = (AFORMAUTLib.AFormApp)Activator.CreateInstance(Type.GetTypeFromProgID("AFormAut .App"));
                    bool bOK = AcroExchAVDoc.Open(pdfWindowLeft.src, "Temp"); ' some time not true
                        ' if  ok (true) then
                    if (bOK)
                        Fields = (AFORMAUTLib.Fields)AFormAut.Fields;
                        foreach (Field myField in Fields)
                            if (myField.Name == "form1[0].#subform[0].Id[0]")   ' field value not get from the inside window
                                string Id = myField.Value; ' not getting a answare
                            if (myField.Name == "form1[0].#subform[0].PatientName[0]")
                                string PatientName = myField.Value;
                            if (myField.Name == "form1[0].#subform[0].Email[0]")
                                string Email = myField.Value;
                            if (myField.Name == "form1[0].#subform[0].PhoneNo[0]")
                                string PhoneNo = myField.Value;
                            if (myField.Name == "form1[0].#subform[0].Address[0]")
                                string Address = myField.Value;
                catch (Exception Ex)
                    lbl_Result.Text = Ex.Message;
                finally
                    Conn.Close();
    This coding is working properly,
    try
                    String FORM_NAME = addressLeft.Text;
                    //String FORM_NAME = Application.StartupPath + "\\..\\..\\..\\..\\..\\TestFiles\\SampleForm.pdf";
                    // Initialize Acrobat by cretaing App object.
                    CAcroApp acroApp = new AcroAppClass();
                    // Show Acrobat Viewer
                    acroApp.Show();
                    // Create an AVDoc object
                    CAcroAVDoc avDoc = new AcroAVDocClass();
                    // Open the pdf
                    if (!avDoc.Open(FORM_NAME, ""))
                        lbl_Result.Text = "Cannot open" + FORM_NAME + ".\n";
                        return;
                    // Create a IAFormApp object, so that we can access the form fields in
                    // the open document
                    IAFormApp formApp = new AFormAppClass();
                    // Get the IFields object associated with the form
                    IFields myFields = (IFields)formApp.Fields;
                    // Get the IEnumerator object for myFields
                    IEnumerator myEnumerator = myFields.GetEnumerator();
                    bool bFound = false;
                    // Fill the "Name" field with value "John Doe"
                    while (myEnumerator.MoveNext())
                        // Get the IField object
                        IField myField = (IField)myEnumerator.Current;
                        // If the field is "Name", set it's value to "John Doe"
                        // form1[0].#subform[0].Name[0]
                        if (myField.Name == "form1[0].PatientInformation[0].Id[0]")
                            //form1[0].#subform[0].Id[0]
                            bFound = true;
                            lbl_id.Text = myField.Value;
                        //form1[0].#subform[0].Name[0]
                        if (myField.Name == "form1[0].PatientInformation[0].PatientName[0]")
                            bFound = true;
                            lbl_name.Text = myField.Value;
                        if (myField.Name == "form1[0].PatientInformation[0].Email[0]")
                            bFound = true;
                            lbl_email.Text = myField.Value;
                        if (myField.Name == "form1[0].PatientInformation[0].PhoneNo[0]")
                            bFound = true;
                            lbl_phoneno.Text = myField.Value;
                        if (myField.Name == "form1[0].PatientInformation[0].Address[0]")
                            bFound = true;
                            lbl_address.Text = myField.Value;
    can u anyone help me. It's very urgent for my project.
    Thanks for ur replay,
    Regards
    Ganesaselvam.I

    First off - the code you wrote won't work with Reader, it will only work with Adobe Acrobat.
    Second, LiveCycle Designer-based forms are a special type of PDF and don't use AcroForms, they use an XML-based forms grammar.  Therefore, the AcroForms API calls aren't designed to work with them.  You should be using the JSObject bridge code along with JavaScript to access the values of the fields.

  • How to Email Reader View from Safari

    On both iPad and iPhone when I display a web page using reader view I can then email that full article/reader view.
    In Safari on Yosemite that reader view is also available but there seems to be no way to email the full article from reader view.
    Is it possible?

    If an article is Reader capable, 3½ bars icon will appear near the left end of the search bar
    Click the "Share" icon and select "Email This Page".
    When the Mail composing  window appears with link inserted, click inside popup box next to "Send Web Content As"  and select "Reader".
    Best.

  • Encrypted PDF showing as "Untitled" in iBooks reading view

    I've added an encrypted PDF file to iTunes and synced it with my iPad.
    Before doing so, I opened the PDF with Adobe Acrobat Pro and edited the metadata to include the document title (which is identical to the filename). I then password-protected it, selecting the option that encrypts all content except for metadata.
    In iBooks, the PDF is displayed with its correct title in Library view but when I input the password and open it, the overlay text in Reading view says it is "Untitled".
    However, if I add it to iTunes as an unencrypted PDF it displays correctly in both Library and Reading view.
    I would prefer it if I could keep this file encrypted. I know it's just a minor inconvenience but I can't see why the title should fail to display in Reading view once I've opened it.

    Update:
    I went to the Genius Bar at a local Apple Store yesterday and was given the following steps that will remedy the problem with the PDF's
    Drag and Drop PDF's directlty from MY Documents (if you are using a PC with Windows XP) and put the PDF's Directly into the Book section in the Library in iTunes.
    Then Sync the iPhone in iTunes and the PDF's will display with the names you have chosen.
    Do Not Email the PDF's and open them in iBooks or the PDF's will display with the name Untitled.
    Note: Be sure to delete the PDF's that are displaying as "Untitled" from the iPhone first as well as the PDF's that are on iTunes as the original cryptic PDF File Name. Then Drag and Drop a fresh Copy of the PDF's and put them into iTunes. After syncing the PDF's will display in iBooks with the name you have chosen.

  • How to enlarge pictures and change reading view

    I've bought an ebook which should contain large Excel screenshots and text. According to the description it should be in 2 columns, one for text and one for screenshots. I can see the text and enlarge it, but the screenshot pictures are very small and I can't see what they're supposed to be. This is just on a regular sized laptop. I searched for the reading view icons that are supposed to be there, hoping I could fix it by changing it to a 2 page view or another alternative view. For some reason I don't see the reading view icons either. Could anyone tell me how to enlarge these screenshot images, and how to change my reading view and find my icons? 

    You need to look at Lightbox for that effect: - includes instructions on how to use it.
    http://www.lokeshdhakar.com/projects/lightbox2/
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    Book: Ultimate CSS Reference
    http://www.sitepoint.com/launch/005dfd4/3/133
    http://twitter.com/nadiap

  • Where is reader view in Safari 8.0.3 ?

    Where can I locate reader view?

    If an article is Reader ready, a 3½ lines  gray icon  will appear just left of the url.
    When you click on it, lines will turn black indicating that the article is in Reader mode.
    Best.

  • Unable to read view Id of Declarative Component from "var" of af:iterator

    Hi,
    I am facing a weird issue where when i assign "var" of af:iterator to the view Id of declarative component, it is saying "<DynamicIncludeTag> <getViewId> Encountered null from the viewId expression: #{row}"
    And Page is showing blank.
    My JSPX code is as follows :
    <af:iterator value="#{pageFlowScope.stageBean.pathList}" var="row">
    <af:outputText value="#{row}" id="ot1"/>
    <af:declarativeComponent viewId="#{row}"/>
    </af:iterator>
    And code snippet for getter in Java bean is as follows:
    public List<String> getPathList()
    List<String> pathList = new ArrayList<String>();
    pathList.add("/Test.jspx");
    return pathList;
    The weird thing here is output text is printing the path /Test.jspx but declarative component is not recognizing it. Its showing blank page and in logs, error says "Encountered null from the viewId expression: #{row}"
    If i remove #{row} from viewId and manually give like viewId = "/Test.jspx" , its displaying the page correctly.
    Can anyone please help me solve this issue?
    Regards,
    Rakesh.

    http://stackoverflow.com/questions/12183735/adf-unable-to-read-view-id-of-declarative-component-from-var-of-afiterator

  • How do I get reading view on my mini? I am not able to enlarge text since I upgraded to IOS 7. Help!

    I need to know how to enlarge text. I need to know how to enlarge text in reading view since this new update. Can I go back to the previous OS?

    Settings > General > Accessibility > Zoom

  • Closing a book/magazine in the Reading view?

    Where/how do I close a book/ magazine that has been opened in the Reading view, so that I can open another publication in the same Bookshelf?

    Hi Abhishek,
    If I understand your question correctly, you would like to access the Fund plan ID (in a different context node) in the getter setter methods of the check box attribute which you have added.
    The code snippet mentioend by sudeep works perfectly fine when you are making any checks in the view implementation class. But since you are in the getter setter methods of the context class, this doesnot work as "me" always refers to the class instance in which you are present.
    Now in this case what you need to do is :
    1)  create an attribute <view_controller> in your context class. Here the context is TRADE. The type of this attribute wud be same as the view controller class CL_TPMOE_HEADEREOF0_IMPL
    2) Go to the view controller class and redefine the method
    DO_VIEW_INIT_ON_ACTIVATION. This method is called only once when the view is loaded for the first time.
    3) In this method, put the following code
    me->typed_context->(Trade)->[view_controller] = me.
    by the above code, you are setting the newly created attribute to the view controller instance.
    4) The next step would be, go back to your getter setter methods or what ever it may be, try referring to the Fund plan ID by the code snippet mentioned below
    data: lr_entity type ref to cl_crm_bol_entity.
    lr_entity ?= me->[view_controller]->typed_context->[the context node in which the fund plan id is present]->get_current().
    lv_field_value = lr_entity->get_property_as_String( **pass the field name here ).
    This should definitely resolve the problem.
    Thanks,
    Vinay

  • HTTPS Lock Icon missing on pages which also have a Reader View

    I navigated to a page which is protected by https (as verified using Firefox), and which also has a Reader View.  On Safari, the Reader View icon (the 4 or so lines) appears on that page, but the Lock icon is not visible at all.
    Is this a known issue?
    For an example, see:
         https://www.doba.com/basictrial/standard/3/

    Yes, I noticed this as well. The workaround I have is, go to Windows and search for "On Screen". You will get to the On Screen Keyboard where you can toggle the Scroll Lock.

  • Email Event Read/View Access

    In our current setup in development tier we have access of add, edit, and delete to the email event. In production tier we do not have any those access. I was wondering if the email event can have view/read access so that we can see the email event. The same setup for job definition that we can only view/read the job in production.
    Thanks,
    Warren

    The option selected is correct.  A few possibilities:
    1. Log out of Tidal Client, then sign back in
    2. Do you access Tidal via a locally installed client or go through Citrix as a published app? If so, then at times the Citrix user profile gets corrupted preventing users from seeing all their entitlements, and needs to be fixed.
    BR,
    Derrick Au

  • Unable to install reader/view PDF files

    Hi all,
    Here's another wierd one... suddenly, I cannot download or view PDF files in Safari. I have attempted to download acrobat reader for a re-install, but neither safari nor firefox will download the complete file. Adobe says the file is 21 megs, but when downloaded (takes 3 seconds!!) file size shows 409 Kb everytime I try it. When I click the .dmg I get a message that says "unable to open file... unsupported file type" or similar statement. Any idea what might be happening here? I'm running 10.4.8 and everything used to work fine, although I hated Acrobat because it took 30 seconds to load!!!
    Thanks for your input.

    Hi all,
    Here's another wierd one... suddenly, I cannot
    download or view PDF files in Safari. I have
    attempted to download acrobat reader for a
    re-install, but neither safari nor firefox will
    download the complete file. Adobe says the file is 21
    megs, but when downloaded (takes 3 seconds!!) file
    size shows 409 Kb everytime I try it. When I click
    the .dmg I get a message that says "unable to open
    file... unsupported file type" or similar statement.
    Any idea what might be happening here? I'm running
    10.4.8 and everything used to work fine, although I
    hated Acrobat because it took 30 seconds to load!!!
    Thanks for your input.
    Correction... downloaded Reader file is actually a folder named "DownloadReader.pkg" and double-clicking on it causes the message "File could not be opened because the specified format is not supported"
    Thanks

  • Adobe Reader view in Internet Explorer is very narrow

    I am able to open PDF files inside Internet Explorer but they show up in a 2 inch wide (or so) column on the left side of the screen and I am unable to get this very narrow view to widen. The PDF is there but very very small. Zooming in works but again all I can see is 2 inches or so of the left hand side. The right hand side is solid black as if the plugin is just sized down to be very narrow. I've reinstalled Acrobat Reader but still have the issue. Has anyone ever seen this?

    Does this happen on every site?  Try opening the PDF on this site
    http://www.adobe.com/devnet/flashplayer/articles/flash_player_admin_guide.html
    Does it happen here as well?
    Can you provide a screenshot on how that looks?

  • Any way to read/view .xps files on a Mac running 10.4.9 ?

    I've searched the FAQs and the forums, and I've googled in vain.
    I'm curious to view the .xps files on Microsoft ClearType page.
    I found something called NiXPS.app for MAC OS X, but it fails to view or read anything in the XPS files, though it does recognize and "open" them without showing them.
    Is anyone aware of a reader for .sps files on a Mac?
    Dual 1.25MHz MDD G4, 2GB RAM, 4 int dr.,2ext FW drives   Mac OS X (10.4.9)  

    You can get a .XPS file converter from the Beast of Redmond itself. <http://www.microsoft.com/mac/downloads.aspx> I've got no idea how well, or even if, it works; the downloads page says that it's v 0.1.1 beta. Try at your own risk.

  • Adobe reader viewing

    I just bought a new laptop and am attempting to view an adobe reader file.  The issue is that I can only see the first page of a multipage file.  The bookmarks show up on the left side but they do not function when clicked upon.  Furthermore on my old laptop I can open this file in Adobe reader and it displays fine.  Any help would be appreciated.  Thank you for your time.

    Do you have a direct link to that PDF, or is it built from that database when you click on the link?
    If you have a direct link, download the PDF to your local disk (right-click on it, then select Save target as), then open the PDF from there.

  • Reader views EPS?

    Hello. I understand Reader is supposed to be able to view EPS files.  For some time I have noted that Reader has not been able to view the EPS documents that I have created using CorelDraw X4. They open fine in Illustrator 10, re-open fine in CorelDraw and open in Acrobat. But when I use Reader (multiple updates since I first noticed it) they wont open and get the below notice. Dont have any other known issues with Reader.
    "Adobe Reader could not open xxxx.eps because it is either not a supported file type or the file has been damaged (for example it was sent as email attachment and not propertly decoded)"
    Reader 9.4.2
    Windows XPPro SP3 (latest)
    From CorelDraw X4:
    EPS exported Postscript 1 or 2
    Occurs with or without ICC
    Occurs RGB & CMYK
    Thanks for any guidance

    Hello. I understand Reader is supposed to be able to view EPS files.
    Where did you read this? Adobe Reader can't display EPS files.

Maybe you are looking for

  • Got lost on Setting up a PHP development environment for Dreamweaver

    I am following Dave Powers article on building a dynamic website. I am using Mac 10.6.7 and Dreamweaver CS5. I have downloaded Dave's example file and tried putting it on the desktop that didn't work. Next I tried dragging it into the website folder.

  • Multiple DCIM / Photo folders in Windows

    This has been a problem since iOS 3. For some reason one day my photos will start appearing in different folders when browsing for them while my iPhone is connected.

  • Max number of char in textArea component

    Hi gurus! The thtmlb textArea component does not have the property maxlegth. How can I limit the maximum amount of caracters for this component? Thanks!!!

  • Scriptable Window Capture

    I have a video [actually it's a cable TV picture] running in an application window that I want to be able to 'sample' from time-to-time (to update a webpage with a snapshot image). I have looked at using screencapture via a shellscript, but this need

  • Setting text output color

    Is there a way to change the color of text output through System.out.println()? I want to have some text be shown in bright white while the rest of the output is in its normal attribute. I considered using some kind of ANSI opcodes but that is not po