Need help opening project

when I open adobe premiere 8 for a new project I olny get a blank screen, and when I try to open a  old project it said this project was been made with Premiere Pro and I create the file in premiere elemets 8

diver0156
I would encourage you to do
uninstall (usually Control Panel/Programs way)
free ccleaner run through (regular cleaner and registry cleaner parts)
CCleaner - Download
Reinstall with antivirus and firewall(s) disabled
Before you do that I would ask that you go through a typical troubleshooting drill
a. Are you working from the 8.0.1 Update of the program?
b. Do you have the automatic Background Rendering and AutoAnalzyer features disabled?
c. Have you looked at the problem with and without the antivirus and firewall(s) disabled?
d. Do you have the latest version of QuickTime Installed on your computer with Premiere Elements?
e. Are you running the program from a User Account with Administrative Privileges?
When was the last time that the program worked without this issue? In other words, is this a
"it worked before but not now" or "it never worked before" issue.
Please review and consider and then we can decide what next.
Thank you.
ATR
Add On...Do not hesitate to ask questions or ask for clarification when doing any of the above.

Similar Messages

  • Need help coping project from one computer to another.

    I need help coping project from one computer to another.  I loaded all video on computer 1, copied events and project folder to computer 2.  I was told I only needed to copy the project folder back to computer 1 since the events folder is already there.   I copied project folder back to computer 1 but the files wont open.  I dont have computer 2 available. 
    Please help!!!

    Hi
    No that's not the way to do it - iMovie gets confused and in some cases the problems might be un-repairable.
    You've got several problems
    • iMovie'08 - CAN NOT MOVE PROJCTS - You NEED iMovie'09 or iMovie'11 - I see no other working solution
    • Never MOVE or alter any folder named
    iMovie Projects - or -
    iMovie Events
    on DeskTop/Finder - This might be very harmful
    • Moving (Projects) and Events - HAS TO be done within the iMovie Application.
    You've got an Evets window and here You can view Your Events in two ways - Yearly - or - Yearly per Hard disk
    Here You can move within this "window" to another location
    • Projects - NO they do not contain Your full movie - only a document on howto use the material in Event folder
    and there might be worse if You added Photos from iPhoto and Audio from iTunes/Garageband - then You have
    to get this over to the second Mac too, to be able to continue editing.
    So to move Your projects to another Mac You need
    • iMovie'09 or 11
    • an external hard disk -
    MUST BE Mac OS Extended formatted - as UNIX/DOS/FAT32/Mac OS Exchange will not work for VIDEO
    Should be a FireWire one - as UBS/UBS2 performs badly when used for video
    • Then move/copy over within Project resp Events window in iMovie Application
    Hopefully I've been not to confusing or badly structured to be followed.
    Yours Bengt W

  • I need help opening up the pdf doc that i just saved. i need to open it up with excel?

    I need help opening up the pdf doc that i just saved. i need to open it up with excel?

    Yes, I need help configuring the settings.
       Re: I need help opening up the pdf doc that i just saved. i need to
    open it up with excel?  created by David Kastendick<http://forums.adobe.com/people/dave_m_k>in
    Adobe ExportPDF - View the full discussion<http://forums.adobe.com/message/4711293#4711293

  • Need help opening new software application Adobe Elements 12 on my new MAC. HELP?

    Need help opening new software application Adobe Elements 12 on my new MAC. HELP?

    Is it installed? If so, go to Applications and choose either Adobe Elements 12 Organizer, or Adobe Photoshop Elements 12>Support Files>Photoshop Elements Editor.

  • Need help with project

    Hi all I'm working on a project and need help.
    I want the "New" button to clear all the fields.
    Any help?
    =======================================================
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Message extends JFrame implements ActionListener {
         public Message() {
         super("Write a Message - by Kieran Hannigan");
         setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         setSize(370,270);
         FlowLayout flo = new FlowLayout(FlowLayout.RIGHT);
         setLayout(flo);
         //Make the bar
         JMenuBar bar = new JMenuBar();
         //Make "File" on Menu
         JMenu File = new JMenu("File");
         JMenuItem f1 = new JMenuItem("New");
         JMenuItem f2 = new JMenuItem("Open");
         JMenuItem f3 = new JMenuItem("Save");
         JMenuItem f4 = new JMenuItem("Save As");
         JMenuItem f5 = new JMenuItem("Exit");
         File.add(f1);
         File.add(f2);
         File.add(f3);
         File.add(f4);
         File.add(f5);
         bar.add(File);
         //Make "Edit" on menu
         JMenu Edit = new JMenu("Edit");
         JMenuItem e1 = new JMenuItem("Cut");
         JMenuItem e2 = new JMenuItem("Paste");
         JMenuItem e3 = new JMenuItem("Copy");
         JMenuItem e4 = new JMenuItem("Repeat");
         JMenuItem e5 = new JMenuItem("Undo");
         Edit.add(e5);
         Edit.add(e4);
         Edit.add(e1);
         Edit.add(e3);
         Edit.add(e2);
         bar.add(Edit);
         //Make "View" on menu
         JMenu View = new JMenu("View");
         JMenuItem v1 = new JMenuItem("Bold");
         JMenuItem v2 = new JMenuItem("Italic");
         JMenuItem v3 = new JMenuItem("Normal");
         JMenuItem v4 = new JMenuItem("Bold-Italic");
         View.add(v1);
         View.add(v2);
         View.add(v3);
         View.addSeparator();
         View.add(v4);
         bar.add(View);
         //Make "Help" on menu
         JMenu Help = new JMenu("Help");
         JMenuItem h1 = new JMenuItem("Help Online");
         JMenuItem h2 = new JMenuItem("E-mail Programmer");
         Help.add(h1);
         Help.add(h2);
         bar.add(Help);
         setJMenuBar(bar);
         //Make Contents of window.
         //Make "Subject" text field
         JPanel row2 = new JPanel();
         JLabel sublabel = new JLabel("Subject:");
         row2.add(sublabel);
         JTextField text2 = new JTextField("RE:",24);
         row2.add(text2);
         //Make "To" text field
         JPanel row1 = new JPanel();
         JLabel tolabel = new JLabel("To:");
         row1.add(tolabel);
         JTextField text1 = new JTextField(24);
         row1.add(text1);
         //Make "Message" text area
         JPanel row3 = new JPanel();
         JLabel Meslabel = new JLabel("Message:");
         row3.add(Meslabel);
         JTextArea text3 = new JTextArea(6,22);
         messagearea.setLineWrap(true);
         messagearea.setWrapStyleWord(true);
         JScrollPane scroll = new JScrollPane(text3,
                                  JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
                                  JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
         row3.add(scroll);
         add(row1);
         add(row2);
         add(row3);
         setVisible(true);
         public static void main(String[] arguments)  {
         Message Message = new Message();
    }

    Ok, given that I may have not been the kindest to you on the other thread (and I'm still annoyed that you went and cross-posted this), and that you did actually use code tags, I'm going to post some code here:
    Please take the following advice onboard though.
    1. When you are naming your artifacts, please use the java coding standard as your guide. So if you are naming a class you use a capital letter first, and use camel case thereafter. All method names begin with a lower case letter, and all variable names begin with a lower case letter (and again camel case after that)
    2. Please use self explanitory names (for everything), so no more row1, row2, or text1, text2, etc.
    3. The example I am giving below makes use of a single class to handle all actions, this is not really the best way to do this, and a better way would be to have a class to handle each action (that would remove the massive if() else if() in the action handler class.
    4. When you are using class variables they should be private (no exceptions, ever!), if you need to access them from other classes use accessors (eclipse and other IDE tools can generate these methods for you in seconds)
    5. Notice the naming convention for my constants (final statics), they are all upper case (again from the java coding standards document, which you are going to look for with google right?)
    6. I have hived some of the creation work to helper methods (the getSubjectTextField() etc), although it isn't advisable to be calling other methods from the constructor, since this is a GUI, and you want it to appear as soon as you create the class, we won't worry about this, but perhaps as an execrise you could work out a better way to do this?
    7. Personally, I don't like classes that implement listeners, unless they are specifically designed to do that job. So a Frame that is set up as an action listener is fine, provided the actions it listens for are associated with the frame, not its contents. If the actions are related to its contents, then a dedicated class is better.
    8. Another personal opinion, but I feel it makes code clearer, but others may disagree. If you are creating a variable solely to hold the result of a calculation, to be passed to a method in the very next line, then don't create the variable, just pass the method as the argument to the method (feel free to ignore this advice if the method call is extremely long, and a local would make it easier to read)
    Anyway, here is the code. I have removed most of the menu items, and leave this as an exercise for you. Also I have only created 2 methods (new and exit), I'll again leave it as an exercise for you to complete this.
    package jdc;
    import java.awt.FlowLayout;
    import java.awt.event.ActionEvent;
    import javax.swing.AbstractAction;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JMenu;
    import javax.swing.JMenuBar;
    import javax.swing.JMenuItem;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTextArea;
    import javax.swing.JTextField;
    import javax.swing.ScrollPaneConstants;
    public class Message extends JFrame {
        /** Constant for the new action command. */
        private static final String NEW_COMMAND = "New";
        /** Constant for the exit action command. */
        private static final String EXIT_COMMAND = "Exit";
        /** Subject text field. */
        private JTextField subjectTextField;
        /** Recipient text field. */
        private JTextField toTextField;
        /** Message text area. */
        private JTextArea messageTextArea;
        public Message() {
            super("Write a Message - by Kieran Hannigan");
            setSize(370, 270);
            FlowLayout flo = new FlowLayout(FlowLayout.RIGHT);
            setLayout(flo);
            setJMenuBar(createMenuBar());
            // Add "Subject" text field
            JPanel subjectRow = new JPanel();
            subjectRow.add(new JLabel("Subject:"));
            subjectRow.add(getSubjectTextField());
            // Add "To" text field
            JPanel toRow = new JPanel();
            toRow.add(new JLabel("To:"));
            toRow.add(getToTextField());
            // Make "Message" text area
            JPanel messageRow = new JPanel();
            JScrollPane scroll = new JScrollPane(getMessageTextArea(), ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS,
                    ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
            messageRow.add(scroll);
            add(toRow);
            add(subjectRow);
            add(messageRow);
            setVisible(true);
         * Clear all the fields.
        public void createNewMessage() {
            getSubjectTextField().setText("");
            getToTextField().setText("");
            getMessageTextArea().setText("");
         * Exit the application.
        public void exitApplication() {
            if (JOptionPane.showConfirmDialog(this, "Are you sure you would like to exit now?", "Exit",
                    JOptionPane.YES_NO_OPTION) == JOptionPane.YES_OPTION) {
                System.exit(0);
         * @return The subject text field, (creates a new one if it doesn't already exist)
        private JTextField getSubjectTextField() {
            if (this.subjectTextField == null) {
                this.subjectTextField = new JTextField("RE:", 24);
            return this.subjectTextField;
         * @return The to text field, (creates a new one if it doesn't already exist)
        private JTextField getToTextField() {
            if (this.toTextField == null) {
                this.toTextField = new JTextField(24);
            return this.toTextField;
         * @return The message text area, (creates a new one if it doesn't already exist
        private JTextArea getMessageTextArea() {
            if (this.messageTextArea == null) {
                this.messageTextArea = new JTextArea(6, 22);
                this.messageTextArea.setLineWrap(true);
                this.messageTextArea.setWrapStyleWord(true);
            return this.messageTextArea;
         * Helper method to create the menu bar.
         * @return Menu bar with all menus and menu items added
        private JMenuBar createMenuBar() {
            JMenuBar bar = new JMenuBar();
            JMenu fileMenu = new JMenu("File");
            fileMenu.add(new JMenuItem(new MenuItemAction(this, NEW_COMMAND)));
            fileMenu.add(new JMenuItem(new MenuItemAction(this, EXIT_COMMAND)));
            bar.add(fileMenu);
            // TODO add all other menu's and menu items here....
            return bar;
         * Private static class to handle all menu item actions.
        private static class MenuItemAction extends AbstractAction {
            /** Instance of the message class. */
            private Message message;
             * @param actionName
            public MenuItemAction(Message messageFrame, String actionName) {
                super(actionName);
                this.message = messageFrame;
             * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
            public void actionPerformed(ActionEvent e) {
                if (e.getActionCommand().equals(NEW_COMMAND)) {
                    this.message.createNewMessage();
                } else if (e.getActionCommand().equals(EXIT_COMMAND)) {
                    this.message.exitApplication();
                // TODO Add the other event handlers here
        public static void main(String[] arguments) {
            Message messageFrame = new Message();
            messageFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }If you have any questions, please let me know, as there are a number of new areas introduced that you may not have come across before.

  • Need Help Opening a Corrupted File in MS Office Word 2007.

    I use Microsoft Office Word 2007. I need help in opening a corrupted file. I tried to open but am getting messages: "cannot be opened", "unreadable content", "do you want to recover contents?" "Do you want to search
    for a converter?"
    Anyone have any ideas on how I can get this file to open? :/
    Thank you,
    Chuck in California

    From Microsoft Documentation:-
    If a file has been damaged and you cannot open it by normal means, you may be able to recover its content by using the Open and Repair
    feature.
    Click the
    Microsoft Office Button
    Browse to the file that you want to recover, and click it (do not double-click it).
    Click the arrow next to the
    Open button, and then click Open and Repair.
    You might also like to look at this (which is just a longer version of what's above):-
    http://support.microsoft.com/kb/893672?wa=wsignin1.0 

  • Need help opening a pdf file

    How can I get help opening a pdf file?  I have been asking for help for over an hour now, I need this file, it is password protected,
    and I have set a new password, with still no help, still can't get the file to open, just what do I need to do, it is my 2011 tax return,and
    I need to have it. I hope someone cares enough to help me with this. I am so frustrated at this point, I just don't know where to turn now.
    Janet Lechner
    [email address removed]

    What is your operating system?
    What is your Adobe Reader version?
    What is the problem when trying to open that PDF document?
    Who password-protected that file?

  • Need help opening my illustrator application

    Hi I need help. Just tried to open Illustrator and an error message pops up saying : Missing required plugins in bold then PDF Format.aip. Does anyone know how I fix this? Tried to reinstal the Illustrator program, but the message still pops up.
    Thanks for any help.

    jill,
    You may try to uninstall, run the Cleaner Tool, and then reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Need help opening NAT type to OPEN on a model WRT54GS router for xbox 360

    I have tried from other people's advice and when i test Xbox Live i always get a Moderate NAT type. I am becoming frustrated with how it is not working and I am hoping someone can help me. Please leave advice/suggestions and thank you for your time.

    Open the setup page of the router using 192.168.1.1 by putting the password as admin with username as blank & click the Administration tab & on the same page you will see UPNP.You need to select it as disable in order to help opening NAT type to OPEN.

  • I need help opening Appleworks documents

    I just got a new iMac and now I can't open any of my Appleworks documents. I have Office for Mac, but I have about 8 years of Appleworks documents that I need to open and read/print. How can I do this?

    I am having the same problem. Tech 1 told me to drag the Appleworks file from my old laptop to my new one (MacBook Pro). Worked for a day or so and then stopped. Tech 2 told me to re-install Appleworks from my old laptop's software. Appleworks was not included as a separate file; instead was included except in Bundled Software. I tried to install Bundled Software on my new laptop and got a message stating I could not do that. Tech 3 told me I needed to purchase iworks to run convert the Appleworks files. I downloaded iworks free for 30 days and tried to open my Appleworks docs. Nope. Three techs have struck out.

  • Need help badly. project file wont open. saying damaged file or may contain outdated elements. please help

    project file wont open. damaged file or contains outdated elements message. i believe its an XML error but i dont know how to fix it. please help

    As a happy user of the Matrox RT.X2 for many years, and later an equally happy user of a Matrox MXO2, I can say from experience that it is highly unlikely that this problem has anything to do with the Matrox hardware!
    Can you open a new blank project, and save it?
    If you cannot import your faulty project into a new project, can you import the sequence from your faulty project?
    Have you tried clearing the Media Cache, clearing your preferences, etc. - all among the techniques used to resurrect a Premiere Pro project that has gone bad???

  • NEED HELP SCHOOL PROJECT DUE TOMORROW @ 7:45

    I need someones help. I had to make a movie for my ap world history class, and @ the last process, which is audio entending(something like that) it freezes or known as not responding. Why does it keep doing this? Is there a SOLUTION?

    You give too little details.
    iDVD can appeear to be frozen, but it still works. This is especially true for the audio encoding. Depending on the complexity and duration of your project, as well as the power of your machine, the encoding phase can take long hours.
    I understand you don't have time for experimenting, so here's what you can try:
    - open Font Book;
    - select all fonts that have a dot on the right;
    - do Edit>Resolve Dupplicates.
    Then try again with iDVD and your project. This time leave enough time, even if a right-click in the iDVD's icon in the Dock tells it's not responding.
    And check you have enough free space: at least 10% of the HDD (general rule for Mac OS X), or 10 GB (some even say 20 GB).

  • New Mac User Needs help opening Microsoft office 2007 files on a Mac!!!

    I just got a used ibook G4. I had an old Pentium upgrade IBM before. I love my Mac, but I need my old school files form my IBM. I have OpenOffice.org 2.2 for Mac OS X 10.4.11 and I have a file converter program called X 11 that opens with a huge list of options for converting files, but it dose not say Microsoft offices 2007 it says the version numbers. I tryed the latest version and It wouldn't open in OpenOffice.org. Should I use Apple Script instead? I don't have Apple Works do I need it? I just want to look at the files. Why is there not a office viewer for Mac?

    You have Tiger. Tiger=10.4.x; Panther=10.3.x; Leopard=10.5.x.
    If you are trying with OpenOffice 2.2, it might be worth updating. I have version 2.4, which is the latest. Since 2.4 fixes a security issue, you should update if you plan to use the application anyway.
    NeoOffice, as a previous poster pointed out, should be able to open Office 2007 documents.
    See the discussion at http://user.services.openoffice.org/en/forum/viewtopic.php?f=5&t=4542 for the main OpenOffice thread discussing this issue. It discusses the ODF converter at sourceforge which NeoOffice uses to open Office 2007 documents. Apparently, you can use it with regular OpenOffice, too, but if 2.4 doesn't come with it (and maybe it does - I haven't checked), it might be easier to use NeoOffice for now.
    X11 is not a file converter, by the way. It is the traditional unix GUI. Apple provides a version of this for OS X which enables you to run applications which haven't been ported to the native OS X environment. OpenOffice for Mac OS X uses X11 as do some other applications, such as GIMP, which you may have heard of/used. NeoOffice is a version of OpenOffice ported to the native OS X environment (i.e. it doesn't have to use X11). I haven't used it in a long time - I always use OpenOffice on X11 - but it is supposed to be very good now and should seem very familiar if you're used to OpenOffice. If you can't get OpenOffice to work with your files, you should definitely try NeoOffice before buying MS Office - unless, of course, you especially want to send MS a few hundred of your preferred currency.
    The other thing you can try, if you've still got Office on your IBM machine is converting the files there by opening them and choosing "save as...". That should allow you to select an earlier version of Word/Excel/... which OpenOffice should have fewer problems with. Since you may lose formatting this way, try the other options first. (Also, if you have a lot of files, this option will be very annoying to implement.)
    I do not think AppleWorks is likely to help. (I'm not sure if AppleWorks is even still available... somebody?) There are some suggestions Pages might help, but I would personally try the other solutions first. (On the other hand, I have a very old version of Pages.)
    AppleScript is almost certainly not what you want. It has nothing to do with AppleWorks. It is a scripting language.
    Good luck,
    cfr

  • Need help burning project to DVD

    Can anyone help me burn a PRE project to a DVD in .VOB (NTSC) format so it can be read by any DVD player connected to a TV, not a computer.  I know how it is supposed to be done in Premier Elements because I did it with small sample files, but whenever I try with a larger project, PRE always crashes during the encoding process..  First I will give the particulars of my system, then of my project, then of the trouble shooting I already tried, finally my experiences
    System:
         Intel Pentium "E2200" dual core processor @ 2.2 GHZ speed
         3 GB RAM
         Windows 32bit Vista Home Premium with SP2 installed
         1/4 TB hard drive with 100MB free and 0% fragmented
          Intel G31/33 graphics processor
    Projects:  
         14 MB slide show consting of 5 MB JPEG files with audio or text captions and unedited  MPG4 files of 480x720 pixels imported from Samsung camcorder set at recording quality of 5 MB/sec.
         10 MB movie created in instant DVD by dragging above JPEG and MPG4 files from album
         Neither have additional narration or music tracks        
         Both the above about 25 minutes on the timeline
    Troubleshooting already tried:
         Burning project to folder instead of to DVD
         Exporting files to PC in MPG2 and AVI format
         Rendering the file (not all at once, but in separate work areas at a time)
         Burned to both -RW and -R DVD's
         Deselecting the "Fit contents to available space" quality option in the burn menu and manually selecting a bitrate speed of 3 MB/sec
         Repeating the above in selective start of windows with all start programs and non-Microsoft processes disabled
         Repeating the above for both Slide show and movie projects
    Results:
         The encoding process never completes, but it abends at different stages in different trials--never the same point.  Sometimes it crashes at less than 20% complete; sometimes it makes it to 96% complete, then stops responding.  Sometimes it generates a crash report, and sometimes it just stops responding, so I have  to open task manager to end the program.   Sometimes I get a message that PRE is dangerously low on system memory.  I just close the window and procede, because I am watching physical memory usage in Task Manager while PRE is encoding and it is consistantly about 60%.  CPU usage often peaks at 100%, but not for more than 60 secs at a time.  When the system crashed, it generated an error message in the administrative events log sometimes reading: "The entry <name of project file> in the hash map cannot be updated"; event ID 3013, which Microsoft found no help for.  When it simply stops responding, it leaves no error message in the system log until I close the program.
         I don't think I have a system error, because my system sussessfully burned two minute test projects, and don't have a project error, because I could render the timeline.  What is going on here?
         B.T.W, some people I talked to about this problem who make their living in photos and electronics suggest I buy a camcorder which records in MPEG2 format, then simply burn the MPEG2 files to DVD without re-encoding, insert the DVD into any player connected to a TV, and play.  I don't think this advice is correct.   Opinions?

    Hello, freethedata. This is the Photoshop Elements forum. Premiere Elements has its own forum, here:
    http://forums.adobe.com/community/premiere/premiere_elements
    and you'll get more help with video questions there. Good luck!

  • Need help opening Photoshop Elements 11; downloaded, but won't open, please help?

    I recently purchased Adobe Photoshop Elements 11 an downloaded it, but it will not open.  I receive a message that states that I need to 'uninstall' and then to 'reinstall'.  How do I do this and where is the software available again to reinstall?
    Thank you for your help!

    If you are using a PC, then you use the Control Panel interface to uninstall most any software.  To reinstall, you should be able to download it from Adobe's site.  If you cannot find a link to download it via your account (log in and see) then you could also download and install the trial version and use your serial number from the purchase to activate it.

Maybe you are looking for