URGENT: Can't compile and it's due tomorrow!

So basically I've tried reinstalling premiere elements, rerunning it, reopening explorer.exe. Everything. I can not open a project file without it crashing. Anyway I would be so greatful if anyone could compile this for me and return it. My email address is [email protected].. Here is the file http://filesmelt.com/dl/My_Project-new_again.prel

Welcome to the forum.
I am unclear on what is happening.
You mention that you reinstalled PrE. Was there an initial problem with it?
You mention your Project file (PREL), and crashing. Where/when is the program crashing, and do you get any error, or warning messages? If so, what is the exact text of those, please?
For crashing and hanging of PrE, this ARTICLE might be useful. It begins with a checklist on getting the computer set up for PrE, then goes into some linked articles on tuning up one's system and OS, and finishes with troubleshooting tips and links.
Also, as Steve explains, the Project file (PREL) does not have any media in it, but only links to that material. This ARTICLE goes into detail on the Project files, plus explains Saves, which will save the Project file - there are basically three main Saves, and then the AutoSaves.
Good luck, and let us know a bit more, please,
Hunt

Similar Messages

  • How can I compile and run other java classes from within an application?

    Hello there everyone! I really hope that someone can help me. I am writing a program that must be able to compile and run other java classes that are in different files, much like development environments like Kawa or Forte allow you to do.
    There has to be a way of doing this ( I hope!! ), but i can't seem to find it!!
    I have tried using this command to compile:
    Runtime.getRuntime().exec ("c:\\programs\\javac className.java");
    ...and this one to run:
    Runtime.getRuntime().exec ("c:\\programs\\java className");
    ...but neither works!!! I can compile and run classes that are in the same file as my application, but I can't get it to work at all for files in different directories or files.
    PLEASE, PLEASE, PLEASE help me - i've run out of ideas, and i need this to be working in 3 days!!!
    Thank you very much for any help anyone can give me, I really appreciate it!! Thanks again!!
    Adrian ( ...in distress!! )

    public class JavaCompiler{
       public static void main(String[] args)throws Exception{ //sorry bout the laziness
          if(args == null || args.length != 1){
             System.out.println("Usage: java JavaCompiler MyClass.java");
             System.exit(0);
          String className = args[0];
          Runtime rt = Runtime.getRuntime();
          Process p = rt.exec("javac " + className); //consider setting cpath for this
          p.waitFor();
          //now try to run after it is done.
          p = rt.exec("java " + className.substring(0, (className.length() - ".java".length()));
          p.waitFor();
          //do some other stuff
    }This should get you going. You may consider looking into the System.getProperty() method in order to determine the type of OS it is running on in order to findo out what command to run. I know that the sun tool listed above is nice, but by my understanding the sun tools provided are not guaranteed to stay the same. I'm no expert on this matter, but that is one of the reasons there is no API documentation for those tools. Also, I don't believe those tools come packaged with the JRE. (Of course if you are making an IDE it will be expected that the user has an sdk installed. Good luck with figuring this thing out.

  • How can i compile and run javatv ri on linux platform

    hi,
    can any one plz help me what is the requirement to execute javatv reference implementation on linux and what are the steps i should followand, and any commands required
    thx in adv

    See this question :-)
    http://forum.java.sun.com/thread.jsp?forum=54&thread=289574

  • Can't compile and load sample plugins

    Hi, I'm currently trying to learn the Illustrator SDK in order to develop plugins. I haven't been able to successfully compile (without warnings) and load the sample plugins into Illustrator; I keep getting "Error loading plugins…" I've attached screenshots that may be helpful. Any help is greatly appreciated.
    Specs:
    OS: OS X 10.9
    Xcode Version: 6.1.1
    Illustrator Version: CC 2014
    Illustrator SDK Version: CC 2014.1

    Specs:
    Illustrator Version: CC 2014
    Illustrator SDK Version: CC 2014.1
    Looks like your SDK version is newer than your Illustrator version. The Plugin::ReloadPlugin function in common/source/Plugin.cpp will return an error if it is trying to load newer versions of the suites. Run it under the debugger or put a printf statement before the return error; line.

  • Can a Compiled and saved AppleScript File be modified?

    What I mean is, If i were to create an AppleScript file with default variable, functions etc. Could I,say sometime in the future, edit those variables dynamically?
    So for example, I have a script file that customizes an XCode project and  creates an .app file and an .ipa file. Would it be possible to edit the Applescript file, thereby generating a new .app and .ipa file?
    Send  Parameters to -----> Default AppleScipt file ---> Modified AppleScript File ----> New .app and .ipa File

    Hello
    You can use "load script" command and modify the properties of loaded script. Something like this:
        [1] a.scpt is assumed to be coded :
    property p : 0
    tell application "SystemUIServer"
        activate
        display dialog "p = " & p
    end tell
        [2] When b.scpt is opened in AppleScript Editor, decompiled source shows exactly the same as a.scpt
            although its property p's current value is not 0 but 1 as set in this script.
            In other words, decompiled source code shows static value as defined in source code
            whilst the loaded script stores and uses dynamic value at runtime.
    -- load script
    set f to (path to desktop)'s POSIX path & "a.scpt" -- [1]
    set o to load script POSIX file f
    -- run it (p = 0)
    tell o to run
    -- modify it
    set o's p to 1
    -- run it (p = 1)
    tell o to run
    -- store modified script to new file
    set f1 to (path to desktop)'s POSIX path & "b.scpt" -- [2]
    store script o in POSIX file f1 with replacing
    -- load modified script from file
    set o1 to load script POSIX file f1
    -- run it (p = 1)
    tell o1 to run
    If you want to modify the source code, you may use osadecompile(1) and osacompile(1). Something like this:
    #!/bin/bash
    cd ~/desktop || exit
    osadecompile a.scpt | perl -CSDA -lpe 's/property p : 0/property p : 2/' | osacompile -o c.scpt
    osascript c.scpt
    Or to run modified script without saving:
    #!/bin/bash
    cd ~/desktop || exit
    osadecompile a.scpt | perl -CSDA -lpe 's/property p : 0/property p : 2/' | osascript -
    * The above is true for plain AppleScript script. Don't know about AppleScriptObjC script. Also in recent OSes, applet might need to be re-signed after modification.
    Regards,
    H

  • Compiling and linking Pro*c

    Hi All.
    i want to know the complete process os compiling and linking Pro*c programs.
    Q:1. Do i need to install visual studio?
    Q:2. If yes, please tell me complete procedure for setting environment variables and usage.
    Q:3. If visual studio is not required, how can i compile and link Pro*c programs.
    i heard that we can compile and link using COMPLINK.BAT
    if yes, how to set the complink.bat into execution(ie any paths need to be modified in .bat file)
    need help urgent.
    thanx in advance

    Q:1. Do i need to install visual studio? -
    Yes you need this
    Q:2. If yes, please tell me complete procedure for setting environment variables and usage.:
    Refer V.Studio installation manual and PROC++ Programmers Guide.
    Q:3. If visual studio is not required, how can i compile and link Pro*c programs.
    Yes you need this

  • How to compile and run servlets in Eclipse?

    Does somebody known how can I compile and run servlets in Eclipse IDE? I've added and configured Tomcat's plugin. I've created a project with my example servlets source, and I don't know what farther. How do I have compile it without main method? I must add web.xml file from Tomcat's directory into projects in Eclipse and modify it?
    THX Chudzik

    Try googling for "eclipse servlet", surely someone has written instructions.

  • How to compile and run PRO*C programs in Linux

    Hi all,
    This is my first post in this forum.
    I have Oracle 9i installed in linux platform .
    How can i compile and run Pro*C programs in linux.(i mean any commands or procedure to run these programs)
    please help me in this regard.
    Thanks in advance,
    Trinath Somanchi,
    Hyderabad .

    (1) How to compile the Pro*c program U got to have a makefile to compile a Pro*c program. It helps u in compiling and creating an excutable. Once U have created a makefile , just call "make" and it will do the compilation and create the executable as well.
    For a sample makefile visit
    http://asktom.oracle.com/~tkyte/proc_makefile/
    (2) How to run the Pro*c program ? and Once U have created an executable, U shall call that directly as any other linux command. Make sure U have the permissions to run the executable. If not give the permissions using chmod 777 executable
    (3)How to get the output of the program ?Question 2 and 3 are the same. I mean running and getting a output are the same

  • How to compile and excecute a downloaded flex project

    I've a problem during the compile of downloaded flex projects
    (with Flex Development)
    I copy the project folder in Flex Builder 3 folder
    Now.... File -> Import -> Flex Project
    I Import the project in Flex Dev
    I execute the debug ... or I execute the project
    "Run Main" -> can't find bin-debug/main.html
    "Debug Main" -> can't find bin-debug/main.html
    I've tried with
    Project -> "Export Release Build" -> Can't find
    /Dashboard/libs folder
    ... I've tried to create the Libs folder
    and I see:
    Encountered errors or warnings while building project
    main.mxml.
    main.mxml: Cannot create HTML wrapper. Right-click here to
    recreate folder html-template.
    How Can I compile (and view) the project

    Copy the "html-template" directory from one of your other
    projectsand try again.

  • Compile and debug to a remote server with ssh access

    How can i compile and debug from my Mac to a remote server that has ssh access only?

    Besides Microsof's Remote Desktop Connection
    <http://www.microsoft.com/mac/products/remote-desktop/default.mspx>
    Applications -> Remote Desktop Connection
    Computer:  windows.pc.address
    -OR-
    Computer:  windows.pc.address/console
    There is also CoRD (Microsoft RDC Screen Sharing)
    <http://www.macupdate.com/info.php/id/22770/cord>

  • Can't compile - URGENT

    hi. hope someone can help. this is important, it's for my coursework at uni.
    I have downloaded the new java 1.4.1_01 and installed. i set the paths in my IDE to it, everything great, but if I compile, it says:
    "Registry key 'Software\JavaSoft\Java Runtime Environment\CurrentVersion'
    has value '1.4', but '1.3' is required.
    Error: could not find java.dll
    Error: could not find Java 2 Runtime Environment."
    How do I fix it?????
    Before, all was fine with JDK 1.3.1 but then problems happened, tried re-installing, no luck so I moved to the new version, this is what is happening.
    PLEASE this is urgent, can someone help?
    thanks

    a right...someone from my uni must have the same problem.
    any way, problem sorted, I re-installed the JDK and SDK and it's working now.
    but how can I import the .java files I need for my course?
    I have this code:
    import textio.ConsoleIO;
    import Date;
    import Calander;
    public class mainapplication {
         public static void main(String[] args)
    but it produces an error:
    C:\coursework2\mainapplication.java:16: '.' expected
    import Date;
    ^
    C:\coursework2\mainapplication.java:17: '.' expected
    import Calander;
    ^
    C:\coursework2\Date.java:15: package Calander does not exist
    import Calander.java;
    ^
    3 errors
    Process completed.
    what should I do?
    I tried deleting the .java; but that didn't help at all.
    any help, is appreciated

  • Hi.  I have a Dell PC running Windows 7 64 bit.  I have the latest version of Adobe Reader,  It worked yesterday.  Today I have job training to do that is due tomorrow morning and I can't open PDF files.  I have to open a guide and read it and take a test

    Hi.  I have a Dell PC running Windows 7 64 bit.  I have the latest version of Adobe Reader,  It worked yesterday.  Today I have job training to do that is due tomorrow morning and I can't open PDF files.  I have to open a guide and read it and take a test tomorrow.  I have deleted and reinstalled the application.  I have rebooted.  I have made sure my PDF's are associated with the program.  Every PDF on my computer won't open and I get the same error message.  It simply says Attempt to access invalid address.  How can I fix this?  Thanks.

    Hi Don,
    I have seen this issue fixed for some users by modifying the following registry key:
    The key is "HKLM\System\CurrentControlSet\Control\Session Manager\Memory Management" MoveImages
    Set the key to 1 instead of 0 then reboot the machine.
    In case you still face the issue try the following registry key change:
    The only thing you have to do is rename the following key at the REGEDIT, and everything will be fine !!
    BEFORE:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\iexplore.exe
    AFTER:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\iexplore.old
    Note: Please take a backup of the registry before attempting this change.
    Regards,
    Rave

  • I can't compile for iOS anymore with Flex and AIR 3.8

    Hi Adobe team and others,
    I'm using Apache 4.10 Flex framework and adobe Air 3.8 for my business projects.
    I always had some problems to compile and publish iOS application (with Air 3.5 before), but with AIR 3.8, that was a miracle, I could compile my projects without any errors on Windows ... until today.
    I'm executing this command in DOS to compile my project:
    "C:\Program Files\Java\jre7\bin\java.exe" -jar "C:\Program Files\Adobe\Adobe Flash Builder 4.7 (64 Bit)\sdks\4.10 - AIR 3.8\lib\adt.jar" -package -target ipa-app-store -hideAneLibSymbols no -provisioning-profile "S:\Directory_to_MobileProvision.mobileprovision" -storetype pkcs12 -keystore "S:\Directory_to_Certificats_ios.p12" -storepass my_private_password Proginov_FVTE_V45.ipa Proginov_FVTE_V45-app.xml assets com config_app.xml [email protected] Proginov_FVTE_V45.swf -extdir "S:/Directory_to_ANE/air_3.8_pnv_3.00"
    And I'm getting this result after 1 hour compiling:
    If you want, I can send you my bin-release-temp folder and ANE to try by yourself, but I need a private mail, because I don't want to publish my private project to everyone.
    Thanks

    Thank you a lot.
    I remember I tried this with AIR 3.5, and that didn't work.
    But with AIR 3.8, it's OK.
    Perfect

  • I have Adobe Acrobat 8 Standard and I had to reload it on my computer due to my hard drive crashing. Now I can only open and view PDF's  and I cannot edit them as I could before such as using Tools Comment

    I have Adobe Acrobat 8 Standard and I had to reload it on my computer due to my hard drive crashing. Now I can only open and view PDF’s  and I cannot edit them as I could before such as using Tools>Comment&Markup or Tools>Advanced Editing>TouchUp Text Tool. All the functions are greyed out. Please advise.

    What's your OS? Acrobat 8 is not compatible with any modern OS.
    On Thu, Jan 15, 2015 at 4:16 PM, thomasc1234 <[email protected]>

  • How can i compile a C program to run solaris 9 and 10?

    Hi,
    I need to compile a small C program to run on solaris 9 and 10. There is no C compiler on the target servers. I have compiled and tested the program on Linux over x86.
    I hope you can advise on the way forward. I see the following options:
    - install a C compiler, the lightest possible, on the target servers and compile the program
    or
    - set-up a sparc solaris (9 or 10) on top of virtualbox on my windows laptop, install the c compiler and then compile the program
    Thanks in advance.
    Gaby

    To run an application on both Solaris 9 and 10, you need to build it on Solaris 9. The application will then run on Solaris 9 and 10. (If you build on Solaris 10, you cannot expect the application to work on 9.)
    The most recent Studio version that can be run on Solaris 9 is Studio 12 (but not updates 1, 2, or 3).
    You can still get Studio 12 here, but since it dates from 2007, I don't know for how much longer.
    http://www.oracle.com/technetwork/server-storage/solarisstudio/downloads/ss12-136026.html
    Studio does not do cross-compilation, so you need to build on a system of the same type as the target system -- SPARC or x86. I don't know whether Solaris 9 can be installed on Virtual Box, but you can try. If it works, you can install the compiler, build on that system, then deploy on other Solaris 9 and 10 x86 systems.
    You can of course build the application on each of Solaris 9 and 10, but usually that is not necessary, and it complicates deployment and support.
    I believe Solaris 9 is End Of Life, so it would be a good idea to upgrade S9 systems to S10 or S11. I realize that such a change might not be up to you. :-)

Maybe you are looking for

  • Installing EBS R12 for Educational purpose ???

    Hi there, I Want to install the EBS R12 for an educational purpose, or in another way just to demonistrate the Installing of it for Students, So is there is a way to install it in one farm without having server hardwares requirements(written below)??

  • ERROR install oracle database 10gR2 in solaris sparc 64

    Dear All, I got error when installing oracle database 10gR2 on solaris sparc 64. these are the messages: /usr/ccs/bin/make -f ins_precomp.mk relink ORACLE_HOME=/usr/app/oracle/product/10.2.0/db_1 EXENAME=proc/Linking /usr/app/oracle/product/10.2.0/db

  • Mm automatic account posting T code:-omwd

    Hi Guys, Thanks in Advance, any one can help me how can I update a new entry (  Vaal Area, CoCode, Chart Of AC, Val Grouping Code) in table V_T001K_k  by running Transaction Code:-OMWD. Regards NJRAJU

  • Over lapping number ranges!

    Hello all, When I am doing settlement for a billback document of one company code in SAP, an account doc number is generated. But when I tried doing the same, an account document number which has already created for another company code is been assig

  • Error handling with shell script

    Hi, I want to write a .sql file with lots of executable statements. These statements need to run on 100 of schemas per database. I want to have error handling mechanism in this file in such a way that whenever I get any ORA- error or SP error, it sho