Thread.start vs SwingUtilities - GUI update

Hi
how come the GUI is not updated ( moving label ) using
        SwingUtilities.invokeAndWait(new AThread(label));when I use
        Thread t = new Thread(new AThread(label));
        t.start();the GUI is updated
Thanks
public class Test {
    public static void main(String[] args) throws Exception {
        JFrame frame = new JFrame("test");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setLayout(new FlowLayout());
        frame.setSize(400, 400);
        frame.setVisible(true);
        JLabel label = new JLabel("000000");
        frame.getContentPane().add(label);
        //SwingUtilities.invokeLater(new AThread(label));
        SwingUtilities.invokeAndWait(new AThread(label));
        //Thread t = new Thread(new AThread(label));
        //t.start();
class AThread implements Runnable {
    private JLabel alabel;
    public AThread(JLabel alabel) {
        this.alabel = alabel;
    public void run() {
        try {
            while (alabel.getY() < 200) {
                Thread.sleep(50);
                Point p = alabel.getLocation();
                double x = p.getX();
                double y = p.getY();
                alabel.setLocation((int) x + 1, (int) y + 1);
                System.out.println( alabel.getY());
        } catch (InterruptedException e) {
        System.out.println("done");
}Edited by: sc3sc3 on Feb 8, 2008 10:06 AM

The invokeAndWait call waits for the thread to finish. So until that thread finishes, the event dispatch thread (EDT) cannot update and so you never see any changes to the label until the thread is complete.
In the second case, the EDT can incorrectly sporadically update the label because they are running concurrently. I say incorrectly here because you are modifying the label outside of the EDT which is an error and can have various unforeseen consequences. If you want to modify the label, you should queue another runnable to the EDT so the update can occur there. Something like
import java.awt.*;
import javax.swing.*;
public class TestLabelEdt {
    public static void main(String[] args) throws Exception {
        JFrame frame = new JFrame("test");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setLayout(new FlowLayout());
        frame.setSize(400, 400);
        frame.setVisible(true);
        JLabel label = new JLabel("000000");
        frame.getContentPane().add(label);
        //SwingUtilities.invokeLater(new AThread(label));
        //SwingUtilities.invokeAndWait(new AThread(label));
        Thread t = new Thread(new AThread(label));
        t.start();
class AThread implements Runnable {
    private JLabel alabel;
    public AThread(JLabel alabel) {
        this.alabel = alabel;
    public void run() {
        try {
            while (alabel.getY() < 200) {
                Thread.sleep(50);
                Point p = alabel.getLocation();
                final double x = p.getX();
                final double y = p.getY();
                Runnable doRun = new Runnable() {
                    public void run() {
                        alabel.setLocation((int) x + 1, (int) y + 1);
                        System.out.println( alabel.getY());                              
                SwingUtilities.invokeLater( doRun );               
        } catch (InterruptedException e) {
        System.out.println("done");
}

Similar Messages

  • GUI Update and Threads

    Hello all, I'm new to Java and am having a hard time trying to understand how to implement multi-threading. I've built a simple app with GUI for converting files between encodings. The program works fine but some files take a long time to convert so I want to show the user some status text in the GUI. The conversion function is called from within a button click event, and further from within a loop that cycles through a directory of files to convert. I'm trying to show the name of the file being converted in a label in the GUI, but the label won't update until the button click event finishes, so only the last file converted is displayed.
    I've read through countless examples on this forum and others, and in several online books. I understand the concept of multi-threading and some of the issues surrounding them, but can't seem to grasp the mechanics of getting them set up in code at this point.
    Can anyone provide some coding tips? The code is provided below minus the NetBeans generated layout code. I can provide this also if needed. You'll see some lines commented out in the For loop that I tried but that didn't work.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    public class EnCon4 extends javax.swing.JFrame {
        //Declare variables and set default values
        String fname="UTF-16";
        String tname="UTF8";
        String infile;
        String outfile;
        /** Creates new form EnCon4 */
        public EnCon4() {
            initComponents();
        private void encodingToListActionPerformed(java.awt.event.ActionEvent evt) {                                              
            tname=(String)encodingToList.getSelectedItem();
        private void encodingFromListActionPerformed(java.awt.event.ActionEvent evt) {                                                
            fname=(String)encodingFromList.getSelectedItem();
        private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                        
            jLabelStatus.setText("Converting From: " + fname + "  To: " + tname);
            jLabelStatus.repaint();
         File dir1 = new File ("."); //Set current directory
         //Create new subdirectory for converted files
         String newDirName = dir1 + File.separator + "Conv"; 
             File dir2 = new File(newDirName);
             if (!dir2.exists()) {
                dir2.mkdir();
             try {
                //Set path to current directory
                File pathName = new File(dir1.getCanonicalPath());
                File[] contents = pathName.listFiles();
                for (File file : contents) {
                    if (!file.isDirectory()) {
                        //Create the converted files
                    //Set variables
                    infile = dir1.getCanonicalPath() + File.separator + file.getName();
                    outfile = dir2.getCanonicalPath() + File.separator + file.getName();
                    //Check file names to exclude converting the java class file
                    if (!infile.endsWith("class") & !infile.endsWith("jar")) {
                            //Print the file name
                            jLabelStatus.setText("Converting file:  " + file.getName());
                            jLabelStatus.repaint();
                            //catch (Exception econ) {
                            //    System.out.print(econ.getMessage());
                            //    System.exit(1);
                            //System.out.println(file.getName());
                       //Call conversion function in a new thread.
                       //Example with static args //try { convert("NamesASCII.txt", "UTF8.txt", "ISO8859_1", "UTF8"); }
                           //Thread t = new Thread(new Runnable() {
                                //public void run() {
                                try {convert(infile, outfile, fname, tname);
                                catch (Exception econ) {
                                    jLabelStatus.setText(econ.getMessage());
                                    jLabelStatus.repaint();
                                    //System.out.print(econ.getMessage());
                                 //System.exit(1);
                            //t.start();
                //jLabelStatus.setText("Conversion complete.");
                //jLabelStatus.repaint();
             catch(IOException econ) {
                jLabelStatus.setText("Error: " + econ);
                //System.out.println("Error: " + econ);
        public static void convert(String infile, String outfile, String from, String to)
            throws IOException, UnsupportedEncodingException {
            // set up byte streams
            InputStream in;
            if (infile != null) in = new FileInputStream(infile);
            else in = System.in;
            OutputStream out;
            if (outfile != null) out = new FileOutputStream(outfile);
            else out = System.out;
            // Set up character stream
            Reader r = new BufferedReader(new InputStreamReader(in, from));
            Writer w = new BufferedWriter(new OutputStreamWriter(out, to));
            // Copy characters from input to output.  The InputStreamReader
            // converts from the input encoding to Unicode, and the OutputStreamWriter
            // converts from Unicode to the output encoding.  Characters that cannot be
            // represented in the output encoding are output as '?'
            char[] buffer = new char[4096];
            int len;
            while((len = r.read(buffer)) != -1)
              w.write(buffer, 0, len);
            r.close();
            w.flush();
            w.close();
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new EnCon4().setVisible(true);
        // Variables declaration - do not modify                    
        private javax.swing.JComboBox encodingFromList;
        private javax.swing.JComboBox encodingToList;
        private javax.swing.JButton jButton1;
        private javax.swing.JLabel jLabel1;
        private javax.swing.JLabel jLabel2;
        private javax.swing.JLabel jLabel3;
        private javax.swing.JLabel jLabelStatus;
        private javax.swing.JPanel jPanel1;
        // End of variables declaration                  
    }

    There are two key principles here. The first is "remove long-running
    processes from the event dispatch thread". If in doubt, you
    can check with SwingUtilities.isEventDIspatch(). The second is
    "put GUI updates on the event dispatch thread", preferable
    with SwingUtilities.invokeLater().
    Today is my last day at work, so here's a fish:
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.*;
    public class EnCon extends JFrame{
        String fname="UTF-16";
        String tname="UTF8";
        String infile;
        String outfile;
        /** Creates new form EnCon4 */
        public EnCon() {
            super("EnCon");
            jButton1.addActionListener(new ActionListener() {
                public void actionPerformed(final ActionEvent ae) {
                    final Thread t = new Thread(new MyRunner());
                    t.start();
            final JPanel container = new JPanel();
            container.add(jButton1);
            container.add(jLabelStatus);
            this.getContentPane().add(container);
            this.pack();
            this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        private class MyRunner implements Runnable {
            public void run() {
                sendMessage("Converting From: " + fname + "  To: " + tname);
                File dir1 = new File ("."); //Set current directory
                //Create new subdirectory for converted files
                String newDirName = dir1 + File.separator + "Conv";
                File dir2 = new File(newDirName);
                if (!dir2.exists()) {
                    dir2.mkdir();
                try {
                    //Set path to current directory
                    File pathName = new File(dir1.getCanonicalPath());
                    File[] contents = pathName.listFiles();
                    for (File file : contents) {
                        if (!file.isDirectory()) {
                            infile = dir1.getCanonicalPath() + File.separator + file.getName();
                            outfile = dir2.getCanonicalPath() + File.separator + file.getName();
                            if (!infile.endsWith("class") & !infile.endsWith("jar")) {
                                sendMessage("Converting file:  " + file.getName());
                                try {
                                    convert(infile, outfile, fname, tname);
                                    sendMessage("Done");
                                catch (Exception econ) {
                                    sendMessage(econ.getMessage());
                catch(IOException econ) {
                    sendMessage("Error: " + econ);
            private void sendMessage(final String message) {
                SwingUtilities.invokeLater(new Runnable() {
                    public void run() {
                        jLabelStatus.setText(message);
        public static void convert(String infile, String outfile, String from, String to)
        throws IOException, UnsupportedEncodingException {
            // set up byte streams
            InputStream in;
            if (infile != null) in = new FileInputStream(infile);
            else in = System.in;
            OutputStream out;
            if (outfile != null) out = new FileOutputStream(outfile);
            else out = System.out;
            // Set up character stream
            Reader r = new BufferedReader(new InputStreamReader(in, from));
            Writer w = new BufferedWriter(new OutputStreamWriter(out, to));
            // Copy characters from input to output.  The InputStreamReader
            // converts from the input encoding to Unicode, and the OutputStreamWriter
            // converts from Unicode to the output encoding.  Characters that cannot be
            // represented in the output encoding are output as '?'
            char[] buffer = new char[4096];
            int len;
            while((len = r.read(buffer)) != -1)
                w.write(buffer, 0, len);
            r.close();
            w.flush();
            w.close();
        public static void main(String args[]) {
            new EnCon().setVisible(true);
        // Variables declaration - do not modify
        private JButton jButton1 = new JButton("Convert");
        private JLabel jLabelStatus = new JLabel("jLabelStatus");
        // End of variables declaration
    }

  • Making GUI update at correct time

    I'm creating an engine that can display experimental stimuli for my lab working with kids with reading disabilities. I have a GUI which can display the next stimuli in the test. Once the stimuli are displayed, the program does nothing until the user presses a button and a key event is called.
    I'm now trying to get my GUI to play recorded words to the user. Because it's the responsibility of the GUI to display stimuli, the GUI will be the one playing the sound (even though that's not typically thought of as a GUI responsibility). Unfortunately, even though the commands to update the GUI display are placed before the command to play the sound, the GUI does not update until it has finished playing the sound.
    This has nothing to do with the sound itself: if I replace the clip.play() line with a loop that wastes time and spins around for five seconds, the GUI does not update for those five seconds.
    The GUI updates itself the moment the program leaves the setStimuli() method. How can I get it to update itself before then? Commands such as this.repaint() don't appear to work.
    Any thoughts on how to get the GUI to update itself before exiting the method?
    public class TestingEngine {
    public void setStimuli(String[] values) {
       gui.setStimuli(values);
    public class GUI extends javax.swing.JFrame {
    public void setStimuli(String[] values){
           switch (testType){
             case SOUND:
                   String soundImageFile = "Headphones.jpg";
                   ImageIcon soundImage = new ImageIcon(soundImageFile);
                   JLabel soundImageLabel = new JLabel(soundImage);
                   SoundImageJPanel.removeAll();
                   SoundImageJPanel.repaint();
                   SoundImageJPanel.add(soundImageLabel);
                   soundImageLabel.setVisible(true);
                   label_S_Option1.setText(values[1]);
                   label_S_Option2.setText(values[2]);           // <-- nothing has updated yet
                   SoundClip clip = new SoundClip(values[0]);
                   if (clip.isInitialized())                     // <-- this section could also be replaced
                       clip.play();                             // by a time-wasting loop
                   break;
        }      // <-- once program reaches here, GUI finally updates
    }

    Ok, so just for the sake of it, I tried using the Timer method as suggested in the thread you pointed me to. This doesn't do anything, but thinking about it, I don't see why it would. Timer calls repaint() every 50 ms, but, after all, the setStimuli() method also called repaint() before playing the soundclip. If the original call of repaint() didn't do anything, then I don't think that calling it more often would.
    Is there another command that I should be using? In other words, how can I tell my JFrame and JLabels to "UPDATE RIGHT NOW, NOT IN A MINUTE!"? (It would be easier if I were the JFrame's mother...)
    Current version of code, with Timer class:
    public class GUI extends javax.swing.JFrame {
       private Thread refresh;
       public GUI() {
           initComponents();
           refresh = new Timer(this);
           refresh.start();
       public void setStimuli(String[] values){
           switch (testType){
             case SOUND:
                   String soundImageFile = "Headphones.jpg";
                   ImageIcon soundImage = new ImageIcon(soundImageFile);
                   JLabel soundImageLabel = new JLabel(soundImage);
                   SoundImageJPanel.removeAll();
                   SoundImageJPanel.repaint();
                   SoundImageJPanel.add(soundImageLabel);
                   soundImageLabel.setVisible(true);
                   label_S_Option1.setText(values[1]);
                   label_S_Option2.setText(values[2]);           // <-- nothing has updated yet
                   SoundClip clip = new SoundClip(values[0]);
                   if (clip.isInitialized())                     // <-- this section could also be replaced
                       clip.play();                              // by a time-wasting loop (same problem)
                   break;
       }      // <-- once program reaches here, GUI finally updates
       public void callback(){
           repaint();
    class Timer extends Thread
         private Gui parent;
         public Timer(Gui g) {
              parent = g;
         synchronized public void run() {
              while(true) {
                   try{
                       wait(50);
                   }catch(InterruptedException ie) {return;}
                   parent.callBack();
    }

  • Suspending GUI update

    I have an app which runs a background thread. While the thread is running I want to disable various clickable GUI elements. My problem is that the elements all disable rather slowly and it looks funny (they don't all disable simultaneously). Is there a way I can suspend GUI update, set all my elements to disabled, and then force the GUI to update them all at once?

    Well I'm actually doing this:
    @Action
    public Task runSimulation() {
        SimulationTask simulationTask = new SimulationTask();
        // some code to init my Task
        for (JPanel panel : playerPanels) { // playerPanels is a JPanel[10]
            panel.setEnabled(false);
        return simulationTask;
    }So the code to disable the panels runs before the task is even started. I tried adding the disabling code to the doInBackground method of my TaskListener attached to simulationTask but the delay is worse. The panels disable almost simultaneously using the above method but are out of sync just enough to make everything look amateurish and poorly done.
    As a side note this is written using the swing application framework in netbeans. The runSimulation method is attached to a button that runs a pretty CPU intensive task in the background.

  • Thread execution causes Swing GUI to become unpresponsive

    Hello, I'm trying to refresh my memory of multithreaded Swing applications and have run into a wall. I have my main class, SimpleGUI, which creates the GUI interface and instantiates SimplePB and starts the SimplePB thread. The problem is that the SimpleGUI main class, which has a button to start the SimplePB thread so that a progress bar is updated, will result in a unresponsive GUI when the button is clicked. The button action code follows:
    public void actionPerformed(ActionEvent ae)
              System.out.println("Got action! "+ae);
              if(ae.getActionCommand().equals("Start")) {
              jb.setEnabled(false);
              spbt.run();
         }Do I need to do the Swing interface in a multithreaded manner as well? If so, how? If not, what am I doing wrong? Any pointers are greatly appreciated, thanks.

    sbpt.run();sbpt.start();
    At the moment you're not doing 'thread execution' at all, you are just running its code inline in the AWT thread, which freezes the GUI, which is why you needed the thread in the first place.

  • FCP 7 Crashing on start up after Mavericks update.

    FCP 7 Crashing on start up after Mavericks update.   I've seemingly tried everything (trashing prefs, trashing plug-ins, OS updates, FCP re-install)  Any advise on next steps?
    Many thanks,
    sean schiavolin
    Running
    Mac Pro 12 core Intel Xeon

    It loads all the way until confirming AV device missing, then:
    Process:         Final Cut Pro [656]
    Path:            /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Final Cut Pro
    Identifier:      com.apple.FinalCutPro
    Version:         7.0.3 (7.0.3)
    Build Info:      FCPApp-1008261348~8
    Code Type:       X86 (Native)
    Parent Process:  launchd [207]
    Responsible:     Final Cut Pro [656]
    User ID:         502
    Date/Time:       2013-12-27 12:34:42.491 -0600
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  3381C8BF-7F16-C44D-AC04-B72D417E0F79
    Crashed Thread:  23
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    abort() called
    terminating with uncaught exception of type aecore::CException
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x95faf6f2 getdirentriesattr + 10
    1   com.apple.CoreServices.CarbonCore          0x9272aef3 FSMount::getattrsbulk(void*, unsigned long, unsigned long*, unsigned long, unsigned long, FSAttributeInfo*, unsigned char*, unsigned char*) + 603
    2   com.apple.CoreServices.CarbonCore          0x9264ac24 PBGetCatalogInfoBulkSync + 1064
    3   com.apple.CoreServices.CarbonCore          0x9264a7c3 FSGetCatalogInfoBulk + 60
    4   com.apple.FinalCutPro                   0x0019ba59 pKGDirScan(KGFileSpec*, void*, KGDirScanRec*) + 707
    5   com.apple.FinalCutPro.Plugins.VoiceOver          0x23fc0b5f PluginStart + 87399
    6   com.apple.FinalCutPro.Plugins.VoiceOver          0x23fc0dcc PluginStart + 88020
    7   com.apple.FinalCutPro                   0x002444f0 MessageToPlugins(long, long) + 54
    8   com.apple.FinalCutPro                   0x0024469b KGRegisterLibAction + 127
    9   com.apple.FinalCutPro                   0x00244a34 CallLibs(KGLibActionCode, unsigned char) + 118
    10  com.apple.FinalCutPro                   0x00244cca KGFinishLibraries + 130
    11  com.apple.FinalCutPro                   0x00244def KGInit() + 173
    12  com.apple.FinalCutPro                   0x00412bb3 OpenApplication(AEDesc const*, AEDesc*, long) + 73
    13  com.apple.AE                            0x9ace4b15 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 387
    14  com.apple.AE                            0x9acb3ed6 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 44
    15  com.apple.AE                            0x9acb3dce aeProcessAppleEvent + 318
    16  com.apple.HIToolbox                     0x98cfa7c1 AEProcessAppleEvent + 55
    17  com.apple.HIToolbox                     0x98e87dba AEProcessEvent + 167
    18  com.apple.HIToolbox                     0x98d895ca HIStdAppHandler::HandleEvent(OpaqueEventHandlerCallRef*, TCarbonEvent&) + 76
    19  com.apple.HIToolbox                     0x98d8a636 TEventHandler::EventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 60
    20  com.apple.HIToolbox                     0x98e75eb9 _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    21  com.apple.HIToolbox                     0x98cc964f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1452
    22  com.apple.HIToolbox                     0x98cc8968 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 386
    23  com.apple.HIToolbox                     0x98cc87e0 SendEventToEventTargetWithOptions + 94
    24  com.apple.HIToolbox                     0x98cfc6a9 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 1757
    25  com.apple.HIToolbox                     0x98cc9a95 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2546
    26  com.apple.HIToolbox                     0x98cc8968 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 386
    27  com.apple.HIToolbox                     0x98cdbaf1 SendEventToEventTarget + 88
    28  com.apple.HIToolbox                     0x98e755a3 ToolboxEventDispatcher + 82
    29  com.apple.HIToolbox                     0x98e75463 RunApplicationEventLoop + 240
    30  com.apple.FinalCutPro                   0x001539d1 KGMainEvent(void*) + 51
    31  com.apple.FinalCutPro                   0x002c1278 main + 54
    32  com.apple.FinalCutPro                   0x00002d5b _start + 209
    33  com.apple.FinalCutPro                   0x00002c89 start + 41
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x95faf992 kevent64 + 10
    1   libdispatch.dylib                       0x930e68bd _dispatch_mgr_invoke + 238
    2   libdispatch.dylib                       0x930e6556 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib                  0x95faf046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x91cc0dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x91cc4cce start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x95faf046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x91cc0dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x91cc4cce start_wqthread + 30
    Thread 4:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x95faeace __select + 10
    1   com.apple.CoreFoundation                0x98a13dc6 __CFSocketManager + 1158
    2   libsystem_pthread.dylib                 0x91cbf5fb _pthread_body + 144
    3   libsystem_pthread.dylib                 0x91cbf485 _pthread_start + 130
    4   libsystem_pthread.dylib                 0x91cc4cf2 thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x95fae7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x91cc1d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x91cc3fa3 pthread_cond_wait + 48
    3   com.apple.FinalCutPro                   0x0043f42b Synchronizable::Wait() + 53
    4   com.apple.FinalCutPro                   0x0042911f DisplayQueue::Run() + 681
    5   com.apple.FinalCutPro                   0x0046b49a Thread::RunHelper(void*) + 20
    6   libsystem_pthread.dylib                 0x91cbf5fb _pthread_body + 144
    7   libsystem_pthread.dylib                 0x91cbf485 _pthread_start + 130
    8   libsystem_pthread.dylib                 0x91cc4cf2 thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x95fae7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x91cc1d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x91cc3fa3 pthread_cond_wait + 48
    3   com.apple.FinalCutPro                   0x0043f42b Synchronizable::Wait() + 53
    4   com.apple.FinalCutPro                   0x004e67c3 WorkUnitPerformer::Run() + 55
    5   com.apple.FinalCutPro                   0x0046b49a Thread::RunHelper(void*) + 20
    6   libsystem_pthread.dylib                 0x91cbf5fb _pthread_body + 144
    7   libsystem_pthread.dylib                 0x91cbf485 _pthread_start + 130
    8   libsystem_pthread.dylib                 0x91cc4cf2 thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x95fae7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x91cc1d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x91cc3fa3 pthread_cond_wait + 48
    3   com.apple.FinalCutPro                   0x0043f42b Synchronizable::Wait() + 53
    4   com.apple.FinalCutPro                   0x004e67c3 WorkUnitPerformer::Run() + 55
    5   com.apple.FinalCutPro                   0x0046b49a Thread::RunHelper(void*) + 20
    6   libsystem_pthread.dylib                 0x91cbf5fb _pthread_body + 144
    7   libsystem_pthread.dylib                 0x91cbf485 _pthread_start + 130
    8   libsystem_pthread.dylib                 0x91cc4cf2 thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x95fae7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x91cc1d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x91cc3fa3 pthread_cond_wait + 48
    3   com.apple.FinalCutPro                   0x0043f42b Synchronizable::Wait() + 53
    4   com.apple.FinalCutPro                   0x004e67c3 WorkUnitPerformer::Run() + 55
    5   com.apple.FinalCutPro                   0x0046b49a Thread::RunHelper(void*) + 20
    6   libsystem_pthread.dylib                 0x91cbf5fb _pthread_body + 144
    7   libsystem_pthread.dylib                 0x91cbf485 _pthread_start + 130
    8   libsystem_pthread.dylib                 0x91cc4cf2 thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x95fae7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x91cc1d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x91cc3fa3 pthread_cond_wait + 48
    3   com.apple.FinalCutPro                   0x0043f42b Synchronizable::Wait() + 53
    4   com.apple.FinalCutPro                   0x004e67c3 WorkUnitPerformer::Run() + 55
    5   com.apple.FinalCutPro                   0x0046b49a Thread::RunHelper(void*) + 20
    6   libsystem_pthread.dylib                 0x91cbf5fb _pthread_body + 144
    7   libsystem_pthread.dylib                 0x91cbf485 _pthread_start + 130
    8   libsystem_pthread.dylib                 0x91cc4cf2 thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x95fae7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x91cc1d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x91cc3fa3 pthread_cond_wait + 48
    3   com.apple.FinalCutPro                   0x0043f42b Synchronizable::Wait() + 53
    4   com.apple.FinalCutPro                   0x004e67c3 WorkUnitPerformer::Run() + 55
    5   com.apple.FinalCutPro                   0x0046b49a Thread::RunHelper(void*) + 20
    6   libsystem_pthread.dylib                 0x91cbf5fb _pthread_body + 144
    7   libsystem_pthread.dylib                 0x91cbf485 _pthread_start + 130
    8   libsystem_pthread.dylib                 0x91cc4cf2 thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x95fae7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x91cc1d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x91cc3fa3 pthread_cond_wait + 48
    3   com.apple.FinalCutPro                   0x0043f42b Synchronizable::Wait() + 53
    4   com.apple.FinalCutPro                   0x004e67c3 WorkUnitPerformer::Run() + 55
    5   com.apple.FinalCutPro                   0x0046b49a Thread::RunHelper(void*) + 20
    6   libsystem_pthread.dylib                 0x91cbf5fb _pthread_body + 144
    7   libsystem_pthread.dylib                 0x91cbf485 _pthread_start + 130
    8   libsystem_pthread.dylib                 0x91cc4cf2 thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x95fae7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x91cc1d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x91cc3fa3 pthread_cond_wait + 48
    3   com.apple.FinalCutPro                   0x0043f42b Synchronizable::Wait() + 53
    4   com.apple.FinalCutPro                   0x004e67c3 WorkUnitPerformer::Run() + 55
    5   com.apple.FinalCutPro                   0x0046b49a Thread::RunHelper(void*) + 20
    6   libsystem_pthread.dylib                 0x91cbf5fb _pthread_body + 144
    7   libsystem_pthread.dylib                 0x91cbf485 _pthread_start + 130
    8   libsystem_pthread.dylib                 0x91cc4cf2 thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x95fae7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x91cc1d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x91cc3fa3 pthread_cond_wait + 48
    3   com.apple.FinalCutPro                   0x0043f42b Synchronizable::Wait() + 53
    4   com.apple.FinalCutPro                   0x004e67c3 WorkUnitPerformer::Run() + 55
    5   com.apple.FinalCutPro                   0x0046b49a Thread::RunHelper(void*) + 20
    6   libsystem_pthread.dylib                 0x91cbf5fb _pthread_body + 144
    7   libsystem_pthread.dylib                 0x91cbf485 _pthread_start + 130
    8   libsystem_pthread.dylib                 0x91cc4cf2 thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x95fae7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x91cc1d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x91cc3fa3 pthread_cond_wait + 48
    3   com.apple.FinalCutPro                   0x0043f42b Synchronizable::Wait() + 53
    4   com.apple.FinalCutPro                   0x004e67c3 WorkUnitPerformer::Run() + 55
    5   com.apple.FinalCutPro                   0x0046b49a Thread::RunHelper(void*) + 20
    6   libsystem_pthread.dylib                 0x91cbf5fb _pthread_body + 144
    7   libsystem_pthread.dylib                 0x91cbf485 _pthread_start + 130
    8   libsystem_pthread.dylib                 0x91cc4cf2 thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x95fae7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x91cc1d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x91cc3fa3 pthread_cond_wait + 48
    3   com.apple.FinalCutPro                   0x0043f42b Synchronizable::Wait() + 53
    4   com.apple.FinalCutPro                   0x004e67c3 WorkUnitPerformer::Run() + 55
    5   com.apple.FinalCutPro                   0x0046b49a Thread::RunHelper(void*) + 20
    6   libsystem_pthread.dylib                 0x91cbf5fb _pthread_body + 144
    7   libsystem_pthread.dylib                 0x91cbf485 _pthread_start + 130
    8   libsystem_pthread.dylib                 0x91cc4cf2 thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib                  0x95fae7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x91cc1d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x91cc3fa3 pthread_cond_wait + 48
    3   com.apple.FinalCutPro                   0x0043f42b Synchronizable::Wait() + 53
    4   com.apple.FinalCutPro                   0x004e67c3 WorkUnitPerformer::Run() + 55
    5   com.apple.FinalCutPro                   0x0046b49a Thread::RunHelper(void*) + 20
    6   libsystem_pthread.dylib                 0x91cbf5fb _pthread_body + 144
    7   libsystem_pthread.dylib                 0x91cbf485 _pthread_start + 130
    8   libsystem_pthread.dylib                 0x91cc4cf2 thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib                  0x95faeb76 __semwait_signal + 10
    1   libsystem_c.dylib                       0x970db05b nanosleep$UNIX2003 + 219
    2   libsystem_c.dylib                       0x970dae66 sleep$UNIX2003 + 45
    3   com.redgiantsoftware.MagicBullet.Cosmo          0x289d2119 0x289b4000 + 123161
    4   com.redgiantsoftware.MagicBullet.Cosmo          0x289d3e99 0x289b4000 + 130713
    5   libsystem_pthread.dylib                 0x91cbf5fb _pthread_body + 144
    6   libsystem_pthread.dylib                 0x91cbf485 _pthread_start + 130
    7   libsystem_pthread.dylib                 0x91cc4cf2 thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib                  0x95faeb76 __semwait_signal + 10
    1   libsystem_c.dylib                       0x970db05b nanosleep$UNIX2003 + 219
    2   libsystem_c.dylib                       0x970dae66 sleep$UNIX2003 + 45
    3   com.redgiantsoftware.magic_bullet.denoiser2          0x32a6793f 0x32800000 + 2521407
    4   com.redgiantsoftware.magic_bullet.denoiser2          0x32a695a9 0x32800000 + 2528681
    5   libsystem_pthread.dylib                 0x91cbf5fb _pthread_body + 144
    6   libsystem_pthread.dylib                 0x91cbf485 _pthread_start + 130
    7   libsystem_pthread.dylib                 0x91cc4cf2 thread_start + 34
    Thread 19:
    0   libsystem_kernel.dylib                  0x95faeb76 __semwait_signal + 10
    1   libsystem_c.dylib                       0x970db05b nanosleep$UNIX2003 + 219
    2   libsystem_c.dylib                       0x970dae66 sleep$UNIX2003 + 45
    3   com.redgiantsoftware.looks3fx           0x29cd57e7 CreateDialogWindow(CustomDialogData const&, char const*) + 10465
    4   com.redgiantsoftware.looks3fx           0x29cd758f CreateDialogWindow(CustomDialogData const&, char const*) + 18057
    5   libsystem_pthread.dylib                 0x91cbf5fb _pthread_body + 144
    6   libsystem_pthread.dylib                 0x91cbf485 _pthread_start + 130
    7   libsystem_pthread.dylib                 0x91cc4cf2 thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib                  0x95faeb76 __semwait_signal + 10
    1   libsystem_c.dylib                       0x970db05b nanosleep$UNIX2003 + 219
    2   libsystem_c.dylib                       0x970dae66 sleep$UNIX2003 + 45
    3   com.redgiantsoftware.MagicBullet.Colorista_II          0x341834db 0x34100000 + 537819
    4   com.redgiantsoftware.MagicBullet.Colorista_II          0x3418525b 0x34100000 + 545371
    5   libsystem_pthread.dylib                 0x91cbf5fb _pthread_body + 144
    6   libsystem_pthread.dylib                 0x91cbf485 _pthread_start + 130
    7   libsystem_pthread.dylib                 0x91cc4cf2 thread_start + 34
    Thread 21:
    0   libsystem_kernel.dylib                  0x95fa9f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x95fa916c mach_msg + 68
    2   com.apple.CoreFoundation                0x989c3f69 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation                0x989c3541 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation                0x989c2d5a CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation                0x989c2bbb CFRunLoopRunInMode + 123
    6   com.apple.CoreMediaIOServicesPrivate          0x011018fe MIO::DAL::RunLoop::OwnThread(void*) + 174
    7   com.apple.CoreMediaIOServicesPrivate          0x01103d40 CAPThread::Entry(CAPThread*) + 96
    8   libsystem_pthread.dylib                 0x91cbf5fb _pthread_body + 144
    9   libsystem_pthread.dylib                 0x91cbf485 _pthread_start + 130
    10  libsystem_pthread.dylib                 0x91cc4cf2 thread_start + 34
    Thread 22:
    0   libsystem_kernel.dylib                  0x95faf046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x91cc0dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x91cc4cce start_wqthread + 30
    Thread 23 Crashed:
    0   libsystem_kernel.dylib                  0x95fae952 __pthread_kill + 10
    1   libsystem_pthread.dylib                 0x91cc0167 pthread_kill + 101
    2   libsystem_c.dylib                       0x970bc340 abort + 155
    3   libc++abi.dylib                         0x9bc36869 abort_message + 169
    4   libc++abi.dylib                         0x9bc57597 default_terminate_handler() + 292
    5   libc++abi.dylib                         0x9bc54dd0 std::__terminate(void (*)()) + 14
    6   libc++abi.dylib                         0x9bc547eb __cxa_throw + 116
    7   com.apple.AECore                        0x36a0b131 aecore::CException::Throw() const + 75
    8   com.apple.qmaster.do                    0x36d0b782 swamp::CRendezvousBrowser::start() + 390
    9   com.apple.qmaster.do                    0x36d065a8 swamp::CRAdReceiver2::ReceivingThread::startBrowser() + 128
    10  com.apple.CoreFoundation                0x989d32c8 __CFMachPortPerform + 440
    11  com.apple.CoreFoundation                0x989d30f5 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 53
    12  com.apple.CoreFoundation                0x989d305b __CFRunLoopDoSource1 + 523
    13  com.apple.CoreFoundation                0x989c3822 __CFRunLoopRun + 2130
    14  com.apple.CoreFoundation                0x989c2d5a CFRunLoopRunSpecific + 394
    15  com.apple.CoreFoundation                0x98a85461 CFRunLoopRun + 129
    16  com.apple.qmaster.do                    0x36d05460 swamp::CRAdReceiver2::ReceivingThread::runOnce() + 234
    17  com.apple.AECore                        0x36a1a022 aecore::CThread::runThread() + 34
    18  com.apple.AECore                        0x36a17fb9 threadProc(void*) + 17
    19  libsystem_pthread.dylib                 0x91cbf5fb _pthread_body + 144
    20  libsystem_pthread.dylib                 0x91cbf485 _pthread_start + 130
    21  libsystem_pthread.dylib                 0x91cc4cf2 thread_start + 34
    Thread 24:
    0   libsystem_kernel.dylib                  0x95faeace __select + 10
    1   com.apple.AECore                        0x36a1a067 aecore::CThread::runThread() + 103
    2   com.apple.AECore                        0x36a17fb9 threadProc(void*) + 17
    3   libsystem_pthread.dylib                 0x91cbf5fb _pthread_body + 144
    4   libsystem_pthread.dylib                 0x91cbf485 _pthread_start + 130
    5   libsystem_pthread.dylib                 0x91cc4cf2 thread_start + 34
    Thread 23 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0xa0af8c0c  ecx: 0xb09435ac  edx: 0x95fae952
      edi: 0xb0946000  esi: 0x00000006  ebp: 0xb09435c8  esp: 0xb09435ac
       ss: 0x00000023  efl: 0x00000206  eip: 0x95fae952   cs: 0x0000000b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x36d6c768
    Logical CPU:     0
    Error Code:      0x00080148
    Trap Number:     132
    Binary Images:
        0x1000 -   0x870ffc  com.apple.FinalCutPro (7.0.3 - 7.0.3) <41B8A263-80F3-BCC3-FE28-82DE571687A1> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Final Cut Pro
      0xc2e000 -   0xc31ff7 +KGCore (1) <BE035D60-C68F-AC07-2A60-2F6214D48820> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/Frameworks/KGCore.framework/Versions/A/KGCore
      0xc39000 -   0xc39ffd  com.apple.iokit.dvcomponentglue (2.0.7 - 2.0.7) <A642A6D4-3FFD-3D83-800F-0F04C8D8DEE6> /System/Library/Frameworks/DVComponentGlue.framework/Versions/A/DVComponentGlue
      0xc3d000 -   0xc4cfff  com.apple.AERegistration (1.2 - 77) <5D18C47F-6F9E-0C4C-8875-24A14A97186D> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
      0xc60000 -   0xc67fff  com.apple.AEProfiling (1.2 - 22) <43A46C32-8E13-82DD-8AF1-2A40690BF810> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/Frameworks/AEProfiling.framework/Versions/A/AEProfiling
      0xc71000 -   0xe9efff  com.apple.prokit (7.4.0 - 1957) <21F637BA-FAA7-3CAD-8774-011559AE614E> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
      0xfb7000 -  0x1029fef  com.apple.ProFX (1.2.3 - 1.2.3) <E734D345-8CA8-C366-AFB3-A2EB066BF4AC> /Library/Application Support/ProApps/*/ProFX.framework/Versions/A/ProFX
    0x104b000 -  0x10a7ffb  com.apple.proapps.MIO (1.0.5 - 509) <3FE469A6-C937-1E44-F79C-9AAA7C902A92> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
    0x10e4000 -  0x10edff7  com.apple.finalcutstudio.prometadatasupport (0.6 - 1.0) <C4AF1557-3CC8-3BB7-C017-55D66B0873C1> /Library/Frameworks/ProMetadataSupport.framework/Versions/A/ProMetadataSupport
    0x10f5000 -  0x1127ff2  com.apple.CoreMediaIOServicesPrivate (403.0 - 3322) <E5B724AA-10DE-3578-94F4-CC02C245B409> /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x1142000 -  0x1169ff7  com.apple.CoreMediaPrivate (20.0 - 20.0) <3FB05F43-4314-3BAA-AEBF-4EBCA84FB866> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x117c000 -  0x1186ff4  com.apple.iChat.InstantMessage (8.0 - 4203) <E77CE706-BF96-3462-8D58-764668AF8F7B> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x1191000 -  0x11bdff7  com.apple.FWAVCPrivate (71.47 - 47) <2BE9FF56-E096-319A-8E0B-E8CFD8768C21> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/Versions/A/FWAVCPrivat e
    0x11d3000 -  0x11f1fef  com.apple.XSKey (1.0.0 - 52) <71B94F53-15DB-9012-91F2-211F7C2CD790> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
    0x14eb000 -  0x14f6ffa  com.apple.CommerceCore (1.0 - 42) <E59717F2-6770-3DBC-8510-F7AA61E60F57> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x5540000 -  0x557cff7  com.apple.vmutils (4.2.1 - 108) <37A7D6A9-0BA7-39D9-A203-7123124A18B0> /System/Library/PrivateFrameworks/vmutils.framework/vmutils
    0x5596000 -  0x55bbff9  com.apple.framework.familycontrols (4.1 - 410) <A33A97EE-C735-38BA-9B49-5D78DAA3DEDA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7a51000 -  0x7b01fff  ColorSyncDeprecated.dylib (426) <F54DBFF3-3165-3D15-8AE4-37B603502A5F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x7bc9000 -  0x7bd1ff7  com.apple.proapps.mrcheckpro (1.4 - 398) <400C6D0F-2AC3-F06D-E20C-741BA3D9A558> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x7bf4000 -  0x7bf6ff3  com.apple.LiveType.component (2.1.4 - 2.1.4) <D60E2537-3B47-EA99-0077-6CE394378D07> /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0xe7c3000 -  0xe7c5ff7  Motion (729) <051B60E9-B39F-EBB2-5B96-F088D147E78C> /Library/Frameworks/Motion.framework/Versions/A/Motion
    0xf8f8000 -  0xf8f9fff  com.apple.FinalCutPro.Plugins.Text Window (7.0.3 - 7.0.3) <B2C76C89-2F18-C00D-B391-31C5492E7288> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/Text Window.bundle/Contents/MacOS/Text Window
    0xfa8e000 -  0xfa9dff7  com.apple.QuartzComposer.FxPlugWrapper (1.2.3 - 92) <3D2D2F90-9650-B74F-7A2A-71823C99B76F> /Library/Application Support/ProApps/*/FxPlugWrapper.plugin/Contents/MacOS/FxPlugWrapper
    0xfaa8000 -  0xfab4fff  com.apple.PluginManager (1.7.6 - 55) <9708A5D0-6FEC-359F-B3E0-93BEB4021F9C> /Library/Frameworks/PluginManager.framework/Versions/B/PluginManager
    0xfabe000 -  0xfacfff7  com.apple.fxplugframework (1.2.3 - 1.2.3) <033FEA79-E666-D319-5BD5-25A9A4331190> /Library/Frameworks/FxPlug.framework/Versions/A/FxPlug
    0xfae2000 -  0xfae3ff7  com.apple.Helium (3.0.2 - 352) <74B9D860-0A0E-6000-063B-57B035CF9CF4> /Library/Application Support/ProApps/*/Helium.framework/Versions/A/Helium
    0xfae8000 -  0xfae9fff  com.apple.FxHeliumImage (4.0.0 - 1.0) <61516468-63B8-0FDE-822A-73985B6A462E> /Library/Application Support/ProApps/*/FxHeliumImage.framework/Versions/A/FxHeliumImage
    0xfaf4000 -  0xfaf8ff3  com.apple.FinalCutPro.Plugins.AudioGroupsExport (7.0.3 - 7.0.3) <DE36FA78-F9C8-BB1C-A2AF-67F1B11A97A1> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/AudioGroupsExport.bundle/Contents/MacOS/AudioGro upsExport
    0xfd31000 -  0xfd5bff7  com.apple.FinalCutPro.Plugins.AfterEffects (7.0.3 - 7.0.3) <11BBAC1F-38D0-7A1B-0ECD-821729B3AF1B> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/AfterEffects.bundle/Contents/MacOS/AfterEffects
    0xfd63000 -  0xfd68fff  com.apple.FinalCutPro.Plugins.Cache Manager (7.0.3 - 7.0.3) <7E686BFA-2AB3-442B-4203-1D8BA4EA5DA2> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/Cache Manager.bundle/Contents/MacOS/Cache Manager
    0xfd6d000 -  0xfd6effb  com.apple.FinalCutPro.Plugins.Vector Accelerator (7.0.3 - 7.0.3) <6FC3291F-5227-348F-8994-EA598417AAEA> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/Vector Accelerator.bundle/Contents/MacOS/Vector Accelerator
    0xfd74000 -  0xfdd8fe2  com.apple.LiveType.framework (2.1.4 - 2.1.4) <7AABA687-4323-E5B9-BA04-8F61C217E6FD> /Library/Application Support/ProApps/*/LiveType.framework/Versions/A/LiveType
    0xff00000 -  0xff46ffb  com.apple.motion.component (1.0 - 729) <494487C6-EA30-43DD-39E4-BED23C5A5B1C> /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0xff4c000 -  0xff63ff3  com.apple.FinalCutPro.Plugins.AudioMixer (7.0.3 - 7.0.3) <3C914C5E-510C-EBF8-2FD9-6450CBE8FD46> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/AudioMixer.bundle/Contents/MacOS/AudioMixer
    0xff6e000 -  0xffacff2  com.apple.audio.midi.CoreMIDI (1.10 - 88) <64824C07-A240-3A16-ABFF-B38FB8EAF71E> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0xffd0000 -  0xffe6ff8  libexpat.1.dylib (12) <B0AC9020-01C4-368F-98D6-7FFC067A1B04> /usr/lib/libexpat.1.dylib
    0xffef000 -  0xfff9ff9  com.apple.FinalCutPro.Plugins.CTHelper (7.0.3 - 7.0.3) <4B1D1B9F-16CB-A86E-E385-B82C12CF7DE9> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/CTHelper.bundle/Contents/MacOS/CTHelper
    0x10000000 - 0x10060fef  com.apple.proapps.AudioMixEngine (2.0 - 68) <C07502D6-A1C3-84DE-B526-770FB42A8CD1> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/Frameworks/AudioMixEngine.framework/Versions/A/AudioMixEngine
    0x2108d000 - 0x2112aff8  com.apple.procore.framework (4.0.2 - 757) <D3146F1E-F86D-F2A2-509B-E3F9640CBE40> /Library/Application Support/ProApps/*/ProCore.framework/Versions/A/ProCore
    0x2116a000 - 0x2123cfe7 +com.blackmagic-design.BlackmagicCodec (9.2) <DBB8721D-84E0-2346-6DC5-58D865D9D09C> /Library/QuickTime/Blackmagic Codec.component/Contents/MacOS/Blackmagic Codec
    0x214bc000 - 0x214d6fff  com.apple.FinalCutPro.CinemaTools (5.0 - 5.0) <599FC934-E4ED-C2CE-148C-593639A68236> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/Cinema Tools.bundle/Contents/MacOS/Cinema Tools
    0x214e2000 - 0x214eafff  com.apple.FinalCutPro.Plugins.Effect Builder (7.0.3 - 7.0.3) <47BE0505-F602-9535-8684-EAF732016E93> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/Effect Builder.bundle/Contents/MacOS/Effect Builder
    0x214ef000 - 0x214f2ffc  com.apple.FinalCutPro.Plugins.FinalTouchExport (7.0.3 - 7.0.3) <B63D8082-2742-DE02-F176-8FE341F128FC> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/FinalTouchExport.bundle/Contents/MacOS/FinalTouc hExport
    0x22d2d000 - 0x22d57feb  com.apple.proapps.ControlSurfaceSupport (2.0 - 68) <BD914236-49D8-9C9A-E8D6-CBC1738850B3> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/Frameworks/ControlSurfaceSupport.framework/Versions/A/ControlS urfaceSupport
    0x22d78000 - 0x22e50ff2  com.apple.FinalCutPro.Plugins.Browser (7.0.3 - 7.0.3) <D7E9F180-540B-797D-883E-7EA2014D0E03> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/Browser.bundle/Contents/MacOS/Browser
    0x22e6e000 - 0x22e94ff7  com.apple.FinalCutPro.Plugins.EditTape (7.0.3 - 7.0.3) <CB053479-ABE0-A2DE-32ED-C71F5BBBF47B> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/EditTape.bundle/Contents/MacOS/EditTape
    0x22ea3000 - 0x22efeff5  com.apple.FinalCutPro.Plugins.EDL Export (7.0.3 - 7.0.3) <EEF08D02-64D1-DA5E-6B85-0E6F1001EF37> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/EDL Export.bundle/Contents/MacOS/EDL Export
    0x22f13000 - 0x22f1effe  com.apple.FinalCutPro.Plugins.FCPExtPluginSupport (7.0.3 - 7.0.3) <41DA2698-9984-6241-130D-AACA55C647B4> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/FCPExtPluginSupport.bundle/Contents/MacOS/FCPExt PluginSupport
    0x22f27000 - 0x22f5aff7  com.apple.FinalCutPro.Plugins.FCS Engine (7.0.3 - 7.0.3) <1D178B47-1E72-47D8-D52D-EE1590B4F5AA> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/FCS Engine.bundle/Contents/MacOS/FCS Engine
    0x22f64000 - 0x22f75ff7  com.apple.FinalCutPro.Plugins.FilterCustomEd (7.0.3 - 7.0.3) <F27F9BC7-236F-F688-428B-B547E8AA8E35> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/FilterCustomEd.bundle/Contents/MacOS/FilterCusto mEd
    0x22f7b000 - 0x22f90ffb  com.apple.FinalCutPro.Plugins.FilterViewer (7.0.3 - 7.0.3) <8DA6D80C-B3A2-B2FF-6F2F-A44122508E27> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/FilterViewer.bundle/Contents/MacOS/FilterViewer
    0x22f96000 - 0x22fb4fea  com.apple.FinalCutPro.Plugins.Flash (7.0.3 - 7.0.3) <2CEAAEE1-4EF6-7180-2CAA-6DDE45E667DB> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/Flash.bundle/Contents/MacOS/Flash
    0x22fc0000 - 0x22fcdffb  com.apple.FinalCutPro.Plugins.GenViewer (7.0.3 - 7.0.3) <724F50F6-7A13-D6C3-B7CB-63CB23829F27> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/GenViewer.bundle/Contents/MacOS/GenViewer
    0x22fd3000 - 0x22fd7fff  com.apple.FinalCutPro.Plugins.LayerFileReader (7.0.3 - 7.0.3) <B8BE64C2-66E2-0459-F047-B4C621A40494> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/LayerFileReader.bundle/Contents/MacOS/LayerFileR eader
    0x22fdc000 - 0x22feeff0  com.apple.FinalCutPro.Plugins.MolokiniSupport (7.0.3 - 7.0.3) <85EAB333-1140-0657-27FF-B21F7DAEB40E> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/MolokiniSupport.bundle/Contents/MacOS/MolokiniSu pport
    0x23bff000 - 0x23c4bff3  com.apple.FinalCutPro.Plugins.Media Manager (7.0.3 - 7.0.3) <BDA11C7A-165A-1052-2677-84711DA1C02C> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/Media Manager.bundle/Contents/MacOS/Media Manager
    0x23c55000 - 0x23c69fff  com.apple.FinalCutPro.Frameworks.MolokiniTranslation (1.0 - 1.0) <7A59B9CD-7B44-2258-E79B-FCC5F9CAB309> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/Frameworks/MolokiniTranslation.framework/Versions/A/MolokiniTr anslation
    0x23c77000 - 0x23ca9ffb  com.apple.FinalCutPro.Plugins.Motion Viewer (7.0.3 - 7.0.3) <AFA6CD35-5A3C-50F5-E8F6-4E46D2D5A82C> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/Motion Viewer.bundle/Contents/MacOS/Motion Viewer
    0x23cba000 - 0x23cd5ff3  com.apple.FinalCutPro.Plugins.Movie Analyzer (7.0.3 - 7.0.3) <82EA8688-294B-3739-E719-09275DD966A7> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/Movie Analyzer.bundle/Contents/MacOS/Movie Analyzer
    0x23ce4000 - 0x23cfaffb  com.apple.FinalCutPro.Plugins.Movie Viewer (7.0.3 - 7.0.3) <EC68C85F-C64A-0D7B-0012-C8CBCB18FC27> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/Movie Viewer.bundle/Contents/MacOS/Movie Viewer
    0x23d06000 - 0x23d0afff  com.apple.FinalCutPro.Plugins.NuggetExport (7.0.3 - 7.0.3) <83A2CB39-EA91-DB85-E458-DDA09C4F9793> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/NuggetExport.bundle/Contents/MacOS/NuggetExport
    0x23d0f000 - 0x23dc8fe7  com.apple.FinalCutPro.Plugins.OMF Audio Export (7.0.3 - 7.0.3) <1515F152-5847-223C-E5FE-CA894EDF121C> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/OMF Audio Export.bundle/Contents/MacOS/OMF Audio Export
    0x23ddb000 - 0x23de3ffb  com.apple.FinalCutPro.Plugins.Perf Analyzer (7.0.3 - 7.0.3) <1E04DC98-638A-CB1E-C04E-3B0C0E3CD199> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/Perf Analyzer.bundle/Contents/MacOS/Perf Analyzer
    0x23de8000 - 0x23dfdffb  com.apple.FinalCutPro.Plugins.ProAppsIntegration (7.0.3 - 7.0.3) <C9AE958B-D155-F9C1-7F3C-642CD71C068D> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/ProAppsIntegration.bundle/Contents/MacOS/ProApps Integration
    0x23e0d000 - 0x23e1aff7  com.apple.FinalCutPro.Plugins.Pulldown Support (7.0.3 - 7.0.3) <555A8A21-3312-5CA8-FDA3-433F997DA91E> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/Pulldown Support.bundle/Contents/MacOS/Pulldown Support
    0x23e22000 - 0x23e61fef  com.apple.FinalCutPro.Plugins.QTM Reader (7.0.3 - 7.0.3) <F84B0D4B-02D2-DA65-072C-3B7EB2A0FEB1> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/QTM Reader.bundle/Contents/MacOS/QTM Reader
    0x23e6e000 - 0x23e76ff3  com.apple.FinalCutPro.Plugins.QuickView (7.0.3 - 7.0.3) <A9D4590C-51A7-BA68-737A-8607D5D82DCA> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/QuickView.bundle/Contents/MacOS/QuickView
    0x23e7b000 - 0x23e8bffe  com.apple.FinalCutPro.Plugins.Relink Media (7.0.3 - 7.0.3) <67805834-C6B2-061D-7581-E3D7835DB779> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/Relink Media.bundle/Contents/MacOS/Relink Media
    0x23e92000 - 0x23f2bff2  com.apple.FinalCutPro.Plugins.Timeline Editor (7.0.3 - 7.0.3) <1870750B-B6C6-9132-E680-CA9338AE23D6> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/Timeline Editor.bundle/Contents/MacOS/Timeline Editor
    0x23f3a000 - 0x23f4bfff  com.apple.FinalCutPro.Plugins.Transcoder (7.0.3 - 7.0.3) <C73DED11-FE37-637F-C542-5E45D23FAE66> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/Transcoder.bundle/Contents/MacOS/Transcoder
    0x23f55000 - 0x23f67fff  com.apple.FinalCutPro.Plugins.Transition Viewer (7.0.3 - 7.0.3) <F027AEE2-F724-18ED-6730-81AB4D3D197D> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/Transition Viewer.bundle/Contents/MacOS/Transition Viewer
    0x23f6d000 - 0x23f82ff3  com.apple.FinalCutPro.Plugins.Trimming (7.0.3 - 7.0.3) <449089A2-91B0-4CC7-2A2C-0DD44827F041> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/Trimming.bundle/Contents/MacOS/Trimming
    0x23f88000 - 0x23f8effb  com.apple.FinalCutPro.Plugins.VDUSupport (7.0.3 - 7.0.3) <33F34BB0-DEBD-B056-BB0F-1F419E20E990> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/VDUSupport.bundle/Contents/MacOS/VDUSupport
    0x23f94000 - 0x23fa5fff  com.apple.FinalCutPro.Plugins.VideoLog (7.0.3 - 7.0.3) <1700D722-D1CB-90C0-8248-FD0FD5DD1EC6> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/VideoLog.bundle/Contents/MacOS/VideoLog
    0x23faa000 - 0x23fc2ff7  com.apple.FinalCutPro.Plugins.VoiceOver (7.0.3 - 7.0.3) <049BB860-4BA1-7AAB-3836-973493389CF0> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/VoiceOver.bundle/Contents/MacOS/VoiceOver
    0x24800000 - 0x2487dfe1  com.apple.FinalCutPro.Plugins.XML Support (7.0.3 - 7.0.3) <09E858FB-A896-3DF9-46DB-751E6884D820> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/MacOS/Plugins/XML Support.bundle/Contents/MacOS/XML Support
    0x26f10000 - 0x26f18ff7  com.apple.QuartzComposer.QCMotionPatch (1.0 - 729) <104A0B24-6D0D-DEEA-6543-753BB407D16A> /Library/Application Support/ProApps/*/QCMotionPatch.plugin/Contents/MacOS/QCMotionPatch
    0x26f59000 - 0x26f6aff7  com.apple.FCP Uncompressed 422.component (2.0.1 - 5757.41) <B7A08A5D-EEF4-3FCE-B9E4-B3828C5A32FC> /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP Uncompressed 422
    0x26f6f000 - 0x26f74ff3 +com.avid.qtcodecs.AvidAV1xCodec (2.3.4 - 2.3.4) <DE15487A-070C-1903-7EF3-F7D9B4FCCAF7> /Library/QuickTime/AvidAV1xCodec.component/Contents/MacOS/AvidAV1xCodec
    0x26f78000 - 0x26f9fff7 +com.avid.qtcodecs.AvidAVDJCodec (2.3.4 - 2.3.4) <8FD8DC12-29EF-BBD8-A513-4CED76196BE1> /Library/QuickTime/AvidAVDJCodec.component/Contents/MacOS/AvidAVDJCodec
    0x26faa000 - 0x26fb8feb +com.avid.qtcodecs.AvidAVUICodec (2.3.4 - 2.3.4) <A128AEAC-47F3-953D-D5A4-988241B86C9B> /Library/QuickTime/AvidAVUICodec.component/Contents/MacOS/AvidAVUICodec
    0x26fbf000 - 0x26ff1ff7  com.apple.AppleIntermediateCodec (2.0.2 - 6305.11) <397782CB-2454-37D5-A10C-B992A4E1D439> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x27af4000 - 0x27b08fef  com.apple.fcp.DVOutputUnit (1.3 - 1.3) <691D07F3-84FB-39BE-AB16-213751718437> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/Resources/DVOutputUnit.bundle/Contents/MacOS/DVOutputUnit
    0x27cb8000 - 0x27cf5ff3  com.apple.DVCPROHDCodec (2.0.1 - 5708) <A7A316BF-4EC5-366E-AAAE-A3D337FE50C8> /Library/QuickTime/DVCPROHDCodec.component/Contents/MacOS/DVCPROHDCodec
    0x27dc8000 - 0x27dccff3  com.apple.SmoothCamFxPlug (1.0.1 - 1.0.1) <B92B2B47-546F-5666-7995-D92D290EF266> /Library/Application Support/ProApps/*/SmoothCam
    0x28800000 - 0x288feff7  com.apple.soundtrackpro.integration (3.0 - 3.0) <BDD75F4A-C310-68A0-F0A8-DE05104637D9> /Library/Application Support/ProApps/*/Soundtrack Pro Integration.bundle/Contents/MacOS/Soundtrack Pro Integration
    0x2892f000 - 0x28967fff  com.apple.motion.MotionBundle (4.0.2 - 729) <993F121D-D2DE-C81D-B38C-692283E9A29A> /Library/Application Support/ProApps/*/Motion.bundle/Contents/MacOS/Motion
    0x289b4000 - 0x289e8fef +com.redgiantsoftware.MagicBullet.Cosmo (1.0.1 - 1.0.1) <6D4BC954-5A4B-66D4-69BF-F81091B9BFA5> /Library/Plug-Ins/*/Cosmo
    0x28b00000 - 0x28b4dfff +com.RedGiant.lutBuddyFxPlug (1.0.1 - 1.0.1) <AA4A544F-CDFA-C2F2-1F71-17398385458B> /Library/Plug-Ins/*/LUT Buddy
    0x28b96000 - 0x28b9affd  com.apple.audio.AppleHDAHALPlugIn (2.5.3 - 2.5.3fc1) <DAF7D11D-7AC8-38EA-AE89-903A9C59E1BB> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x28b9f000 - 0x28baaff0  com.apple.fcp.TundraOutputUnit (1.3.1 - 1.3.1) <71D84D8B-50CF-D900-8558-EDEA70827C8F> /Applications/Final Cut Studio/Final Cut Pro.app/Contents/Resources/TundraOutputUnit.bundle/Contents/MacOS/TundraOutputU nit
    0x28bb4000 - 0x28d90fff +com.avid.qtcodecs.AvidAVd1Codec (2.3.4 - 2.3.4) <FDF011FC-3C76-039A-A5A3-88F55ED6C5A9> /Library/QuickTime/AvidAVd1Codec.component/Contents/MacOS/AvidAVd1Codec
    0x28e0b000 - 0x28fedff7 +com.avid.qtcodecs.AvidAVdnCodec (2.3.4 - 2.3.4) <5C00EFE4-1ECE-1D5A-42A7-AA13AB350E50> /Library/QuickTime/AvidAVdnCodec.component/Contents/MacOS/AvidAVdnCodec
    0x290ff000 - 0x29331ff3 +com.avid.qtcodecs.AvidAVdvCodec (2.3.4 - 2.3.4) <BE1F8EAE-F1E0-D98C-6C55-35B2974330EC> /Library/QuickTime/AvidAVdvCodec.component/Contents/MacOS/AvidAVdvCodec
    0x293cb000 - 0x293eefff +com.avid.qtcodecs.AvidAVrpCodec (2.3.4 - 2.3.4) <90F7C8F0-342F-3DFA-C90E-AB5B6E5A720F> /Library/QuickTime/AvidAVrpCodec.component/Contents/MacOS/AvidAVrpCodec
    0x29457000 - 0x294a3ff3 +com.avid.qtcodecs.AvidAVpkCodec (2.3.4 - 2.3.4) <B01298D3-6195-3F83-ADCE-6C4455CAFF4C> /Library/QuickTime/AvidAVpkCodec.component/Contents/MacOS/AvidAVpkCodec
    0x294c3000 - 0x295f4fff +com.red.redcode.quicktime (4.4 - 4.4) <79A8D64A-DFF2-A36B-57A1-1B7B4C8A677C> /Library/QuickTime/REDCODE.QT.component/Contents/MacOS/REDCODE.QT
    0x29637000 - 0x296beff7  com.apple.AppleProResCodec (3.0.3 - 5758.41) <14F2114C-6713-333D-B8A3-8C7FB5E5E066> /Library/QuickTime/AppleProResCodec.component/Contents/MacOS/AppleProResCodec
    0x296fd000 - 0x29aadffb  QuickTimeH264.scalar (2826.0.1) <2989DD15-3198-31CA-A6D4-873F1CB7843B> /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0x29aef000 - 0x29b8cfff  com.apple.AppleHDVCodec (2.0.3 - 5905.97) <24C4772E-1256-39E3-9E56-0223C2FFE080> /Library/QuickTime/AppleHDVCodec.component/Contents/MacOS/AppleHDVCodec
    0x29ba8000 - 0x29bbeffb  com.apple.IMXCodec (2.0.1 - 5708) <BCCDCFDE-527B-3634-ABB9-E8588C91E407> /Library/QuickTime/IMXCodec.component/Contents/MacOS/IMXCodec
    0x29bd0000 - 0x29be9ff2  com.apple.applepixletvideo (1.2.31 - 1.2d31) <3691A649-1F8F-3C0A-89F4-5C2DD4E38EEC> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x29bee000 - 0x29c26ff7  com.apple.QuickTimeFireWireDV.component (7.7.3 - 2826.0.1) <072578A6-7748-3B15-B15C-B96A523416D0> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x29c32000 - 0x29c75ffb +com.redgiantsoftware.MagicBulletMojo.MBMojo (1.2.3 - 1.2.3) <25201E73-BEA4-5A36-8222-B520766A1FD4> /Library/Plug-Ins/*/MBMojo
    0x29c8d000 - 0x29c98ff7  com.apple.DVCPROHDVideoOutput (1.3.2 - 1.3.2) <8D8A75CC-6204-1187-04CC-B3323E76DCF9> /Library/QuickTime/DVCPROHDVideoOutput.component/Contents/MacOS/DVCPROHDVideoOu tput
    0x29cc7000 - 0x29cf0fe7 +com.redgiantsoftware.looks3fx (2.1.1 - 2.1.1) <D088F3C2-10DF-8CFA-F4EC-E3D80AC37717> /Library/Plug-Ins/*/Looks3
    0x2a11f000 - 0x2a11fffc  com.apple.qmaster.swamp (3.5.3 - 3.5.3) <7766A14C-1FFD-C0FD-5BB3-5269DE4C4CF7> /Library/Frameworks/Qmaster.framework/Versions/A/Qmaster
    0x2a12a000 - 0x2a143fff  com.apple.promath.framework (4.0.2 - 729) <E53A4C23-4FB1-B79F-AF75-94D760971337> /Library/Application Support/ProApps/*/ProMath.framework/Versions/A/ProMath
    0x2a157000 - 0x2a159fff  com.apple.Helium.HCache (2.1.0 - 352) <ADD6035D-5844-959B-94DC-C2B27F8972CA> /Library/Application Support/ProApps/*/Helium.framework/Plug-ins/HCache.bundle/Contents/MacOS/HCache
    0x2a25f000 - 0x2a994fdf +com.borisfx.TextScrambler (2.1) /Library/Application Support/Final Cut Pro System Support/*/Text Scrambler.bundle/Contents/MacOS/Text Scrambler
    0x2b3d3000 - 0x2b3efff7  libedit.2.dylib (39) <1BB530AA-EF72-330A-83F1-FA2D7961E075> /usr/lib/libedit.2.dylib
    0x2b600000 - 0x2b752fec  com.apple.Helium.HeliumRender (2.0.2 - 352) <0B979438-6DD0-B8B0-FE89-BDF33ABD8A46> /Library/Application Support/ProApps/*/Helium.framework/Versions/A/Frameworks/HeliumRender.framework /Versions/A/HeliumRender
    0x2b917000 - 0x2c049fc7 +com.borisfx.Title3D (2.1) /Library/Application Support/Final Cut Pro System Support/*/Title 3D.bundle/Contents/MacOS/Title 3D
    0x2ca87000 - 0x2ca98fff  com.apple.RetimingMath (4.0.2 - 729) <2ED17500-06D7-08B5-441F-AFE5DDDE71AD> /Library/Application Support/ProApps/*/RetimingMath.framework/Versions/A/RetimingMath
    0x2cabd000 - 0x2cacffff  com.apple.motion.Text (4.0.2 - 729) <21A95797-1AC2-730A-8063-57A923D7F70A> /Library/Application Support/ProApps/*/Text
    0x2cadc000 - 0x2cae1ffb  com.apple.fxmetaplug.ImageUnit (1.2.2 - 1.2.2) <874EE8A7-B644-32C8-D8E2-1E4EA379C31B> /Library/Application Support/ProApps/*/ImageUnit
    0x2cae8000 - 0x2caf4fff  com.apple.FinalCutPro.iChatTheaterPreview (1.0 - 195) <C8965C94-63DD-F9B0-BA40-E79194ED6391> /Library/QuickTime/iChatTheaterPreview.component/Contents/MacOS/iChatTheaterPre view
    0x2cc00000 - 0x2d330fef +com.borisfx.TitleCrawl (2.1) /Library/Application Support/Final Cut Pro System Support/*/Title Crawl.bundle/Contents/MacOS/Title Crawl
    0x2dd6d000 - 0x2e4a3ff7 +com.borisfx.VectorShape (2.1) /Library/Application Support/Final Cut Pro System Support/*/Vector Shape.bundle/Contents/MacOS/Vector Shape
    0x2eeee000 - 0x2eef4fff  com.apple.compressor.FilterUI (3.5.3 - 3.5.3) <D87E2268-A144-C276-17EF-6444FECC7BF9> /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/FilterUI.framewo rk/Versions/A/FilterUI
    0x2f800000 - 0x2fa6afe2  com.apple.motion.filters (4.0.2 - 601) <72DA6C52-A9AC-A136-D7C8-F6B918A17FE9> /Library/Application Support/ProApps/*/Filters.bundle/Contents/MacOS/Filters
    0x2fb23000 - 0x2fc63fff +com.proDAD.FxPlugFilter.Mercalli20 (1.0 - 2.0.93) <71E00061-863F-B1B3-C018-4982C59DC68B> /Library/Plug-Ins/*/proDADMercalli20
    0x2fc78000 - 0x2fcaeffa  com.apple.proinspector.framework (4.0.2 - 761) <F27F2F3B-ADAD-523A-63F3-1566C8151CC5> /Library/Application Support/ProApps/*/ProInspector.framework/Versions/A/ProInspector
    0x2fcd1000 - 0x2fcdaff7  com.apple.IOFWDVComponents (2.0.7 - 2.0.7) <2086FA82-ADBC-3BDD-A1F3-A8EA3B4E89E2> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x2fce5000 - 0x2fcefff7  com.apple.compressor.MediaServerAPI (3.5.3 - 3.5.3) <D77E18C4-2996-98F0-C734-D1037FF3E6ED> /Library/Frameworks/MediaServerAPI.framework/Versions/A/MediaServerAPI
    0x31800000 - 0x31b71ff7 +com.redgiantsoftware.MBLooksCosmoRenderer (1.5 - 1.5) <1176D54A-7F9D-E305-7962-4E75EC51FC50> /Library/Frameworks/CosmoRenderer.framework/Versions/A/CosmoRenderer
    0x31beb000 - 0x31bf0fe7  com.apple.H264Encoder (1.0 - 21) <00A8356F-B31C-612D-2BCB-51BD5702DBBB> /Library/Application Support/ProApps/*/H264Encoder.framework/Versions/A/H264Encoder
    0x31d00000 - 0x31d33ff7  com.apple.AppleAVCIntraCodec (2.1 - 6010.16) <DE2D1FF9-DAD0-32A1-A3A1-236E7007FDA1> /Library/QuickTime/AppleAVCIntraCodec.component/Contents/MacOS/AppleAVCIntraCod ec
    0x31d3f000 - 0x31d77ff7  com.apple.audio.SoundManager.Components (4.1 - 4.1) <DDED6517-B256-33F8-8B72-D8F226BFE40A> /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x31d7e000 - 0x31de3fe0  com.apple.DVCPROHDMuxer (1.3.2 - 1.3.2) <483DD62C-46C4-36AA-6A1C-2DEA6F062863> /Library/QuickTime/DVCPROHDMuxer.component/Contents/MacOS/DVCPROHDMuxer
    0x31dfd000 - 0x31ebafe2  com.apple.DesktopVideoOut (1.2.7 - 1.2.7) <7959538F-2A96-F2BB-EEC3-0718A326C152> /Library/QuickTime/DesktopVideoOut.component/Contents/MacOS/DesktopVideoOut
    0x31ed9000 - 0x31f11ff7  com.apple.CompressorKit (3.5.3 - 3.5.3) <C71C6C46-5758-8EE4-5E0F-E89673E22C94> /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/CompressorKit.fr amework/CompressorKit
    0x31f40000 - 0x31f4bfff  com.apple.compressor.StompUtil (3.5.3 - 3.5.3) <7589A431-23FA-B445-A452-7E3E99DF531B> /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/StompUtil.framew ork/Versions/A/StompUtil
    0x31fbe000 - 0x31fc9fff  com.apple.qmaster.SwampUtil (3.5.3 - 3.5.3) <C4EB55B8-06C7-7D2A-0362-27FE4F4D14ED> /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampUtil.framework /Versions/A/SwampUtil
    0x31fd6000 - 0x31fdffff  com.apple.qmaster.SwampService (3.5.3 - 3.5.3) <B7BFDB54-1DC9-096C-0A70-955F6777682D> /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampService.framew ork/Versions/A/SwampService
    0x32800000 - 0x33154ff3 +com.redgiantsoftware.magic_bullet.denoiser2 (1.4.1 - 1.4.1) <52222621-8144-3F79-9527-C09F1D49EB8D> /Library/Plug-Ins/*/Denoiser II
    0x332f1000 - 0x33665ffb +com.redgiantsoftware.MBLooksRenderLibCPU (2.1.1 - 2.1.1) <2DDB4393-60EB-3B8B-2B22-CDAF37E23FFF> /Library/Frameworks/LS3RendererCPU.framework/Versions/A/LS3RendererCPU
    0x33724000 - 0x3376fff4  com.apple.Bloodhound (4.0.2 - 729) <CE0040BB-8A9C-CD3A-3CEC-C6951C544257> /Library/Application Support/ProApps/*/Bloodhound.framework/Versions/A/Bloodhound
    0x3379a000 - 0x337cefff  com.apple.qmaster.SwampCore (3.5.3 - 3.5.3) <173511EA-C5F3-D58C-3A56-A99C3BED8506> /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampCore.framework /Versions/A/SwampCore
    0x34100000 - 0x341bafe3 +com.redgiantsoftware.MagicBullet.Colorista_II (1.0.7 - 1.0.7) <90A31995-FDCF-06F7-9831-D7038F4B3368> /Library/Plug-Ins/*/Colorista_II
    0x341de000 - 0x3453efe7 +com.redgiantsoftware.ColoristaRenderer (1.6 - 1.0.2) <74B9F2B5-9385-4904-4B98-4989725E1151> /Library/Frameworks/ColoristaRenderer.framework/Versions/A/ColoristaRenderer
    0x345f8000 - 0x34ed9fe2  com.apple.ozone.framework (4.0.3 - 729) <DE284932-95B3-FBCA-27EA-3534283284CE> /Library/Application Support/ProApps/*/Ozone.framework/Ozone
    0x3537b000 - 0x35442ff6  org.python.python (2.5.6 - 2.5) <052AA975-FCDC-3D8E-B959-E81957D2A0C4> /System/Library/Frameworks/Python.framework/Versions/2.5/Python
    0x35482000 - 0x355eaff2  com.apple.ProMedia (4.0.2 - 729) <07F6C2C0-ACFD-27D8-D887-74E47F0196F9> /Library/Application Support/ProApps/*/ProMedia.framework/Versions/A/ProMedia
    0x3565b000 - 0x356c5ff2  com.apple.ProGraphics (4.0.3 - 729) <B5D87DAB-5DEE-A323-7615-D865F68C7994> /Library/Application Support/ProApps/*/ProGraphics.framework/Versions/A/ProGraphics
    0x357e2000 - 0x35966fe2  com.apple.Lithium (4.0.2 - 729) <228EB85A-BDBC-55EE-9AC6-E4990DB34DFF> /Library/Application Support/ProApps/*/Lithium.framework/Versions/A/Lithium
    0x359ed000 - 0x35abbff3  com.apple.prochannel.framework (4.0.2 - 763) <721D6E76-2081-097D-4C2E-22C6162B8DDB> /Library/Application Support/ProApps/*/ProChannel.framework/Versions/A/ProChannel
    0x35b5a000 - 0x35f0eff2  com.apple.motion.TextFramework (4.0.2 - 729) <C1CDFC29-ED05-8FA7-7DC3-28D20388E055> /Library/Application Support/ProApps/*/TextFramework.framework/TextFramework
    0x35fcb000 - 0x36162ff8  com.apple.motion.Behaviors (4.0.2 - 729) <052F3433-97BD-1C55-C23D-AD92143C71F8> /Library/Application Support/ProApps/*/Behaviors
    0x36201000 - 0x3639eff8  com.apple.motion.Particles (4.0.2 - 729) <049BF10B-9B06-52CF-E500-79AE1AB90ED4> /Library/Application Support/ProApps/*/Particles
    0x36826000 - 0x36830fff  com.apple.qmaster.Status (3.5.3 - 3.5.3) <750051BA-26B7-52BD-0636-F2F1F3DB9EED> /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/Status.framework/Ve rsions/A/Status
    0x36845000 - 0x36850fff  com.apple.qmaster.RequestProcessing (3.5.3 - 3.5.3) <CE2D5C63-DFB0-8FD7-AB15-961363BA5A5B> /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/RequestProcessing.f ramework/Versions/A/RequestProcessing
    0x36864000 - 0x36877ffb  com.apple.qmaster.ServiceControl (3.5.3 - 3.5.3) <01DD590C-6953-D428-FEFC-A59CDAD53349> /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/ServiceControl.fram ework/Versions/A/ServiceControl
    0x36890000 - 0x3689bfff  com.apple.qmaster.ClusterManager (3.5.3 - 3.5.3) <CFB6F8F2-2CE8-9375-45FA-BD39A237C91A> /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/ClusterManager.fram ework/Versions/A/ClusterManager
    0x368aa000 - 0x368d4ff7  com.apple.qmaster.SwampUI (3.5.3 - 3.5.3) <A12F1821-AC7C-4A56-9A55-D37580343238> /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampUI.framework/V ersions/A/SwampUI
    0x36a00000 - 0x36b5aff7  com.apple.AECore (3.5.3 - 3.5.3) <2BAD733C-D2F3-F9FD-C5CD-22C23820EE15> /Library/Frameworks/AECore.framework/Versions/A/AECore
    0x36bf2000 - 0x36c94fef  com.apple.compressor.StompUI (3.5.3 - 3.5.3) <6E15FAA4-A6BA-3DCD-0607-5ECBDDE1439D> /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/StompUI.framewor k/Versions/A/StompUI
    0x36cf2000 - 0x36d66ff8  com.apple.qmaster.do (3.5.3 - 3.5.3) <4CE7B752-D141-5B9D-6248-8A6A6E0240F9> /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/DistributedObjects. framework/Versions/A

  • When I export documents as a PDF in Indesign the fonts appear as squares. This has started happening since I updated my operating system to 10.9.4 on my iMac.

    When I export documents as a PDF in Indesign the fonts appear as squares. This has started happening since I updated my operating system to 10.9.4 on my iMac.

    Apple Mail uses Apple's own PDF viewer, and it's ... well, let's be friendly and say not really up to par. Don't use it for anything else than ascertaining there is *something* in your mail. Then use the free Adobe Reader to view your PDF.
    See this recent thread: http://forums.adobe.com/message/4526583

  • Great Challenge !! No one is able to Tell Solution ? Dynamic GUI Updation

    Topic: Dynamic GUI Updation on msWindows when user changes Display properties.
    (I post this Question last month and have't got any answer, Is there no way for this ?)
    I want to dynamicly Update my UI on msWindows when user changes Display properties, Like other windows applications.
    i am doing this procedure-
    1.to get windows look & feel-
    UIManager.getSystemLookAndFeelClassName()
    2.To receive Events when when user changes Display properties-
    Toolkit.getDefaultToolkit().addPropertyChangeListener( "win.desktop.backgroundColor" ,new Java.beans.PropertyChangeListener()
    public void propertyChange(java.beans.PropertyChangeEvent e)
    3.To Reflect it in GUI-
    SwingUtilities.updateComponentTreeUI(TOP COMPONENT);
    But it only reflects the Border & Title Bar of My application.
    pls. suggest what can i do ?
    Regards
    Naveen Sharma

    I seem to remember looking at a similar thing in the Java demos that came with jdk1.3. I could be wrong...
    Let me see...
    Aha! Here it is.
    on my pc the path is
    C:\jdk1.3\demo\jfc\Metalworks
    then click on the jar file. The demo allows you to change the background color, font size on the toolbar etc..Another demo Swingset2 allows you to dynamically change the look and feel. I hope this helps. If you don`t have these demos I could always send you the code.
    Regards
    Grahame

  • JMS, MDBs, XA and JConsole's 'Threads Started'

    Hi,
    I'm currently looking at perforamce issues of an MDB based application running in SJSAS 8.2. While monitoring the performance of the application we have noticed that the number of threads started (as reported by jconsole) matches the number of messages submitted the the system times the number of MDBs that the message passes through i.e. if we create 20,000 messages and the each processed by 5 MDBs we see the number of threads started rise by 100,000. Each MDB updates a database and passes the message onto another JMS queue in an XA transaction.
    As the number of live threads and peak threads stays pretty constant through out the processing (approx. 150) is this to be expected or is it something that requires more investigation?
    Thanks
    Stephen

    In SJSAS 8.2, the MDB container spawns a new thread to handle each message on the queue. The thread should be short-lived (only as long as it takes to run the onMessage method), but you could certainly see the type of build-up you're describing.
    In SJSAS 9.x, the MDBs are handed by the thread-pool-1 threadpool in your domain.xml, which will be more efficient. So if its possible to upgrade, that would take care of your issue.

  • Creative cloud wont work yet i am signed in and paid up. It started when my CC updater would not update

    It started when my CC updater would not update. I went to adobe help forums and ultimately began the uninstall/re-install process.  (Win) Troubleshooting Creative Cloud Connection update from 1.0 to 1.0.5 
    Now I can not locate a download for the CC updater. So i am now without a creative cloud connector.  I am still signed into LR however.

    Hi Ashley,
    Please refer the following solutions given in the article.
    Sign in, activation, or connection errors | CS5.5 and later, Acrobat DC
    Hope this helps.
    Regards,
    Sumit Singh

  • My Itunes will not start after the latest update. I keeo getting error message tEventType : InPageError     P1 : c000009c     P2 : 00000003 . I have tried to reinstall but no joy. Any advise?

    My Itunes will not start after the latest update. I keeo getting error message tEventType : InPageError     P1 : c000009c     P2 : 00000003 . I have tried to reinstall but no joy. Any advise?

    'The installer has insufficient privileges to modify this file C:\Program Files (x86)\Common Files\Apple\Apple Application Support\Web kit.resources\inspector\Images\Spinner Inactive Selected.gif.'
    That one's consistent with disk/file damage. The first thing I'd try with that is running a disk check (chkdsk) over your C drive.
    XP instructions in the following document: How to perform disk error checking in Windows XP
    Vista instructions in the following document: Check your hard disk for errors
    Windows 7 instructions in the following document: How to use CHKDSK (Check Disk)
    Select both Automatically fix file system errors and Scan for and attempt recovery of bad sectors, or use chkdsk /r (depending on which way you decide to go about doing this). You'll almost certainly have to schedule the chkdsk to run on startup. The scan should take quite a while ... if it quits after a few minutes or seconds, something's interfering with the scan.
    Does the chkdsk find/repair any damage? If so, can you get an install to go through properly afterwards?

  • My iphone 4s is in recovery mode, when i plug it into my computer, itunes can find it and starts to restore and update it, but then it gets to the part where its waiting for itunes, my computer hasn't found it. how do i get my computer to find it?

    My iphone is in recovery mode, and when i connect it to my computer it makes the connected noise and itunes finds it, it starts to restore and update but it gets to the point where it says waiting for iphone. My compuer hasnt connected my iphone. i dont know how to make it conect :S Someone help! ive been trying for three hours!

    i have, its connected to my sisters computer,it starts to restore then says there was a problem downloading the software for the iphone, the network connection has timed out. what does this mean?

  • TS1538 Device not recognized in iTunes for Windows  I wasted about 1.5 hours with Apple on this issue. It all started happening after I updated to the latest version of iTunes. I haven't been able to sync my iPhone 4 in 1 month and am freaking out about p

    Device not recognized in iTunes for Windows
    I wasted about 1.5 hours with Apple on this issue. It all started happening after I updated to the latest version of iTunes. I haven't been able to sync my iPhone 4 in 1 month and am freaking out about possibly losing my pictures, video, text messages and music.
    Windows XP user.
    Any help will be greatly appreciated.
    iPhone 4, iOS 5.1.1

    If might be helpful if you actually told us what the problem is.

  • Sync session failed to start in iTunes after updated to iOS 7

    Sync session failed to start in iTunes after updated to iOS 7

    Restart your computer
    While your computer is restarting, clear all of the applications from the background on your iPhone. You can do this by pushing the home button twice and swiping the programs off the screen by pushing them upwards.
    After you are done doing that, restart your phone.
    Wait about 10 seconds or so and turn your phone back on. By the time you get your phone back on your computer should be completly restarted and ready to go.
    When your phone is back on, plug it into your computer. This should automatically bring up your Itunes, you may get another pop up that says autoplay, you can close that out. That's it. I hope it helps and good luck

  • How to get the PSA name in a Start Routine in the Update Rules of a Cube.

    Hi all.
    I have an InfoSource that loads data directly in an Infocube.
    In the Start Routine of the Update Rules I need to retrieve the PSA table name for that InfoSource, to access it and check some data.
    I can't use the PSA name you seen in the DataFlow because it will change once the update rules are transported to another system.
    Please advice.
    Thanks!!!

    Hi,
    we do it as follows:
    first get the request ID:
    DATA: tp_request(30)   VALUE 'REQUEST'.
    FIELD-SYMBOLS: <wa> TYPE ANY, <tp_req> TYPE ANY, <tp_dtp> TYPE ANY.
    READ TABLE datapak ASSIGNING <wa> INDEX 1.
    IF sy-subrc <> 0. ABORT = 4. ENDIF.
    ASSIGN COMPONENT tp_request  OF STRUCTURE <wa> TO <tp_req>.
    IF sy-subrc <> 0. ABORT = 4. ENDIF.
    requnr = <tp_req>.
    then we get the table with
    SELECT odsname_tech FROM rstsodspart WHERE request = requnr.
    you may need to adjust this code, I've just pasted the relevant parts...
    another way is to get this info from RSTSODS where the different versions are maintained...
    let me know if you need further detail about this stuff...
    hope this helps...
    Olivier.
    Message was edited by:
            Olivier Cora

Maybe you are looking for

  • Nano Plus no longer plays any wma fil

    I've had my Zen Nano Plus for over a year, and during that time it played both MP3 and WMA files with no problem. Now it won't play WMA files. I can transfer them to my player but it just skips those songs. This includes WMA files I downloaded from L

  • How to find out the releases for which an XPRA needs to be executed?

    Hello All, I am looking for some information related to XPRAs executed during the upgrades. 1. Is there a DB file present from which the XPRAs which needs to be run during the upgrade is stored? 2. From the name of the XPRA is it possible to find out

  • Resizing columns in a simple table

    Hello, I have several simple tables in my structured FM files.  They were copied from unstructured FM when we went DITA.  I want to resize the columns so the tables look presentable.  I tried to do Table > Resize Colums, but when I run the map throug

  • Workflow Design in Oracle Database

    Hi Pals, Problem : Designing a Vendor Management Application which will keep track of all the request created, approved, rejected or in between of any business process. Front end: Java Backend : Oracle I am new to Database Design so forgive my techni

  • Getting error while generating Forms5.0

    Dear all, I m getting an application error while generating/compiling an .fmb file. And it is coming out of the form builder. Is it possible generate an .fmb file from dos prompt. If so, how do i do that. If anybody have solution for this, pls let me