How can I open files using a default zoom level?

When I open a file in acrobat reader, the letters are too small that I have to zoom out the documents in order to read them. Is it a way to pre-set the zoom level every time I open the files?

I have the same issue - .
We NEED a way to have OUR default zoom override whatever some author thought was a wonderful zoom level.
The Zoom setting in Page Display and also in Accessibility are not honored in V10.1.7, and from other posts, not in earlier versions either.
And, yes I can provide many documents which apparently have author created zoom levels to prove the point, if needed.

Similar Messages

  • How can I open file?

    How can I open file; such as create other programme(Dream weaver...etc)?
    One of my friend will make website for me soon...(She is not Mac user...I think she will use dream weaver or other tools)
    So...I want take that file open in iweb09' is it possible?

    Imagine iWeb as a database which upon your command creates html files. It's a one-way process. You can generate more html files later but iWeb cannot open them. It only works with the "database" (the domain file).

  • How can i open file from adobe reader..i already have adobe read

    how can i open file from adobe reader..i already have adobe reader installed and cannot open a
    file and i cannot convert my file into pdf..

    Is the file really a PDF? Where is it? Have you tried opening it from within Reader?

  • How can I OPEN files I just downloaded? They're on the DOWNLOADS screen of Firefox but I can't open them even after double-clicking? And they're not on the FOLDERS as well. I tried RIGHT-CLICK and the "open dowloading folder" or something does not work! P

    How can I OPEN files I just downloaded? They're on the DOWNLOADS screen of Firefox but I can't open them even after double-clicking? And they're not on the FOLDERS as well. Even the right-click is not working ... the "open containing folder" does not work.
    == This happened ==
    Not sure how often
    == ALWAYS! ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2)

    Open Containing Folders is never active.

  • How can I open files from Appleworks and Pages 4.3 in Mavericks?

    I have documents I created in Appleworks and Pages 4.3 that I can't open in Pages 5.1 using Mavericks.  How can I open those files?

    Mavericks is the Operating System (OSX).
    LibreOffice [free] may be able to open your AppleWorks files but probably not perfectly.
    Pages '09 should still be in your Applications/iWork folder.
    Pages 5 can open Pages '09 files but will alter/damage them.
    Peter

  • How can I open files in folders on iCloud Drive on my iOS8 device?

    Have created folders and moved parts of my documents and pdf files to iCloud Drive on my MAC (Yosemite).
    I can see the folders on my iOS device in Manage my iCloud, I can delete the folders and documents but HOW can I open the documents?
    On Apples homepage I can see a simliar layout as when I log in to iCloud.com with my folders etc. plus the Apple Pages folders.
    But where on my iPad / iPhone do I navigate to find the same?
    Tried to login to iCloud.com on Safari on my iPad but it did not show my folders/files on iCloud Drive.

    So what is the point of upgrading to iCloud Drive when there is no "Drive" on your iOs 8 device? I also added a new folder through Safari on desktop- as instructed by Apple- and I have no way of accessing it on the iPhone! This seems pretty bogus and a huge waste of time!
    And... If Apple was developing an app for the "Drive" why have us upgrade to something you have no way of using?
    And... I did try opening files through apps that allow it but I do not see anything.
    And... Pages docs do NOT show in the "Drive" on Safari.
    WHY?

  • How can i upload file using ajax post request and jsp

    Hi
    this is my code files
    addPhoto.jsp
    <html>
    <head>
    <title>Add Photo</title>
    <script>
    var optionNo = 0;
    var i=1;
    var val=0;
    var file = 0;
    var exten = new Array(".jpg",".jpeg",".gif");
    function addValues()
         for(var i=0;i<5;i++)
              optionNo += 1;
              oNewOption = new Option();
              oNewOption.text = optionNo;
              oNewOption.value = optionNo;
              addSelect.add(oNewOption);
    function addBoxes()
         var str = "";
         var j=0;
         val = document.getElementById('addSelect').value;
         for(j=1; j<= val; j++)
              str = str + '<font size=3>file:' + j + '</font>';
              str = str + '<input type="file" id=filepath'+ j +' name=file'+ j + ' onchange="uploadFile(hidden'+ j + '.value)"><div id="result'+ j +'"></div>
              str = str + '<input type="hidden" name="hidden' + j + '" value=' + j +'>';
         document.getElementById('addPhoto').innerHTML = str;
    function uploadFile(value)
    var str = "filepath" + value;
    file = value;
    var param = document.getElementById(str).value;
    var parameter = "filepath=" + param;
    alert(parameter.length);
    if(checkValidity(param))
    var url = "uploadFile.jsp";
    if (window.XMLHttpRequest) {
    req = new XMLHttpRequest();
    } else if (window.ActiveXObject) {
    req = new ActiveXObject("Microsoft.XMLHTTP");
    req.open("POST", url, true);
    req.setRequestHeader("Content-type", "multipart/form-data");
    //req.setRequestHeader("Content-length", parameter.length);
    req.setRequestHeader("Connection", "close");
    req.onreadystatechange = callback;
    req.send(null);
         else
              document.getElementById("result" + file).innerHTML = "upload .jpeg,.jpg,.gif Files Only";
    function callback() {
    if (req.readyState == 4) {
    updatepage(req.responseText);
    function updatepage(str){
         document.getElementById("result" + file).innerHTML = str;
    function checkValidity(str)
         var i=0;
         var j=0;
         var str1 = str.substring(str.lastIndexOf("."),str.length);
         alert(str1);
         for(i=0;i<exten.length;i++)
         if(str1.search(exten) != -1)
              j++;
              break;
         if(j>0)
              return true;
         else
              return false;
    </script>
    </head>
    <body onload="addValues()">
    <h5>Add Photo(s)</h5>
    <select id="addSelect" name="addSelect" onchange="addBoxes()">
    <option id="select" selected>Select</option>
    </select>
    <div id="addPhoto"></div>
    </body>
    </html>
    uploadFile.jsp
    <%@page import="java.io.*"%>
    <%
    /*try
    String contentType = request.getContentType();
         System.out.println(request.getMethod());
         System.out.println("Content type is :: " +contentType); 
         if ((contentType != null) && (contentType.indexOf("multipart/form-data") >= 0))
              DataInputStream in = new DataInputStream(request.getInputStream());
              DataInputStream in1 = in;
              int formDataLength = request.getContentLength();
    System.out.println(formDataLength);
              byte dataBytes[] = new byte[formDataLength];
              int byteRead = 0;
              int totalBytesRead = 0;
              while (totalBytesRead < formDataLength)
                   byteRead = in1.read(dataBytes, totalBytesRead, formDataLength);
                   totalBytesRead += byteRead;
              out.println("<br>totalBytesRead : " + totalBytesRead + " : formDataLength = " + formDataLength);
         } catch(Exception e) {
              e.printStackTrace();
         try
         String filePath = request.getParameter("filepath");
         System.out.println(filePath);
         File f= new File(filePath);
         String path = f.getName();
         String contentType = request.getContentType();
         System.out.println(contentType);
         //InputStream in = new FileInputStream(filePath);
         DataInputStream in = new DataInputStream(request.getInputStream());
         int formDataLength = request.getContentLength();
         System.out.println(formDataLength);
    byte[] buf = new byte[1024];
    OutputStream out1 = new FileOutputStream("c:/docs/" + path);
    int len;
    while ((len = in.read(buf)) > 0) {
    out1.write(buf, 0, len);
    in.close();
    out1.close();
         out.write("File Uploaded SucssesFully");
    catch(Exception e)
         e.printStackTrace();
         out.write("error while Writing File");
    %>
    the above code in request.getContentType() i am getting 0. I am not passing the content length. for the same application with out using Ajax i am
    getting the size of file... it is very very urgent for me.. pls help me out on this...
    Any one having the code on this pls mail me the code...
    my mail id ... [email protected]
    Regards
    Ashok Kumar

    Sure, you can upload a file, using a form input element of type file. You pick this up with a servlet, though you need a special request wrapper to sort out the multi-part request you get back that way (there's a suitable package on jakarta.apache.org/commons)
    The servlet decrypts the file and can pass the results to a JSP for display.
    Don't try to do the complicated stuff in a JSP, it all gets incredibly messy, and that's not what JSPs are for.

  • How can I open files in portable disk?

    I am so sorry, but I am very new user of Mac OS. I am trying to open files such as media files and other folders, but I can not see anything when I click my portable disk drive on the screen. How can I open these files and see it?

    Try right clicking the disk and selecting "Open".
    Another approach is to open Finder (the leftmost icon on your dock at the bottom of your screen).  Hopefully you will see your portable disk drive on the left side of the finder display.  Then you would click on that icon, and see all the folders and files on the right.

  • HT201250 How can I restore files using Time Machine to a new external drive?

    I need to restore all the files on a failed hard drive—upwards of a terabyte of data. How can I instruct Time Machine to copy the files to a new external hard drive? Thanks!

    Hold down the option key and select
              Browse Other Backup Disks...
    from the Time Machine menu in the menu bar. The menu icon looks like a clock running backwards. If you don't have that menu, open the Time Machine preference pane and check the box marked
              Show Time Machine in menu bar

  • How can I open files created in ClarisWorks 2 or 3?

    Hi
    Although I can still run AppleWorks 6 (in Snow Leopard) I am trying to 'future proof' my AW documents (WP, SS, DR, PT) by opening them and then saving them either as RTF, PDF, Excel, Word, or JPEG files.
    Unfortunately, I can only open pre-1996 WP documents in TextEdit (all formatting gone) and cannot open pre-1996 SS documents at all. Is there any application that will open documents created in ClarisWorks 2 or 3? I've tried AW itself, and LibreOffice, to no avail. (I do still have the CW2 app but as I have an Intel Mac and no way of running Classic, that's no good to me).

    Hello,
    to convert ClarisWorks files with AppleWorks, it is better to use AppleWorks 6.2.4 (or maybe 6.2.7), see AppleWorks for the modern day, a migration tip ; i.e. unfortunately AppleWorks 6.2.9 fails to open/convert many ClarisWorks files :-~
    Concerning LibreOffice, you must avoid LibreOffice 4.3.0 ( which has a problem with many filters on OSX ): as you have some spreadsheet files, the best is probably to try LibreOffice 4.3.1 RC1 which must be able to open most of these files. If this fails, you can try to download mwawOSX in http://sourceforge.net/projects/libmwaw/files ( also free), i.e. I have corrected a file detection's problem in the new version of libmwaw, so it may work better than LibreOffice ( which includes an older version of libmwaw )....
    Notes:
    - another solution may be to emulate a Mac Classic ( using for instance miniVMac http://minivmac.sourceforge.net : free if you still have some Mac Roms :-~ ) and then to run your version of ClarisWorks.
    - if you find some files that mwawOSX fails to convert and that are not confidential, I may be interested to see them...

  • How Can I Open and Use Excel Spreadsheets on my Mac?

    I am trying to find out how to work with Excel (.xls) files on my Mac.  I have the latest updates on my OS but my Numbers is about 3 yrs old.
    I am able to work with the file on the Forum website, make adjustments.. but that is discouraged.  The owners encourage me to copy the .xls file to my computer and work with it there and finally submit it for critique.
    When I copy the file to the Mac, it seems to come in as a Numbers file.. at least that's what it is when I open it.  When I work with cells, none of the algorithms work.. IOW, nothing changes with the results.
    What have I tried..?
    I have put Open Office on the computer.  That supports Excel files.  But I guess my old mind doesn't know how to "import?" the .xls file on my desktop into OO.  So, I have not been able to make changes.  Possibly I am not seeing what needs to be done.
    I have also clicked on the file icon. Right clicked on it and selected "Get Info" and said to open the file in Open Office.  Nothing happened when I actually tried to open that file.
    I'm at a loss and this is pretty important.
    I'm quite surprised that Numbers doesn't seem to allow working with .xls files  I'm hoping I'm missing something

    Thanks for the rapid replies...
    I have NO problem opening the files.  As I stated in my OP, it is all about WORKING with the file.  IOW, this is a file to help me brew beer with changes in equipment size/configuration.. or simply changing a recipe.
    When I change the size of my brew kettle, the algorithms should modify parameters in different places to modify how much water I would have to use, how much boil off I should expect.. etc etc.  Or if I want to modify the batch size of the brew from 20 gallons to 5 gallons.. when I imput that data, the recipe should change accordingly.  When I do this on the forum site.. it works.  When I import it the algorithms don't change the numbers.
    What I get when I open the file, even as suggested by 'kkaufmann87" is that
    "Unsupported formulas were replaced by the last calculated value".... which were the values I had when I copied the file to my computer.
    Kolgrath.  This question was suggested by another person on that beer forum.. and Google Docs will not work either.

  • Can't open files using relative paths

    That seems straightforward but i can't figure out how I can have access to
    image files stored in the same directory with the compiled classes.
    Here's my what I want to do
    windowsButton = new JButton("Windows", new ImageIcon("icon_cool.gif"));
    but it doesn't work :(
    however if i specify the absolute path to images everything works fine.
    I tried also copying images into the source directory it didn't work.
    I thought about a workaround like If i could get the absolute path of the
    class that loads images that would be great but i have no clue how to get
    that absolute path.
    i code in netbeans so src and classes are separated.
    Thanks in advance for your replies. If u feel like u need more details i'll
    try to provide them :)

    In addition to jverd's answer, here is a tutorial
    dealing with images and icons
    "How to Use Icons":
    http://java.sun.com/docs/books/tutorial/uiswing/misc/i
    con.html
    It gices some examples of how to use the
    getResource() method to load your images.As the tutorial points out, simple path is more general than using class loader and resources for it.
    If OP's problem is on the line of this simplicity, he has to learn relevant details of a particular IDE or,
    if he hates the kind of learning, he'd be better off throwing away and foget it forever.
    It reminds me of a long-time belief that IDE is too big an /unnecessary/ obstacle for beginners.
    Does anyone know, does Eclipse have similar awkwardness for resource path issue?

  • How can I trasfer file using java program (from NT to Unix)

    Hi all,
    I want to transfer a text file from Windows NT to Unix machine inside the Java program.
    How should i do it.
    Thanks in advance.
    Regards
    Rajeev

    you have several options:
    - make your system administrator software install software on Unix and NT so that you can see a directory on the Unix machine from your NT machine, and just copy the file there
    - use FTP to put the file on the Unix machine
    Jesper

  • How can I stream files from the Default location (the streams folder)?

    According to flashmediaserver_3.5_config_admin.pdf (FMS 3.5.3), FMS determines the correct directory to use for streams in the following order:
    Virtual directory (as specified in <VirtualDirectory>)
    Storage directory (as specified in <storageDir>)
    Default location (the streams folder in the application directory)
    So I created a folder called streams in C:\Program Files\Adobe\Flash Media Server 3.5\applications\vod.  I thought this folder would be the default location for the sample application vod.  I did not change any configuration settings for the application vod.  Everything was set by the FMS 3.5.3 installer.
    I copied  sample.flv into C:\Program Files\Adobe\Flash Media Server 3.5\applications\vod\streams and renamed it to sample6.flv.  rtmp://{fms ip}/vod/sample6.flv did not play in the sample video player installed by FMS 3.5.3.
    Is this a bug or the default location "streams" folder is simply not  "default", you have to set it somewhere in XML?

    Thanks for your reply!  I am weihua10.  I could not login into the
    account  that has the screen id weihua10 today.  I have to create another account with  screen id weihua30.
    Based on the configuration xml files (application.xml inside the vod folder), I can see C:\Program Files\Adobe\Flash Media Server 3.5\applications\vod\media is the Virtual Directory "/".  Yes, files put inside the media folder will play.  My question is where there is a default folder "streams".  Based on the document, it seems there is one beside virtual directories and storage directory.  But I could not find any.

  • How can I open files from a mobile app?

    I've got a mobile app developed in 4.6.  Part of our app includes the ability to store files on our remote servers which users can access.  In its simplest form the app displays a list of the files which the user can then click on to open.  I tried throwing a navigateToURL which works - although it's ugly as hell.  It opens the browser which then throws it to the os.  Again, it works, but I know there's got to be a better way. 
    Files will include PDF, images (jpg, tiff, etc), and Word and Excel docs. 
    Any suggestions?  TIA

    Mavericks is the Operating System (OSX).
    LibreOffice [free] may be able to open your AppleWorks files but probably not perfectly.
    Pages '09 should still be in your Applications/iWork folder.
    Pages 5 can open Pages '09 files but will alter/damage them.
    Peter

Maybe you are looking for

  • IPod Touch 32 - weak volume

    Hello iPod Touch users. Thanks for helping. *My problem is that I only get weak volume from all media I play with the standard Apple earphones.* When I set the volume slide on the Touch to maximum, I just get medium level of sound - nice for podcasts

  • Stumped! Can't Get Some Audio To Play.

    I have some files that I converted with Visual Hub and I used their Apple TV 5.1 encoding. I have my Apple TV hooked up to my TV through HDMI. I recently moved and now no mater what I can't get the audio to play for those files. I have audio when I g

  • Export failed, ORA-03113 and ORA-01041

    Hello, I'm trying to do a full export of my DB,I have installed Oracle 9i dataserver(configured in shared mode) on Windows 2k, and the following error appears me: . exportando acciones y objetos de procedimiento pre-esquema EXP-00008: se ha encontrad

  • Blank framebuffer with nouveau

    No, I don't think it is as simple as nomodeset. I update my install about every two weeks.  After an update yesterday my framebuffer is going blank and X isn't starting.  I have had a good read around but I am quite stumped. I have tried setting a fe

  • Moving license server

    Hi. Need to move license server form 2012 server to another 2012 server.  Thgis is for a RDS farm with 5 session host servers and a gateway.  What is the process for migrating licenses or can I just create new license server and point host servers to