How to open newer version file with older version software?

Recently I downgraded my mac due to Maverick failed to support gdb(I really hate that lldb stuff). And it turned out that the file I used to edit in newer version of mac failed to open. It says I need to update my software to newer version. The thing is, I really don't want to use Maverick now until it resupport gdb. So are there any other ways to open those files?

HI,
The UnRarX application should be accessible from your Dock after installing the software. The application icon looks like this:
"How to extract a rar archive?"
1. Launch UnRarX.
2. Drag rar archive into the UnRarX window.
3. Extraction begins automatically.
Carolyn

Similar Messages

  • Open Newer FCP files on Older Version?

    I was sent an FCP folder with a file presumably made on FCP 5. When trying to open with my v4.5 computer, it says the file is too new and cannot be opened. Is there a way to convert the file so I can open it? I'd prefer not to upgrade at this time just to work on one small, unpaid, project.

    The person who sent you the project needs to Export the contents of the Browser to XML, and select the XML Interchange format version 1. Then they can send you the XML file. No guarantees as to how much of the project will translate to your FCP HD system, but most of it should, maybe all of it.
    When you get it, create a new project, and Import the XML file.

  • I' can't open images or files with trial version of Photoshop cc

    I' can't open images or files with trial version of Photoshop cc. Photoshop starts, it seems ok, but don't work.
    Illustrator cc works very well. Why?

    1. I open Photoshop cc Trial version
    2. I click "continues with the trial version" (in italian version)
    3. File>Open> psd (cs5) or jpeg files
    I can't even open a new document. (File>New> etc..)
    All files can be opened by Paint, Ilustrator etcc.  Only Photoshop doesn't work.
    I just see this

  • [svn:fx-4.x] 14680: update AIK version file with correct version of the AIK that we have

    Revision: 14680
    Revision: 14680
    Author:   [email protected]
    Date:     2010-03-10 12:16:06 -0800 (Wed, 10 Mar 2010)
    Log Message:
    update AIK version file with correct version of the AIK that we have
    QE notes: no
    Doc notes: no
    Bugs: no
    Reviewer: no
    Tests run: no
    Is noteworthy for integration: no
    Modified Paths:
        flex/sdk/branches/4.x/in/air/air_version.txt

    With all that automatic installations, beware of one thing:
    It's up to the administrator of the machine to decide what VM he drives. Maybe there is a good reason for the admin NOT to drive the latest VM from Sun but a slightly older from IBM? It is not YOUR decision what VM runs on that machine.
    Keep in mind that the JRE is a wrapper around the actual OS and as such it is not to be included with you app. Just think of it as if it would be an optional OS extension. You also do not deliver Oracle with you app if you just need ANY JDBC connection, do you?
    With our customers we do it this way: We tell them that ANY Java 1.4 JRE is good to run our apps, but it is the customer's problem to get one, since we do not know the preferred VMs of that customer, nor could we provide a VM for every OS. For fairness reasons, we provide the latest Sun JRE for Windows, Solaris and LINUX with our app. But we do not start the installation of this.

  • How to open a DWG file with AutoCAD options (AppleScript)?

    Hi,
    I'm looking for help specifying the AutoCAD options when opening DWG files.  I have DWG files of floor plans that I always want to open at the same scale. 
    I can successfully open a DWG file with the default options using:
    open POSIX file "/Users/crmckinnon/Desktop/cabin_floor_plan.dwg" as alias without dialogs
    But I don't want the default options, so if I try to specify them:
    open POSIX file "/Users/crmckinnon/Desktop/cabin_floor_plan.dwg" as alias with options {class:AutoCAD options, scale unit:"autocad inches"} without dialogs
    I get a "Can't find alias" error.  How do I specify the AutoCAD options?  I'm sure this is due to my lack of understanding of AppleScript.  Any help would be appreciated!
    Thanks,
    Chris

    I'll answer my own question.  Here's how I specified the options:
    open POSIX file filePath as alias with options {pGSO:original size, pASU:inches, pASR:12.0 / 0.1875} without dialogs
    I had to look in the Apple Script dictionary to get the "codes" to use.  The variable names didn't work.  I think that's because some have "global" in the name which is a keyword in Apple Script.  Here's what the codes translate to:
    pGSO = "global scale options"
    pASU = "scale unit"
    pASR = "scale ratio"
    Thanks,
    Chris

  • How to open a ".doc" file with ms word directly with this servlet?

    Here is a servlet for opening a word or a excel or a powerpoint or a pdf file,but I don't want the "file download" dialog appear,eg:when i using this servlet to open a word file,i want open the ".doc" file with ms word directly,not in IE or save.
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import java.util.*;
    public class OpenWord extends HttpServlet {
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    doPost(request,response);
    public void doPost(HttpServletRequest req,HttpServletResponse res) throws ServletException, IOException {
    String strFileName = req.getParameter("filename");
    int len = 0;
    String strFileType1 = "application/msword";
    String strFileType2 = "application/vnd.ms-excel";
    String strFileType3 = "application/vnd.ms-powerpoint";
    String strFileType4 = "application/pdf";
    String strFileType = "";
    if(strFileName != null) {
         len = strFileName.length();
         if(strFileName.substring(len-3,len).equalsIgnoreCase("doc")) {
              strFileType = strFileType1;
         } else if(strFileName.substring(len-3,len).equalsIgnoreCase("xls")) {
              strFileType = strFileType2;
         } else if(strFileName.substring(len-3,len).equalsIgnoreCase("ppt")) {
              strFileType = strFileType3;
         } else if(strFileName.substring(len-3,len).equalsIgnoreCase("pdf")) {
              strFileType = strFileType4;
         } else {
              strFileType = strFileType1;
    if(strFileName != null) {
         ServletOutputStream out = res.getOutputStream();
         res.setContentType(strFileType); // MIME type for word doc
    //if uncomment below sentence,the "file download" dialog will appear twice.
         //res.setHeader("Content-disposition","attachment;filename="+strFileName);
         BufferedInputStream bis = null;
         BufferedOutputStream bos = null;
         String path = "d:\\"; //put a word or a excel file here,eg a.doc
         try {
         File f = new File(path.concat(strFileName));
         FileInputStream fis = new FileInputStream(f);
         bis = new BufferedInputStream(fis);
         bos = new BufferedOutputStream(out);
         byte[] buff = new byte[2048];
         int bytesRead;
         while(-1 != (bytesRead = bis.read(buff, 0, buff.length))) {
         bos.write(buff, 0, bytesRead);
         } catch(NullPointerException e) {
         System.out.println ( "NullPointerException." );
         throw e;
         } catch(FileNotFoundException e) {
         System.out.println ( "FileNotFoundException." );
         throw e;
         } catch(final IOException e) {
         System.out.println ( "IOException." );
         throw e;
         } finally {
         if (bis != null)
         bis.close();
         if (bos != null)
         bos.close();

    Hello!
    Does some one of you had open a MS word file (.doc) in Java search for a token like [aToken] replace it with another text and then feed it to a stream of save it?
    I want to build a servlet to open a well formatted and rich on media (images) ms word document search for tokens and replace them with information form a web form.
    Any Ideas?
    Thank you in advanced.

  • How to open a jpg file with Adobe Camera Raw

    I know it is possible to open a jpg file with Adobe Camera Raw using Bridge but is it possible to do this using PSE7?  Thanks.

    Yes. In the editor, File>Open As, and choose camera raw as the format. John Ellis also has a script for doing this directly from the organizer, but I don't have the link right at the moment. Hopefully he'll be along with it sooner or later.

  • How to open a pdf file in signed version?

    Hello,
    I like to open a singed pdf file in the singed version mode.
    If I open the pdf with command windows.open() it's possible to change the fields of the pdf file, signed fields are displayed but we don't want to give the user the change opportunity. When I open the pdf with windows.show() then the singed fields are empty and we want to see the signed fields as well.
    When I do a right click on the signed field there is an option show signed version. Then the edit functions an interactive functions are disabled. This is the state I like to open the pdf files. How to achieve this?
    hope that someone can help me!

    this is the error which i'm getting while executing the code
    init:
    deps-jar:
    Compiling 1 source file to /home/VEL AREA/SampleApplication/build/classes
    /home/VEL AREA/SampleApplication/src/sampleapplication/Main.java:3: package com.sun.pdfview does not exist
    import com.sun.pdfview.PDFFile;
    /home/VEL AREA/SampleApplication/src/sampleapplication/Main.java:4: package com.sun.pdfview does not exist
    import com.sun.pdfview.PDFPage;
    /home/VEL AREA/SampleApplication/src/sampleapplication/Main.java:5: package com.sun.pdfview does not exist
    import com.sun.pdfview.PagePanel;
    /home/VEL AREA/SampleApplication/src/sampleapplication/Main.java:25: cannot find symbol
    symbol : class PagePanel
    location: class sampleapplication.Main
    PagePanel panel = new PagePanel();
    /home/VEL AREA/SampleApplication/src/sampleapplication/Main.java:25: cannot find symbol
    symbol : class PagePanel
    location: class sampleapplication.Main
    PagePanel panel = new PagePanel();
    /home/VEL AREA/SampleApplication/src/sampleapplication/Main.java:36: cannot find symbol
    symbol : class PDFFile
    location: class sampleapplication.Main
    PDFFile pdffile = new PDFFile(buf);
    /home/VEL AREA/SampleApplication/src/sampleapplication/Main.java:36: cannot find symbol
    symbol : class PDFFile
    location: class sampleapplication.Main
    PDFFile pdffile = new PDFFile(buf);
    /home/VEL AREA/SampleApplication/src/sampleapplication/Main.java:39: cannot find symbol
    symbol : class PDFPage
    location: class sampleapplication.Main
    PDFPage page = pdffile.getPage(0);
    8 errors
    BUILD FAILED (total time: 2 seconds)
    for the reply #4..

  • Opening Keynote 13 files in older versions of Keynote

    I'm having trouble sharing files created in the newest version of keynote (5.1?) with other versions (4.4?).  I've tried exporting the file to Keynote 09 through "Export..." but my coworkers are unable to open the file. 
    I apologize if this has been asked already but how do I either save a version that others can open or revert back to the old keynote?

    It isn't possible to directly convert a D11 file to a D10
    file. The
    file format is not backwards compatible and there is no way
    within
    Director to save it as an older version. There is a guy named
    Valentin
    who made a XML exporter for the Director format, so using his
    scripts
    you can save the D11 version to XML, then reconvert that XML
    into D10.
    It is only a beta thing, and there is no official support for
    it, but
    you can try it for free and see if it works for you.
    http://staff.dasdeck.de/valentin/lingo/dml/

  • How to Open a rar file with downloaded software

    I was bothering this forum yesterday trying to find some way to get a file opened that I had downloaded. Today I discovered that my problem was that "rar" files need their own software to enable them to be opened....So I downloaded the software UnRarX...and it is now sitting on the bottom of my desktop...but I can not get the software into the Applications folder, and so I can not figure out how to use this little package of software to open my "rar" files...
    What do I have to do to open my files with this new software???
    Thanks..
    Miguel

    HI,
    The UnRarX application should be accessible from your Dock after installing the software. The application icon looks like this:
    "How to extract a rar archive?"
    1. Launch UnRarX.
    2. Drag rar archive into the UnRarX window.
    3. Extraction begins automatically.
    Carolyn

  • Can you open an FCP file in older versions?

    I have a G4 with FCP 4 HD. And I also have, or now "had" a G5 with FCP 5 something on it. The G5 logic board i think just died on me because it currently does not boot up.
    Am I able to open an FCP file in an older version?

    The G4 is currently running OS 10.3.9.
    I have an OS 10.4 installation disc but the G4 does not load it, it stops shortly after the installation process begins and I don't know why it won't install.
    I do not have the FCP 5 discs. And do not believe it would even work on OS10.3, or would it?

  • How to open a .DOC file with MS-Word ?

    Hye fellow Java freaks,
    I have made an application to upload .DOC and .RTF files to the server using servlets and the Jakarta Commons FileUpload package.
    The files are uploading successfully.
    Now, I want to place a link to the most recently uploaded file and then, on clicking that link, I want the file to open not in the browser, rather with MS-Word.
    What is the servlet code that I should implement to accomplish this ?
    Any suggesions ?
    Thanx in advance.

    I think this is a client-side issue - how the browser chooses to deal with the .doc file it receives.
    You can 'save as' and then open the file by hand.
    --Jon                                                                                                                                                                                                                                                                                                                               

  • How to open an excel file with password in Crystal Reports XI  Release 2

    I have a problem when i try to open an excel 2003 file with password that i know
    i recevived an error code 0xc59
    How can I open a file in excel 2003 protected by password to create the report?
    Thanks in advanced

    Hi Pierluigi,
    It looks like you have to open the excel file and use the data.
    A few informative links.
    http://support.microsoft.com/kb/257819#RetrieveExcel
    http://support.microsoft.com/kb/211378/EN-US/
    Hope this helps.
    Regards,
    Abhijeet Taskar.

  • How to open a .MOV file with Maverick?

    Hello,
    I  recorded some videos with my iPhone 4S. i sync it then with my computer, but it says that it can not open them. Why? How can i open .MOV files with my computer (running with Maverick 10.9.4) ?

    Try VLC.
    Video Player - VLC
    More.
    Video Player - Divx
    Video Player – Flip4Mac

  • How to open a ai file with some layers named in Japanese with a AI CS5(English Ver)

    I can't open some ai files that may contains some layers named in Japanese. I am using AI CS5 (Eng Ver) and how can I open them?
    Thx!

    At worst you should be getting garbage substituted characters just like when you don't have specific fonts on text objects, but otherwise you should be able to open the file. The only thing that could prevent this otehrwise is something systemic, so you may need to install support for Asian languages (in particular if you are still on Windows XP) or even switch the UI language.
    Mylenium

Maybe you are looking for

  • MacPro, BlackMagic Intensity Pro video card and output to HDTV

    Hello folks, I purchased an Intensity Pro card a little while back, but haven't actually gotten to use it. I captured most of my video material through firewire. I have a MacPro and I'd like to view photos from iPhoto, renders of my 3D work and possi

  • Problem using personal hotspot on my ipad

    I'm having a problem using my ipad (wifi+3g software 6.1.3) as a hotspot because the personal hotspot tab is not available .. NB: i contacted my network provider and confirmed it is active and i also having a personal hotspot on my iphone (same netwo

  • "SAP Crystal Reports, developer version for Microsoft Visual Studio" (CRforVS_13_0_9.exe) has error during Installation.

    Hello, I just tried to install the new file CRforVS_13_0_9.exe on a Windows 7 Ultimate machine. I have Visual Studio 2013 and wanted Crystal Reports to be fully integrated with it. By the way, I had already uninstalled CRforVS_13_0_8.exe before I att

  • Problem refreshing the classes

    I have problem refreshing the class with Tomcat 4.1 Server. I make changes in my class and they just don't reflect unless I restart the server. I don't want to refresh the server all the time. Is there any setting by which I can tell the server not t

  • Accessories Not Available

    Verizon, There is a total lack of Droid Incredible accessories when it comes to docking stations.  I need a car docking station, similar to the one offered for the Verizon Droid, that allows me to use Navigator without my phone sliding all over the c