Logic 6.4.3 Crashed - NEED HELP - Can't Open File!!!!!!

My Logic crashed after saving a song. When I saved my track, Logic crashed and a box appeared saying ("The application logic pro quit unexpectedly"). The backups won't open and the same error box appears, other songs project and logic open just fine. If anyone has any updates or suggest please post!
Best,
Chit Chat

Same thing is happening to me. Just realized it and am going to stop using Mail for the timbering I guess.
Also have an Exchange account.

Similar Messages

  • Need help can't open existing itunes

    Today I had to completely restore my pc to it's original settings. I have an itunes account but now I cannot get any of the music or audio books that I had in there. Is there a way to get my stuff back or am I out of luck?

    Marc & Others,
    I'm having the exact same issue, but know when it began. I changed the default language by going to the 'International' section in System Preferences and selecting the language -- French in our case (my wife is French, easier for her to navigate some apps). The moment I did, all icons from my desktop were wiped and I can no longer get into System Preferences.
    Same other issues occurred as you noted below - bouncing icon but nothing happens, can't change date/time, can't open finder. All language setting are in French though ...
    I tried going to user/library/preferences/ and removing the files you noted below, but can't access them -- they're greyed out.
    I'm at my wits end ... this problem seems to be common as I've seen several listings for it, but your the first who seems to have solved it. Can you, or anyone here, help?
    Thanks in advance!

  • Need help fast about opening file

    hello i have this 2 classes to open file and display it .the open method works fine but when ever i try to open different file it adds the new data and display both . the problem is it not suppose to add the new data to the old list it should only show the new data only ...can any one help thx
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class RoomGUI extends JFrame
       private RoomSortedList list;
         // Menu items:
       private JMenuItem mOpen;
       private JMenuItem mSaveAs;
       private JMenuItem mExit;
         // Displayed regions of the window:
         private JTextField messageField;
         private JTextArea textArea;
          * Constructor for RoomGUI object to set up
          * GUI window with menu.
         public RoomGUI()
              list=new RoomSortedList();     
         // Components to display on window:
              messageField = new JTextField();
              messageField.setEditable(false);
              textArea = new JTextArea();
              textArea.setEditable(false); 
                        // Arrnge components on window:
              Container contentPane = getContentPane();
              contentPane.add(messageField, BorderLayout.SOUTH);
              JPanel centerPanel = new JPanel();
              contentPane.add(centerPanel, BorderLayout.CENTER);
              centerPanel.setLayout(new GridLayout(1,1));
              centerPanel.add(new JScrollPane(textArea));
    //  Create menu items for the "File" menu:
          mOpen = new JMenuItem ("Open");
          mSaveAs = new JMenuItem ("SaveAs");
          mExit = new JMenuItem ("Exit");
          //  Create "File" menu:
          JMenu fileMenu = new JMenu ("File", /*tearoff =*/ false);
          fileMenu.add(mOpen);
          fileMenu.add(mSaveAs);
          fileMenu.add(mExit);
          // Create menu bar:
          JMenuBar mainMenuBar = new JMenuBar();
          mainMenuBar.add(fileMenu);
          // Put menu bar on this window:
          setJMenuBar(mainMenuBar);
         mOpen.addActionListener( new FileOpener(textArea,list) );
         mSaveAs.addActionListener( new FileSaver(list) );
          mExit.addActionListener(new Quitter());
              // Routine necessities with JFrame windows:
              setSize(500, 400);
              setLocation(200, 100);
              setTitle("Project 4");
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              setVisible(true);
         } // constructorfile opener
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class FileOpener implements ActionListener
         private RoomSortedList list;
         private JTextArea textArea=new JTextArea();
              private int returnvalue;
              private String filename;
              private JTextField messageField;
         public FileOpener(JTextArea ta,RoomSortedList ls)
              this.textArea=ta;
              this.list=ls;
         public void actionPerformed(ActionEvent e)
              list =new RoomSortedList();
              messageField = new JTextField();
              JFileChooser filechooser = new JFileChooser();
             // if a file is selected returnvalue = 0
             // else if cancel button is pressed
             // returnvalue = 1
             returnvalue = filechooser.showOpenDialog(null);
             //if open is selected then return filename
             if (returnvalue == filechooser.APPROVE_OPTION){
                filename = filechooser.getSelectedFile().toString();
                // now read the rooms from the file with the name filename
                // invoke the readfile method
                readFile(filename);
                messageField.setText(filename);
             }//if
             // if cancel is selected then close the filechooser
             else if (returnvalue == filechooser.CANCEL_OPTION)
                filechooser.cancelSelection();
       * Reads room data from a text file.Check if each lines are in valid room
       * format, and values. Catches exception errors for any invalid lines or
       * values thrown by ParseRoom or Room constructors.
       * Valid lines are appended to an sorted linked list. 
       * @param filename     name of file containing
       private void readFile(String filename)
           JFrame errorD=new JFrame();
          String str=null;
          Room r=null;
          int linenum=0;
          TextFileInput Obj=null;
          try
             Obj = new TextFileInput(filename);
          catch (RuntimeException rte)
             System.out.println(rte.getMessage());
          while (true)
             str = Obj.readLine();
             linenum++;
             if (str==null) break; // to stop reading lines at the end of file
             try
                r = RoomTextFormat.parseRoom(str);
             catch (RoomTextFormatException rtf)
                JOptionPane.showMessageDialog(errorD, "Error reading line # " +
                   linenum + ": " + str + "\n" + rtf.getMessage() + "\n"+
                   "This line of text has been excluded from the list.",
                   "Text Format Error", JOptionPane.ERROR_MESSAGE);
                continue;
             catch (IllegalRoomException ire)
                JOptionPane.showMessageDialog(errorD, "Error reading line # " +
                   linenum + ": " + str + "\n" + ire.getMessage() + "\n" +
                   "This line of text has been excluded from the list.",
                   "Room Instantiation Error", JOptionPane.ERROR_MESSAGE);
                continue;
             list.insert (r);
             textArea.setText("");
                RoomListIterator MyIterator = list.beginIterating();
                int c=1;
                while (MyIterator.hasNext())
                   Room m = MyIterator.next();
                   textArea.append(c + ": " + m + "\n");
                   c++;
                }//while
          }// while (true)
       } // readFile()
    }

    i apologize again.thx anyway . heres the code
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class RoomGUI extends JFrame
         private RoomSortedList list;
         // Menu items:
         private JMenuItem mOpen;\
         // Displayed regions of the window:
         private JTextField messageField;
         private JTextArea textArea;
          * Constructor for RoomGUI object to set up
          * GUI window with menu.
         public RoomGUI()
              list=new RoomSortedList();     
              // Components to display on window:
              messageField = new JTextField();
              messageField.setEditable(false);
              textArea = new JTextArea();
              textArea.setEditable(false); 
              // Arrnge components on window:
              Container contentPane = getContentPane();
              contentPane.add(messageField, BorderLayout.SOUTH);
              JPanel centerPanel = new JPanel();
              contentPane.add(centerPanel, BorderLayout.CENTER);
              centerPanel.setLayout(new GridLayout(1,1));
              centerPanel.add(new JScrollPane(textArea));
                  //Create menu items for the "File" menu:
              mOpen = new JMenuItem ("Open");
              //  Create "File" menu:
              JMenu fileMenu = new JMenu ("File", /*tearoff =*/ false);
              fileMenu.add(mOpen);
              // Create menu bar:
              JMenuBar mainMenuBar = new JMenuBar();
              mainMenuBar.add(fileMenu);
              // Put menu bar on this window:
              setJMenuBar(mainMenuBar);
              mOpen.addActionListener( new FileOpener(textArea,list) );
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              setVisible(true);
         } // constructor
    } // class RoomGUIopen file
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class FileOpener implements ActionListener
         private RoomSortedList list;
         private JTextArea textArea=new JTextArea();
              private int returnvalue;
              private String filename;
              private JTextField messageField;
         public FileOpener(JTextArea ta,RoomSortedList ls)
              this.textArea=ta;
              this.list=ls;
         public void actionPerformed(ActionEvent e)
              list =new RoomSortedList();
              messageField = new JTextField();
              JFileChooser filechooser = new JFileChooser();
             // if a file is selected returnvalue = 0
             // else if cancel button is pressed
             // returnvalue = 1
             returnvalue = filechooser.showOpenDialog(null);
             //if open is selected then return filename
             if (returnvalue == filechooser.APPROVE_OPTION){
                filename = filechooser.getSelectedFile().toString();
                readFile(filename);
                messageField.setText(filename);
             }//if
             // if cancel is selected then close the filechooser
             else if (returnvalue == filechooser.CANCEL_OPTION)
                filechooser.cancelSelection();
       private void readFile(String filename)
          String str=null;
          TextFileInput Obj=null;
             Obj = new TextFileInput(filename);
          while (true)
             str = Obj.readLine(); // 
             if (str==null) break; // to stop reading lines at the end of file
             list.insert (str);
             textArea.setText("");
                RoomListIterator MyIterator = list.beginIterating();
                int c=1;
                while (MyIterator.hasNext())
                   Room m = MyIterator.next();
                   textArea.append(c + ": " + m + "\n");
                   c++;
                }//while
          }// while (true)
       } // readFile()
    }

  • Paymee App Need Help can't open my AIA's or Use program

    Friday, December 12, 2014 4:08 PM
    Thanks for your interest.
    Yes, many users reporting that a MS Office update has resulted in errors.
    Best Regards
    Mike Hampton
    Sapro Systems

    Hi Kathy,
    Thanks for your question. As per the search, I understand that this is a third party App that integrated with Microsoft Excel, right?
    Based on your description, seems you already consulted the support of the App. When did you notice this problem?
    I'm not quite sure how exactly this App works, but we have noticed that recently, for some users, Form Controls (FM20.dll) are no longer working as expected after installing MS14-082 Microsoft Office Security Updates for December 2014.
    Here is the official blog post on this issue, you might want to have a look and try the solutions mentioned in it:
    http://blogs.technet.com/b/the_microsoft_excel_support_team_blog/archive/2014/12/13/forms-controls-stop-working-after-december-2014-updates-.aspx
    Hope this helps.
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Help-can't open file???

    have a filed saved in imovie, but when try and open it, its just says cannot open this file. When I look at it in finder, all the parts seem to be there! is there anyway I can open it which exporting all the clips? I have made a piece of music in it, which I really need in the same order but not sure how to get!
    thank you for any advise!

    Hi girliekim - welcome to the iMovie forum!
    Is the file stored on your computer's hard drive, or on an external drive?
    External drives must be formatted for Macs, not PCs.
    Open the iMovie project's package by Control-Clicking it>Show Package Contents>Shared Movies>iDVD and double click the QT.mov file.
    Does it open and play?
    Let us know what happens.

  • New user needs help with quickly opening files

    I have a new imac that I purchased 8/2010. Is there a way to open a file or attachment without the download window opening up to enable you to view the file? Is there a setting that would allow me to just click the file attachment (email) like an excel document and it just opens immediately. Im getting a little aggrevated going through all the steps to open and close an attached email file. this is my first mac, so I am learning. Thanks

    Is there a "Quick Look" button at the top of the message?
    Right-click the attachment and choose "Quick Look".

  • Hello I Download Adobe Photoshop CC 2014 Last Night i INSTALLED it But it Crashes in 30-40 Sec After i Launch the Product Without Any Error Message I Need Help Can You Resolve This Problem i Tried Creative Cloud Sign Out Nd Sign iN But iT DidnT ReSolve My

    Hello I Download Adobe Photoshop CC 2014 Last Night
     i INSTALLED it But it Crashes in 30-40 Sec After i Launch the Product Without Any Error Message
    I Need Help Can You Resolve This Problem

    Lotfi are you receiving any error messages during the installation?  I would recommend reviewing your installation logs for errors.  Please see Troubleshoot install issues with log files | CC - http://helpx.adobe.com/creative-cloud/kb/troubleshoot-install-logs-cc.html for information on how to locate and interpret your installation log files.  You are welcome to post any specific errors you discover to this discussion.

  • I have a Steinberg MI4 and a Roland Fantom X7, and am trying to use my Fantom in Logic to record audio. Need help setting it all up using MIDI cables. Please help !

    I have a Steinberg MI4 and a Roland Fantom X7, and am trying to use my Fantom in Logic to record audio. Need help setting it all up using MIDI cables. Please help !

    Encryption wouldn't matter except for Wifi.
    While 10.2 might help, there's not much you can do on the Internet these days with less than 10.4.11
    Tiger Requirements...
    To use Mac OS X 10.4 Tiger, your Macintosh needs:
        * A PowerPC G3, G4, or G5 processor
        * Built-in FireWire
        * At least 256 MB of RAM (I recommend 1GB minimum)
        * DVD drive (DVD-ROM), Combo (CD-RW/DVD-ROM) or SuperDrive (DVD-R) for installation
        * At least 3 GB of free disk space; 4 GB if you install the XCode 2 Developer Tools  (I recommend 20GB minimum)
    http://support.apple.com/kb/HT1514
    http://www.ebay.com/sch/i.html?_nkw=mac+os+x+tiger+retail+10.4
    See Tom's, (Texas Mac Man), great info on where/how to find/get Tiger...
    https://discussions.apple.com/message/15305521#15305521
    Or Ali Brown's great info on where/how to find/get Tiger...
    http://discussions.apple.com/thread.jspa?messageID=10381710#10381710
    As far as Memory, that's sort of easy, find your eMac here...
    http://eshop.macsales.com/MyOWC/Models.cfm?Family=emac&sType=Memory
    As far as Hard Drive, it's not easy to replace the Internal drive, I'd maybe suggest an external Firewire drive to boot from...
    http://eshop.macsales.com/item/Other%20World%20Computing/MAU4S7500G16/

  • My itunes crashes and I can't open it all. HELP

    My itunes crashes and I can't open it all. Just installed the latest version 10.5.1. I can't even get it to open to try and figure out what is wrong. Can I uninstall it and reinstall the less recent version which was working? Help!!
    I am not a computer guru, the reason that I love my MacBook Pro is that I don't have to worry about it, now I am worrying, because I can't get into my itunes at all. I would trash the new version of itunes and find an older version (I did try reinstalling 10.5.1) as long as I was reassured that I wouldn't lose all my music.
    Thanks all.

    Sorry to hear.
    Wow, first iPad crisis with vs 5 & 501, now this?
    I see the update waiting right now for my MBP, and is why I'm here to see what's up.
    On the software update panel, it's all about cloud service.
    Looks like 10.5 is the end of the road for me.
    I can see having gaming on cloud, but with the work I put into my tunes, no way.
    We'll see how people react as time goes, and the next crisis.

  • HT3775 I get the following message when trying to open an .avi downloaded from my video cam, need help, can not find the codec, thank you.The document "IMAG0026.AVI" could not be opened. A required codec isn't available.

    I get the following message when trying to open an .avi downloaded from my video cam, need help, can not find the codec, thank you. This is for Quicktime Player.
    "The document “IMAG0026.AVI” could not be opened. A required codec isn't available."

    Try Perian.
    http://perian.org/

  • My original note application is always crashed and i can't open it. Can you help me please??? Urgent

    My original note application is always crashed and i can't open it. Can you help me please??? Urgent

    CLOSE FROZEN APPS
    Hold the sleep button until ON/OFF slider appears. Let go of sleep button and ignore slider and then hold home button until the app closes
    Then  do this
    RESET DEVICE
    Hold down the Sleep/Wake button and the home button together until the apple logo appears (ignore the ON/OFF slider) then let both buttons go and wait for device to restart (no data will be lost).

  • Having issues with low memory that is causing some of my apps to crash, need help please !!!

    Having issues with low memory that is causing some of my apps to crash, need help please !!!

    Is the device actually showing low memory errors?
    What is really occurring?
    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Has any of this been tried?

  • Need help " Can't find a valid editor for this file extension" not sure why I am getting and this or what to do.

    also say explorer not reading SWF files and I have to reload them? Not sure what that is either,
    Thanks
    Jim

    Hi Nancy
    Trying to update my site got to make some changes.  Do you work on sites via remote? I am on Cloud.
    : Nancy O. 
    Sent: Monday, September 01, 2014 3:47 PM
    To: James Neidner
    Subject:  Need help " Can't find a valid editor for this file extension" not sure why I am getting and this or what to do.
    Need help " Can't find a valid editor for this file extension" not sure why I am getting and this or what to do.
    created by Nancy O. <https://forums.adobe.com/people/Nancy+O.>  in Dreamweaver support forum - View the full discussion <https://forums.adobe.com/message/6692200#6692200>

  • I jailbroke my ipod and its in recovery mode i cant take it out of it and i cant restore becasue i changes host to sariks sever i need help can any one help me

    i cant take it out of it and i cant restore becasue i changes host to sariks sever i need help can any one help me please please i just got my ipod i realy need help

    Sorry, due to the Terms of Use, problems with jailbroken devices can't be discussed here.

  • Can't open file after Keynote crashed

    I was working on a large Keynote file (about 130 Mb), when Keynote (4.0.1) quite unexpectedly. It happened a few times before, and I thought it was because of the instability of the new Leopard system. This time, however, I could not open the file after the crash. An error message was displayed: "Can't open file" followed by the path and the file name.
    Does this happen to anyone else? Can anyone help? I hate to lose the work and go back to an early version.

    Keynote and Leopard, especially in their newest iterations, are remarkably stable. That said, no file, program, or OS is totally immune from corruption. Whenever a program, or worse, your Mac, even starts to behave strangely, your first step ought to be to attend to it with a good fixit utility. Repairing permissions is usually fruitless, since it's highly unlikely there's a permissions problem. You already own *Disk Utility*, so you should try to repair the disk with that. Unfortunately, DU's disk repair is pretty wimpy, often unable to repair a problem, or erroneously reporting no problem when one obviously exists.
    So, if you own a Mac, you owe it to yourself to buy at least one (but better, two) industrial-strength utility. There are really only three to choose from:
    1. DiskWarrior is an absolute must. It's unbeatable in rebuilding the directory, and the directory is usually what's corrupted. It can now fix files, too, which is also helpful.
    2. *TechTool Pro* is an excellent suite of fixits - directory, files, defrag, and some hardware tests. It also has a wonder feature, the eDrive. This is a small (10GB) bootable partition on your boot drive which has, among other things, TTP on it. If your main boot partition has a problem, you can boot from here and usually fix things. AFAIC, it's an absolute must on a laptop which you take on trips, far from your collection of fixit disks. You can also put DW on this partition, so you have everything you need right at your fingertips.
    3. *Drive Genius* is a relative new-comer, also a good suite of fixits, and, I believe, does backups, too.
    I have 1 and 2, and that has saved me from catastrophe more than once. 1 and 3 would probably be good, too. (You ought to have more than one of these serious apps because one can sometimes fix something another can't - different proprietary algorithms.)
    One last thing: if you have anything on your computer it'd break your heart to lose (and who doesn't), remember +The First Rule of Computing+: There are two kinds of computer users: those who have already lost all their data at least once, and those who have not yet lost all their data at least once. So: *backup, backup, backup*. I vote for bootable clones, done often (at least daily if you work daily), TimeMachine is pretty good, and there are other options. Pick one, and do it religiously.

Maybe you are looking for

  • How to transfer music from 1 itunes library to another

    hello, i need help both my dada and i have 30gb ipod videos. He has some music on his ipod that i want to put on mine. how do i do that. My teacher says to create a new playlist, and then drag the files into my library. tahnks

  • Microphone too low on G780 in Windows 8

    When I used Skype, I heard complains, nobody could hear me. So I checked my microphone settings and they were set... to minimum (microphone 0, performance 0 dB) so I set it to maximum (microphone 100, performance +40 dB) and... with very weak results

  • Include files in root of application folder when building

    Hi, can anyone advise how I would go about doing this in my build properties. I have a dll file that I need to be place in the root installation aty the same level as the "myapplication.exe" I can see how you can create your own sub dirs, and tell it

  • Application import inserts newlines (v1.5)?

    Hi, When I export my application from development server and import to the test server, there are newlines in my code that were not there before. It has not ever bothered me before, I have not even noticed, but now one of those happens in a javascrip

  • Storing easy to access information about current user

    Hi everybody! Does someone know if I could store somewhere an information about the current user and that a could retrieve anytime in a similar way I can retrieve the username of the current user when I do 'select user from dual' ? I would like each