Setting size of reader text

I would like to know how I can set the text to 100% when I open up the reader program so I do not have to reset it every time I use it?
As it is set now it opens as "Actual size" 70.2 %.
I await for assistance in relation to this matter.   Silvatop

Edit | Preferences | Page Display | Zoom: 100%

Similar Messages

  • How to set fixed size for inputfile text field

    Hi all,
    I am using inputfile component to test file uploading so I created a simple upload page. When I finished upload the file, the input text field will "shrink" its size and change the size to adjust the file name. Is there any way to set a fix size for input text field?
    Here is some part of the code:
    <af:form id="f1" usesUpload="true">
    <af:panelHeader text="File Uploader" id="ph1">
    <af:inputFile label="File to upload" id="if1" autoSubmit="true" valueChangeListener="#{fileBean.fileUpdate}"
    value="#{fileBean.file}" partialTriggers="if1"
    columns="50"/>
    </af:panelHeader>
    <af:commandButton text="Save" id="cb1"/>
    FileBean:
    public void fileUpdate(ValueChangeEvent valueChangeEvent) {
    RichInputFile inputFileComponent = (RichInputFile)valueChangeEvent.getComponent();
    UploadedFile newFile = (UploadedFile)valueChangeEvent.getNewValue();
    UploadedFile oldFile = (UploadedFile)valueChangeEvent.getOldValue();
    Thanks,
    Jerry

    you can set columns attribute in af:inputfile. Please see highlighted area i have inserted to you code
    <af:form id="f1" usesUpload="true">
    <af:panelHeader text="File Uploader" id="ph1" columns = "34" >
    <af:inputFile label="File to upload" id="if1" autoSubmit="true" valueChangeListener="#{fileBean.fileUpdate}"
    value="#{fileBean.file}" partialTriggers="if1"
    columns="50"/>
    </af:panelHeader>
    <af:commandButton text="Save" id="cb1"/>

  • Fetch unread RSS items from mail, set them to read, save the text to a file

    This is what I want to do, and needless to say I am having a little trouble.
    I wish to take the unread mail RSS items, set them to read, and then save the TEXT of the articles (not the title, time, or author) to a TextEdit file in my Documents folder.
    So far I have Get Feeds From Mail > Filter Articles > Get Text from Articles > New Text File
    This is all fine and dandy, but how do I just get the TEXT and not all of the crap that comes with it?
    Thanks!

    NOw I had manage to clear out the error, but now the problem is when I click on the 'save' button, this function clear out the entire text file for me !!!
    The code are as below:
           if(e.getSource()== vButtons[0])
              try{
               String str;
               String Ky = tArea.getText();
               BufferedWriter buffWrite=null;
               BufferedWriter in1 = new BufferedWriter(new FileWriter("Keyword.txt"));
                        buffWrite.write(Ky);
                    buffWrite.flush();
                        buffWrite.close();
                    in1.close();
              catch (IOException ex) {
              ex.printStackTrace();
            if(e.getSource()== vButtons[1])
                  new panel();
                  dispose();
             if(e.getSource()== vButtons[2])
                System.exit(0);           
        }     Please tell me how to save the TextArea to the text file, THANKS !!!

  • Global change to the size of a text frame in InDesign 5.5?

    Is there a way to make a global change to the size of a text frame in InDesign 5.5? I just laid out a book and the size needs to go up half an inch.

    If you have worked properly and have done following:
    Set up Masters with margins and columns,
    Aligned all text frames with the margins,
    Turned on Layout Adjustment,
    You will only change the margins on the Master and it will change every page.
    If not …
    you have to do it manually.

  • How do I make mail readable, text barely readable on screen when set to 12 point text.

    Is there a way to increase the size of the displayed mail, as you are creating it?
    I have mine set to 12 point text, but it is still difficult to read. The e-mail when received is fine, it's the creating that's "tiny"
    Thanks
    Mike

    I use "screen zoom" (control + scroll up/down) often when creating these responses.  Or for anything else where I do not want to change the number of open winodws.
    You can also write the message in 16 pt font and "select all" to make it 12-point before sending.

  • Set font on a text

    Hi!
    I've got some problem with setting font on a text, this is my coed:
    var ar_delaney_e:Font = new ar_delaney();
    textcount=1;
    //Setting a variable to     ar_delaney_e
    this["font_"+String(textcount)] = "ar_delaney_e";
    //Create a textFormat
    var textFormat:TextFormat = new TextFormat();
    //Setting font textformat fon to ar_delaney_e??
    textFormat.font = this["font_"+String(textcount)];
    //Set textformat to my text
    myText.defaultTextFormat = textFormat;
    Fon is embedded hav also tried textFormat.font = this["font_"+String(textcount)].fontName; instead of textFormat.font = this["font_"+String(textcount)]; but no one of this will work, how can you fix this?

    On stage I got a button with instance name add_text_btn, and a mc called "knapp_bild". So when pressing add_text_btn the function func_add_text_btn creates a movie clip with a text in it and also variables for size, color and font for the text. the two variables size and color works fine.
    add_text_btn.addEventListener(MouseEvent.CLICK, func_add_text_btn);
    function func_add_text_btn(event:MouseEvent):void{
    textcount++;
    var MovieClip:MovieClip = new MovieClip();
    MovieClip.x = 80;
    MovieClip.y = 60;
    MovieClip.alpha = 1;
    MovieClip.name="mc_text"+String(textcount);
    //Variables for font, size and color
    this["size_"+String(textcount)] = 40;
    this["color_"+String(textcount)] = "0x00CC00";
    this["font_"+String(textcount)] = "ar_delaney_e";
    textFormat.font = this["font_"+String(textcount)].fontName;
    textFormat.size = this["size_"+String(textcount)];
    textFormat.color = this["color_"+String(textcount)];
    var textField:TextField = new TextField()
    textField.defaultTextFormat = textFormat;
    textField.autoSize="left";
    textField.text = 'Text '+String(textcount);
    textField.name = "text"+String(textcount);  // give them names
    textField.background=false;
    textField.embedFonts=true;
    var mc_name=String("mc_text"+String(textcount));
    knapp_bild.addChild(MovieClip);
    MovieClip.addChild(textField);
    textField.mouseEnabled=false;
    MovieClip.width=textField.width;
    Later on in the program this["font_"+String(textcount)] will change but it dosen't work in the func_add_text_btn function now so let's just try to fix that first. Hope you can see something that mabe won't work and just ask if you got any qusetion. Thanks for your help!

  • Set Size of Preview

    Whenever I open files (such as help menu etc), they open in tiny windows which don't utilize my screen size and the text is too small to read. How can I make it so the default setting is larger? I thought I remembered a way to open the plist file with text edit and change a number, but I don't seem to see anything there for that. Any advice?
    Lawrence

    What you remember seeing about editing the plist file of Preview was a MacOSXHints thread about changing the default zoom in Preview when you search for an item with Spotlight and then open the file--the default is set, who knows why, for 28 and the hint explained how to reset this to a more sensible 1. But it is ONLY for the Spotlight zoom.
    Help Viewer is a different deal. I took a look at the plist file for help and discovered that it is quite rudimentary. Since I know that all help files are basically just html files, I decided to take a look at one and see what is what with them. I discovered that the formatting is accomplished through individual css files stored with the help html files with each application, and the style sheet specifies a 9pt sans-serif font. This is a bit small for my tastes too. Whether it is possible to over-ride this style sheet somehow globally using the plist or some other method I just don't know, but I'm kind of doubtful. I suppose you could make your own style sheet and substitute it inside each and every application (and the Finder is an application), but the potential for messing things up seems rather high, and the work involved would be enormous. I think it is way easier, not to mention safer, to just always hit the Command-+ key combo.
    Francine
    Schwieder

  • Can I change a size of basic text block?

    I wonder can I do smth with a size of any text block that Indesign creates if I, for example, copy-paste some text into the page?
    I repeat, I don't create any text block, just make the paste command. Then, some text block will be created with my text inside.
    Usually this text block is too big especially if I paste just 1-2 words. Right for now, such block equal almost 53 mm squared.
    Can I change it? The width is not that important but the height of such block causes some obstacles during the work.

    hm..
    so this way it is might be also auto-size:height only used, and even to set some minimum height to avoid a block getting too flattened.
    though, autosize options are good for some specific projects, and not really for daily use..

  • Reading text from server socket stream

    I have a basic cd input program i've been trying to figure out the following problem for a while now, the user enters the artist and title etc and then a DOM (XML) file is created in memory this is then sent to the server. The server then echos back the results which is later printed on a html page by reading the replys from the server line by line.
    The server must be run it listens for clients connecting the clients connect and send DOM documents through the following jsp code.
    <%@page import="java.io.*"%>
    <%@page import="java.net.*"%>
    <%@page import="javax.xml.parsers.*"%>
    <%@page import="org.w3c.dom.*"%>
    <%@page import="org.apache.xml.serialize.*"%>
    <%!
       public static final String serverHost = "cdserver";
       public static final int serverPort = 10151;
    %>
    <hr />
    <pre>
    <%
            Socket mySocket = null;          // socket object
            PrintWriter sockOut = null;      // to send data to the socket
            BufferedReader sockIn = null;    // to receive data from the socket
            try {
                //  #1 add line that creates a client socket
                mySocket = new Socket(serverHost, serverPort);
                // #2 add lines that create input and output streams
                //            attached to the socket you just created
                 sockOut = new PrintWriter(mySocket.getOutputStream(), true);
                 sockIn = new BufferedReader(new InputStreamReader(mySocket.getInputStream()));
            } catch (UnknownHostException e) {
                throw e; // This time the JSP can handle the exception, not us
            } catch (IOException e) {
                throw e; // This time the JSP can handle the exception, not us
    String cdTitle, cdArtist, track1Title, track1Time, track1Rating;
    // Retrieve the HTML form field values
    cdTitle = request.getParameter("cdtitle");
    cdArtist = request.getParameter("cdartist");
    track1Title = request.getParameter("track1title");
    track1Time = request.getParameter("track1time");
    track1Rating = request.getParameter("track1rating");
    // Create a new DOM factory, and from that a new DOM builder object
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
    DocumentBuilder builder = factory.newDocumentBuilder();
    // Note that we are creating a new (empty) document
    Document document = builder.newDocument();
    // The root element of our document wil be <cd>
    // It gets stored as the child node of the whole document (it is the root)
    Element rootElement = document.createElement("cd");
    document.appendChild(rootElement);
    // Create an element for the CD title called <title>
    Element cdTitleElement = document.createElement("title");
    // Add a text code under the <title> element with the value that
    // the user entered into the title field of the web form (cdTitle)
    cdTitleElement.appendChild(document.createTextNode(cdTitle));
    // Place the <title> element underneath the <cd> element in the tree
    rootElement.appendChild(cdTitleElement);
    // Create an <artist> element with the form data, place underneath <cd>
    Element cdArtistElement = document.createElement("artist");
    cdArtistElement.appendChild(document.createTextNode(cdArtist));
    rootElement.appendChild(cdArtistElement);
    // Create a <tracklist> element and place it underneath <cd> in the tree
    // Note that it has no text node associated with it (it not a leaf node)
    Element trackListElement = document.createElement("tracklist");
    rootElement.appendChild(trackListElement);
    // In this example we only have one track, so it is not necessary to
    // use a loop (in fact it is quite silly)
    // But the code below is included to demonstrate how you could loop
    // through and add a set of different tracks one by one if you
    // needed to (although you would need to have the track data already
    // stored in an array or a java.util.Vector or similar
    int numTracks = 1;
    for (int i=0; i<numTracks; i++) {
      String trackNum = Integer.toString(i+1);
      Element trackElement = document.createElement("track");
      trackElement.setAttribute("id", trackNum);
      trackListElement.appendChild(trackElement);
      // Track title element called <title>, placed underneath <track>
      Element trackTitleElement = document.createElement("title");
      trackTitleElement.appendChild(document.createTextNode(track1Title));
      trackElement.appendChild(trackTitleElement);
      // Track time element called <time>, placed underneath <track>
      Element trackTimeElement = document.createElement("time");
      trackTimeElement.appendChild(document.createTextNode(track1Time));
      trackElement.appendChild(trackTimeElement);
      // Track rating element called <rating>, placed underneath <track>
      Element trackRatingElement = document.createElement("rating");
      trackRatingElement.appendChild(document.createTextNode(track1Rating));
      trackElement.appendChild(trackRatingElement);
    OutputFormat format = new OutputFormat();
    format.setIndenting(true);
    // Create a new XMLSerializer that will be used to write out the XML
    // This time we will serialize it to the socket
    // #3 change this line so that it serializes to the socket,
    // not to the "out" object
    XMLSerializer serializer = new XMLSerializer(writer, format);
    serializer.serialize(document);
            // Print out a message to indicate the end of the data, and
            // flush the stream so all the data gets sent now
            sockOut.println("<!--QUIT-->");
            sockOut.flush();
            BufferedReader stdIn = new BufferedReader(new InputStreamReader(System.in));
            String fromServer;
            String fromUser;
             #4 add a while loop that reads text from the
            server socket input stream, line by line, and prints
            it out to the web page, using out.println(...);
            Note that because the reply from the server will contain
            XML, you will need to call upon the toHTMLString() method
            defined below to escape the < and > symbols so that they
            will display correctly in the web browser.
            Also note that as you receive the reply back from the
            server, you should look out for the special <!--QUIT-->
            string that will indicate when there is no more data
            to receive.
            while ((fromServer = sockIn.readLine()) != null) {
            out.println(sockIn.readLine());
                // If the reply from the server said "QUIT", exit from the
                // while loop by using a break statement.
                if (fromServer.equals("QUIT")) {
                    out.println("Connection closed - good bye ...");
                // Print the text from the server out to the user's screen
                out.println("Reply from Server: " + fromServer);
                // Now read a line of text from the keyboard (typed by user)
                fromUser = stdIn.readLine();
                // If it wasn't null, print it out to the screen, and also
                // print a copy of it out to the socket
                if (fromUser != null) {
                    out.println("Client: " + fromUser);
                    sockOut.println(fromUser);
            // Close all the streams we have open, and then close the socket
            sockOut.close();
            sockIn.close();
            mySocket.close();
    %>
    I'm suppose to modify the commented sections labled with #.
    #1,2 are correct but i have doubts on the 3rd and 4th modification.
    for #3 i changed so i serializes to the socket not to the "out" object:
    from
    XMLSerializer serializer = new XMLSerializer(out, format);
    to
    XMLSerializer serializer = new XMLSerializer(writer, format);
    with "out" it prints out some of the results entered but it just hangs i'm thinking it might be the while loop that i added in #4. If i changed it to serialize the socket XMLSerializer serializer = new XMLSerializer(writer, format); it doesn't print out nothing at all; just a blank screen where it hangs.
    I can post the rest of the code (server thats in java and cdinput.html) but since i want to keep my post short and if required i'll post it later on i also omitted some of the code where it creates the DOM textnodes etc to keep my post short.

    On your previous thread, why did you say the server was using http POST and application/xml content type when it quite obviously isn't, but a direct socket communication that abuses XML comments for message end delimiters?
    The comments imply you need to wait for "<!--QUIT-->" on a line by itself, but your loop is waiting for "QUIT".
    Pete

  • Is there a way to increase the icon size (and the text below) without using zoom?  I am trying to help out someone who has moderate visual impairment that does not want to use zoom just to see the icons and their labels.

    Is there a way to increase the icon size (and the text below) without using zoom in iOS 7?  I am trying to help out someone who has moderate visual impairment that does not want to use zoom just to see the icons and their labels.

    Hello Apple.
    It seems you have gone to great lengths to improve accessibility in many areas of the iPad. Why was this obvious problem with icon text size missed?  (It's not with the Mac.). And for so long too.
    Do you employ people with actual accessibility problems to help you do UI design?
    I think too, that some buttons are too close for people who might have motor control problems.
    I love my iPad but I fear as I age, the iPad might not keep up with me.

  • How Can I Set a Default Placeholder Text Language?

    How can I set a default placeholder text language instead of having to set the language every time I use placeholder text?

    Steve Werner wrote:
    I think the default placeholder text language is the language of your version of InDesign.
    The placeholder text is based on the current language setting. So if the language under the cursor is Hebrew, you'll get Hebrew.

  • How do I set up a group text

    How do I set up a group text from my contacts with my droid maxx?Kathleen

    Hey zzmama294,
    Thanks for the question. I understand that wish to learn more about group messaging. The following resources may provide assist you:
    iOS: Understanding group messaging
    http://support.apple.com/kb/HT5760
    Send a message to a group - Message - iPhone Basics
    http://support.apple.com/kb/TI82
    Thanks,
    Matt M.

  • Column headers be vertical in firefox and IE and fit the size as per text

    I want to make my columns vertical as shown in the below link
    https://apex.oracle.com/pls/apex/f?p=39006:1
    I am making two regions in a page, and based on the first region data, I submit and get the next displayed region, I am not showing that in the below link though but this is exactly what I want
    http://apex.oracle.com/pls/apex/f?p=15324:1
    My second region has vertical columns but my report cannot be scrolled to right because of the first region. Also I want the columns to have fitting size of the text in them
    First region is of HTML type
    Second region is of PL/SQL type
    Could you please check my page and give an idea how to do the same?
    Details
    Full APEX version: Application Express 4.0.2.00.07
    Database Version
    CORE 11.1.0.7.0 Production
    NLSRTL Version 11.1.0.7.0 - Production
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    PL/SQL Release 11.1.0.7.0 - Production
    TNS for Linux: Version 11.1.0.7.0 - Production
    Edited by: user13735136 on Jul 1, 2012 1:56 AM

    The second link you provided is useless.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.apress.com/9781430235125
    http://apex.oracle.com/pls/otn/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • In 10g read text files

    i am not able to read text file in 10g forms. using webutil.pll and webutil.lib
    here i posted the code . i am not getting message 2, client_text_io.fopen is not working what could be the reason.
    DECLARE
    in_file client_TEXT_IO.FILE_TYPE;
    V_LINE_COUNT number;
    linebuf VARCHAR2(1800);
    V_var1 varchar2(80);
    V_var2 varchar2(80);
    V_var3 varchar2(80);
    V_var4 varchar2(80);
    V_var5 varchar2(80);
    filename VARCHAR2(30);
    l_var number;
    blnRet BOOLEAN;
    begin
         DELETE FROM NIRU_TEMP;
    :file_path:=LTRIM(RTRIM(:file_path));
    MESSAGE('1');
    in_file := client_text_io.fopen(UPPER(:file_path),'r');
    MESSAGE('2');
    loop
    V_LINE_COUNT := V_LINE_COUNT + 1;
    client_text_io.get_line(in_file,linebuf);
    MESSAGE('5');
    V_var1 := substr(linebuf,1,(instr(linebuf,',')-1)) ;
    MESSAGE('6'||V_VAR1);
    MESSAGE('6'||V_VAR1);
    l_var := length(v_var1);
    V_var2 := substr(linebuf,l_var+2,(instr(linebuf,','))) ;
    --V_var3 := substr(linebuf,15 ,10 );
    V_var2 :=LTRIM(RTRIM(V_var2));
    MESSAGE('6'||V_var2);
    MESSAGE('6'||V_var2);
    :p_id := v_var1;
    :p_desc :=v_var2;
    --IF V_var2 = '' THEN
    --V_var3 :='';
    --else
    --V_var3 := TO_NUMBER(V_var2) ;
    --end if;
    --V_var5 := substr(linebuf,26 ,70 );
    INSERT INTO NIRU_TEMP VALUES (V_var1,V_var2);
    client_text_io.new_line;
    :System.Message_Level := '20';
    commit;
    :System.Message_Level := '0';
    --<<end_loop>>
    --null;
    next_record;
    end loop;
    client_TEXT_IO.FCLOSE(in_file);
    exception
         WHEN OTHERS THEN
         MESSAGE('ERROR'||SQLCODE||' '||SQLERRM);
    --exit;
    end;

    Hello Francois,
    You have a solution for this problem?
    I have a problem like this. While reading a text file, such as size of 7MB, long, between 15-30 minutes.
    See...
    declare
         arq client_text_io.file_type;
         linha varchar2(800);
         v_total number := 0;
         v_icms number := 0;
    begin
    :valor_total := 0;
    :valor_icms := 0;
         arq := client_text_io.fopen(:arquivo,'r');
         loop
         client_text_io.get_line(arq,linha);
         if substr(linha,1,1) = '1' then
              v_total := v_total + (to_number(substr(linha,302,13))/100);
              v_icms := v_icms + (to_number(substr(linha,262,13))/100);
         end if;     
         end loop;
         client_text_io.fclose(arq);
         exception
              when no_data_found then
              :valor_total := v_total;
              :valor_icms := v_icms;
              message('Realizado com sucesso!');
              message('Realizado com sucesso!');
    end;

  • How to change the size of the text inside a label?

    Hello,
    I would like to change the size of the text inside a label.
    Is there any way to do it Web DynPro?

    Hello Roy,
    Not possible. WDLabelDesign contains only 2 values: STANDARD and LIGHT. As workaround you can use TextView. It supports a lot of "designs" (e.g. label_small).
    Best regards, Maksim Rashchynski.

Maybe you are looking for

  • Is there a bapi for confirming quantity on schedule line?

    Does anyone know of a BAPI for confirming the quantity on a sales order schedule line? Thank you, Justin

  • How to stop an iPhone from displaying in iTunes

    Hello, I have a question for the community.  My father-in-law bought my mother-in-law an iPhone 4s for Christmas.  I set up the iPhone for him using my laptop, now everytime she is over it shows up in my itunes.  Is there a way to stop it from showin

  • Problems after updating to 1.1.1

    I updated my Nano to 1.1.1 today. As the Status bar on my nano finished and the screen turned back to "Do not disconnect". The iPod Updater program on my computer froze. So after that I unplugged my iPod from my computer. I resetted it. I found out t

  • ITunes: where is the option to sync music without iCloud ????

    I have 3000+ songs in my iTunes account on my mac Mini I upgraded to iO6 and now, the only option I have to sync my music that I see is with iCloud.  I no longer have an option to sync the music on my computer directly to my iPhone. iClould doesn't w

  • Using access database

    I would like to use the data I have in an access database. I can't get it right, the only idea is that I have a page where there are 15 thumbnails, with text from the database. Clicking the thumb would open a page with more information and photo's fr