Cant open doc files from the server on MacBook Air after upgrading to Maverick

Cant open doc files from the server on MacBook Air after upgrading to Maverick, I can only open up docx file. Thank you!

Thanks for the suggestion! I don't use Phantasm or VectorScribe (or any Astute Graphics plugins for that matter). I do, however, have a Wacom tablet and have a few plugins that concern using Blurb Book Creator as well as LiveSurface Context.
I did the very unfortunate and foolish act of upgrading to Maverick without a backup, so postponing isn't an option for me.
I geuss my question at this point would be, would it be worthwhile to wipe all the adobe products from my harddrive and re-install them? Or would that be a useless endeavor.
I don't have an external hard-drive so backing up and re-installing the entire OS would be a bit much. Any suggestions?

Similar Messages

  • Is there a way to open Excell file from the server and display in the UI and save it back on to the

    Hello there,
    Is there a way to open Excell file from the server and display in the UI and save it back on to the server? (like showing xell file as a datagrid - add rows, columns etc.)

    Hi Mike,
    Welcome you to the forum.
    You may try:
    SELECT * FROM MyDBNameHere.dbo.OUSR T0
    Thanks,
    Gordon

  • How can open a html, pdf files from the server (c:\foldername\filename)

    Hi all,
    I am developing an application. in this app i have to implement RMI.
    My problem is this, How can a client open a files from the server.
    all the html, pdf files are stored in the server's directory like C:\audit\filename.
    There is a folder on the server's C directory which contains all the html , pdf files.
    please tell me how can a client open a file from the server using RMI.
    Please send me the solution as soon as possible.
    Thanks & Regards
    Bhavishya

    That's doing it the hard way. Why not use HTTP or FTP?

  • The dialog box open twice when open file from the server

    I use the following code to download/open file from the server:
    <%
    String filename = "MengxianhuiDocTest.doc";
    String filepath = "D:\\";
    response.setContentType("APPLICATION/OCTET-STREAM");
    response.setHeader("Content-Disposition",
    ??attachment; filename=\"" + filename + "\"");
    java.io.FileInputStream fileInputStream =
    new java.io.FileInputStream(filepath + filename);
    int i;
    while ((i=fileInputStream.read()) != -1) {
    out.write(i);
    fileInputStream.close();
    out.close();
    %>
    If the application runs, the Open or Save dialog box display.When I select open the file,
    the dialog box will display twice.
    Pls help me.
    Thanks.

    thx
    but I tried it and it did't work.
    The dialog box also display twice.

  • The problem i am having is when i go to open a file from the menu bar that as "FILE" is blackcolor

    the problem i am having is when i go to open a file from the menu bar that as "FILE" is all black in color and i cant see what i'm picking how do i change that so i can see what i'm picking

    Is that Photoshop?  Depending on the version you could try to change the Color Theme (Edit | Preferences | General | Appearance).
    If that does not help, you may have a better chance to get a useful answer if you ask in the Photoshop or Photoshop Elements forum.

  • How to download a text file from the server

    hi everyone,
    can anyone tell me how to download and read a text file from the server and saved in into resource folder.
    with regards
    pallavi

    its really easy
    To read from server, use something like:
    HttpConnection connector = null;
    InputStream inp_stream = null;
    OutputStream out_stream = null;
    void CloseConnection()
         if(inp_stream!=null)inp_stream.close();
         inp_stream=null;
         if(out_stream!=null)out_stream.close();
         out_stream=null;
         connector.close();
         connector = null;
    public void getResponse(String URL,String params)
      try
         if(connector==null)connector = (HttpConnection)Connector.open(URL);//URL of your text file / php script
         connector.setRequestMethod(HttpConnection.POST);
         connector.setRequestProperty("User-Agent","Profile/MIDP-2.0 Configuration/CLDC-1.1");
         connector.setRequestProperty("content-type", "application/x-www-form-urlencoded");
         //connector.setRequestProperty("charset","windows-1251");
         //*** If you need to send ("arg1=value&arg2=value") arguments to script use this:
         out_stream = connector.openOutputStream();
         byte postmsg[] = params.getBytes();
         out_stream.write(postmsg);
         int rc = connector.getResponseCode();//in any case here connection will be opened & closed
         if (rc != HttpConnection.HTTP_OK)
              CloseConnection();
              throw new IOException("HTTP response code: " + rc);
         inp_stream = connector.openInputStream();
         int pack_len = inp_stream.available();
         byte answ[]=new byte[pack_len];
         inp_stream.read(answ);
         CloseConnection();
         ProcAnswer(answ);//process received data
      catch(Exception ex)
         System.err.println("ERROR IN getResponse(): "+ex);
    } And you can read from resource file like
    public void loadFile(String filename)
        DataInputStream dis = new DataInputStream(getClass().getResourceAsStream("/"+filename));
        String str="";
        try
             while (true)
                ch = dis.read();//read character
                if(ch=='\r')continue;//if file made in windows
                if(ch=='\n' || ch==-1)//end of line or end of file
                    if(str.length()==0)continue;//if empty line
                    //do some thing with "str"
                    if(ch==-1)break;//it was last line
                    str="";//next line
                    continue;
                 str+=(char)ch;
           dis.close();
       catch (Exception e)
           System.err.println("ERROR in loadFile() " + e);
    }Welcome! =)
    Edited by: MorskoyZmey on Aug 14, 2008 3:40 AM

  • My windows(8.1 64bit) partition is read only from the mac(yosemite) side of things. Anybody have a clue on how to fix this? Also, slightly frustrating as well, windows crashes every time I attempt to open a file from the mac partition.

    my windows(8.1 64bit) partition is read only from the mac(yosemite) side of things. Anybody have a clue on how to fix this? Also, slightly frustrating as well, windows crashes every time I attempt to open a file from the mac partition.

    All Office applications will also try to open a temporary work file in the same location as the source file. This implies the source file directory also needs to be writable for this temporary file. Since the default HFS+ driver provides only read-only access, such temporary files will fail to open, and will cause the application to fail.
    As a test copy the file you want to edit, say an Excel spreadsheet from the OSX file system to the C: drive on the Windows side and try to open it. If you look in this directory, you should see two files, the source and a temporary file. You may have to force the temporary file to be opened on a read-write file system, by manipulating the folder for temporary files.

  • How to download a pdf file from the server from an strut application?

    Hi,
    I wan to download a pdf file from the server side to local system. Please help me how i use the down load option.

    Read up on the Struts download action [1].
    And next time, please post in the relevant forum, one of the web-tier ones [2].
    [1] http://wiki.apache.org/struts/StrutsFileDownload
    [2] http://forum.java.sun.com/category.jspa?categoryID=20
    People on the forum help others voluntarily, it's not their job.
    Help them help you.
    Learn how to ask questions first: http://faq.javaranch.com/java/HowToAskQuestionsOnJavaRanch
    ----------------------------------------------------------------

  • Is there a possibility to open raw files from the Nikon D750 in photoshop elements 11?

    Is there a possibility to open raw files from the Nikon D750 in photoshop elements 11? I allready tried to install camera raw 8.7.1 but it doesn't work.

    Yes, I see:
    Letzte Aktualisierung
    16.04.2012
    The link I gave is listed in the faqs of this forum.
    Photoshop Elements FAQ List
    mfG
    Michel

  • Opening a file from the Cloud of Adobe Reader - Ipad

    Hi,
    I have got a serious trouble with my Ipad. It's been about 3, maybe 4 days that I can't open my files from the cloud of Acrobat.com if it hasn't been open recently, thus not in the docoument.
    When I try to open a file, I click on it, and then, it do not open, just stay blocked on "Opening... X Mo." without never progressing.
    I thought it was maybe the internet connection. But the Cloud of Pages, Numbers and Keynote works perfectly.
    Then, I did some manipulations on Adobe Reader : I deleted it, then downloaded it. All the files are in it, but I can't open them. I 've checked the version of Adobe reader and it's the latest one. I've checked the version of My Ipad, and it's the lastest one too. I even turned off my Ipad, then turned it on. Nothing.
    So, I thought it was maybe the files itself. But I can open them on the cloud of my computer.
    Ps. About subscriptions, I bought the Pack (about 79€ a year).
    Sarah
    Sorry for my english, I'm french
    Hope you'll understand what I'm saying.

    Hello everyone !
    I backed up my Ipad, then restored it and... It works
    Hope It will help some of you. I was soooo deperate and then, I can get back to work

  • Anyone knows when will Lightroom be able to open Raw files from the new Nikon D810? Thanks.

    Anyone knows when will Lightroom be able to open Raw files from the new Nikon D810 camera? Thanks.

    Just posted to Lightroom Journal Lightroom Journal | Tips and advice straight from the Lightroom team. It's not Lightroom, but does address the original question. Definitely worth a look, sooner rather than later.
    Adobe Photoshop Camera Raw 8.6 RC for CC and CC 2014 Release Candidate | digital camera raw file support - Adobe Labs
    I expect Lightroom will follow in due course, but have not ETA

  • How do I open RAW files from the Nikon D4s in photoshop?

    How do I open RAW files from the Nikon D4s in Photoshop? I have the updated newest version.

    The Nikon D4S is a brand new camera which has just been added by Adobe to Camera Raw 8.4.
    http://labs.adobe.com/technologies/cameraraw8-4/?tabID=details#tabTop
    8.4 has not yet been finally released but you can download and install a pre-release copy for CS6 and CC (it is not compatible with CS5 and earlier)
    CS6:http://labs.adobe.com/technologies/cameraraw8-4/
    CC: http://labs.adobe.com/technologies/cameraraw8-4-cc/

  • HT1338 I have a problem with opening downloaded files from the internet; zip types. Can you tell me an app to open these types of formats of files?

    I have a problem with opening downloaded files from the internet; zip types. Can you tell me an app to open these types of formats of files?

    It should unzip if you double-cick.
    What are you seeing happen when you do that?
    Select a .zip file in the Finder and Get Info (cmd-i). What is set for it to Open With. It should be Archive Utility.

  • TS1402 I can not copy any files from the server & from the Finder. System MAC OS 10.7.5

    I can not copy any files from the server & from the Finder. System MAC OS 10.7.5
    <Email Edited by Host>

    Hi, what is the no boot directory found about???
    Can you give details step by step of what you're trying?

  • Download ECS files from the server

    Currently we have production on Oracle Application Server Integration B2B, Release 10.1.2, Build B2B_10.1.2.4.0_GENERIC_100714.
    Is there a way to download current ECS files from the prod server?
    Regards,
    Suneel Jakka

    Download ECS files from the server
    Regards,
    Anuj

