Lightroom crashes after photoshop closes file

I'm having an intermittent problem.  Here's what happens:
1) Right click on .DNG photo and do edit in photoshop.
2) Do my photoshop work, which will include usually 10 layers and be around 300 MB in size
3) save and close file
4) go back to lightroom to do more work, and it crashes as soon as I switch to it.
Then, if I run lightroom again, it will crash.  In fact, it will not come back up unless I shut down photoshop.  Then it will come back up.  Sometimes the file I was working on is in the catalog, other times it isn't and I have to add it.
This happens to 5-10% of the files that I edit in photoshop.
My system is CS4, Lightroom, Windows 7.  All 64 bit.
I had this same setup with Windows XP, but 32 bit and never had this happen.

I am having the same problem in CS2 running XP PRO - Just started a couple of weeks ago. I have updated all drivers, cleaned the registry, reinstalled
LR 2.6 . Everytime I edit an image in Photoshop, Lightroom will close and give me the " I'm sorry, but Lightroom must close"... It had worked for over a year and all of a sudden this starts. Everyone tells me it's a driver or Windows update, so I went through and updated everything I could and it still crashes.
I have spent many hours and dollars to this point and I reall need to get this fixed. If anyone can figure this one out, I would REALLY appreciate it!

Similar Messages

  • Lightroom crashing when Photoshop is running??

    I need help!  I am running Windows 7, 4GB RAM.  When I have both Photoshop CS4 64bit and Lightroom 3.3 64bit open Lightroom crashes.  The moment I close Photoshop, Lightroom is fine.  This is something that just started, I use to work with both of them all the time.
    Thanks in advance!

    First off, did you really mean PS CS4? Because PS CS4 and LR 3 are not fully compatible, and you don't get all the features of LR with CS4.
    I do not know if CS4 would cause LR to crash. I worked for a while with CS3 and LR 3 and both worked fine, except that CS3 can not open the RAW images processed in LR 3.
    Secondly, what do you mean by "crashes" - do you get a Windows message that LR has to close? Or is it that LR seems the be "frozen", i.e. un-responsive?
    If LR becomes unresponsive, the reason might be that do don't have enough RAM. Try the following:
    How large is your page file? Increae your page file (Control Panel > Administrative Tools > Performance) How large is your LR Cache. Set the Cache size in LR to very large (mine is set at 75 GB) - it might help (Edit > Preferences > File Handling). Also, move your LR Cache to a different drive than the drive on which LR sits .
    Finally, if LR closes down on you and if both programs worked before then one or the other has become somehow corrupted.
    Since it is LR that crashes, try to re-install LR.
    Before you do that, backup your Catalog, so that you can open it with the newly re-installed LR and don't lose anything.
    WW

  • Java Hotspot problem, crash after play 3 file.

    hai,
    i already dispose the player, but it seem not work at all.
    my player crash after 3 or 4 file being play in a row.
    anyone care to give me the answer what wrong..
    thanks..
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.*;
    import javax.media.*;
    public class MediaPlayerDemo extends JFrame {
    private Player player;
    private File file;
    private boolean realized = false;
    public MediaPlayerDemo () {
    super("Media");
    JMenuBar openFile = new JMenuBar();
    JMenuItem item = null;
    JPopupMenu.setDefaultLightWeightPopupEnabled(false);
    JMenu mnFile = new JMenu("File");
    mnFile.add(item = new JMenuItem("Open"));
    item.addActionListener(
    new ActionListener() {
    public void actionPerformed(ActionEvent e)
    openFile();
    createPlayer();
    openFile.add(mnFile);
    getContentPane().add(openFile,BorderLayout.NORTH);
    setSize(300,300);
    show();
    }//tamat public MediaPlayerDemo ()
    private void openFile() {
    JFileChooser fileChooser = new JFileChooser();
    fileChooser.setFileSelectionMode(JFileChooser.FILES_ONLY);
    int result = fileChooser.showOpenDialog( this);
    if (result == JFileChooser.CANCEL_OPTION)
    file = null;
    else
    file = fileChooser.getSelectedFile();
    }//tamat private void openFile()
    private void createPlayer() {
    if (file == null)
    return;
    removePreviousPlayer();
    try {
    player = Manager.createPlayer(file.toURL());
    player.addControllerListener(new EventHandler() );
    wrapRealize();
    player.prefetch();
    catch(Exception ier){
    System.out.println(ier);
    }//tamat private void createPlayer()
    private void removePreviousPlayer() {
    if (player == null)
    return;
    player.stop();
    player.deallocate();
    //dispose();//hilang visual semua
    Component visual = player.getVisualComponent();
    Component control = player.getControlPanelComponent();
    Container c = getContentPane();
    if (visual != null)
    c.remove(visual);
    if (control != null)
    c.remove(control);
    player.close();
    realized = false;
    }//tamat private void removePreviousPlayer()
    public synchronized void wrapRealize() {
    player.realize();
    while(!realized) {
    try {
    wait();
    catch(InterruptedException ie){
    System.out.println("ralat realized");
    }//tamat public synchronized void wrapRealize()
    public static void main(String args[]){
    MediaPlayerDemo app = new MediaPlayerDemo();
    app.addWindowListener(
    new WindowAdapter() {
    public void windowClosing(WindowEvent e)
    System.gc();
    System.exit(0);
    }//tamat public static void main(String args[])
    private class EventHandler implements ControllerListener {
    public void controllerUpdate (ControllerEvent e) {
    realized = true;
    if (e instanceof RealizeCompleteEvent) {
    Container c = getContentPane();
    Component visualComponent = player.getVisualComponent();
    if(visualComponent != null)
    c.add(visualComponent, BorderLayout.CENTER);
    Component controlsComponent = player.getControlPanelComponent();
    if(controlsComponent != null)
    c.add(controlsComponent, BorderLayout.SOUTH);
    c.doLayout();
    else if(e instanceof PrefetchCompleteEvent)
    player.start();
    else if(e instanceof EndOfMediaEvent)
    player.stop();
    }//tamat private class EventHandler implements ControllerListener
    }//tamat public class MediaPlayerDemo extends JFrame

    hai,
    i already dispose the player, but it seem not work at all.
    my player crash after 3 or 4 file being play in a row.
    anyone care to give me the answer what wrong..
    thanks..
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.*;
    import javax.media.*;
    public class MediaPlayerDemo extends JFrame {
    private Player player;
    private File file;
    private boolean realized = false;
    public MediaPlayerDemo () {
    super("Media");
    JMenuBar openFile = new JMenuBar();
    JMenuItem item = null;
    JPopupMenu.setDefaultLightWeightPopupEnabled(false);
    JMenu mnFile = new JMenu("File");
    mnFile.add(item = new JMenuItem("Open"));
    item.addActionListener(
    new ActionListener() {
    public void actionPerformed(ActionEvent e)
    openFile();
    createPlayer();
    openFile.add(mnFile);
    getContentPane().add(openFile,BorderLayout.NORTH);
    setSize(300,300);
    show();
    }//tamat public MediaPlayerDemo ()
    private void openFile() {
    JFileChooser fileChooser = new JFileChooser();
    fileChooser.setFileSelectionMode(JFileChooser.FILES_ONLY);
    int result = fileChooser.showOpenDialog( this);
    if (result == JFileChooser.CANCEL_OPTION)
    file = null;
    else
    file = fileChooser.getSelectedFile();
    }//tamat private void openFile()
    private void createPlayer() {
    if (file == null)
    return;
    removePreviousPlayer();
    try {
    player = Manager.createPlayer(file.toURL());
    player.addControllerListener(new EventHandler() );
    wrapRealize();
    player.prefetch();
    catch(Exception ier){
    System.out.println(ier);
    }//tamat private void createPlayer()
    private void removePreviousPlayer() {
    if (player == null)
    return;
    player.stop();
    player.deallocate();
    //dispose();//hilang visual semua
    Component visual = player.getVisualComponent();
    Component control = player.getControlPanelComponent();
    Container c = getContentPane();
    if (visual != null)
    c.remove(visual);
    if (control != null)
    c.remove(control);
    player.close();
    realized = false;
    }//tamat private void removePreviousPlayer()
    public synchronized void wrapRealize() {
    player.realize();
    while(!realized) {
    try {
    wait();
    catch(InterruptedException ie){
    System.out.println("ralat realized");
    }//tamat public synchronized void wrapRealize()
    public static void main(String args[]){
    MediaPlayerDemo app = new MediaPlayerDemo();
    app.addWindowListener(
    new WindowAdapter() {
    public void windowClosing(WindowEvent e)
    System.gc();
    System.exit(0);
    }//tamat public static void main(String args[])
    private class EventHandler implements ControllerListener {
    public void controllerUpdate (ControllerEvent e) {
    realized = true;
    if (e instanceof RealizeCompleteEvent) {
    Container c = getContentPane();
    Component visualComponent = player.getVisualComponent();
    if(visualComponent != null)
    c.add(visualComponent, BorderLayout.CENTER);
    Component controlsComponent = player.getControlPanelComponent();
    if(controlsComponent != null)
    c.add(controlsComponent, BorderLayout.SOUTH);
    c.doLayout();
    else if(e instanceof PrefetchCompleteEvent)
    player.start();
    else if(e instanceof EndOfMediaEvent)
    player.stop();
    }//tamat private class EventHandler implements ControllerListener
    }//tamat public class MediaPlayerDemo extends JFrame

  • Photos don't get back into lightroom 2 after photoshop edit?

    Hi,
    I'm on a mac, using LR1 for work, and testing LR2 trial. CS3 installed.
    This is a really strange thing. I've searched the net, watched tutorial videos, and it still doesn't work for me....
    When I'm done developing my photos, and want to take them to Photoshop - I right click, edit in CS3, do my editing, save (not save as) and close the photo. Now in LR1, and according to all the help I find - the new psd file should show up in my library, either in a stack, or next to my RAW file. Well, it doesn't.... The only way to get my psd edits back in to my catalog is to to a "synchronize folder" - which is really bad workflow... Anybody else with this problem?! I don't find any Adobe fixes, and can't see what other ways I could try now..
    Hope somebody can spread some light. Thanks!
    /Kasper

    I'm getting this as well. I'd really like to know how to fix it.
    I note that Photoshop titles the window "filename.cr2", rather than "filename-edit.psd" as before. I also don't get the 1.x dialog "Edit a copy with Lightroom adjustments [etc]". But I only get this when editing (Canon .CR2) RAW files. If I re-edit a PSD, I get the dialog, then all is as with 1.x.
    Windows XP Pro SP3
    Lightroom 2.0
    Photoshop CS3 (10.0.1)

  • Lightroom crashes when viewing RAW files (LR 6)

    Hey,
    my LR 6 Trial Build 1018573 crashes when viewing raw files on my mac book pro late 2010. The problem occurs when I press the right arrow several times to get to the next picture. The RAW files are Fuji. I don't expiernce the problem with LR 5.7, but migrated my whole catalog.. :-/
    I turned off the automatic change of graphics mode to be sure that the better graphic-card is used.
    Any help or suggestions how to solve the prolbem?
    Thanks in advance!

    In the Preferences dialog, Performance tab, try turning off all GPU support.
    Lots of issues with the video cards, especially ATI cards.

  • Adobe Acrobat 8.1 STD & MS Project 2007 crash after converting project files to PDF

    Need some help. Currently I create complex projects schedules (3-7 pages in length) and then convert to a .PDF thru Adobe Acrobat 8.1STD and although it takes a little bit, it does create the .PDF file. However when I open in Adobe Reader and try to scroll pages, it crashes and closes out Adobe completely without any error message after about 5-10 seconds. I run MS Office 2007 Small Business and all other conversions in Excel and Word are working just fine, it is only between these two software packages. Any Suggestions??

    AA STD 8.1.2 Correction, I do not have Reader (Only other Adobe products are Adobe Flash Player ActiveX and Adobe Shockwave Player) on my PC but when I open the PDF it does open in AA STD 8.1.2. Also, have tried this on other PC;s and same problem occurs and we e-mail these PDF's to our consultants and they are having the same problem whereby they are unable to scroll view thru the document/PDF and unable to print it out on their end.

  • InDesign CS5 Crash after open/close layouts 3/4 times consequently

    This happen with differents layouts (native CS5 documents on different machine also without fonts installed).
    We have tried on different machines (OSX 10.6.4, Win7 x64, Win XP 32bit).
    What can I solve the problem?
    Thanks
    Alessandro
    Here you can find the crash report of the Mac machine:
    Process:         Adobe InCopy CS5 [266]
    Path:            /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Adobe InCopy CS5
    Identifier:      com.adobe.InCopy
    Version:         7.0.0.355 (7000)
    Code Type:       X86 (Native)
    Parent Process:  launchd [127]
    Date/Time:       2010-11-04 14:45:58.149 +0100
    OS Version:      Mac OS X 10.6.4 (10F569)
    Report Version:  6
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   PublicLib.dylib                0x011a3ff7 ProtectiveShutdown::~ProtectiveShutdown() + 279
    1   ...adobe.InDesign.AppFramework 0x1b22a6e3 0x1b210000 + 108259
    2   PublicLib.dylib                0x011655ab CmdUtils::ProcessCommand(ICommand*) + 59
    3   com.adobe.InDesign.Widgets     0x1e4040df GetPlugIn + 2575
    4   WidgetBinLib.dylib             0x0283b162 CTreeViewWidgetMgr::GetNodeWidgetWidth(NodeID const&) const + 258
    5   WidgetBinLib.dylib             0x02842c9f CTreeViewMgr::QueryInterface(IDType<PMIID_tag>) const + 175
    6   WidgetBinLib.dylib             0x02842ec7 CTreeViewMgr::PreDirty(IDType<ImplementationID_tag>, short) + 119
    7   WidgetBinLib.dylib             0x02842f2e CTreeViewMgr::PreDirty(IDType<ImplementationID_tag>, short) + 222
    8   WidgetBinLib.dylib             0x0284a988 CTreeViewMgr::ArrangeWidgets() + 72
    9   WidgetBinLib.dylib             0x028355ea TreeWidgetControlView::Draw(IViewPort*, __HIShape*) + 74
    10  WidgetBinLib.dylib             0x02808219 PanelView::DrawChild(IPanelControlData*, short, IGraphicsContext*) + 985
    11  WidgetBinLib.dylib             0x02807706 PanelView::Draw(IViewPort*, __HIShape*) + 166
    12  WidgetBinLib.dylib             0x02808219 PanelView::DrawChild(IPanelControlData*, short, IGraphicsContext*) + 985
    13  WidgetBinLib.dylib             0x02807706 PanelView::Draw(IViewPort*, __HIShape*) + 166
    14  WidgetBinLib.dylib             0x0282de76 MErasablePanelView::Draw(IViewPort*, __HIShape*) + 166
    15  WidgetBinLib.dylib             0x02808219 PanelView::DrawChild(IPanelControlData*, short, IGraphicsContext*) + 985
    16  WidgetBinLib.dylib             0x02807706 PanelView::Draw(IViewPort*, __HIShape*) + 166
    17  WidgetBinLib.dylib             0x0288a385 MWindow::Paint(IViewPort*, __HIShape*) + 1253
    18  WidgetBinLib.dylib             0x028880b2 MWindow::SystemPaint() + 370
    19  WidgetBinLib.dylib             0x02890a29 CWindowEH::Update(IEvent*) + 57
    20  WidgetBinLib.dylib             0x0288fb54 MWindowEH::Update(IEvent*) + 100
    21  WidgetBinLib.dylib             0x0288e8a0 CDefaultEH::Update(IEvent*) + 48
    22  PublicLib.dylib                0x01184c1e CEventDispatcher::DispatchToEventHandlers(IEvent*) + 222
    23  PublicLib.dylib                0x011846d8 CEventDispatcher::DispatchEvent(IEvent*, IEvent::SystemHandledState) + 24
    24  ...obe.InDesign.Application UI 0x1cd97b46 GetPlugIn + 296854
    25  ...obe.InDesign.Application UI 0x1cd955dc GetPlugIn + 287276
    26  com.apple.HIToolbox            0x92be6f2f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1567
    27  com.apple.HIToolbox            0x92be61f6 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    28  com.apple.HIToolbox            0x92be6055 SendEventToEventTargetWithOptions + 58
    29  com.apple.HIToolbox            0x92c1abb0 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 3006
    30  com.apple.HIToolbox            0x92be7380 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2672
    31  com.apple.HIToolbox            0x92be61f6 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    32  com.apple.HIToolbox            0x92c089bb SendEventToEventTarget + 52
    33  com.apple.HIToolbox            0x92d91cc3 ToolboxEventDispatcher + 86
    34  com.apple.HIToolbox            0x92d9b981 GetOrPeekEvent + 548
    35  com.apple.HIToolbox            0x92d9bb85 GetNextEventMatchingMask + 190
    36  com.apple.HIToolbox            0x92d9be42 WNEInternal + 160
    37  com.apple.HIToolbox            0x92d9bfed WaitNextEvent + 57
    38  com.apple.HIToolbox            0x92d84515 ModalDialog + 909
    39  com.apple.HIToolbox            0x92d8cfa2 RunStandardAlert + 773
    40  WidgetBinLib.dylib             0x02866177 MClientAlertImpl::PlatformModalAlert(PMString const&, PMString const&, PMString const&, PMString const&, short, short, short, UIDRef const&, long) + 871
    41  WidgetBinLib.dylib             0x02864fa9 CClientAlertImpl::ModalAlertImplementation(PMString const&, PMString const&, PMString const&, PMString const&, short, short, short, UIDRef const&, long) + 233
    42  PublicLib.dylib                0x0115f43b CAlert::WarningAlert(PMString const&, UIDRef const&, long) + 155
    43  PublicLib.dylib                0x0115f4ba CAlert::WarningAlert(PMString const&) + 42
    44  SCCoreInCopy                   0x257aa610 InCopyDocUtils::DoSaveAs(UIDRef const&, short, IDFile const*, K2::UIFlags, unsigned char, IDType<FileTypeInfoID_tag>) + 1264
    45  SCEnterprise                   0x24c976cf RecoverObserver::SaveInCopyDocElsewhere(IDocument*, IDFile const&) const + 319
    46  SCEnterprise                   0x24c9842c RecoverObserver::RestoreDocuments() const + 1820
    47  SCEnterprise                   0x24c98cc6 RecoverObserver::Update(IDType<ClassID_tag> const&, ISubject*, IDType<PMIID_tag> const&, void*) + 102
    48  ...adobe.InDesign.AppFramework 0x1b2400a7 GetPlugIn + 45687
    49  ...adobe.InDesign.AppFramework 0x1b240669 GetPlugIn + 47161
    50  PublicLib.dylib                0x0124fe19 CSubject::Change(IDType<ClassID_tag>, IDType<PMIID_tag> const&, void*) + 89
    51  ...e.InDesign.Document Actions 0x2314df08 0x2314b000 + 12040
    52  com.adobe.InDesign.Utilities   0x1adbcaa3 0x1adbb000 + 6819
    53  com.adobe.InDesign.Utilities   0x1adbcccc 0x1adbb000 + 7372
    54  ...adobe.InDesign.AppFramework 0x1b22a788 0x1b210000 + 108424
    55  PublicLib.dylib                0x011655ab CmdUtils::ProcessCommand(ICommand*) + 59
    56  ...InDesign.Document Framework 0x1d1df483 0x1d1b1000 + 189571
    57  ...InDesign.Document Framework 0x1d1e14ba 0x1d1b1000 + 197818
    58  PublicLib.dylib                0x01164452 Command::DoImmediate(short) + 34
    59  com.adobe.InDesign.Utilities   0x1adbcaa3 0x1adbb000 + 6819
    60  com.adobe.InDesign.Utilities   0x1adbcccc 0x1adbb000 + 7372
    61  ...adobe.InDesign.AppFramework 0x1b22a788 0x1b210000 + 108424
    62  PublicLib.dylib                0x011655ab CmdUtils::ProcessCommand(ICommand*) + 59
    63  ...adobe.InDesign.AppFramework 0x1b238571 GetPlugIn + 14145
    64  com.adobe.InCopy               0x000028ab main + 187
    65  com.adobe.InCopy               0x000027c6 start + 54
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib              0x953e3942 kevent + 10
    1   libSystem.B.dylib              0x953e405c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib              0x953e3519 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib              0x953e32be _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib              0x953e2d41 _pthread_wqthread + 390
    5   libSystem.B.dylib              0x953e2b86 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib              0x953bd15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib              0x953eaca5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib              0x95419848 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore 0x978153b5 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore 0x97810d67 MPWaitOnQueue + 250
    5   PMRuntime.dylib                0x00014130 MemUtils::GetAvailMem() + 288
    6   ...ple.CoreServices.CarbonCore 0x977f4dee PrivateMPEntryPoint + 68
    7   libSystem.B.dylib              0x953ea81d _pthread_start + 345
    8   libSystem.B.dylib              0x953ea6a2 thread_start + 34
    Thread 3:
    0   libSystem.B.dylib              0x953bd0fa mach_msg_trap + 10
    1   libSystem.B.dylib              0x953bd867 mach_msg + 68
    2   ...ple.CoreServices.CarbonCore 0x978bccb8 TS_exception_listener_thread + 160
    3   libSystem.B.dylib              0x953ea81d _pthread_start + 345
    4   libSystem.B.dylib              0x953ea6a2 thread_start + 34
    Thread 4:
    0   libSystem.B.dylib              0x953eb066 __semwait_signal + 10
    1   libSystem.B.dylib              0x953ead22 _pthread_cond_wait + 1191
    2   libSystem.B.dylib              0x953ec9b8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x97829a3a TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x9781538d TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x97810d67 MPWaitOnQueue + 250
    6   AdobeACE                       0x0005a6f1 0x20000 + 239345
    7   AdobeACE                       0x0005a0ed 0x20000 + 237805
    8   ...ple.CoreServices.CarbonCore 0x977f4dee PrivateMPEntryPoint + 68
    9   libSystem.B.dylib              0x953ea81d _pthread_start + 345
    10  libSystem.B.dylib              0x953ea6a2 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib              0x953eb066 __semwait_signal + 10
    1   libSystem.B.dylib              0x953ead22 _pthread_cond_wait + 1191
    2   libSystem.B.dylib              0x953ec9b8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x97829a3a TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x9781538d TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x97810d67 MPWaitOnQueue + 250
    6   AdobeACE                       0x0005a6f1 0x20000 + 239345
    7   AdobeACE                       0x0005a0ed 0x20000 + 237805
    8   ...ple.CoreServices.CarbonCore 0x977f4dee PrivateMPEntryPoint + 68
    9   libSystem.B.dylib              0x953ea81d _pthread_start + 345
    10  libSystem.B.dylib              0x953ea6a2 thread_start + 34
    Thread 6:
    0   libSystem.B.dylib              0x953eb066 __semwait_signal + 10
    1   libSystem.B.dylib              0x953ead22 _pthread_cond_wait + 1191
    2   libSystem.B.dylib              0x953ec9b8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x97829a3a TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x9781538d TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x97810d67 MPWaitOnQueue + 250
    6   AdobeACE                       0x0005a6f1 0x20000 + 239345
    7   AdobeACE                       0x0005a0ed 0x20000 + 237805
    8   ...ple.CoreServices.CarbonCore 0x977f4dee PrivateMPEntryPoint + 68
    9   libSystem.B.dylib              0x953ea81d _pthread_start + 345
    10  libSystem.B.dylib              0x953ea6a2 thread_start + 34
    Thread 7:
    0   libSystem.B.dylib              0x953bd142 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib              0x953eacbc _pthread_cond_wait + 1089
    2   libSystem.B.dylib              0x95433203 pthread_cond_wait + 48
    3   com.adobe.amt.services         0x09725126 C_AMTUISwitchSuppressUpdates + 16768
    4   com.adobe.amt.services         0x0971ddb0 C_EULA_SetState + 2164
    5   com.adobe.amt.services         0x0972518c C_AMTUISwitchSuppressUpdates + 16870
    6   libSystem.B.dylib              0x953ea81d _pthread_start + 345
    7   libSystem.B.dylib              0x953ea6a2 thread_start + 34
    Thread 8:
    0   libSystem.B.dylib              0x953bd142 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib              0x953eacbc _pthread_cond_wait + 1089
    2   libSystem.B.dylib              0x95433203 pthread_cond_wait + 48
    3   TINthread.dylib                0x225fb7a5 ThreadUtils::ThreadPool::Dispatcher() + 277
    4   TINthread.dylib                0x225fb83f ThreadUtils::ThreadPool::ThreadProc(void*) + 17
    5   libSystem.B.dylib              0x953ea81d _pthread_start + 345
    6   libSystem.B.dylib              0x953ea6a2 thread_start + 34
    Thread 9:
    0   libSystem.B.dylib              0x953eb066 __semwait_signal + 10
    1   libSystem.B.dylib              0x95416c64 nanosleep$UNIX2003 + 188
    2   ...sign.Support for JavaScript 0x20275fab GetPlugIn + 344123
    3   ...sign.Support for JavaScript 0x202599c3 GetPlugIn + 227923
    4   ...sign.Support for JavaScript 0x202760b8 GetPlugIn + 344392
    5   libSystem.B.dylib              0x953ea81d _pthread_start + 345
    6   libSystem.B.dylib              0x953ea6a2 thread_start + 34
    Thread 10:
    0   libSystem.B.dylib              0x953fa38a recvfrom$UNIX2003 + 10
    1   libSystem.B.dylib              0x9541a147 recv$UNIX2003 + 54
    2   ServiceManager-Launcher.dylib  0x27ba16cf Invoke + 54887
    3   ServiceManager-Launcher.dylib  0x27ba076e Invoke + 50950
    4   ServiceManager-Launcher.dylib  0x27b9f61f Invoke + 46519
    5   ServiceManager-Launcher.dylib  0x27b9f671 Invoke + 46601
    6   ServiceManager-Launcher.dylib  0x27b9f6fb Invoke + 46739
    7   ServiceManager-Launcher.dylib  0x27b99afe Invoke + 23190
    8   ServiceManager-Launcher.dylib  0x27b99ce7 Invoke + 23679
    9   ServiceManager-Launcher.dylib  0x27b9a8c7 Invoke + 26719
    10  ServiceManager-Launcher.dylib  0x27b9a9c5 Invoke + 26973
    11  ServiceManager-Launcher.dylib  0x27b9ddb0 Invoke + 40264
    12  ServiceManager-Launcher.dylib  0x27b9e059 Invoke + 40945
    13  ServiceManager-Launcher.dylib  0x27b9e687 Invoke + 42527
    14  ServiceManager-Launcher.dylib  0x27b9e884 Invoke + 43036
    15  ServiceManager-Launcher.dylib  0x27b90826 Login + 1654
    16  ServiceManager-Launcher.dylib  0x27b91c71 Login + 6849
    17  ServiceManager-Launcher.dylib  0x27b9edf3 Invoke + 44427
    18  ServiceManager-Launcher.dylib  0x27ba1341 Invoke + 53977
    19  libSystem.B.dylib              0x953ea81d _pthread_start + 345
    20  libSystem.B.dylib              0x953ea6a2 thread_start + 34
    Thread 11:
    0   libSystem.B.dylib              0x953bd14e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore 0x9782715e MPWaitOnSemaphore + 125
    2   MultiProcessor Support         0x2cf840f0 0x2cf4a000 + 237808
    3   ...ple.CoreServices.CarbonCore 0x977f4dee PrivateMPEntryPoint + 68
    4   libSystem.B.dylib              0x953ea81d _pthread_start + 345
    5   libSystem.B.dylib              0x953ea6a2 thread_start + 34
    Thread 12:
    0   libSystem.B.dylib              0x953bd14e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore 0x9782715e MPWaitOnSemaphore + 125
    2   MultiProcessor Support         0x2cf840f0 0x2cf4a000 + 237808
    3   ...ple.CoreServices.CarbonCore 0x977f4dee PrivateMPEntryPoint + 68
    4   libSystem.B.dylib              0x953ea81d _pthread_start + 345
    5   libSystem.B.dylib              0x953ea6a2 thread_start + 34
    Thread 13:
    0   libSystem.B.dylib              0x953bd14e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore 0x9782715e MPWaitOnSemaphore + 125
    2   MultiProcessor Support         0x2cf840f0 0x2cf4a000 + 237808
    3   ...ple.CoreServices.CarbonCore 0x977f4dee PrivateMPEntryPoint + 68
    4   libSystem.B.dylib              0x953ea81d _pthread_start + 345
    5   libSystem.B.dylib              0x953ea6a2 thread_start + 34
    Thread 14:
    0   libSystem.B.dylib              0x953bd142 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib              0x953eacbc _pthread_cond_wait + 1089
    2   libSystem.B.dylib              0x95433203 pthread_cond_wait + 48
    3   com.adobe.adobeswfl            0x0b2a2d5f APXGetHostAPI + 2567887
    4   com.adobe.adobeswfl            0x0b0441ef APXGetHostAPI + 82783
    5   com.adobe.adobeswfl            0x0b2a2e4c APXGetHostAPI + 2568124
    6   com.adobe.adobeswfl            0x0b2a2eb7 APXGetHostAPI + 2568231
    7   com.adobe.adobeswfl            0x0b2a2f9b APXGetHostAPI + 2568459
    8   libSystem.B.dylib              0x953ea81d _pthread_start + 345
    9   libSystem.B.dylib              0x953ea6a2 thread_start + 34
    Thread 15:
    0   libSystem.B.dylib              0x953bd142 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib              0x953eacbc _pthread_cond_wait + 1089
    2   libSystem.B.dylib              0x95433203 pthread_cond_wait + 48
    3   com.adobe.adobeswfl            0x0b2a2d5f APXGetHostAPI + 2567887
    4   com.adobe.adobeswfl            0x0b0441ef APXGetHostAPI + 82783
    5   com.adobe.adobeswfl            0x0b2a2e4c APXGetHostAPI + 2568124
    6   com.adobe.adobeswfl            0x0b2a2eb7 APXGetHostAPI + 2568231
    7   com.adobe.adobeswfl            0x0b2a2f9b APXGetHostAPI + 2568459
    8   libSystem.B.dylib              0x953ea81d _pthread_start + 345
    9   libSystem.B.dylib              0x953ea6a2 thread_start + 34
    Thread 16:
    0   libSystem.B.dylib              0x953bd142 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib              0x953eacbc _pthread_cond_wait + 1089
    2   libSystem.B.dylib              0x95433203 pthread_cond_wait + 48
    3   com.adobe.adobeswfl            0x0b2a2d5f APXGetHostAPI + 2567887
    4   com.adobe.adobeswfl            0x0b0441ef APXGetHostAPI + 82783
    5   com.adobe.adobeswfl            0x0b2a2e4c APXGetHostAPI + 2568124
    6   com.adobe.adobeswfl            0x0b2a2eb7 APXGetHostAPI + 2568231
    7   com.adobe.adobeswfl            0x0b2a2f9b APXGetHostAPI + 2568459
    8   libSystem.B.dylib              0x953ea81d _pthread_start + 345
    9   libSystem.B.dylib              0x953ea6a2 thread_start + 34
    Thread 17:
    0   libSystem.B.dylib              0x953bd142 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib              0x953eacbc _pthread_cond_wait + 1089
    2   libSystem.B.dylib              0x95433203 pthread_cond_wait + 48
    3   com.adobe.adobeswfl            0x0b2a2d5f APXGetHostAPI + 2567887
    4   com.adobe.adobeswfl            0x0b0441ef APXGetHostAPI + 82783
    5   com.adobe.adobeswfl            0x0b2a2e4c APXGetHostAPI + 2568124
    6   com.adobe.adobeswfl            0x0b2a2eb7 APXGetHostAPI + 2568231
    7   com.adobe.adobeswfl            0x0b2a2f9b APXGetHostAPI + 2568459
    8   libSystem.B.dylib              0x953ea81d _pthread_start + 345
    9   libSystem.B.dylib              0x953ea6a2 thread_start + 34
    Thread 18:
    0   libSystem.B.dylib              0x953bd15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib              0x953eaca5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib              0x95419848 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl            0x0b2a2d27 APXGetHostAPI + 2567831
    4   com.adobe.adobeswfl            0x0b41806b APXGetHostAPI + 4096475
    5   com.adobe.adobeswfl            0x0b2a2e4c APXGetHostAPI + 2568124
    6   com.adobe.adobeswfl            0x0b2a2eb7 APXGetHostAPI + 2568231
    7   com.adobe.adobeswfl            0x0b2a2f9b APXGetHostAPI + 2568459
    8   libSystem.B.dylib              0x953ea81d _pthread_start + 345
    9   libSystem.B.dylib              0x953ea6a2 thread_start + 34
    Thread 19:
    0   libSystem.B.dylib              0x953bd15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib              0x953eaca5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib              0x95419848 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl            0x0b2a2d27 APXGetHostAPI + 2567831
    4   com.adobe.adobeswfl            0x0b2bd6de APXGetHostAPI + 2676814
    5   com.adobe.adobeswfl            0x0b2a2e4c APXGetHostAPI + 2568124
    6   com.adobe.adobeswfl            0x0b2a2eb7 APXGetHostAPI + 2568231
    7   com.adobe.adobeswfl            0x0b2a2f9b APXGetHostAPI + 2568459
    8   libSystem.B.dylib              0x953ea81d _pthread_start + 345
    9   libSystem.B.dylib              0x953ea6a2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x011a3ef4  ecx: 0x409a8e94  edx: 0x0300078c
      edi: 0xbfffba74  esi: 0x038f3668  ebp: 0xbfffbac8  esp: 0xbfffba10
       ss: 0x0000001f  efl: 0x00010246  eip: 0x011a3ff7   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x00000000
    Binary Images:
        0x1000 -     0x4ffb +com.adobe.InCopy 7.0.0.355 (7000) <4645FB84-BE7D-81E1-BEC3-26747B02E1F0> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Adobe InCopy CS5
        0xa000 -     0xafff +InDesignModel ??? (???) <D054C2C9-F070-A1E1-2D78-BACDC9DCC960> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
        0xe000 -     0xefff +InDesignModelAndUI ??? (???) <770DFBFF-7C31-ECD4-88FE-BCFED53CFC33> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelAndUI
       0x12000 -    0x19ff3 +PMRuntime.dylib ??? (???) <EC9AB7BF-B671-AE6F-5C9E-7A49F9C265BE> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/PMRuntime.dylib
       0x20000 -   0x134fff +AdobeACE ??? (???) <DD291A17-ECF4-FE20-5837-AC1F5BC76940> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
      0x157000 -   0x67dfff +AdobeAGM ??? (???) <6F8EB120-6F01-38AE-8363-BC941B8AE12E> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
      0x7be000 -   0x7fafff +AdobeARE ??? (???) <EF398654-5384-F84A-8B62-DA1F64E2FAD1> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
      0x803000 -   0x81efff +AdobeBIB ??? (???) <CDFB3340-3A46-292A-121E-2820EC62D78E> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
      0x828000 -   0x849ff7 +AdobeBIBUtils ??? (???) <482199DF-1251-ED75-4958-563C6E49CD6F> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
      0x855000 -   0xb47ff7 +AdobeCoolType ??? (???) <E688E020-77C0-9353-7DB6-A86E8C4F0D14> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
      0xbcf000 -   0xfa7ff7 +AdobeMPS ??? (???) <272DAEDE-FC7E-B412-7C97-CF47FF6BF242> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x1038000 -  0x10a6ff7 +ObjectModelLib.dylib ??? (???) <2D15EF33-4E6E-1E9F-720D-E5A920224F7B> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/ObjectModelLib.dylib
    0x10c9000 -  0x1123fe7 +DataBaseLib.dylib ??? (???) <3FC5D05A-298D-654B-F235-C0579E0A347F> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/DataBaseLib.dylib
    0x113c000 -  0x1553fff +PublicLib.dylib ??? (???) <8B00B3B8-E29A-8A58-6D46-B8E961D16C69> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/PublicLib.dylib
    0x16da000 -  0x16f1ff6 +AdobeAFL ??? (???) <CFC0FF78-A748-AC45-2E62-8F20090D911C> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
    0x1702000 -  0x170aff3 +boost_threads ??? (???) <B00C0C9E-7175-B6D2-E58B-7278E0EB8863> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/boost_threads.framework/Versions/1_37/boost_threads
    0x1714000 -  0x1719ffd +ASLSupportLib.dylib ??? (???) <D4BEF46E-063B-696F-FE83-DD943ABA838A> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/ASLSupportLib.dylib
    0x171e000 -  0x171fff2 +libtbbmalloc.dylib ??? (???) <A1EAB5E4-3F88-5E37-7068-7A35A3EC69DE> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/libtbbmalloc.dylib
    0x1723000 -  0x1731fe7 +libtbb.dylib ??? (???) <FFA49B03-C516-D23D-B535-B64D7CD35ECE> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/libtbb.dylib
    0x1739000 -  0x1871fe7 +WRServices ??? (???) <9E3A36AD-71F1-B9C7-AC3F-30A7E63C8B57> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x18b3000 -  0x18b7ffc +com.adobe.AdobeCrashReporter 3.0 (3.0.20100302) <E6437929-0E69-8A56-E69F-F64305E82DD9> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x18be000 -  0x226efff +libicudata.dylib.36.0 36.0.0 (compatibility 36.0.0) <02108DEA-3DD2-14BE-DAEB-BE522B619C1D> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.dylib.36.0
    0x2271000 -  0x233eff3 +libicui18n.dylib.36.0 36.0.0 (compatibility 36.0.0) <08F15219-7F35-574E-7725-1ACAA1B18A00> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/ICUInternationalization.framework/Versions/3.6/libicui18n.dyl ib.36.0
    0x23a1000 -  0x247bfef +libicuuc.dylib.36.0 36.0.0 (compatibility 36.0.0) <5EE72009-40B3-7FB7-3A49-576AEDE0D400> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc.dylib.36.0
    0x24bb000 -  0x252bfeb +com.adobe.adobe_caps adobe_caps 3.0.116.0 (3.0.116.0) <50675115-BEDC-72F9-C42D-374196E83EC2> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x2536000 -  0x259cffb +com.adobe.amtlib amtlib 3.0.0.64 (3.0.0.64) <DD471011-9120-1BC2-F1B5-D6FF09D0859F> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x25b2000 -  0x264bfef +boost_regex ??? (???) <462635B6-7AF0-B43D-74D6-4AC15ACBC66A> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/boost_regex.framework/Versions/1_37/boost_regex
    0x2690000 -  0x26d0ff7  com.apple.vmutils 4.2 (106) <7AAF9FDA-AC1E-09FD-889E-68FFB5F94BA8> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x26e9000 -  0x279efe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <2E52683A-7E8E-68D5-5AC6-09962C37CB98> /usr/lib/libcrypto.0.9.7.dylib
    0x27e4000 -  0x27e6ffb +boost_system ??? (???) <FBD2BBDA-A758-FFCE-ABBA-7FDAB09FAF0F> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/boost_system.framework/Versions/1_37/boost_system
    0x27eb000 -  0x2987fff +WidgetBinLib.dylib ??? (???) <A653F189-2C78-4606-1921-350F81951C7C> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/WidgetBinLib.dylib
    0x2a65000 -  0x2c04fe7 +com.adobe.owl AdobeOwl version 3.0.84 (3.0.84) <25884999-8A98-F8C9-699B-ED75261B6BFC> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x2c6d000 -  0x2ceafff +AdobeOwlCanvas ??? (???) <65B2E680-4F43-BE46-2290-3500758D1BF7> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
    0x2d06000 -  0x2d09ff8 +com.adobe.ape.shim adbeape version 3.1.65.7508 (3.1.65.7508) <FFDDAB7A-220F-7344-F12B-010CA0C41DAB> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x9700000 -  0x9767fea +com.adobe.amt.services AMTServices 3.0.0.64 (BuildVersion: 3.0; BuildDate: Mon Jan 26 2010 21:49:00) (3.0.0.64) <EE468E2C-A6BD-E2EE-7ABE-69168B143B44> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservices
    0x9783000 -  0x978bfff +com.adobe.asneu.framework asneu version 1.7.0.1 (1.7.0.1) <80195B5C-2C67-D841-232C-74FCAB79D304> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0x97a7000 -  0x97e0ffb +com.adobe.AAM.AdobeUpdaterNotificationFramework UpdaterNotifications 1.0.0.64 (1.0.0.64) <C64CCBDC-B8E9-45E8-53E7-8577CFE9F2F0> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/UpdaterNotification s
    0x97f0000 -  0x97f1ff3 +com.adobe.InDesign.Metadata Database Filter 7.0.0.355 (???) <8153D24F-2DB5-B2AB-9717-70E7532E8B02> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Metadata Database Filter.InDesignPlugin/Metadata Database Filter
    0x97f5000 -  0x97f6ff1 +com.adobe.InDesign.Global Preferences Panel 7.0.0.355 (???) <DF2380A0-A851-5529-7A36-1A3973B89200> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Global Preferences Panel.InDesignPlugin/Global Preferences Panel
    0x97fa000 -  0x97fbff7  com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0xa100000 -  0xa100ff7 +DTraceSupport.dylib ??? (???) <3B2D713B-751B-BD11-5DEA-7B7F6017CB58> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/DTraceSupport.dylib
    0xa307000 -  0xa30bff3  com.apple.audio.AudioIPCPlugIn 1.1.2 (1.1.2) <5570694E-039D-7970-6083-1C8A7B7C937B> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
    0xa310000 -  0xa316ffb  com.apple.audio.AppleHDAHALPlugIn 1.8.7 (1.8.7f1) <0FE8B697-6D19-69C6-FA94-E18064ACFAEC> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
    0xb000000 -  0xbe19fc3 +com.adobe.adobeswfl ??? (2.0.0.7489) <C954CA64-9B28-A7FA-E391-C1C6524F1639> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/Resources/AdobeSWFL.bundle/Contents/MacOS/Ado beSWFL
    0x1ad90000 - 0x1adabffb +com.adobe.InDesign.IME 7.0.0.355 (???) <3510053A-A752-0311-B35B-14EBEAC6D18D> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/IME.InDesignPlugin/IME
    0x1adbb000 - 0x1addffef +com.adobe.InDesign.Utilities 7.0.0.355 (???) <AD54DEC4-0286-5511-D508-43356FD1E899> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Utilities.InDesignPlugin/Utilities
    0x1adf7000 - 0x1adf8fff +com.adobe.InDesign.Help 7.0.0.355 (???) <6E875143-BA05-093F-B1AE-385ADE146CC5> /Applications/Adobe InCopy CS5/Plug-Ins/UI/Help.InDesignPlugin/Help
    0x1b210000 - 0x1b39ffe3 +com.adobe.InDesign.AppFramework 7.0.4.542 (???) <60B1AD46-16EB-5C98-DA3C-A0B19345DF1A> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/AppFramework.InDesignPlugin/AppFramework
    0x1bd27000 - 0x1bea2ff7 +com.adobe.InDesign.Layout UI 7.0.0.355 (???) <37BB6E3D-6E3C-05D7-1EDB-F8D5D8171EA4> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Layout UI.InDesignPlugin/Layout UI
    0x1bf28000 - 0x1bf62ff7 +com.adobe.InDesign.Import Export UI 7.0.0.355 (???) <9B259867-0C2E-6976-E3A3-431F92EC255A> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Import Export UI.InDesignPlugin/Import Export UI
    0x1bf83000 - 0x1c055ff7 +com.adobe.InDesign.Hyperlinks 7.0.0.355 (???) <E1361CF8-1690-FD55-6D73-3CCA8296195F> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Hyperlinks.InDesignPlugin/Hyperlinks
    0x1c09e000 - 0x1c108ff7 +com.adobe.InDesign.Master Page 7.0.4.542 (???) <01B55E30-29EA-ACC0-94DA-093663E25FF9> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Master Page.InDesignPlugin/Master Page
    0x1c12e000 - 0x1c2bffeb +com.adobe.InDesign.Text Walker 7.0.0.355 (???) <6FF2466F-5761-CB4D-1CBA-B79F8AFFEED7> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Text Walker.InDesignPlugin/Text Walker
    0x1c35f000 - 0x1c3a2ff7 +com.adobe.InDesign.Linguistics 7.0.4.542 (???) <0B08F991-7D3D-AC59-AC5B-436B38B81B30> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Linguistics.InDesignPlugin/Linguistics
    0x1c3c2000 - 0x1c410fff +com.adobe.InDesign.Text Panel 7.0.0.355 (???) <B7A2C124-8C5A-F83F-10C1-1D092A258703> /Applications/Adobe InCopy CS5/Plug-Ins/Text/Text Panel.InDesignPlugin/Text Panel
    0x1c430000 - 0x1c45fff0 +TextPanelLib.dylib ??? (???) <F7BEA3B0-B264-4ECA-C7C1-E161D2CDCE4F> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/TextPanelLib.dylib
    0x1c47b000 - 0x1c4bbffc +com.adobe.InDesign.Spelling Panel 7.0.0.355 (???) <96DE3DF1-C22F-AF2F-4278-FDAAE598E3D6> /Applications/Adobe InCopy CS5/Plug-Ins/Text/Spelling Panel.InDesignPlugin/Spelling Panel
    0x1c4db000 - 0x1c583fff +com.adobe.InDesign.Text Editor 7.0.0.355 (???) <93D5B8A9-827E-4E67-BD48-5F00BA9D4760> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Text Editor.InDesignPlugin/Text Editor
    0x1c5bf000 - 0x1c7a0fff +com.adobe.InDesign.Package and Preflight 7.0.4.542 (???) <B1BB378F-09E5-EDB9-8ABD-688C86C179DF> /Applications/Adobe InCopy CS5/Plug-Ins/Prepress/Package and Preflight.InDesignPlugin/Package and Preflight
    0x1c82e000 - 0x1c886ff7 +AdobeXMP ??? (???) <73329999-C364-2451-6574-4D0277057D19> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x1c895000 - 0x1c8bbff6 +AdobeAXE8SharedExpat ??? (???) <5848BBCE-3A3E-66EE-5527-97A96F0CA4CC> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
    0x1c8c3000 - 0x1c999fef +com.adobe.InDesign.Color Management 7.0.0.355 (???) <8BF046A2-C7F5-6DEB-8150-1646329874A8> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Color Management.InDesignPlugin/Color Management
    0x1cb23000 - 0x1cbbbfff +com.adobe.AdobeExtendScript ExtendScript 4.1.23 (4.1.23.7519) <71FF91EA-D98C-4A22-EF60-F5DD91995638> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
    0x1cbf9000 - 0x1cbfbfff +com.adobe.InDesign.SimpleTextImportFilter 7.0.0.355 (???) <CCE5A524-7B2E-FED1-C328-3B1D0F24DFBA> /Applications/Adobe InCopy CS5/Plug-Ins/Filters/SimpleTextImportFilter.InDesignPlugin/SimpleTextImportFilter
    0x1cd00000 - 0x1cf61feb +com.adobe.InDesign.Application UI 7.0.4.542 (???) <7B8CB1DC-C3BF-8386-F60F-081FAD4B9EFE> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Application UI.InDesignPlugin/Application UI
    0x1d062000 - 0x1d0efff7 +com.adobe.AdobeScCore ScCore 4.1.23 (4.1.23.7519) <AF48351A-8019-EC04-BF85-CE117D1146E3> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x1d121000 - 0x1d174ffb +com.adobe.headlights.LogSessionFramework ??? (2.0.1.011) <4F2BFF03-01D2-A07D-E5E2-7F88D4C2DEC4> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x1d1b1000 - 0x1d33effb +com.adobe.InDesign.Document Framework 7.0.4.542 (???) <B7722131-585F-C42A-2E47-314809AA77C6> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Document Framework.InDesignPlugin/Document Framework
    0x1d434000 - 0x1d544ff3 +com.adobe.InDesign.SangamServicer-Mapper 7.0.0.355 (???) <932ACD2D-2394-61AC-D400-83D28700283D> /Applications/Adobe InCopy CS5/Plug-Ins/Filters/SangamServicer-Mapper.InDesignPlugin/SangamServicer-Mapper
    0x1d58f000 - 0x1d5f8ffb +AdobeSangam 3.0.0 (compatibility 3.0.0) <4FF2270C-9417-1059-527B-68C99BF43EA9> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSangam
    0x1d642000 - 0x1d64affc +com.adobe.InDesign.Workgroup Client UI 7.0.0.355 (???) <282ADA7E-C3D6-ADF8-6FB8-466B5F074934> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Workgroup Client UI.InDesignPlugin/Workgroup Client UI
    0x1d650000 - 0x1d651ff7  ATSHI.dylib ??? (???) <A7A8E224-2579-BD3B-7281-86342D077252> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib
    0x1d87a000 - 0x1d8a8ff2 +com.adobe.Reader for DOCX Reader for DOCX 5.5.0.7351 (5.5.0.7351) <DB73F46F-0AF2-85C4-7890-0607F6949AF8> /Applications/Adobe InCopy CS5/Plug-Ins/Filters/sangam readers/Reader for DOCX.smrd/Contents/MacOS/Reader for DOCX
    0x1d8b8000 - 0x1d985fe7 +AdobeAXEDOMCore ??? (???) <F76D74DC-FD5A-9783-C447-2E58773DA7E1> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
    0x1d9b2000 - 0x1da6bfff +AdobeAXSLE ??? (???) <A8C8ECD6-9098-8EA6-EA22-3BCCCB81A29B> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/AdobeAXSLE.framework/Versions/A/AdobeAXSLE
    0x1da95000 - 0x1db18ff2 +AdobeSangamML ??? (???) <B0029614-553A-BEAB-21E1-0664E5481F68> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/AdobeSangamML.framework/Versions/A/AdobeSangamML
    0x1db49000 - 0x1dbaeff3 +com.adobe.Reader for Excel Reader for Excel 5.5.0.7351 (5.5.0.7351) <13A79647-FDEE-DA76-4D9D-AD328F170941> /Applications/Adobe InCopy CS5/Plug-Ins/Filters/sangam readers/Reader for Excel.smrd/Contents/MacOS/Reader for Excel
    0x1dbc7000 - 0x1dbdbfff +AdobeSFL ??? (???) <83D25893-376A-89D9-BA9B-078913B8D34F> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/AdobeSFL.framework/Versions/A/AdobeSFL
    0x1dbe1000 - 0x1dc69fff +com.adobe.Reader For PageMaker Reader For PageMaker 5.5.0.7351 (5.5.0.7351) <CB3DC121-77F5-1289-537F-D979E601407F> /Applications/Adobe InCopy CS5/Plug-Ins/Filters/sangam readers/Reader for PageMaker.smrd/Contents/MacOS/Reader for PageMaker
    0x1dc8b000 - 0x1dcafffb +PMFileReader.dylib ??? (???) <5C6DA068-A794-2099-9E3B-7F51E5FC478E> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/PMFileReader.dylib
    0x1dcb4000 - 0x1ddb4fff +com.adobe.Reader for Quark Reader for Quark 5.5.0.7351 (5.5.0.7351) <A525EFDE-6074-8CA1-6145-76B57CB0F448> /Applications/Adobe InCopy CS5/Plug-Ins/Filters/sangam readers/Reader for Quark.smrd/Contents/MacOS/Reader for Quark
    0x1ddd9000 - 0x1de3fff4 +com.adobe.Reader for RTF Reader for RTF 5.5.0.7351 (5.5.0.7351) <735AD3FF-36DE-C1B9-7EEA-ECCF3E929D1A> /Applications/Adobe InCopy CS5/Plug-Ins/Filters/sangam readers/Reader for RTF.smrd/Contents/MacOS/Reader for RTF
    0x1de5d000 - 0x1ded1ff4 +com.adobe.Reader for Word Reader for Word 5.5.0.7351 (5.5.0.7351) <6E36D3D4-6EB7-8C51-9021-3C9301A089E4> /Applications/Adobe InCopy CS5/Plug-Ins/Filters/sangam readers/Reader for Word.smrd/Contents/MacOS/Reader for Word
    0x1deee000 - 0x1df63fe2 +com.adobe.Reader for XLSX Reader for XLSX 5.5.0.7351 (5.5.0.7351) <4020D646-03F7-B2A1-D3D3-4EFB98472E1B> /Applications/Adobe InCopy CS5/Plug-Ins/Filters/sangam readers/Reader for XLSX.smrd/Contents/MacOS/Reader for XLSX
    0x1df8a000 - 0x1df92ff7 +com.adobe.ZTextReader ZTextReader 5.5.0.7351 (5.5.0.7351) <851A0B77-2110-B419-A8EB-B051C6CB7653> /Applications/Adobe InCopy CS5/Plug-Ins/Filters/sangam readers/ZTextReader.smrd/Contents/MacOS/ZTextReader
    0x1e017000 - 0x1e07bff7 +com.adobe.InDesign.XMLParser 7.0.0.355 (???) <16D1BE18-BDC0-598D-3DD6-933CE96E818D> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/XMLParser.InDesignPlugin/XMLParser
    0x1e0a1000 - 0x1e268fef +com.adobe.InDesign.XML 7.0.0.355 (???) <9B37046A-48B2-C794-E572-E7DFADAF8A30> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/XML.InDesignPlugin/XML
    0x1e301000 - 0x1e325fff +com.adobe.InDesign.WorldReady 7.0.0.355 (???) <0B2B29B2-1DF5-BA1C-3F0D-01E8B3988813> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/WorldReady.InDesignPlugin/WorldReady
    0x1e337000 - 0x1e36bffb +com.adobe.InDesign.Workgroup 7.0.0.355 (???) <724EA9BC-EFD4-9710-E20E-4B1C74304C7D> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Workgroup.InDesignPlugin/Workgroup
    0x1e380000 - 0x1e39bfff +com.adobe.InDesign.Workgroup Client 7.0.0.355 (???) <193F094B-02D9-988A-47E6-C7E502E9F716> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Workgroup Client.InDesignPlugin/Workgroup Client
    0x1e3aa000 - 0x1e4befeb +com.adobe.InDesign.Widgets 7.0.0.355 (???) <AE4D2421-4E04-1153-615A-78CEEC745C3E> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Widgets.InDesignPlugin/Widgets
    0x1e541000 - 0x1e64ffef +com.adobe.InDesign.Transparency 7.0.0.355 (???) <7817B498-6756-5590-87B8-307C1B4422E8> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Transparency.InDesignPlugin/Transparency
    0x1e69a000 - 0x1f3ddfff +com.adobe.psl AdobePSL 12.0.0.7524 (12.0.0.7524) <CFBCB19A-03F7-D095-1F48-8D68F05A25C5> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0x1f71c000 - 0x1f76eff1 +com.adobe.InDesign.TOC 7.0.0.355 (???) <9EDF02F0-E9A9-58F8-5E3E-7C9C1ADA9849> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/TOC.InDesignPlugin/TOC
    0x1f78c000 - 0x1fc81fe7 +com.adobe.InDesign.Text 7.0.4.542 (???) <44F5AEE9-88A4-910B-6000-08B881F5649F> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Text.InDesignPlugin/Text
    0x1fded000 - 0x1fe52fff +com.adobe.InDesign.Text Wrap 7.0.0.355 (???) <557851E0-6260-DE31-3AFA-8008B49FBCE2> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Text Wrap.InDesignPlugin/Text Wrap
    0x1fe76000 - 0x1fea0fff +com.adobe.InDesign.Text Wrap Path 7.0.0.355 (???) <9BFEF65A-3909-03F2-0501-CC32FAAABF5A> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Text Wrap Path.InDesignPlugin/Text Wrap Path
    0x1feaa000 - 0x1feb9fff +com.adobe.InDesign.Text Editor Model 7.0.0.355 (???) <8E01C18E-4947-93AB-71CA-E017C80FB09C> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Text Editor Model.InDesignPlugin/Text Editor Model
    0x1fec3000 - 0x1ff0cfff +com.adobe.InDesign.Text Attributes 7.0.0.355 (???) <07B49878-E35A-C031-205F-A25256640FCA> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Text Attributes.InDesignPlugin/Text Attributes
    0x1ff31000 - 0x1ff78fff +com.adobe.InDesign.TableStyles 7.0.0.355 (???) <59E0C1A1-4044-C145-6414-61CF041E9968> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/TableStyles.InDesignPlugin/TableStyles
    0x1ff8f000 - 0x20188fff +com.adobe.InDesign.Table Model 7.0.0.355 (???) <F13B1585-BAAD-4C84-07BE-6428CEDA35B3> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Table Model.InDesignPlugin/Table Model
    0x20215000 - 0x2029fff7 +com.adobe.InDesign.Support for JavaScript 7.0.0.355 (???) <196259C9-B203-DD5B-0733-8D146FC78723> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Support for JavaScript.InDesignPlugin/Support for JavaScript
    0x202d8000 - 0x2031cfff +com.adobe.InDesign.Support for AppleScript 7.0.0.355 (???) <DEC65072-2AB5-9901-9CBC-6FED676B2B04> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Support for AppleScript.InDesignPlugin/Support for AppleScript
    0x20335000 - 0x20404fe7 +com.adobe.InDesign.Graphics 7.0.4.542 (???) <4B487AC6-77F6-245C-3866-575AD7C39038> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Graphics.InDesignPlugin/Graphics
    0x2044d000 - 0x2049cffb +com.adobe.InDesign.Stroke and Fill 7.0.0.355 (???) <42B4A176-B4DA-C638-A59F-94F3A3FFB416> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Stroke and Fill.InDesignPlugin/Stroke and Fill
    0x204b8000 - 0x204c6fff +com.adobe.InDesign.Spelling Service 7.0.0.355 (???) <DBB0C9F7-934B-15B5-5CF5-FBEEE83ACC99> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Spelling Service.InDesignPlugin/Spelling Service
    0x204d2000 - 0x204dffff +com.adobe.InDesign.Sound 7.0.0.355 (???) <15A968FB-7F7D-1022-9E99-70A3818AC346> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Sound.InDesignPlugin/Sound
    0x204ea000 - 0x204f3ffb +com.adobe.InDesign.Group 7.0.0.355 (???) <DCC2D180-2385-BED5-873A-FE87139634AF> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Group.InDesignPlugin/Group
    0x20600000 - 0x206e3ffb +com.adobe.InDesign.Spread 7.0.4.542 (???) <875DC5AF-30D6-19C8-76ED-BE01889616DE> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Spread.InDesignPlugin/Spread
    0x2072f000 - 0x20774ff0 +com.adobe.InDesign.Spread UI 7.0.0.355 (???) <6B9E2DAE-304A-1E95-E46E-D37CC49BEEA1> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Spread UI.InDesignPlugin/Spread UI
    0x2078e000 - 0x207cafff +com.adobe.InDesign.Spline 7.0.0.355 (???) <55F1F2F2-0BB7-96C1-726C-6D3E47351086> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Spline.InDesignPlugin/Spline
    0x207e6000 - 0x2081ffff +com.adobe.InDesign.Spline UI 7.0.0.355 (???) <B40249D1-919F-FFC8-8E6F-344A29CF063B> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Spline UI.InDesignPlugin/Spline UI
    0x2083d000 - 0x20857ff2 +com.adobe.InDesign.Sections 7.0.0.355 (???) <5AFD740D-904C-2F9B-DE71-375B2B948BCF> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Sections.InDesignPlugin/Sections
    0x20866000 - 0x20900fff +com.adobe.InDesign.Scripting 7.0.4.542 (???) <00EEEDB1-A194-F0B7-A5AD-34ADE10EFA83> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Scripting.InDesignPlugin/Scripting
    0x20931000 - 0x2094bfff +com.adobe.InDesign.Rulers 7.0.0.355 (???) <2546DE05-52F1-033E-90D0-03ED797D585C> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Rulers.InDesignPlugin/Rulers
    0x2095a000 - 0x20aa5fff +com.adobe.InDesign.Print 7.0.0.355 (???) <F6B4CCEF-06B9-5E17-9102-2B29A6713D6A> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Print.InDesignPlugin/Print
    0x20b04000 - 0x20b36ff7 +com.adobe.InDesign.PNG Import Filter 7.0.0.355 (???) <2C6DDB20-C560-14DD-84DC-A2AB8B6C0793> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/PNG Import Filter.InDesignPlugin/PNG Import Filter
    0x20b3f000 - 0x20b72ff7 +com.adobe.InDesign.Photoshop Import Filter 7.0.0.355 (???) <E31C18E9-8962-5D0C-7289-E5E02EA16AC9> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Photoshop Import Filter.InDesignPlugin/Photoshop Import Filter
    0x20b88000 - 0x20bdbff3 +com.adobe.InDesign.Book 7.0.0.355 (???) <CF89E43A-02A5-8A0A-2AF8-B85117122C18> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Book.InDesignPlugin/Book
    0x20bfe000 - 0x20cf3fe7 +com.adobe.InDesign.Image 7.0.4.542 (???) <34F71D12-1E4D-B1FE-4059-73A13B186669> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Image.InDesignPlugin/Image
    0x20d41000 - 0x20e25fef +com.adobe.InDesign.EPS Page Item 7.0.4.542 (???) <1437429B-E177-E440-798D-BBA75E559920> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/EPS Page Item.InDesignPlugin/EPS Page Item
    0x20e6b000 - 0x21040fff +com.adobe.InDesign.PDF 7.0.4.542 (???) <09E5A10D-0699-C8F9-DE0B-09F0FFA3A7C2> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/PDF.InDesignPlugin/PDF
    0x210ca000 - 0x211adfef +AdobePDFPort ??? (???) <A3B34989-24B0-04AF-D9BC-2B2718803809> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
    0x211e2000 - 0x211fdff9 +AdobePDFSettings ??? (???) /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSettings
    0x21217000 - 0x213c5ff3 +com.adobe.InDesign.Generic Page Item 7.0.4.542 (???) <61F082F1-5828-5C49-BE14-5B93276618E7> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Generic Page Item.InDesignPlugin/Generic Page Item
    0x21451000 - 0x2148affb +com.adobe.InDesign.Path Type 7.0.0.355 (???) <7867A3AB-4925-CBF7-1877-7924AD7A732D> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Path Type.InDesignPlugin/Path Type
    0x214a5000 - 0x214adff3 +PathTypeLib.dylib ??? (???) <F753ACE3-9AB5-76D6-8F55-CEF5E19401AF> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/PathTypeLib.dylib
    0x214b3000 - 0x21576fff +com.adobe.InDesign.Paragraph Composer 7.0.0.355 (???) <1D553B63-9594-CBD7-81A3-1183D6A1B9FD> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Paragraph Composer.InDesignPlugin/Paragraph Composer
    0x21594000 - 0x215c8fff +com.adobe.InDesign.Open Place 7.0.0.355 (???) <604DFE0C-0815-33D3-2087-C85D73F1961D> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Open Place.InDesignPlugin/Open Place
    0x215e1000 - 0x215f6fff +com.adobe.InDesign.Movie 7.0.0.355 (???) <77F87F68-A6E9-05B6-C892-6FAFABF645C6> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Movie.InDesignPlugin/Movie
    0x21604000 - 0x21681ff7 +com.adobe.InDesign.Metadata 7.0.0.355 (???) <86187B9A-E072-BEB4-4E49-BF4A33FE6327> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Metadata.InDesignPlugin/Metadata
    0x216b0000 - 0x2173cfef +AdobeXMPFiles ??? (???) <A72BD678-CAD0-0C2A-0989-11E87B154AB5> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
    0x21773000 - 0x217c2ff7 +com.adobe.InDesign.Media 7.0.0.355 (???) <007C8522-EF86-AA23-56EC-99F318647ACC> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Media.InDesignPlugin/Media
    0x217e0000 - 0x2191bfff +com.adobe.InDesign.Links 7.0.0.355 (???) <DA8D69A9-77B5-12E0-99E9-7BA2FF99772E> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Links.InDesignPlugin/Links
    0x2197d000 - 0x2199eff3 +com.adobe.InDesign.Layout 7.0.0.355 (???) <8C39CD70-A373-88A5-CFD7-D1A730F96103> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Layout.InDesignPlugin/Layout
    0x219ae000 - 0x219d2fff +com.adobe.InDesign.Layer 7.0.0.355 (???) <F2C9FAF7-2D6F-653E-4596-3759D27E7034> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Layer.InDesignPlugin/Layer
    0x219e6000 - 0x21aa1fff +com.adobe.InDesign.INXCore 7.0.4.542 (???) <0E225880-4E1B-D11C-0EE0-AB4552E62161> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/INXCore.InDesignPlugin/INXCore
    0x21ae1000 - 0x21bc3ff7 +com.adobe.InDesign.Indexing 7.0.0.355 (???) <F225EE99-CFB6-6716-3B52-491DE35D7680> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Indexing.InDesignPlugin/Indexing
    0x21bff000 - 0x21c7dff3 +com.adobe.InDesign.InCopyWorkflow 7.0.0.355 (???) <030DA376-E5A7-4B26-CE74-028927EF0A01> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/InCopyWorkflow.InDesignPlugin/InCopyWorkflow
    0x21cb8000 - 0x21cc2ff3 +com.adobe.InDesign.InCopySharedUI 7.0.0.355 (???) <675CBA9B-C45D-D0FE-653F-491D5007B3D3> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/InCopySharedUI.InDesignPlugin/InCopySharedUI
    0x21ccd000 - 0x21dacfe7 +com.adobe.InDesign.InCopyShared 7.0.0.355 (???) <239CCEA7-4A06-9B91-6C85-EF21FD036FEB> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/InCopyShared.InDesignPlugin/InCopyShared
    0x21dfb000 - 0x21e43fff +com.adobe.InDesign.InCopyCore 7.0.0.355 (???) <87C553AA-63F6-F031-0125-F8D3DD705C23> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/InCopyCore.InDesignPlugin/InCopyCore
    0x21e5f000 - 0x21eb8fef +com.adobe.InDesign.Image Filters 7.0.0.355 (???) <AE6418DD-ACCA-DDFB-6CF0-ABBFAE2161C6> /Applications/Adobe InCopy CS5/Adobe InCopy CS5.app/Contents/MacOS/Required/Image Filters.InDesignPlugin/Image Filters
    0x21ec6000 - 0x21edcfff +com.adobe.InDesign.Guides 7.0.

    Is the first time one of these files crashes always on one system or another, or is it random across systems?
    It is random and it's not related to a file (one time i can open the file andanother time it cause an InDesign crash);
    It sounds very much like a font problem. Are you using a font manager, and if so, which one?
    We have reproduced the problem also on machine with only system's fonts.
    I forgot to say that the crashes happen only with InDesign files with InCopy files linked in.
    Thanks
    Alessandro

  • AE CS6 Crashes after Photoshop Update

    AE was working okay for the week that I'd had it installed, but a couple hours ago, the Adobe Update downloaded and installed an update for Photoshop. The very next time I launched AE, it crashed with the following information:
    Problem signature:
      Problem Event Name: BEX64
      Application Name: AfterFX.exe
      Application Version: 11.0.4.2
      Application Timestamp: 52886341
      Fault Module Name: WinTab32.dll_unloaded
      Fault Module Version: 0.0.0.0
      Fault Module Timestamp: 4f1a1028
      Exception Offset: 000007feeba1be1a
      Exception Code: c0000005
      Exception Data: 0000000000000008
      OS Version: 6.1.7601.2.1.0.256.48
      Locale ID: 1033
      Additional Information 1: 1e37
      Additional Information 2: 1e373e69fff075aed81f57003e66ce10
      Additional Information 3: 566d
      Additional Information 4: 566db00f6cc38ebb78149680a9f7bacd

    Apparently Windows 7 got "tired" and needed to be rebooted after an hour of working in AE. Never had that happen with 7 before. XP, yes, but not 7. Hmm..

  • Premiere Pro CS4 Crashes After Photoshop edit.................

    hi,
    whenever i edit and save a .psd file from my timeline premiere crashes in the middle of updating the .psd file... can anyone help?
    thnaks
    Kb

    Deacon,
    Along with the DirectX update, did you install anything else?
    After your installation of the DirectX update, did you also update your video and your audio drivers? If not, that would be my first thing to try. Both of those drivers can be rendered obsolete in a heartbeat, and because PrPro interfaces more closely with those, than nearly any other program, it will fail, while simple players, etc. still function.
    Good luck,
    Hunt

  • InDesign CS5.5 Crashing After Opening a File

    Hello,
    After working on a file for a good amount of time in InDesign, the program crashed. I tried to reopen the file and after making a change or two it will crash again. It has progressed to do this continously, and at points freezing my whole system. I'm currently working on a file that is around 7MB, and is around 150 pages long. I do use several Master Pages, and have a Table of Contents within this document. The issue developed after I updated my Table of Contents.
    I am running a Windows 7 (Home Premium) machine with 64-bit Operating System, on a HP G62.
    I also attempted to run the file off of my WD My Passport (1GB) thinking it could have been my hard drive, but it still crashed.
    The CS5.5 version I have is the Student and Teacher version, and I have had it since December 2011. I also check all of my other Adobe programs and they seem to be working fine. I attempted to check if InDesign was updated since it is on automatic updating and I had no luck since it crashed again.
    I really need to get this issue solved quickly, since I use this program on a daily basis for work and an internship.
    Thank You,
    Andrea

    HI Peter,
    I just wanted to let you know I think I fixed the problem. For some reason the file apparently became corrupt. Thanks to Dropbox and it's restorations I figured out that the last time I saved or the last work period that Dropbox has on account something happened. So I restored the file to the one before and it seems to be working fine. I have no clue what happened, but I'll just have to redo the work I lost. It also seems that some of my other InDesign files are working fine, which I should have checked before.
    Thank you for the help.
    Andrea

  • CS4 Media Encoder Crash after rendering - two files, help?

    I'm not a professional so I would appreciate any advice you can offer.  I was encoding a WMV HD video (edited in Premiere Pro from CS4) that was just under 2 hours long.  On an i7-920 with 9GB of RAM, it took just over 16 hours.  At the end of the encoding, the Media Encoder bar displayed 0:00:00 time left.  But it then froze at that point for about 30 minutes.  Then the program crashed.  I planned to take these WMV files and put them, via Encore, onto a dual-layer DVD with a few other special feature-related videos. 
    I now have two versions of the file in the destination folder, one that has the title I gave it and another that has a "._00_" before the title.  Both files are .wmv files and the one with the normal name is 6.64 GB whereas the one with the ._00_ before the name is 6.60 GB.  Both have problems if I try to play them beyond the 60% or so point.
    Is there a way to salvage these files without another 16 hour render? 
    How long should I expect, on a normal/successful render, for Media Encoder to continue to process the file after the countdown reaches 0:00:00?
    Thanks.  Any advice for this very untrained editor would be appreciated.

    On the topic of opening a project on the exact same version of Premiere Pro CC 2014 (yes it is definitely up to date, and the 2014 version), to overcome this export crash problem that ZachHinchy has brought up - you can't. Technically speaking, one should easily be able to open a Premiere Pro CC 2014 project from one system on another system running the exact same up to date, legitimate version of Premiere Pro CC 2014 without any kind of error. But for some reason, this has been disallowed(?) by Adobe. It has facepalm written all over it. Does anyone agree that this is at least a little bit silly?
    I have tried exporting a Final Cut Pro XML from my project to try and open the sequence at uni on a Mac, so I can render my project when I finish my edit. It half works - the clips are there, but the sequence is gone - i.e. 12 hours of painstaking sequencing and micro-edits that had me at several points in time wanting to insert my hand through my monitor with enough force to make a large hole. I really cannot afford redo this sequence, as my assignment is due tomorrow, and I have to work at 6 oclock in the morning, so I also cannot afford to stay up till the early hours of tomorrow morning. Wish me luck that some miraculous event has taken place overnight that will somehow allow me to just open my project, on the same version of Premiere, on a Mac, without hassle. (Apple OS is not friendly to anything but its own selfish nature, so I am having doubts).
    Adobe please, if you can do anything at all to help, you will save my assignment, and my faith will be restored. Otherwise, I'll just get my money back and buy Final Cut instead.
    I cant even
    If I find a way to fix either of these problems, I will post straight away.

  • [Solved] Kdenlive & Openshot crash after importing video files

    I'm not sure if the culprit is today's update, but I am having problems importing video files in Kdenlive and OpenShot. When I try to import .MTS / .MKV / .MP4 video files, both programs immediately cease to work.
    For example - Mediainfo:
    .mts file
    Video 16.2 Mbps, 1920*1080 (16:9), at 25.000 fps, AVC ([email protected]) (CABAC / 2 Ref Frames)
    Audio 448 Kbps, 48 Khz, 16 bits, 6 channels, AC-3
    .mkv file
    Video 1 399 Kbps, 1920*1080 (16:9), at 25 000 fps, AVC (High 4:4:4 [email protected]) (CABAC / 4 Ref Frames)
    .mp4 file
    Video 14,9 Mbps, 1920*1080 (16:9), at 30 000 fps, MPEG-4 Visual (Simple@L1)
    AUdio 192 Kbps, 44.1 KHz, 2 channels, MPEG Audio (version 1) (Layer 3) (Joint stero / MS Stereo)
    Kdenlive:
    QWidget::insertAction: Attempt to insert null action
    QWidget::insertAction: Attempt to insert null action
    "/org/freedesktop/UDisks2/drives/Hitachi_HTS727575A9E364_J3740084HMD0LE" : property "Drive" does not exist
    "/org/freedesktop/UDisks2/drives/Slimtype_DVD_A__DS8A8SH_3208583_6A6224402423" : property "Drive" does not exist
    "/org/freedesktop/UDisks2/drives/SAMSUNG_SSD_830_Series_S0Z3NEAC826732" : property "Drive" does not exist
    "/org/freedesktop/UDisks2/drives/Hitachi_HTS727575A9E364_J3740084HMD0LE" : property "DeviceNumber" does not exist
    "/org/freedesktop/UDisks2/drives/Hitachi_HTS727575A9E364_J3740084HMD0LE" : property "Device" does not exist
    "/org/freedesktop/UDisks2/drives/SAMSUNG_SSD_830_Series_S0Z3NEAC826732" : property "DeviceNumber" does not exist
    "/org/freedesktop/UDisks2/drives/SAMSUNG_SSD_830_Series_S0Z3NEAC826732" : property "Device" does not exist
    kdenlive(3364) KSambaSharePrivate::findSmbConf: KSambaShare: Could not find smb.conf!
    KCrash: Application 'kdenlive' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi from kdeinit
    sock_file=/home/cappuccino.kde4/socket-asus-arch/kdeinit4__0
    QSocketNotifier: Invalid socket 7 and type 'Read', disabling...
    QSocketNotifier: Invalid socket 13 and type 'Read', disabling...
    QSocketNotifier: Invalid socket 19 and type 'Exception', disabling...
    QSocketNotifier: Invalid socket 24 and type 'Read', disabling...
    kdenlive: Fatal IO error: client killed
    [1]+  Stopped                 kdenlive
    Openshot:
    ------------------------- ERROR 1 ------------------------------
    Failed to import 'from openshot import main'
    Error Message: cannot import name main
       OpenShot (version 1.4.3)
    Process no longer exists: 11615.  Creating new pid lock file.
    Detecting formats, codecs, and filters...
    ---snip---
    state saved
    Segmentation fault (core dumped)
    Pacman log:
    Running 'pacman -Syyu'
    synchronizing package lists
    starting full system upgrade
    removed kdesdk-kioslave (4.10.0-2)
    removed kdesdk-kmtrace (4.10.0-2)
    removed kdesdk-kpartloader (4.10.0-2)
    removed kdesdk-kprofilemethod (4.10.0-2)
    removed kdesdk-kstartperf (4.10.0-2)
    removed kdesdk-kuiviewer (4.10.0-2)
    removed kdesdk-scripts (4.10.0-2)
    upgraded chromium-bsu (0.9.15-3 -> 0.9.15-4)
    upgraded file (5.11-2 -> 5.13-1)
    upgraded gambas3-runtime (3.4.0-3 -> 3.4.0-4)
    upgraded gambas3-devel (3.4.0-3 -> 3.4.0-4)
    upgraded gambas3-gb-compress (3.4.0-3 -> 3.4.0-4)
    upgraded gambas3-gb-dbus (3.4.0-3 -> 3.4.0-4)
    upgraded gambas3-gb-image (3.4.0-3 -> 3.4.0-4)
    upgraded gambas3-gb-desktop (3.4.0-3 -> 3.4.0-4)
    upgraded gambas3-gb-form (3.4.0-3 -> 3.4.0-4)
    upgraded gambas3-gb-form-dialog (3.4.0-3 -> 3.4.0-4)
    upgraded gambas3-gb-form-mdi (3.4.0-3 -> 3.4.0-4)
    upgraded gambas3-gb-form-stock (3.4.0-3 -> 3.4.0-4)
    upgraded gambas3-gb-net (3.4.0-3 -> 3.4.0-4)
    upgraded gambas3-gb-net-curl (3.4.0-3 -> 3.4.0-4)
    upgraded gambas3-gb-qt4 (3.4.0-3 -> 3.4.0-4)
    upgraded gambas3-gb-qt4-ext (3.4.0-3 -> 3.4.0-4)
    upgraded gambas3-gb-settings (3.4.0-3 -> 3.4.0-4)
    upgraded gambas3-gb-signal (3.4.0-3 -> 3.4.0-4)
    upgraded gambas3-gb-web (3.4.0-3 -> 3.4.0-4)
    upgraded gambas3-gb-xml (3.4.0-3 -> 3.4.0-4)
    installed kdesdk-kioslaves (4.10.1-1)
    installed kdesdk-dev-utils (4.10.1-1)
    installed kdesdk-dev-scripts (4.10.1-1)
    upgraded networkmanager (0.9.6.4-2 -> 0.9.8.0-1)
    upgraded ntfs-3g (2013.1.13-1 -> 2013.1.13-2)
    upgraded sip (4.14.3-1 -> 4.14.4-1)
    upgraded python-sip (4.14.3-1 -> 4.14.4-1)
    upgraded pyqt-common (4.9.6-2 -> 4.10-1)
    upgraded pyqt (4.9.6-2 -> 4.10-1)
    upgraded python2-sip (4.14.3-1 -> 4.14.4-1)
    upgraded python2-pyqt (4.9.6-2 -> 4.10-1)
    upgraded qscintilla (2.7-2 -> 2.7.1-1)
    My system:
    CPU: Quad core Intel Core i7-3610QM CPU
    Graphics: Card-1: Intel 3rd Gen Core processor Graphics Controller
                   Card-2: NVIDIA GK107 [GeForce GT 650M]
    Drives: 1: id: /dev/sda model: SAMSUNG_SSD_830 size: 128.0GB
               2: id: /dev/sdb model: Hitachi_HTS72757 size: 750.2GB
    Memory: 15939.5MB
    X.Org: 1.13.2.901
    Mesa: 9.1-2
    Kernel: 3.7.10-1-ARCH x86_64 (64 bit)
    Desktop: KDE 4.10.1
    openshot: 1.4.3-1
    kdenlive: 0.9.4-1
    ffmpeg: 1:1.1.3-1
    mlt: 0.8.8-3
    mlt-python-bindings: 0.8.8-3
    frei0r-plugins: 1.3-6
    I do not use Compiz, Kwin
    3 days ago I didn't have this problem. Any ideas?
    Last edited by cappuccino (2013-03-10 16:30:08)

    (gdb):
    Kdenlive:
    Starting program: /usr/bin/kdenlive
    warning: Could not load shared library symbols for linux-vdso.so.1.
    Do you need "set solib-search-path" or "set sysroot"?
    [Thread debugging using libthread_db enabled]
    Using host libthread_db library "/usr/lib/libthread_db.so.1".
    Traceback (most recent call last):
      File "/usr/share/gdb/auto-load/usr/lib/libgobject-2.0.so.0.3400.3-gdb.py", line 9, in <module>
        from gobject import register
      File "/usr/share/glib-2.0/gdb/gobject.py", line 3, in <module>
        import gdb.backtrace
    ImportError: No module named backtrace
    [New Thread 0x7fffced3f700 (LWP 1961)]
    QWidget::insertAction: Attempt to insert null action                                                                                                                                                                                                                           
    QWidget::insertAction: Attempt to insert null action                                                                                                                                                                                                                           
    [New Thread 0x7fffcd1c3700 (LWP 1969)]                                                                                                                                                                                                                                         
    [New Thread 0x7fffcc9c2700 (LWP 1970)]                                                                                                                                                                                                                                         
    [New Thread 0x7fffbe8ef700 (LWP 1992)]                                                                                                                                                                                                                                         
    "/org/freedesktop/UDisks2/drives/Hitachi_HTS727575A9E364_J3740084HMD0LE" : property "Drive" does not exist                                                                                                                                                                     
    "/org/freedesktop/UDisks2/drives/WDC_WD5000BEVT_80A0RT0_WD_WXA1C20F2908" : property "Drive" does not exist                                                                                                                                                                     
    "/org/freedesktop/UDisks2/drives/Slimtype_DVD_A__DS8A8SH_3208583_6A6224402423" : property "Drive" does not exist                                                                                                                                                               
    "/org/freedesktop/UDisks2/drives/SAMSUNG_SSD_830_Series_S0Z3NEAC826732" : property "Drive" does not exist                                                                                                                                                                     
    "/org/freedesktop/UDisks2/drives/Hitachi_HTS727575A9E364_J3740084HMD0LE" : property "DeviceNumber" does not exist                                                                                                                                                             
    "/org/freedesktop/UDisks2/drives/Hitachi_HTS727575A9E364_J3740084HMD0LE" : property "Device" does not exist                                                                                                                                                                   
    "/org/freedesktop/UDisks2/drives/SAMSUNG_SSD_830_Series_S0Z3NEAC826732" : property "DeviceNumber" does not exist                                                                                                                                                               
    "/org/freedesktop/UDisks2/drives/SAMSUNG_SSD_830_Series_S0Z3NEAC826732" : property "Device" does not exist                                                                                                                                                                     
    "/org/freedesktop/UDisks2/drives/WDC_WD5000BEVT_80A0RT0_WD_WXA1C20F2908" : property "DeviceNumber" does not exist                                                                                                                                                             
    "/org/freedesktop/UDisks2/drives/WDC_WD5000BEVT_80A0RT0_WD_WXA1C20F2908" : property "Device" does not exist                                                                                                                                                                   
    [New Thread 0x7fffbe0ee700 (LWP 2004)]                                                                                                                                                                                                                                         
    [Thread 0x7fffcd1c3700 (LWP 1969) exited]                                                                                                                                                                                                                                     
    [Thread 0x7fffcc9c2700 (LWP 1970) exited]                                                                                                                                                                                                                                     
    [New Thread 0x7fffcc9c2700 (LWP 2005)]                                                                                                                                                                                                                                         
    [New Thread 0x7fffcd1c3700 (LWP 2006)]                                                                                                                                                                                                                                         
    Program received signal SIGSEGV, Segmentation fault.                                                                                                                                                                                                                           
    [Switching to Thread 0x7fffbe0ee700 (LWP 2004)]                                                                                                                                                                                                                               
    0x0000000000000000 in ?? ()
    OpenShot:
    Starting program: /usr/bin/python /usr/lib/python2.7/site-packages/openshot/openshot.py
    warning: Could not load shared library symbols for linux-vdso.so.1.
    Do you need "set solib-search-path" or "set sysroot"?
    [Thread debugging using libthread_db enabled]
    Using host libthread_db library "/usr/lib/libthread_db.so.1".
      File "/usr/lib/python2.7/site-packages/openshot/openshot.py", line 29
        print "Error: You must have GTK 2.18 or greater to run OpenShot.  Exiting..."
                                                                                    ^
    SyntaxError: invalid syntax
    [Inferior 1 (process 3557) exited with code 01]
    I found this. It looks like a similar problem

  • Safari 2.0.4 crash after transferring all files

    Hello
    I bought a new iMac so i transferred all my files using FireWire cable. All the apps are working fine except Safari which is crashing every time i run it. I installed Safari 3 BETA and its working great, but i still want to use my old version.
    Safari 2.0.4 (419.03) is it ok to post the crash log here?
    Thanks in advance

    Hello
    I did what you said and the Safari problem is on the new account as well.
    Here is the crashing log.
    Date/Time: 2007-09-10 13:03:29.137 -0400
    OS Version: 10.4.10 (Build 8R4031)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [477]
    Version: 2.0.4 (419.3)
    Build Version: 33
    Project Name: WebBrowser
    Source Version: 4190300
    PID: 1119
    Thread: 4
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x776f6873
    Thread 0:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d2b3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082cace CFRunLoopRunInMode + 61
    3 com.apple.HIToolbox 0x92df29b8 RunCurrentEventLoopInMode + 285
    4 com.apple.HIToolbox 0x92df20c2 ReceiveNextEventCommon + 385
    5 com.apple.HIToolbox 0x92df1f19 BlockUntilNextEventMatchingListInMode + 81
    6 com.apple.AppKit 0x93279465 _DPSNextEvent + 572
    7 com.apple.AppKit 0x93279056 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 137
    8 com.apple.Safari 0x00006cea 0x1000 + 23786
    9 com.apple.AppKit 0x93272ddb -[NSApplication run] + 512
    10 com.apple.AppKit 0x93266d2f NSApplicationMain + 573
    11 com.apple.Safari 0x0005f54a 0x1000 + 386378
    12 com.apple.Safari 0x0005f471 0x1000 + 386161
    Thread 1:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.unsanity.ape 0xc0001d48 _apeagent + 307
    2 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 2:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d2b3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082cace CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x9282ad3a -[NSRunLoop runMode:beforeDate:] + 182
    4 com.apple.Foundation 0x9282ac36 -[NSRunLoop run] + 75
    5 com.apple.WebKit 0x95302d29 +[WebFileDatabase _syncLoop:] + 198
    6 com.apple.Foundation 0x927f52e0 forkThreadForFunction + 123
    7 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 3:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 libGLProgrammability.dylib 0x941a5a4f glvmDoWork + 150
    2 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 4 Crashed:
    0 libobjc.A.dylib 0x90a594c7 objc_msgSend + 23
    1 com.apple.Foundation 0x9285758d -[NSHTTPURLProtocol retryWithRedirectedURLAndResultCode:] + 672
    2 com.apple.Foundation 0x928572e1 -[NSConnectionHTTPURLProtocol attemptRetryAfter3xxResponse] + 741
    3 com.apple.Foundation 0x92945047 -[NSConnectionHTTPURLProtocol performHTTPHeaderRead] + 827
    4 com.apple.Foundation 0x928568a9 readStreamCallback2 + 84
    5 com.apple.CoreFoundation 0x9087ab72 _CFStreamSignalEventSynch + 281
    6 com.apple.CoreFoundation 0x9082cf92 CFRunLoopRunSpecific + 1213
    7 com.apple.CoreFoundation 0x9082cace CFRunLoopRunInMode + 61
    8 com.apple.Foundation 0x9282aa0f +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 259
    9 com.apple.Foundation 0x927f52e0 forkThreadForFunction + 123
    10 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 5:
    0 libSystem.B.dylib 0x9001a1cc select + 12
    1 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 6:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d2b3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082cace CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x92851bc2 +[NSURLCache _diskCacheSyncLoop:] + 206
    4 com.apple.Foundation 0x927f52e0 forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 7:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.apple.Foundation 0x9284b26c -[NSConditionLock lockWhenCondition:] + 39
    2 com.apple.Syndication 0x9a7ab966 -[AsyncDB _run:] + 181
    3 com.apple.Foundation 0x927f52e0 forkThreadForFunction + 123
    4 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 4 crashed with X86 Thread State (32-bit):
    eax: 0x776f6873 ebx: 0x928586ea ecx: 0x90ac80a4 edx: 0x1ab269f0
    edi: 0x776f687b esi: 0x1ab419b0 ebp: 0xb0322778 esp: 0xb0322724
    ss: 0x0000001f efl: 0x00010206 eip: 0x90a594c7 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    Binary Images Description:
    0x1000 - 0xdbfff com.apple.Safari 2.0.4 (419.3) /Applications/Safari.app/Contents/MacOS/Safari
    0x1cc000 - 0x1d1fff com.unsanity.mightymouse 1.3 (128) /Users/Khaled/Library/Application Enhancers/Mighty Mouse.ape/Contents/MacOS/Mighty Mouse
    0x1d9000 - 0x1f0fff com.unsanity.shapeshifter 2.4 /Users/Khaled/Library/Application Enhancers/ShapeShifter.ape/Contents/PlugIns/CocoaStuff.plugIn/Contents/MacOS/Co coaStuff
    0x305000 - 0x334fff com.unsanity.shapeshifter 2.4 /Users/Khaled/Library/Application Enhancers/ShapeShifter.ape/Contents/MacOS/ShapeShifter
    0x505000 - 0x51bfff com.unsanity.silk 2.1.3 /Users/Khaled/Library/Application Enhancers/Silk.ape/Contents/MacOS/Silk
    0x797000 - 0x797fff com.piclens.plugin ??? (0.1.1) /Library/InputManagers/PicLens/PicLens.bundle/Contents/MacOS/PicLens
    0x79c000 - 0x7b9fff GLRendererFloat /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x1215000 - 0x1230fff com.piclens.plugincore ??? (0.1.1) /Library/InputManagers/PicLens/PicLens.bundle/Contents/PlugIns/PicLensCore.bund le/Contents/MacOS/PicLensCore
    0x1243000 - 0x13acfff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x13da000 - 0x160bfff com.apple.ATIRadeonX2000GLDriver 1.5.6 (5.0.6) /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0x1777000 - 0x177afff eu.willmore.UnifyCamino UnifyCamino v1.0 (1.0) /Users/Khaled/Library/InputManagers/UnifyCamino/UnifyCamino.bundle/Contents/Mac OS/UnifyCamino
    0x178f000 - 0x1796fff com.unsanity.smartcrashreports Smart Crash Reports version 1.2 (1.2) /Users/Khaled/Library/InputManagers/Smart Crash Reports/Smart Crash Reports.bundle/Contents/MacOS/Smart Crash Reports
    0x17a1000 - 0x17d9fff com.cocoamug.CosmoPod ??? (1.8) /Users/Khaled/Library/InputManagers/CosmoPod/CosmoPod.bundle/Contents/MacOS/Cos moPod
    0x15c05000 - 0x15c76fff com.DivXInc.DivXDecoder 6.2.5 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x15c84000 - 0x15cd4fff com.DivXInc.DivXDecoder 6.0.5 /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x15e05000 - 0x15ea2fff com.apple.QuickTimeImporters.component 7.2 /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x18417000 - 0x18417fff com.growl.GrowlSafariLoader 1.0 (1.1) /Library/InputManagers/GrowlSafari/GrowlSafariLoader.bundle/Contents/MacOS/Grow lSafariLoader
    0x1843d000 - 0x1843dfff org.xlife.InquisitorLoader 3.0 (34) /Users/Khaled/Library/InputManagers/Inquisitor/Inquisitor.bundle/Contents/MacOS /Inquisitor
    0x18442000 - 0x1845ffff org.xlife.InquisitorCore 3.0 (34) /Users/Khaled/Library/InputManagers/Inquisitor/Inquisitor.bundle/Contents/Resou rces/InquisitorCore.bundle/Contents/MacOS/InquisitorCore
    0x18472000 - 0x18474fff com.google.GoogleModLoader 1.0.0 (1.0.0.27) /Library/InputManagers/GoogleModLoader/GoogleModLoader.bundle/Contents/MacOS/Go ogleModLoader
    0x18479000 - 0x18480fff com.google.Desktop.SafariSearchResultsMod 1.1.0 (1.1.0.520) /Library/Application Support/Google/Mods/SafariSearchResults.gmod/Contents/MacOS/SafariSearchResults
    0x18489000 - 0x18493fff com.google.Desktop.SafariWebHistoryMod 1.1.0 (1.1.0.520) /Library/Application Support/Google/Mods/SafariWebHistory.gmod/Contents/MacOS/SafariWebHistory
    0x184ac000 - 0x184aefff com.growl.GrowlSafari GrowlSafari v1.0
    Copyright © The Growl Project, 2004-2005 (1.1) /Library/InputManagers/GrowlSafari/GrowlSafariLoader.bundle/Contents/PlugIns/Gr owlSafari.bundle/Contents/MacOS/GrowlSafari
    0x184b3000 - 0x184bcfff com.growl.growlframework 1.1 /Library/InputManagers/GrowlSafari/GrowlSafariLoader.bundle/Contents/PlugIns/Gr owlSafari.bundle/Contents/Frameworks/Growl.framework/Growl
    0x8fe00000 - 0x8fe4afff dyld 46.12 /usr/lib/dyld
    0x90000000 - 0x90171fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c1000 - 0x901c3fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c5000 - 0x90202fff com.apple.CoreText 1.1.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90229000 - 0x902fffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9031f000 - 0x90774fff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9080b000 - 0x908d3fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90911000 - 0x90911fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90913000 - 0x90a07fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a57000 - 0x90ad6fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aff000 - 0x90b63fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bd2000 - 0x90bd9fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bde000 - 0x90c51fff com.apple.framework.IOKit 1.4.8 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c66000 - 0x90c78fff libauto.dylib /usr/lib/libauto.dylib
    0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore 682.26 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f67000 - 0x90fcffff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91008000 - 0x91047fff com.apple.CFNetwork 129.21 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9105a000 - 0x9106afff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91075000 - 0x910f4fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9112e000 - 0x9114cfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91158000 - 0x91166fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91169000 - 0x91308fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91406000 - 0x9140efff com.apple.DiskArbitration 2.1.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91415000 - 0x9141cfff libbsm.dylib /usr/lib/libbsm.dylib
    0x91420000 - 0x91446fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91458000 - 0x914cefff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9151f000 - 0x9151ffff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91521000 - 0x9154dfff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91560000 - 0x91634fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166f000 - 0x916e2fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91710000 - 0x917b9fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917df000 - 0x9182afff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91849000 - 0x9185ffff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9186b000 - 0x91886fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91891000 - 0x918cefff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918e2000 - 0x918eefff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918f5000 - 0x91935fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91948000 - 0x919fafff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a40000 - 0x91a56fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a5b000 - 0x91a79fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a7e000 - 0x91addfff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91aef000 - 0x91af3fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91af5000 - 0x91b7bfff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b7f000 - 0x91bbcfff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91bc2000 - 0x91bdcfff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91be1000 - 0x91be3fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91be5000 - 0x91cc3fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91ce0000 - 0x91ce0fff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91ce2000 - 0x91d70fff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d77000 - 0x91d77fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91d79000 - 0x91dd2fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91ddb000 - 0x91dfffff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91e07000 - 0x92210fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9224a000 - 0x925fefff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9262b000 - 0x92718fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x9271a000 - 0x92797fff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x927d8000 - 0x92a08fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b22000 - 0x92b3dfff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b49000 - 0x92ba1fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92bb5000 - 0x92bb5fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92bb7000 - 0x92bc7fff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bd6000 - 0x92bdefff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92be4000 - 0x92beafff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92bf0000 - 0x92c81fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c95000 - 0x92c99fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c9c000 - 0x92cbafff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92ccc000 - 0x92cd2fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92cd8000 - 0x92d3bfff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d62000 - 0x92da3fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92dca000 - 0x92dd8fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92ddf000 - 0x92de4fff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92de9000 - 0x930defff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931e4000 - 0x931f0fff com.apple.opengl 1.5.1 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x931f5000 - 0x93210fff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93260000 - 0x93260fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93262000 - 0x93918fff com.apple.AppKit 6.4.9 (824.44) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93c99000 - 0x93d14fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d4d000 - 0x93e07fff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e4a000 - 0x93e4afff com.apple.audio.units.AudioUnit 1.4.3 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e4c000 - 0x9400dfff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94053000 - 0x94094fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9409c000 - 0x940dffff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x940e3000 - 0x940f9fff com.apple.CoreVideo 1.4.1 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94108000 - 0x945c4fff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x94748000 - 0x94786fff com.apple.vmutils 4.0.2 (93.1) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x947ca000 - 0x947dbfff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x947e9000 - 0x94827fff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94843000 - 0x94852fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94859000 - 0x94864fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x948b0000 - 0x948cafff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x948d0000 - 0x94bd9fff com.apple.QuickTime 7.2.0 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94d5c000 - 0x94ea2fff com.apple.AddressBook.framework 4.0.5 (487) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94f2e000 - 0x94f3dfff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94f44000 - 0x94f6dfff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94f73000 - 0x94f82fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94f86000 - 0x94fabfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94fb7000 - 0x94fd4fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x952d5000 - 0x952f9fff libcurl.3.dylib /usr/lib/libcurl.3.dylib
    0x95300000 - 0x95393fff com.apple.WebKit 419.2.1 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x953ed000 - 0x9546ffff com.apple.JavaScriptCore 418.5 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x954a8000 - 0x95787fff com.apple.WebCore 418.22.2 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95bc2000 - 0x95bc7fff com.apple.agl 2.6.2 (AGL-2.6.2) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x95bcb000 - 0x95beefff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x95d88000 - 0x95e08fff com.apple.QTKit 7.2 /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x95e47000 - 0x95e69fff com.apple.CoreMediaPrivate 1.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x95e76000 - 0x95eb2fff com.apple.CoreMediaIOServicesPrivate 1.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x96931000 - 0x969c1fff libcrypto.0.9.dylib /usr/lib/libcrypto.0.9.dylib
    0x96e63000 - 0x96e63fff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x986ff000 - 0x99565fff com.apple.QuickTimeComponents.component 7.2 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9a7a9000 - 0x9a7e0fff com.apple.Syndication 1.0.6 (54) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9a7fc000 - 0x9a80efff com.apple.SyndicationUI 1.0.6 (54) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0xc0000000 - 0xc000efff com.unsanity.ape 2.0.3 /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhance r
    Model: iMac7,1, BootROM IM71.007A.B00, 2 processors, Intel Core 2 Duo, 2.4 GHz, 2 GB
    Graphics: ATI Radeon HD 2600 Pro, ATI,RadeonHD2600, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 1 GB, DDR2 SDRAM, 667 MHz
    Memory Module: BANK 1/DIMM1, 1 GB, DDR2 SDRAM, 667 MHz
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x88), Broadcom BCM43xx 1.0 (4.150.19.0)
    Bluetooth: Version 1.9.1f18, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: WDC WD5000AAKS-40TMA0, 465.76 GB
    Parallel ATA Device: MATSHITADVD-R UJ-85J
    USB Device: Built-in iSight, Apple Inc., Up to 480 Mb/sec, 500 mA
    USB Device: Keyboard Hub, Apple, Inc., Up to 480 Mb/sec, 500 mA
    USB Device: Apple Keyboard, Apple, Inc, Up to 1.5 Mb/sec, 100 mA
    USB Device: iPhone, Apple Inc., Up to 480 Mb/sec, 500 mA
    USB Device: ImageMate 14 in 1 Reader/Writer, SanDisk, Up to 480 Mb/sec, 500 mA
    USB Device: IR Receiver, Apple Computer, Inc., Up to 1.5 Mb/sec, 500 mA
    USB Device: Bluetooth USB Host Controller, Apple, Inc., Up to 12 Mb/sec, 500 mA

  • Adobe CS6 crashes after opening a file authored in CC but saved in CS6 format

    I generally create my project assignments for school on the Mac side of my computer (10.9) using Adobe CC 17.1 (latest version).  However, if I am not done, and need to do my normal job, I just bootcamp over to Windows 7, and use CC there to finish the job.
    I then save the AI file in CS6 format via CC, and submit it to my instructor.  However, in both instances (both projects I submitted tha were converted to CS6), they wouldn't open on my instructors  Mac CS6 client.  No error showed up, nothing froze, Adobe CS6 just showed the splash screen, then closed.  Nothing else.  She was able to view them in another reader, but of course, that causes issues.
    Normally the workflow is like this:
    My Mac (10.9):  Open CC Illustrator, and design the work.
    My Windows 7 (Bootcamp):  Open saved CC AI file and continue work.
    ------(same system):  Save CC AI file as CS6 (on windows or mac, either one has producted this result)
    Submit to instructor.
    Instructor opens on CS6 on her Mac, and it just will not open.
    I am wondering if perhaps there is a conversion issue between CC on Mac side, and opening it on CC windows side, and then saving it.
    I may have more information, assuming my instructor provides some more details about her mac, etc.  But, right now, that's all I have.

    Is there anything in Event viewer that might provide a clue? Are you using the same font manager/font server on all systems that you tried to open the file?  Any possibility of trying to open on a Mac, where we might be able to get a real crash report? (I'm on Windows as well.) :(  Try setting the prefs to not check links on open and see if that makes a difference, and uninstall any font activation plugin if you have one. I don't use a font' manager here -- never found one I thought was any good that I could make work with my system (Font Agent Pro was a candidate, but didn't like my user profiles being on drive D:).

  • Numbers in ipad crashes after deleting a file

    when i try to delete a file from my numbers on ipad it crashes and i am forced to reset the engine. the app is updated. i reinstalled it. no result.

    Apple’s iWork Team investigated the problem and subsequently asked me to check Accessibility settings and turn “Bold Text” OFF if it was set to ON. It was set to ON in my case. Turning “Bold Text” OFF fixed the problem. My iPad3 no longer freezes when deleting or renaming documents and spreadsheets.
    Here’s how to do this if you want to give it a try:  Open the “Settings” app. Select “General” tab if it isn’t already selected. Open “Accessibility” page. The “Bold Text” option is ON if its switch is green. Turning it OFF will reset the iPad. Let us know if this works for you.

Maybe you are looking for

  • SCVMM Service (2012) does not start after reboot VMM-Server

    VMM-Server: WIN 2008 R2 Standard x64 SQL-Server: 2008 R2 x64 Hi, after reboot VMM-Server we get the following error messages from the EventViewer when starting the VMM-service: Event ID: 19999 Virtual Machine Manager (vmmservice:130936) has encounter

  • Can I Use Game Center With Another iPad User?

    Am I able to play a game simultaneously with another iPad user by using game center? For example, can we play a hangman game against each other from different locations if we do it through game center? And if so, how? Thank you.

  • Titles-Clips-Audio

    I have a movie clip with audio. I then paste at playhead a still photo clip of 11:20 length. I do and everything is fine. NOW I want to add a Scrolling Title. I type in my block of words the clip photo is rendered and it now becomes 20:01 in length a

  • Why can't I crop movie in iMovie?

    I created a new project, imported the movie, but there is no option to crop in the timeline. How can I crop the movie?

  • How determine album site of a photo in iphoto library?

    I have a collection of about 10,000 photos, many of them vintage from scans, and desperately need to know the multiple album locations of each one. One reason for this need is if I determine the ancestory for a particular individual is not as first t