Maybe you are looking for

  • Installation of ECC-DIMP 604 on ERP 6.0 already in EHP4

    Hello, I have a problem regarding the installation of ADD-ON ECC_DIMP 604. My sistem is ALREADY a ECC 6.0 with EHP4 installed. I used the techinical usage FINANCIALS during the queue calculation on SOLMAN. Now I want to implement this add-on with tra

  • Help installing CS5 Bridge UPDATE

    Since apparently NO one wants to help, i just need to know what to do with the zip file I just downloaded to update the bridge for CS5? Thats it! Thanks

  • HT3964 MacBook Pro beeps and vertical lights on screen

    MacBook Pro 2years old vertical lights come on beeps then I have to restart  anyone help please

  • [svn] 4209: Bug: N/A

    Revision: 4209 Author: [email protected] Date: 2008-12-01 14:31:46 -0800 (Mon, 01 Dec 2008) Log Message: Bug: N/A QA: Yes Doc: No Checkintests: Pass Details: -Finished the MessageBrokerFilter(Chain) to MessageFilter(Chain) renaming. -Made sure the va

  • Does FaceTime not work because we haven't purchased it through iTunes?

    I have the FaceTime icon on my MacBook Pro, and my wife has it on her Air, but we can't connect on FaceTime.  Is it because we haven't bought the service through iTunes?