Sending set layer font event causing crash

I have code in a plugin that sets the font for the currently selected layers (attached below). It's almost identical to what was emitted from the Listener plugin. It works great when one or more layers are selected, but if you deselect all layers in the layers palette then this call crashes somewhere inside the call to Play the event (crash log below).
Is there a way to guard against sending this event when no layers are selected? Any way to find which layers are selected in the layers palette? Also it seems selection events are sent when a layer is selected but not when it's deselected.
I tried using JavaScript to set the font using:
app.activeDocument.activeLayer.textItem.font = postscriptName;
This works for singly selected layers but the activeLayer property only returns the top-most selected layer in the layers palette (unless it's a layerSet, but I specifically want to handle multiple selected layers). If no layers are selected then the activeLayer property returns the top-most layer rather than null, which seems counterintuitive.
Any ideas or solutions are most appreciated.
Regards,
  Mike
SPErr PhotoshopFontUtils::PlayeventSetObjectFont(char *postscriptName)
    PIActionDescriptor result = NULL;
    DescriptorTypeID runtimeKeyID = 0;
    SPErr error = kSPNoError;
    PIActionDescriptor descSet = NULL;
    PIActionReference descStyle = NULL;
    PIActionDescriptor descFont = NULL;
    error = sPSActionDescriptor->Make(&descSet);
    if (error) goto returnError;
    error = sPSActionReference->Make(&descStyle);
    if (error) goto returnError;
    error = sPSActionReference->PutProperty(descStyle, classProperty, keyTextStyle);
    if (error) goto returnError;
    error = sPSActionReference->PutEnumerated(descStyle, classTextLayer, typeOrdinal, enumTarget);
    if (error) goto returnError;
    error = sPSActionDescriptor->PutReference(descSet, keyNull, descStyle);
    if (error) goto returnError;
    error = sPSActionDescriptor->Make(&descFont);
    if (error) goto returnError;
    error = sPSActionControl->StringIDToTypeID((char*)kfontPostScriptNameStr, &runtimeKeyID);
    if (error) goto returnError;
    error = sPSActionDescriptor->PutString(descFont, runtimeKeyID, postscriptName);
    if (error) goto returnError;
    error = sPSActionDescriptor->PutString(descFont, keyFontName, postscriptName);
    if (error) goto returnError;
    error = sPSActionDescriptor->PutObject(descSet, keyTo, classTextStyle, descFont);
    if (error) goto returnError;
    error = sPSActionControl->Play(&result, eventSet, descSet, plugInDialogSilent);
    if (error) goto returnError;
returnError:
    if (result != NULL) sPSActionDescriptor->Free(result);
    if (descSet != NULL) sPSActionDescriptor->Free(descSet);
    if (descStyle != NULL) sPSActionReference->Free(descStyle);
    if (descFont != NULL) sPSActionDescriptor->Free(descFont);
    return error;
Crash log:
Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
Crashed Thread:  0  Main Thread  Dispatch queue: com.apple.main-thread
Thread 0 Crashed:  Main Thread  Dispatch queue: com.apple.main-thread
0   com.adobe.Photoshop           0x0000000100872054 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 5856272
1   com.adobe.Photoshop           0x000000010087268e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 5857866
2   com.adobe.Photoshop           0x00000001008d74b9 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6271093
3   com.adobe.Photoshop           0x0000000100ae220c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 8412616
4   com.adobe.Photoshop           0x0000000100ae272c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 8413928
5   com.adobe.Photoshop           0x0000000100266be3 0x100000000 + 2517987
6   com.adobe.Photoshop           0x0000000100267a6b 0x100000000 + 2521707
7   com.adobe.Photoshop           0x000000010007aeaf 0x100000000 + 503471
8   com.adobe.Photoshop           0x000000010007aef4 0x100000000 + 503540
9   com.adobe.Photoshop           0x000000010007aef4 0x100000000 + 503540
10  com.adobe.Photoshop           0x000000010007aef4 0x100000000 + 503540
11  com.adobe.Photoshop           0x000000010007aef4 0x100000000 + 503540
12  com.adobe.Photoshop           0x000000010007aef4 0x100000000 + 503540
13  com.adobe.Photoshop           0x0000000100df37fd AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 11629497
14  com.adobe.Photoshop           0x000000010007aef4 0x100000000 + 503540
15  com.adobe.Photoshop           0x000000010007aef4 0x100000000 + 503540
16  com.adobe.Photoshop           0x000000010007aef4 0x100000000 + 503540
17  com.adobe.Photoshop           0x0000000100548f23 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2542303
18  com.adobe.Photoshop           0x000000010007aef4 0x100000000 + 503540
19  com.adobe.Photoshop           0x000000010024973d 0x100000000 + 2398013
20  com.adobe.Photoshop           0x000000010007115a 0x100000000 + 463194
21  com.adobe.Photoshop           0x0000000100066573 0x100000000 + 419187
22  com.adobe.Photoshop           0x0000000100066636 0x100000000 + 419382
23  com.adobe.Photoshop           0x000000010024ea87 0x100000000 + 2419335
24  com.adobe.Photoshop           0x000000010027831f 0x100000000 + 2589471
25  ...s.AutoActivationPlugin.PS12 0x000000011fbdd67c PhotoshopFontUtils::PlayeventSetObjectFont(char*) + 748 (PhotoshopFontUtils.cpp:151)

I had the exact same problem! This issue was duplicated in iTunes ratings. I had the wierd asian characters instead of bullets (that represent the space where no stars are) I had no Asian fonts in any font folder. If I tried to rate a photo (or a song in iTunes) the application would crash.
My solution has me baffled, but this has worked for me:
Have the Asian font "Hiragino Kaku Gothic Pro" activated. Now I can rate any photo or song without crashing, and the the correct "star" characters show up(and bullets where no stars are.
I totally do not understand why I have to have an Asian font on for this to work. I have repeatedly turned this font off and on, relaunched iTunes or iPhoto, and if the font is not turned on, the iProgram will crash if I try to rate from the menu. Anyone know why?

Similar Messages

  • Editing Event Causes Crash

    When I edit an event (either by double clicking on it or by Command + E) iCal occasionally crashes. By occasionally, I mean about every sixth edit ... launch iCal ... edit an event ... then another and by about the sixth time the spinning beach ball happens and then iCal crashes.
    Anyone else experiencing this with iCal 3.0.1 and OSX 10.5.1?
    Anyone successful in resolving the same?

    I'm having the same issue it seems, its driving me crazy.
    I deleted everything iCal (plists, cashes).
    I started fresh with a brand new calendar (no imports from previous icals).
    When I add meetings in iCal, it works fine but after several entries, I will suddenly get a beachball and iCal will quit. I then restart it. I put in from 5 to 10 entries then crash again.
    I'm really tired of this. No one can tell me its my old database doing this.
    This for sure is a bug with iCal Leopard.
    Console app gives me this :
    3/3/08 3 11:54:04 AM com.apple.launchd[89] ([0x0-0x10b10b].com.apple.iCal[3093]) Exited abnormally: Segmentation fault
    3/3/08 3 11:55:14 AM com.apple.launchd[89] ([0x0-0x10f10f].com.apple.iCal[3110]) Exited abnormally: Segmentation fault
    3/3/08 3 12:00:47 PM com.apple.launchd[89] ([0x0-0x110110].com.apple.iCal[3114]) Exited abnormally: Segmentation fault
    3/3/08 3 12:01:47 PM iCal[3128] Rethrowing NSGenericException: * attempt to allocate id buffer with too large of a count (1099956224) -- possibly data is corrupt
    3/3/08 3 12:01:47 PM iCal[3128] * attempt to allocate id buffer with too large of a count (1099956224) -- possibly data is corrupt
    3/3/08 3 12:01:53 PM iCal[3128] Rethrowing NSGenericException: * attempt to allocate id buffer with too large of a count (1099956224) -- possibly data is corrupt
    3/3/08 3 12:01:53 PM iCal[3128] * attempt to allocate id buffer with too large of a count (1099956224) -- possibly data is corrupt
    3/3/08 3 12:02:02 PM iCal[3128] Rethrowing NSGenericException: * attempt to allocate id buffer with too large of a count (1099956224) -- possibly data is corrupt
    3/3/08 3 12:02:02 PM iCal[3128] * attempt to allocate id buffer with too large of a count (1099956224) -- possibly data is corrupt
    3/3/08 3 12:02:05 PM iCal[3128] Rethrowing NSGenericException: * attempt to allocate id buffer with too large of a count (1099956224) -- possibly data is corrupt
    3/3/08 3 12:02:05 PM iCal[3128] * attempt to allocate id buffer with too large of a count (1099956224) -- possibly data is corrupt

  • "import iMovie events" causes crash?!?

    Downloaded from App store
    Started FCP X from the Doc
    Clicked on "import imovie events" and... CRASH.
    HEEEELP!!!  Below the crash log:
    Process:         Final Cut Pro [1041]
    Path:            /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro
    Identifier:      com.apple.FinalCut
    Version:         10.0 (179114)
    Build Info:      ProEditor-179110400~1
    App Item ID:     424389933
    App External ID: 3491984
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [123]
    Date/Time:       2011-07-02 17:38:22.684 +0100
    OS Version:      Mac OS X 10.6.8 (10K540)
    Report Version:  6
    Interval Since Last Report:          354252 sec
    Crashes Since Last Report:           8
    Per-App Interval Since Last Report:  27 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      D4D15757-46A5-4993-9E6D-EC046149A517
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000001331733f6
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.apple.Flexo                         0x00000001008ef055 DVFormatReaderCreateFromStream + 2757
    1   com.apple.Flexo                         0x00000001008ebab4 -[FFMovieInstanceFig _openMovie] + 308
    2   com.apple.Flexo                         0x00000001008eb60a -[FFMovieInstanceFig initWithURL:] + 106
    3   com.apple.Fig.provider                  0x00000001182b04df 0x1182a5000 + 46303
    4   com.apple.Flexo                         0x0000000100743364 -[FFProvider _sourcesMakeIfNil] + 452
    5   com.apple.Flexo                         0x0000000100742048 -[FFProvider sourceKeys] + 24
    6   com.apple.Flexo                         0x00000001007434f5 -[FFProvider firstVideoSource] + 53
    7   com.apple.Flexo                         0x0000000100743b46 +[FFProvider providerHasValidSourceForURL:] + 182
    8   com.apple.Flexo                         0x0000000100d63d6b -[FFMediaEventProjectData newAnchoredSequenceFromURL:manageFileType:keywords:validateFiles:] + 811
    9   com.apple.Flexo                         0x0000000100d650a5 -[FFMediaEventProjectData addClipsFromURLs:manageFileType:processNow:warnClipsAlreadyExist:isImportingFro mImovie:keywordSets:validateFiles:] + 485
    10  com.apple.Flexo                         0x0000000100bcfff1 -[FFIMovieImporter newImportMediaWithURL:pathPtr:error:] + 1505
    11  com.apple.Flexo                         0x0000000100bcf478 -[FFIMovieImporter importToEventWithDisplayName:error:] + 408
    12  com.apple.Flexo                         0x0000000100bd12a1 +[FFIMovieImporter actionImportWithURL:project:event:error:] + 481
    13  com.apple.FinalCut                      0x0000000100033ecd -[PEAppController importEventDirectory:withProgress:] + 605
    14  com.apple.FinalCut                      0x0000000100033a4a -[PEAppController eventImportAlertDidEnd:returnCode:contextInfo:] + 250
    15  com.apple.AppKit                        0x00007fff81ac0156 -[NSAlert didEndAlert:returnCode:contextInfo:] + 107
    16  com.apple.AppKit                        0x00007fff81aadd45 -[NSApplication endSheet:returnCode:] + 321
    17  com.apple.AppKit                        0x00007fff81aa7170 -[NSAlert buttonPressed:] + 264
    18  com.apple.AppKit                        0x00007fff819bfeda -[NSApplication sendAction:to:from:] + 95
    19  com.apple.prokit                        0x00000001002f77ed -[NSProApplication sendAction:to:from:] + 100
    20  com.apple.Flexo                         0x00000001008c6028 -[FFApplication sendAction:to:from:] + 104
    21  com.apple.AppKit                        0x00007fff819bfe39 -[NSControl sendAction:to:] + 94
    22  com.apple.AppKit                        0x00007fff81a4b84b -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1715
    23  com.apple.AppKit                        0x00007fff81a7c37a -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 555
    24  com.apple.AppKit                        0x00007fff81a4a2f5 -[NSControl mouseDown:] + 624
    25  com.apple.AppKit                        0x00007fff819643a7 -[NSWindow sendEvent:] + 5409
    26  com.apple.AppKit                        0x00007fff81899afa -[NSApplication sendEvent:] + 4719
    27  com.apple.prokit                        0x00000001002f8f48 -[NSProApplication sendEvent:] + 1634
    28  com.apple.Flexo                         0x00000001008c5943 -[FFApplication sendEvent:] + 483
    29  com.apple.AppKit                        0x00007fff818306de -[NSApplication run] + 474
    30  com.apple.prokit                        0x00000001002fa04b NSProApplicationMain + 267
    31  com.apple.FinalCut                      0x0000000100002138 start + 52
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff84133c0a kevent + 10
    1   libSystem.B.dylib                       0x00007fff84135add _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff841357b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff841352de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff84134c08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff84134aa5 start_wqthread + 13
    Thread 2:  Dispatch queue: com.apple.root.low-priority
    0   libSystem.B.dylib                       0x00007fff84133c0a kevent + 10
    1   com.apple.Flexo                         0x00000001009afcac __-[FFStorageManager _createKernelQueue]_block_invoke_1 + 28
    2   libSystem.B.dylib                       0x00007fff84156d64 _dispatch_call_block_and_release + 15
    3   libSystem.B.dylib                       0x00007fff841352d1 _dispatch_worker_thread2 + 239
    4   libSystem.B.dylib                       0x00007fff84134c08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff84134aa5 start_wqthread + 13
    Thread 3:
    0   libSystem.B.dylib                       0x00007fff84155a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff84159881 _pthread_cond_wait + 1286
    2   com.apple.progl.framework               0x00000001028a17ea (anonymous namespace)::threadFunc(void*) + 70
    3   com.apple.procore.framework             0x00000001001594fc PCThread::startup(void*) + 18
    4   libSystem.B.dylib                       0x00007fff84153fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff84153e89 thread_start + 13
    Thread 4:  com.apple.flexo.throttled-scheduled-io
    0   libSystem.B.dylib                       0x00007fff84155a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff84159881 _pthread_cond_wait + 1286
    2   com.apple.Flexo                         0x0000000100872858 Synchronizable::Wait() + 56
    3   com.apple.Fig.provider                  0x00000001182d20a8 0x1182a5000 + 184488
    4   com.apple.Flexo                         0x000000010087b65a Thread::RunHelper(void*) + 42
    5   libSystem.B.dylib                       0x00007fff84153fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff84153e89 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib                       0x00007fff84155a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff84159881 _pthread_cond_wait + 1286
    2   com.apple.CoreVideo                     0x00007fff891e5342 CVDisplayLink::runIOThread() + 804
    3   com.apple.CoreVideo                     0x00007fff891e4fe3 startIOThread(void*) + 139
    4   libSystem.B.dylib                       0x00007fff84153fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff84153e89 thread_start + 13
    Thread 6:  MIO Mounting Thread
    0   libSystem.B.dylib                       0x00007fff8411adda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff84159772 _pthread_cond_wait + 1015
    2   com.apple.Foundation                    0x00007fff856d8fa3 -[NSCondition waitUntilDate:] + 399
    3   com.apple.Foundation                    0x00007fff856cc122 -[NSConditionLock lockWhenCondition:beforeDate:] + 238
    4   com.apple.proapps.MIO                   0x00000001015c989c -[PluginLockPair scanPaths] + 284
    5   com.apple.Foundation                    0x00007fff8569f204 __NSThread__main__ + 1429
    6   libSystem.B.dylib                       0x00007fff84153fd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff84153e89 thread_start + 13
    Thread 7:  MIO Mounting Thread
    0   libSystem.B.dylib                       0x00007fff8411adda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff84159772 _pthread_cond_wait + 1015
    2   com.apple.Foundation                    0x00007fff856d8fa3 -[NSCondition waitUntilDate:] + 399
    3   com.apple.Foundation                    0x00007fff856cc122 -[NSConditionLock lockWhenCondition:beforeDate:] + 238
    4   com.apple.proapps.MIO                   0x00000001015c989c -[PluginLockPair scanPaths] + 284
    5   com.apple.Foundation                    0x00007fff8569f204 __NSThread__main__ + 1429
    6   libSystem.B.dylib                       0x00007fff84153fd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff84153e89 thread_start + 13
    Thread 8:  MIO Mounting Thread
    0   libSystem.B.dylib                       0x00007fff8411adda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff84159772 _pthread_cond_wait + 1015
    2   com.apple.Foundation                    0x00007fff856d8fa3 -[NSCondition waitUntilDate:] + 399
    3   com.apple.Foundation                    0x00007fff856cc122 -[NSConditionLock lockWhenCondition:beforeDate:] + 238
    4   com.apple.proapps.MIO                   0x00000001015c989c -[PluginLockPair scanPaths] + 284
    5   com.apple.Foundation                    0x00007fff8569f204 __NSThread__main__ + 1429
    6   libSystem.B.dylib                       0x00007fff84153fd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff84153e89 thread_start + 13
    Thread 9:  MIO Mounting Thread
    0   libSystem.B.dylib                       0x00007fff8411adda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff84159772 _pthread_cond_wait + 1015
    2   com.apple.Foundation                    0x00007fff856d8fa3 -[NSCondition waitUntilDate:] + 399
    3   com.apple.Foundation                    0x00007fff856cc122 -[NSConditionLock lockWhenCondition:beforeDate:] + 238
    4   com.apple.proapps.MIO                   0x00000001015c989c -[PluginLockPair scanPaths] + 284
    5   com.apple.Foundation                    0x00007fff8569f204 __NSThread__main__ + 1429
    6   libSystem.B.dylib                       0x00007fff84153fd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff84153e89 thread_start + 13
    Thread 10:  MIO Mounting Thread
    0   libSystem.B.dylib                       0x00007fff8411adda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff84159772 _pthread_cond_wait + 1015
    2   com.apple.Foundation                    0x00007fff856d8fa3 -[NSCondition waitUntilDate:] + 399
    3   com.apple.Foundation                    0x00007fff856cc122 -[NSConditionLock lockWhenCondition:beforeDate:] + 238
    4   com.apple.proapps.MIO                   0x00000001015c989c -[PluginLockPair scanPaths] + 284
    5   com.apple.Foundation                    0x00007fff8569f204 __NSThread__main__ + 1429
    6   libSystem.B.dylib                       0x00007fff84153fd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff84153e89 thread_start + 13
    Thread 11:  com.apple.dvdplayback-DDPTask
    0   libSystem.B.dylib                       0x00007fff8411adb6 semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin                   0x000000013a3dfeb7 semaphore_wait(viona_semaphore_t*) + 55
    2   com.apple.AVCHDPlugin                   0x000000013a3ed460 WinPortServer::ProcessMessages() + 768
    3   com.apple.AVCHDPlugin                   0x000000013a3718a3 DDP_Init + 723
    4   com.apple.AVCHDPlugin                   0x000000013a3df6c0 ST20Thread::Run(PThreadRunParams*) + 32
    5   libSystem.B.dylib                       0x00007fff841f629a _pthread_body + 24
    Thread 12:
    0   libSystem.B.dylib                       0x00007fff8411ad7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff8411b3ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff89747932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff89746dbf CFRunLoopRunSpecific + 575
    4   com.apple.CoreFoundation                0x00007fff89746b46 CFRunLoopRun + 70
    5   com.apple.qmaster.do                    0x000000013f03d439 swamp::CRAdReceiver2::ReceivingThread::runOnce() + 187
    6   com.apple.AECore                        0x000000011868cca5 aecore::CThread::runThread() + 35
    7   com.apple.AECore                        0x000000011868ac8a threadProc(void*) + 9
    8   libSystem.B.dylib                       0x00007fff84153fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff84153e89 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib                       0x00007fff8415e932 select$DARWIN_EXTSN + 10
    1   com.apple.AECore                        0x000000011868ccd2 aecore::CThread::runThread() + 80
    2   com.apple.AECore                        0x000000011868ac8a threadProc(void*) + 9
    3   libSystem.B.dylib                       0x00007fff84153fd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff84153e89 thread_start + 13
    Thread 14:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x00007fff8415e932 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x00007fff89769498 __CFSocketManager + 824
    2   libSystem.B.dylib                       0x00007fff84153fd6 _pthread_start + 331
    3   libSystem.B.dylib                       0x00007fff84153e89 thread_start + 13
    Thread 15:  BGTask: FFThumbnailRequestManager  Dispatch queue: com.apple.root.default-priority
    0   libSystem.B.dylib                       0x00007fff84155a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff84159881 _pthread_cond_wait + 1286
    2   com.apple.Foundation                    0x00007fff856c8b6a -[NSCondition wait] + 277
    3   com.apple.Flexo                         0x000000010083df78 -[FFSharedLock _readLock:] + 248
    4   com.apple.Flexo                         0x000000010085c6fc -[FFThumbnailRequest setVideoImageMD5:] + 60
    5   com.apple.Flexo                         0x0000000100bc0f99 -[FFThumbnailRequestManager _backgroundTask:onTask:] + 3497
    6   com.apple.Flexo                         0x0000000100839fdb -[FFBackgroundTask main] + 331
    7   com.apple.Foundation                    0x00007fff856c7ec0 -[__NSOperationInternal start] + 681
    8   com.apple.Foundation                    0x00007fff857a5c59 ____NSOQSchedule_block_invoke_2 + 129
    9   libSystem.B.dylib                       0x00007fff84156d64 _dispatch_call_block_and_release + 15
    10  libSystem.B.dylib                       0x00007fff841352d1 _dispatch_worker_thread2 + 239
    11  libSystem.B.dylib                       0x00007fff84134c08 _pthread_wqthread + 353
    12  libSystem.B.dylib                       0x00007fff84134aa5 start_wqthread + 13
    Thread 16:  BGTask: FFThumbnailGenerator  Dispatch queue: com.apple.root.default-priority
    0   libSystem.B.dylib                       0x00007fff84155a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff84159881 _pthread_cond_wait + 1286
    2   com.apple.Foundation                    0x00007fff856c8b6a -[NSCondition wait] + 277
    3   com.apple.Flexo                         0x0000000100bb55d8 -[FFThumbnailGenerator _backgroundTask:onTask:] + 3080
    4   com.apple.Flexo                         0x0000000100839fdb -[FFBackgroundTask main] + 331
    5   com.apple.Foundation                    0x00007fff856c7ec0 -[__NSOperationInternal start] + 681
    6   com.apple.Foundation                    0x00007fff857a5c59 ____NSOQSchedule_block_invoke_2 + 129
    7   libSystem.B.dylib                       0x00007fff84156d64 _dispatch_call_block_and_release + 15
    8   libSystem.B.dylib                       0x00007fff841352d1 _dispatch_worker_thread2 + 239
    9   libSystem.B.dylib                       0x00007fff84134c08 _pthread_wqthread + 353
    10  libSystem.B.dylib                       0x00007fff84134aa5 start_wqthread + 13
    Thread 17:
    0   libSystem.B.dylib                       0x00007fff84134a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff84134e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff84134aa5 start_wqthread + 13
    Thread 18:
    0   libSystem.B.dylib                       0x00007fff84155a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff841558f9 nanosleep + 148
    2   libSystem.B.dylib                       0x00007fff84155863 usleep + 57
    3   com.apple.AppKit                        0x00007fff819b63a1 -[NSUIHeartBeat _heartBeatThread:] + 1540
    4   com.apple.Foundation                    0x00007fff8569f204 __NSThread__main__ + 1429
    5   libSystem.B.dylib                       0x00007fff84153fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff84153e89 thread_start + 13
    Thread 19:  com.apple.coremedia.scheduledfileio
    0   libSystem.B.dylib                       0x00007fff84155a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff84159881 _pthread_cond_wait + 1286
    2   ...le.CoreMedia.ProAppsSupport          0x000000010028af39 WaitOnCondition + 14
    3   ...le.CoreMedia.ProAppsSupport          0x000000010028b105 FigSemaphoreWaitRelative + 167
    4   ...le.CoreMedia.ProAppsSupport          0x0000000100289212 FigScheduledFileIOThread + 5109
    5   ...le.CoreMedia.ProAppsSupport          0x000000010028c03a figThreadMain + 397
    6   libSystem.B.dylib                       0x00007fff84153fd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff84153e89 thread_start + 13
    Thread 20:
    0   libSystem.B.dylib                       0x00007fff84134a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff84134e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff84134aa5 start_wqthread + 13
    Thread 21:
    0   libSystem.B.dylib                       0x00007fff84134a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff84134e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff84134aa5 start_wqthread + 13
    Thread 22:
    0   libSystem.B.dylib                       0x00007fff84134a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff84134e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff84134aa5 start_wqthread + 13
    Thread 23:  com.apple.helium-unit
    0   libSystem.B.dylib                       0x00007fff8411adc2 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff8412040d pthread_mutex_lock + 469
    2   com.apple.Helium.HeliumRender           0x0000000102ce6e42 hg_pthread_loop(void*) + 98
    3   libSystem.B.dylib                       0x00007fff84153fd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff84153e89 thread_start + 13
    Thread 24:  com.apple.helium-unit
    0   libSystem.B.dylib                       0x00007fff8411adc2 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff8412040d pthread_mutex_lock + 469
    2   com.apple.Helium.HeliumRender           0x0000000102ce6e42 hg_pthread_loop(void*) + 98
    3   libSystem.B.dylib                       0x00007fff84153fd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff84153e89 thread_start + 13
    Thread 25:  com.apple.helium-unit
    0   libSystem.B.dylib                       0x00007fff8411adc2 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff8412040d pthread_mutex_lock + 469
    2   com.apple.Helium.HeliumRender           0x0000000102ce6e42 hg_pthread_loop(void*) + 98
    3   libSystem.B.dylib                       0x00007fff84153fd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff84153e89 thread_start + 13
    Thread 26:  com.apple.helium-unit
    0   libSystem.B.dylib                       0x00007fff8411adc2 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff8412040d pthread_mutex_lock + 469
    2   com.apple.Helium.HeliumRender           0x0000000102ce6e42 hg_pthread_loop(void*) + 98
    3   libSystem.B.dylib                       0x00007fff84153fd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff84153e89 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00000001331733f3  rbx: 0x0000000000000000  rcx: 0x000000000000000c  rdx: 0x00000000000000ff
      rdi: 0x00000001331733f6  rsi: 0x0000000000000000  rbp: 0x00007fff5fbfd590  rsp: 0x00007fff5fbfd3a0
       r8: 0x000000000000000b   r9: 0x0000000000000001  r10: 0x0000000133153000  r11: 0x00000000000203a0
      r12: 0x0000000064762020  r13: 0x00000001008eeed0  r14: 0x000000011d0f17b0  r15: 0x00007fff5fbfd520
      rip: 0x00000001008ef055  rfl: 0x0000000000010206  cr2: 0x00000001331733f6
    Binary Images:
           0x100000000 -        0x1000c1fef  com.apple.FinalCut 10.0 (179114) <87A93BA7-2A69-1860-23E6-488F5B67F581> /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro
           0x100139000 -        0x100214ff7  com.apple.procore.framework 4.0.2 (757) <AF641CD5-22F4-A3A3-8DA0-6DA454F9F936> /Applications/Final Cut Pro.app/Contents/Frameworks/ProCore.framework/Versions/A/ProCore
           0x10026d000 -        0x1002b8fff  com.apple.CoreMedia.ProAppsSupport 1.0 (705.23) <0A55958C-289F-A22B-8D1D-B77FC78083A7> /Applications/Final Cut Pro.app/Contents/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
           0x1002da000 -        0x100568ff7  com.apple.prokit 7.0.1 (1331.1) <0C6C56BB-83E2-7090-90D0-C9005C955F8A> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
           0x1006ea000 -        0x101178fe7  com.apple.Flexo 1.0.0 (21) <91672C1C-5F24-7DA3-8F20-D947CEF87488> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Flexo
           0x101599000 -        0x10165eff7  com.apple.proapps.MIO 2.0 (17882.8) <76C85FB2-8916-CA80-157C-DE1F58964A0B> /Applications/Final Cut Pro.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
           0x1016c3000 -        0x1016e1fff  com.apple.pro.sharedstudio 1.0 (17882.8) <29B0D24A-8DD5-C3C7-259F-F6B5304279BC> /Applications/Final Cut Pro.app/Contents/Frameworks/StudioSharedResources.framework/Versions/A/StudioSh aredResources
           0x101700000 -        0x1017c5ff7  com.apple.TLKit 1.0 (17882.8) <D0728C96-1CB6-5DE7-CAAB-7FEB43CD3115> /Applications/Final Cut Pro.app/Contents/Frameworks/TLKit.framework/Versions/A/TLKit
           0x101820000 -        0x1018c4fe7  com.apple.LunaKit 1.0 (17882.8) <7FA08F09-5359-DEC3-000F-C0F8DC2867C7> /Applications/Final Cut Pro.app/Contents/Frameworks/LunaKit.framework/Versions/A/LunaKit
           0x10193c000 -        0x101949ff7  com.apple.framework.SPSupport 10.6.0 (217) <69A2520B-F051-14E1-0360-1B93B786BCE9> /System/Library/PrivateFrameworks/SPSupport.framework/Versions/A/SPSupport
           0x101954000 -        0x101971fe7  com.apple.DeepSkyLite 0.6 (17882.8) <A7B29622-F387-1E24-3B25-A47D3E586A74> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/DeepSkyLite.f ramework/Versions/A/DeepSkyLite
           0x101985000 -        0x101d96ff7  com.apple.VideoToolbox.ProAppsSupport 1.0 (705.23) <1E4B1D1F-97D3-CFE5-0C74-BC30CFD4BD0C> /Applications/Final Cut Pro.app/Contents/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
           0x101e20000 -        0x102247fef  com.apple.MediaToolbox.ProAppsSupport 1.0 (705.23) <B3352791-1B8B-0E10-BC17-8EE36C16CEBE> /Applications/Final Cut Pro.app/Contents/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
           0x1022bf000 -        0x1023fdfef  com.apple.prochannel.framework 4.0.2 (17882.8) <5185F8FE-7C4B-0F00-5E61-C48684245499> /Applications/Final Cut Pro.app/Contents/Frameworks/ProChannel.framework/Versions/A/ProChannel
           0x1024ae000 -        0x1024aefff  com.apple.Helium 3.1.0 (17882.8) <C11A3FB0-EEBA-B753-631B-D862A28BA3FD> /Applications/Final Cut Pro.app/Contents/Frameworks/Helium.framework/Versions/A/Helium
           0x1024b2000 -        0x10251dfff  com.apple.proinspector.framework 4.0.2 (17882.8) <8D2C634D-66C4-436B-0BDD-D23182B968F2> /Applications/Final Cut Pro.app/Contents/Frameworks/ProInspector.framework/Versions/A/ProInspector
           0x10255e000 -        0x10258afff  com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <45C04031-42F8-D096-1CC3-0CA266FDAC61> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
           0x1025a3000 -        0x1025b8fef  com.apple.MAAudioUnitSupport 1.0.0 (101) <81BEDC93-B46A-0C92-07F3-C90C2BBE0679> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/MAAudioUnitSu pport.framework/Versions/A/MAAudioUnitSupport
           0x1025c8000 -        0x102618fff  com.apple.proshapes.framework 1.0 (17882.8) <EC3D6B72-F71C-BD80-C775-7B42A307E525> /Applications/Final Cut Pro.app/Contents/Frameworks/ProShapes.framework/Versions/A/ProShapes
           0x102644000 -        0x102757ff7  com.apple.proosc.framework 3.1.0 (17882.8) <E8D31602-A87A-8641-0594-98CECD20FED2> /Applications/Final Cut Pro.app/Contents/Frameworks/ProOSC.framework/Versions/A/ProOSC
           0x1027ae000 -        0x1027c8ff7  com.apple.iLifeFaceRecognition 1.0 (21) <5D45F816-8F9C-C6F5-4050-1331BCA3ADB2> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/iLifeFaceReco gnition.framework/Versions/A/iLifeFaceRecognition
           0x1027db000 -        0x102857ff7  com.apple.procurveeditor.framework 3.1.0 (17882.8) <BB346BED-A8EB-9C03-9EC9-B681A6DEB954> /Applications/Final Cut Pro.app/Contents/Frameworks/ProCurveEditor.framework/Versions/A/ProCurveEditor
           0x102891000 -        0x1028c5fef  com.apple.progl.framework 1.0 (17882.8) <9428DD32-248E-3688-7A04-02C538DF2B23> /Applications/Final Cut Pro.app/Contents/Frameworks/ProGL.framework/Versions/A/ProGL
           0x1028f7000 -        0x1029a1ff7  com.apple.ProAppsFxSupport 4.0.0 (17882.8) <D87B3651-A3CC-28A4-72C6-FF4605FFB442> /Applications/Final Cut Pro.app/Contents/Frameworks/ProAppsFxSupport.framework/Versions/A/ProAppsFxSupp ort
           0x102bcb000 -        0x102bdcfef  com.apple.TLKEventDispatcher 1.0 (17882.8) <5A62F218-576F-49E4-03BC-9FCAD2FC55D7> /Applications/Final Cut Pro.app/Contents/Frameworks/TLKEventDispatcher.framework/Versions/A/TLKEventDis patcher
           0x102bea000 -        0x102f52fef  com.apple.Helium.HeliumRender 2.1.0 (17882.8) <CF43651A-22E6-5B2A-FE0B-18C9C1F66BEE> /Applications/Final Cut Pro.app/Contents/Frameworks/Helium.framework/Versions/A/Frameworks/HeliumRender .framework/Versions/A/HeliumRender
           0x103069000 -        0x10311afef  com.apple.Helium.Heliumfilters 2.1.0 (17882.8) <5611955C-9CF4-9F33-6BB5-40CFBF9FF5EC> /Applications/Final Cut Pro.app/Contents/Frameworks/Helium.framework/Versions/A/Frameworks/HeliumFilter s.framework/Versions/A/HeliumFilters
           0x103181000 -        0x1033cefef  com.apple.Helium.HeliumSensoCore 2.0.2 (17882.8) <59598375-BF20-0C57-EBE7-4119FAFDBB6B> /Applications/Final Cut Pro.app/Contents/Frameworks/Helium.framework/Versions/A/Frameworks/HeliumSensoC ore.framework/Versions/A/HeliumSensoCore
           0x10343d000 -        0x10343dff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <424E55F7-B6DA-0F5C-E56B-9ECB4A2E6BA8> /usr/lib/libmx.A.dylib
           0x103440000 -        0x103477ff7  com.apple.FWAVC 130.46 (46) <98356E01-C6E3-44EA-0D44-412CDC595F0B> /System/Library/PrivateFrameworks/FWAVC.framework/Versions/A/FWAVC
           0x10348e000 -        0x103490fff +eOkaoCom.dylib ??? (???) <393F340C-3AD1-C89B-6C37-9D8ABF4BFFD9> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/iLifeFaceReco gnition.framework/Versions/A/Resources/eOkaoCom.dylib
           0x103494000 -        0x1034bbff2 +eOkaoPt.dylib ??? (???) <E6500FB8-157F-57B5-FE25-2A3A1CB3574C> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/iLifeFaceReco gnition.framework/Versions/A/Resources/eOkaoPt.dylib
           0x1034c2000 -        0x1034f7fe7 +eOkaoDt.dylib ??? (???) <7A74253D-8930-6FF1-B513-0929C4E111A2> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/iLifeFaceReco gnition.framework/Versions/A/Resources/eOkaoDt.dylib
           0x1034fe000 -        0x103666fef +eOkaoFr.dylib ??? (???) <510E837E-135A-92C8-9AC0-465691EA43D2> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/iLifeFaceReco gnition.framework/Versions/A/Resources/eOkaoFr.dylib
           0x10366c000 -        0x10368cfff  com.apple.fxplugframework 2.0 (17882.8) <4CC21EC9-C6F7-59CB-930D-E459884C41B0> /Applications/Final Cut Pro.app/Contents/Frameworks/FxPlug.framework/Versions/A/FxPlug
           0x1036a2000 -        0x1036b1ff7  com.apple.PluginManager 1.7.4 (17882.8) <0E94386F-92BB-397E-D559-E6AF0A5ED827> /Applications/Final Cut Pro.app/Contents/Frameworks/PluginManager.framework/Versions/B/PluginManager
           0x104000000 -        0x104007ff7  com.apple.filter.PAECIAdaptor 1.0 (17882.8) <B960A6EB-BD23-B003-5AC4-86944D65D4FE> /Applications/Final Cut Pro.app/Contents/PlugIns/FxPlug/PAECIAdaptor.fxplug/Contents/MacOS/PAECIAdaptor
           0x104306000 -        0x104350ff7  com.apple.CoreMediaIO 201.0 (3143) <1412683A-17DA-5131-D8F6-803BCC051C66> /Applications/Final Cut Pro.app/Contents/Frameworks/CoreMediaIO.framework/Versions/Current/CoreMediaIO
           0x104374000 -        0x10439afff  GLRendererFloat ??? (???) <490221DD-53D9-178E-3F31-3A4974D34DCD> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x116000000 -        0x116193fe7  GLEngine ??? (???) <53A8A7E8-4846-D236-F3D9-DA3F2AF686D8> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x1161c4000 -        0x1165b6fff  com.apple.ATIRadeonX3000GLDriver 1.6.36 (6.3.6) <282E53E2-ABB3-B97D-F298-6A8FE21F3A5A> /System/Library/Extensions/ATIRadeonX3000GLDriver.bundle/Contents/MacOS/ATIRade onX3000GLDriver
           0x118286000 -        0x11829bff7  com.apple.Audio.provider 1.0.0 (17911.4) <E553EE1E-78C0-EEEB-4561-4D2CABCA669C> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/MediaProviders/A udioProvider.fxp/Contents/MacOS/AudioProvider
           0x1182a5000 -        0x1182edff7  com.apple.Fig.provider 1.0.0 (21) <64E79941-E351-02B0-EBD3-D9DF819C0485> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/MediaProviders/F igProvider.fxp/Contents/MacOS/FigProvider
           0x118385000 -        0x1183b4fff  com.apple.proapps.AppleAVCIntraCodec 1.0 (542.4) <58336BEF-3982-B338-9164-161DD3090609> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleAVCIntraCodec.b undle/Contents/MacOS/AppleAVCIntraCodec
           0x1183c1000 -        0x118411fef  com.apple.proapps.AppleDVCPROHDCodec 1.0 (542.4) <3AD015D3-D5C3-AFD0-7B60-E0C0EE929296> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleDVCPROHDCodec.b undle/Contents/MacOS/AppleDVCPROHDCodec
           0x118428000 -        0x118446fe7  com.apple.proapps.AppleIMXCodec 1.0 (547.2) <51D58E0C-3A65-EAB4-4FD2-D19933A703B7> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleIMXCodec.bundle /Contents/MacOS/AppleIMXCodec
           0x118458000 -        0x118488ff7  com.apple.proapps.AppleIntermediateCodec 1.0 (542.4) <C4D6D4A5-4CE3-44D9-CCA9-675C9FEDEEDF> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleIntermediateCod ec.bundle/Contents/MacOS/AppleIntermediateCodec
           0x11849e000 -        0x118561fef  com.apple.proapps.AppleMPEG2Codec 1.0 (548.3) <DF1A8D26-B065-A4C0-F2DB-674C42A3466C> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleMPEG2Codec.bund le/Contents/MacOS/AppleMPEG2Codec
           0x11857e000 -        0x11860fff7  com.apple.proapps.AppleProResCodec 1.0 (544.2) <CA7AD09C-11B3-AEE1-443D-B4406F1A0D77> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleProResCodec.bun dle/Contents/MacOS/AppleProResCodec
           0x11864d000 -        0x11865dfff  com.apple.proapps.AppleUncompressedCodec 1.0 (546.9) <EB8C8481-B0DC-D03F-F5D6-234C7531D5D4> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleUncompressedCod ec.bundle/Contents/MacOS/AppleUncompressedCodec
           0x118666000 -        0x11866aff7  com.apple.proapps.AppleCMQTAdapterCodec 1.0 (1) <BA9B2F02-843E-F922-7961-1DD350B32884> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/PlugIns/Apple CMQTAdapterCodec.bundle/Contents/MacOS/AppleCMQTAdapterCodec
           0x118670000 -        0x1187d6fe7  com.apple.AECore 4.0 (303) <4F2DA275-9256-DF7B-312B-D228D1FD3E14> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/AE Core.framework/Versions/A/AECore
           0x1188d7000 -        0x1188f7fff  com.apple.FxPlug.provider 1.0.0 (17911.4) <46EB2AD2-C557-2F7E-E802-CCBFFE57B0C5> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/MediaProviders/F xPlugProvider.fxp/Contents/MacOS/FxPlugProvider
           0x118903000 -        0x118b06ff7  com.apple.Motion.effect 5.0.0 (17911.4) <57216C3E-923F-497D-55CE-E7C9E8AE2DB7> /Applications/Final Cut Pro.app/Contents/PlugIns/MediaProviders/MotionEffect.fxp/Contents/MacOS/MotionE ffect
           0x118b39000 -        0x118cfcfff  com.apple.Lithium 5.0.0 (17911.4) <4C22D36B-F672-6102-833C-4B87CEE54127> /Applications/Final Cut Pro.app/Contents/Frameworks/Lithium.framework/Versions/A/Lithium
           0x118d8a000 -        0x119ae2fe7  Ozone 17911.4.0 (compatibility 1.0.0) <14BAA556-81DF-9EBC-5A5B-8F641A7ABF4B> /Applications/Final Cut Pro.app/Contents/Frameworks/Ozone.framework/Versions/A/Ozone
           0x119ee3000 -        0x119f42ff7  com.apple.ProGraphics 5.0.0 (17911.4) <2A8EDFAB-CBF9-FEE0-3B27-3D41C5908F09> /Applications/Final Cut Pro.app/Contents/Frameworks/ProGraphics.framework/Versions/A/ProGraphics
           0x119f71000 -        0x119f8bff7  com.apple.promath.framework 5.0.0 (17911.4) <AE490411-ACC7-BD61-E667-2887D5D50FCC> /Applications/Final Cut Pro.app/Contents/Frameworks/ProMath.framework/Versions/A/ProMath
           0x119f94000 -        0x11a724fff  com.apple.motion.TextFramework 5.0.0 (17911.4) <9EE8BD27-3FA4-8DB7-3C7D-4C70A11C5A48> /Applications/Final Cut Pro.app/Contents/Frameworks/TextFramework.framework/Versions/A/TextFramework
           0x11a812000 -        0x11a8acfe7  com.apple.ProMedia 5.0.0 (17911.4) <1D437DD4-A995-38C7-421F-F9DA43C4D4C7> /Applications/Final Cut Pro.app/Contents/Frameworks/ProMedia.framework/Versions/A/ProMedia
           0x11a909000 -        0x11aa1aff7  org.python.python 2.6.1 (2.6.1) <D94E0305-FBC2-256E-347E-31E59B8879B7> /System/Library/Frameworks/Python.framework/Versions/2.6/Python
           0x11aa7a000 -        0x11aacaff7  com.apple.audio.midi.CoreMIDI 1.7.1 (42) <872D18F1-18CB-DDC1-FBC8-B144604A39B1> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
           0x11aaf2000 -        0x11ab04ff7  com.apple.RetimingMath 5.0.0 (17911.4) <0EFF720C-4A60-2CDF-4A5A-076C85835AC7> /Applications/Final Cut Pro.app/Contents/Frameworks/RetimingMath.framework/Versions/A/RetimingMath
           0x11ab17000 -        0x11ab33fe7  libedit.2.dylib 2.11.0 (compatibility 2.0.0) <FF2E0B1C-463D-21C7-7114-8C54E5576D49> /usr/lib/libedit.2.dylib
           0x11ab42000 -        0x11ababfff  com.apple.proapps.AudioMixEngine 2.0 (68) <A4598DDB-0FD9-C204-11DB-5D020F19AD3D> /Applications/Final Cut Pro.app/Contents/Frameworks/Ozone.framework/Versions/A/Frameworks/AudioMixEngin e.framework/Versions/A/AudioMixEngine
           0x11ba5a000 -        0x11ba5cfff  com.apple.iLMBFolderPlugin 2.5.5 (252.2.5) <91F864A2-290C-58E3-4FAC-A9BB4B7A8385> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFolderPlugin.ilmbplugin/Contents/MacOS/i LMBFolderPlugin
           0x11ba60000 -        0x11ba64ff7  com.apple.iLMBGarageBandPlugin 2.5.5 (252.2.5) <51BF27A5-0931-341A-ED61-87AB8C296356> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBGarageBandPlugin.ilmbplugin/Contents/Mac OS/iLMBGarageBandPlugin
           0x11bb9b000 -        0x11bba7fff  com.apple.iLMBiMoviePlugin 2.5.5 (252.2.5) <32B9D393-2F10-1825-DAFC-5AF9A6CC196C> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiMoviePlugin.ilmbplugin/Contents/MacOS/i LMBiMoviePlugin
           0x11cd00000 -        0x11cd3dff7  com.apple.prokit.SnowLeopardPanels 7.0.1 (1331.1) <3585FB91-33B6-1BF3-A716-85D069944820> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/SnowLeo pardPanels.bundle/Contents/MacOS/SnowLeopardPanels
           0x11cddf000 -        0x11cde5ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <5400D498-D56B-A2C3-EDAA-D267D6BBD77A> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x11ce0f000 -        0x11ce17ff7  com.apple.iLMBAperturePlugin 2.5.5 (252.2.5) <7951CA81-2396-7294-41A2-B846DF4A93F1> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperturePlugin.ilmbplugin/Contents/MacOS /iLMBAperturePlugin
           0x11ce1e000 -        0x11ce1fff7  com.apple.iLMBAppDefPlugin 2.5.5 (252.2.5) <DEB6858F-787D-0B31-5FE2-323CBF4D9A17> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAppDefPlugin.ilmbplugin/Contents/MacOS/i LMBAppDefPlugin
           0x11ce25000 -        0x11ce27ff7  com.apple.iLMBMoviesFolderPlugin 2.5.5 (252.2.5) <1C92710B-ADF0-AD2C-8E33-8D554E66E1A6> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBMoviesFolderPlugin.ilmbplugin/Contents/M acOS/iLMBMoviesFolderPlugin
           0x11d2bd000 -        0x11d2d4ff7  com.apple.motion.Text 5.0.0 (17911.4) <41F2D90F-F1A4-BCAE-69F2-B32B04C2A21C> /Applications/Final Cut Pro.app/Contents/Frameworks/Ozone.framework/Versions/A/PlugIns/Text.ozp/Content s/MacOS/Text
           0x12001c000 -        0x120070fff  com.apple.Bloodhound 5.0.0 (17911.4) <6B577C11-35AB-6125-342D-7AC01DB3615B> /Applications/Final Cut Pro.app/Contents/Frameworks/Bloodhound.framework/Versions/A/Bloodhound
           0x120200000 -        0x1202cbfef  com.apple.audio.units.Components 1.6.5 (1.6.5) <98E3D066-C3A9-FF74-C623-D152708EDBCF> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
           0x120304000 -        0x120312fe7  com.apple.audiounit.speechsynthesis 3.10.35 (3.10.35) <A6F32CD9-8D23-439F-F865-4A19670F41CA> /System/Library/Components/AUSpeechSynthesis.component/Contents/MacOS/AUSpeechS ynthesis
           0x120318000 -        0x12033dfff  com.apple.speech.SpeechDictionary 3.10.29 (3.10.29) <4D5AB858-86F7-571D-1214-B1B377ED9DFA> /System/Library/PrivateFrameworks/SpeechDictionary.framework/Versions/A/SpeechD ictionary
           0x1203c5000 -        0x1203c7ff7  com.apple.music.apps.common.resources 9.1.0 (279.8) <562EF819-830E-C316-7A45-45EC3DADF665> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Resources/common.res/Contents/MacOS/common
           0x1203cc000 -        0x1203ceff7  com.apple.music.apps.efx.resources 9.1.0 (279.8) <F14386B9-4609-6E0F-0E8F-CEAFBD7066A0> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Resources/efx.res/Contents/MacOS/efx
           0x1203d3000 -        0x1203d5ff7  com.apple.music.apps.egt.resources 9.1.0 (279.8) <E37C387F-5AF0-553B-E9D2-F4230BE0DFC7> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Resources/egt.res/Contents/MacOS/egt
           0x1203da000 -        0x1203dcff7  com.apple.music.apps.evb3.resources 9.1.0 (279.8) <38F86758-98F2-61B8-B5FB-E70E7F70808D> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Resources/evb3.res/Contents/MacOS/evb3
           0x1203e1000 -        0x1203e3ff7  com.apple.music.apps.evd6.resources 9.1.0 (279.8) <5CDD8C43-B823-18E9-1FA1-132D9E9FAAA7> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Resources/evd6.res/Contents/MacOS/evd6
           0x120500000 -        0x1206e4fef  com.apple.motion.Behaviors 5.0.0 (17911.4) <FA45EFC3-4C32-5D22-47AA-DAFD57B1A6D2> /Applications/Final Cut Pro.app/Contents/Frameworks/Ozone.framework/Versions/A/PlugIns/Behaviors.ozp/Co ntents/MacOS/Behaviors
           0x12079a000 -        0x1207b5ff7  com.apple.EDEL 2.5 (52.9) <D3745B92-2748-BD46-9207-A9B271D2C23A> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/MacOS/EDEL
           0x1207c8000 -        0x1207caff7  com.apple.music.apps.evoc.resources 9.1.0 (279.8) <4CAE0802-D1CB-081F-DE4F-9FC13D0E023E> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Resources/evoc.res/Contents/MacOS/evoc
           0x1207cf000 -        0x1207d1ff7  com.apple.music.apps.evp88.resources 9.1.0 (279.8) <B603E65A-4489-0B49-BA8C-3903FAB06872> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Resources/evp88.res/Contents/MacOS/evp88
           0x1207d6000 -        0x1207d8ff7  com.apple.music.apps.mutapdel.resources 9.1.0 (279.8) <55F3D902-7274-8E0A-EFE9-30948B6EA177> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Resources/mutapdel.res/Contents/MacOS/mutapdel
           0x1207dd000 -        0x1207dfff7  com.apple.music.apps.sphere.resources 9.1.0 (279.8) <C85F45A8-6D20-68C1-9AE7-2ABC3A219601> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Resources/sphere.res/Contents/MacOS/sphere
           0x120900000 -        0x1209a2fe7  com.apple.speech.synthesis.MacinTalkSynthesizer 3.10.35 (3.10.35) <8F924566-B3DF-7ED2-9DFF-2509B73EFC6C> /System/Library/Speech/Synthesizers/MacinTalk.SpeechSynthesizer/Contents/MacOS/ MacinTalk
           0x1209ec000 -        0x120a7bff7  com.apple.music.apps.MACore 9.1.0 (475.15) <EF9CC7FB-0966-89A4-AE21-CA7FFCAAC0E0> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Frameworks/MACore.framework/Versions/A/MACore
           0x120d00000 -        0x120d4afef  com.apple.music.apps.MAHarmony 9.1.0 (198.11) <E337CE6D-FA8C-91B2-11E5-75B7386D2A51> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
           0x120f00000 -        0x1211deff7  com.apple.motion.Particles 5.0.0 (17911.4) <B2F084B0-57EB-0B38-9C54-36F6CA2FF2F4> /Applications/Final Cut Pro.app/Contents/Frameworks/Ozone.framework/Versions/A/PlugIns/Particles.ozp/Co ntents/MacOS/Particles
           0x121800000 -        0x121b52fff  com.apple.motion.filters 4.0.2 (17882.8) <9CE8D768-C5AD-B84D-4C70-030275DF25EA> /Applications/Final Cut Pro.app/Contents/PlugIns/FxPlug/Filters.bundle/Contents/MacOS/Filters
           0x121d4a000 -        0x121e01fef  com.apple.music.apps.MAFiles 9.1.0 (143.14) <794DCAA2-BA01-68B2-666F-3E477DD0B975> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
           0x121ef0000 -        0x121ef9fff  com.apple.iLMBiPhotoPlugin 2.5.5 (252.2.5) <040FF890-14BC-5B8A-443F-2118CE820AF9> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhotoPlugin.ilmbplugin/Contents/MacOS/i LMBiPhotoPlugin
           0x122000000 -        0x1221f2ff7  com.apple.audio.codecs.Components 2.0.3 (2.0.3) <9C486CBC-47B6-6703-EE2A-34F28C1FE023> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
           0x1222e3000 -        0x1222edff7  com.apple.iLMBFinalCutPlugin 2.5.5 (252.2.5) <AD420570-A4A5-DCE5-571C-F0BDE041C88F> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFinalCutPlugin.ilmbplugin/Contents/MacOS /iLMBFinalCutPlugin
           0x1222f5000 -        0x1222f8fff  com.apple.iLMBPhotoBoothPlugin 2.5.5 (252.2.5) <C9422189-9839-A306-7004-FA5D95A3850E> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBPhotoBoothPlugin.ilmbplugin/Contents/Mac OS/iLMBPhotoBoothPlugin
           0x1226e1000 -        0x1226f4fff  com.apple.iLMBiPhoto8Plugin 2.5.5 (252.2.5) <152B211B-3970-D4F1-3009-B4D0B5092B83> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto8Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto8Plugin
           0x1230b0000 -        0x1230b9ff7  com.apple.iLMBiTunesPlugin 2.5.5 (252.2.5) <38907878-20E0-0B2C-92EE-4A8E435627F7> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiTunesPlugin.ilmbplugin/Contents/MacOS/i LMBiTunesPlugin
           0x123cf7000 -        0x123d79fe7  com.apple.iTunesAccess 10.3.1 (10.3.1) <E972D47C-45ED-65A2-6919-E3CADB23090C> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
           0x123d9f000 -        0x123da6fff  com.apple.ArchiveRADPlug 1.0 (992.6) <CB3BA415-FD4E-A74A-8318-676A3767B69E> /Applications/Final Cut Pro.app/Contents/PlugIns/RADPlugins/Archive.RADPlug/Contents/MacOS/Archive
           0x123dad000 -        0x123dbaff7  com.apple.MPEG4RADPlug 1.0 (991.6) <C1469A2A-C759-CA6B-9D28-7BA8FCE3B807> /Applications/Final Cut Pro.app/Contents/PlugIns/RADPlugins/MPEG4.RADPlug/Contents/MacOS/MPEG4
           0x123fae000 -        0x123fdafff  libssl.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <FA516941-C122-8AE5-C3A1-5BE583FF235C> /usr/lib/libssl.0.9.7.dylib
           0x135000000 -        0x135348fe7  com.apple.music.apps.MADSP 9.1.0 (586.17) <C8EBB98D-04F5-18A2-EE4E-7049F6107BD7> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
           0x13570e000 -        0x135b48fef  com.apple.music.apps.MAPlugInGUI 9.1.0 (423.13) <D6867CE6-E418-96FF-2AD1-2DB16E161E18> /Applications/Final Cut Pro.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bundl e/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
           0x137588000 -        0x1375bbff7  com.apple.P2Plugin 2.0.0 (989.8) <E046B352-1D84-EB34-5904-8C1CF4711455> /Applications/Final Cut Pro.app/Contents/PlugIns/RADPlugins/P2.RADPlug/Contents/MacOS/P2
           0x138e00000 -        0x138f7eff7  com.apple.iLMBAperture31Plugin 2.5.5 (252.2.5) <270D26CA-F1AC-98C5-7D91-9F8935367139> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperture31Plugin.ilmbplugin/Contents/Mac OS/iLMBAperture31Plugin
           0x139400000 -        0x139580ff7  com.apple.iLMBiPhoto9Plugin 2.5.5 (252.2.5) <AB8A67F3-D636-D153-EDEA-D1DEE9F492A2> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto9Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto9Plugin
           0x13a300000 -        0x13a57fff7  com.apple.AVCHDPlugin 2.0.0 (991.0) <10C6E274-4ED9-37B6-CC96-AB9B54BC144A> /Applications/Final Cut Pro.app/Contents/PlugIns/RADPlugins/AVCHD.RADPlug/Contents/MacOS/AVCHD
           0x13a660000 -        0x13a8d9fe7  com.apple.MPEG2RADPlug 1.0 (991.3) <AC6F02D1-544C-F3BC-3506-2B383BE41490> /Applications/Final Cut Pro.app/Contents/PlugIns/RADPlugins/MPEG2.RADPlug/Contents/MacOS/MPEG2
           0x13aa3c000 -        0x13aab6fff  com.apple.mobiledevice 423.1 (423.1) <AE6B01D7-6B08-BFB1-525B-F1101982C41F> /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevic e
           0x13aaf7000 -        0x13abddfe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <64B3566E-5F3A-A466-ED3F-B91F4B3E5F56> /usr/lib/libcrypto.0.9.7.dylib
           0x13acfc000 -        0x13acfcff7  com.apple.qmaster.swamp 4.0 (4.0) <76E9C862-82DE-1F0D-9202-A5168242143C> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Qmaster
           0x13e0f0000 -        0x13e0f7fff  com.apple.compressor.FilterUI 4.0 (4.0) <87765221-ADCA-A789-DB4F-6C5ECA9C62A8> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Co mpressor.framework/Versions/A/Frameworks/FilterUI.framework/Versions/A/FilterUI
           0x13e3f0000 -        0x13e3f5ff7  com.apple.H264Encoder 1.0 (42) <018FA445-A718-4636-4500-902F0479F505> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/H2 64Encoder.framework/Versions/A/H264Encoder
           0x13e568000 -        0x13e570ff7  com.apple.compressor.MediaServerAPI 4.0 (4.0) <DE7FF74F-E155-A2AD-DF47-6ED564A263EE> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Me diaServerAPI.framework/Versions/A/MediaServerAPI
           0x13e57a000 -        0x13e586fff  com.apple.compressor.StompUtil 4.0 (4.0) <5D36A8A9-9D68-9B2A-01C6-28FB4480C8D4> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Co mpressor.framework/Versions/A/Frameworks/StompUtil.framework/Versions/A/StompUti l
           0x13e594000 -        0x13e5a0ff7  com.apple.dsppublishing 1.0.1 (119) <96C17FD7-AB8D-AE2A-0AA1-6DE900233879> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/DS PPublishing.framework/Versions/A/DSPPublishing
           0x13e5b5000 -        0x13e5cffff  com.apple.podcastproducer.kit 1.1.3 (168.7) <2B1C010B-D143-4610-4EFF-EBE5321265CF> /System/Library/PrivateFrameworks/PodcastProducerKit.framework/Versions/A/Podca stProducerKit
           0x13e5e8000 -        0x13e5f3fff  com.apple.qmaster.ClusterManager 4.0 (4.0) <596C0B78-F59A-AD3C-41AC-F9373B35180B> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/ClusterManager.framework/Versions/A/Cluste rManager
           0x13eb00000 -        0x13eb84fe7  com.apple.CompressorKitMAS 4.0 (4.0) <C2131FC3-E899-4FFB-1F6B-7F6C49CE5DBA> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Co mpressor.framework/Versions/A/Frameworks/CompressorKit.framework/CompressorKit
           0x13ebdf000 -        0x13ecb8fff  com.apple.compressor.StompUI 4.0 (4.0) <11DE4B76-743F-8FEC-5194-2D2DD694D3A4> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Co mpressor.framework/Versions/A/Frameworks/StompUI.framework/Versions/A/StompUI
           0x13ed28000 -        0x13edf8fe7  com.apple.compressor.StompTypes 4.0 (17911.4) <DB734957-C86D-E466-C5AF-26C3C4BDEB66> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Co mpressor.framework/Versions/A/Frameworks/StompTypes.framework/Versions/A/StompTy pes
           0x13ee64000 -        0x13eeb0fff  com.apple.qmaster.SwampCore 4.0 (303) <E0298099-5C2D-9E5C-C30D-3E8B31F27705> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/SwampCore.framework/Versions/A/SwampCore
           0x13eedc000 -        0x13eeeaff7  com.apple.qmaster.SwampUtil 4.0 (4.0) <86A8581E-C871-9B24-4846-8630CAB9FDCE> /Applications/Final Cut Pro.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/Qm aster.framework/Versions/A/Frameworks/SwampU

    As many or few events as you want.
    Not sure - try one and see!
    No difference in video or audio quality but if you import from your camera using FCP X you will get timecode.
    You don't get timecode in iMovie.
    Andy

  • Set TrueType font as Default

    We have uploaded a new font (Verdana) via se73 (Install TrueType Fonts) and made an entry in the table TBTFFONTMAP. Now in the CRM Interaction Center when creating a new email or replying to an existing email we are able to choose this new font. However we would like to set this font as a default, so that whenever you create a new email or answer an email per default it takes this Verdana font. So far we have only seen the possibility to change the Internet Settings (Internet Options -> Lettertypes/ Fonts). However if we change the settings here we are not able to choose the size of the font, so it takes the size (size 12) of the current default which is Times New Roman and this is too big for Verdana.
    Has anyone found out already how to change the default font of the email editor?
    Many thanks in advance!
    Best regards,
    Bianca

    Sorry for the late response,
    I started again with a fresh install of Windows Vista and again the same problem appears.
    So to resume:
    Open a new package
    Go to the registry menu.
    Add manually (with several right clicks New-> key) the following tree:
    HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Print\Printers\Adobe PDF
    Drag the "Default DevMode" binary value (REG_BINARY) from my computer into the "Adobe PDF" key of the destination computer.
    Save the project
    Click on the Summary button crashed the wizard
    In my opinion it is the REG_BINARY string length that cause the problem, I try with other long binary value from other key and it always give the same result -> Wizard crash. I also try with small binary value and these don't gives the problem (for example the "HKCU\Control Panel\Appearance\SchemeLangID" has a small value 09 04 and doesn't give the wizard crash).
    Other thing with the binary value is that you can only create empty one, they cannot be modified, so you are obliged to install acrobat pro in order to be able to drag them from my computer to destination computer registry.
    I will try with acrobat X and the related wizard next week.

  • AutoVue viewer caused crash while viewing .XSLX documents.

    We use AutoVue Desktop Deployment Viewer incorporated in our application (using JNI). When viewing XLSX (Microsoft Excel) documents on Windows 8.1 x64 system it caused crash of application. It's reproducible only on Windows 8 (8.1 or Server2012) systems. If we set compatibility mode (Windows 7) then problem isn't reproducible.

    I would recommend you log a ticket with customer support

  • How to set multi fonts in one textItem?

    I have a textItem with Chinese & English. I want to set Chinese and English in different fonts, but the script can only set one font. So, when I set the textItem in western fonts, the Chinese can't display correctly (display block). When I set it to Chinese fonts, the English letters display in Chinese font.
    Is there anyway to fix this problem?
    I use the Photoshop's original tools to set Chinese font first and set western font again, the font of English letters in textItem will change to the western font and the Chinese text will keep the Chinese font I set first time. I wonder is there the same way to set font with script?
    Thx guys.

    This might serve as an example:
    // create a type layer with more than one font;
    // 2013, use at your own risk;
    #target photoshop
    if (app.documents.length > 0) {
    var theText = [
    ["this is a text", 12, "Helvetica"],
    ["this is another font", 15, "Times-Roman"]
    // create;
    createPointTextMoreCompl (theText, 50, 50);
    ////// create point text layer //////
    function createPointTextMoreCompl (theArray, theX, theY) {
    if (theArray[0].length > 0) {
    // join the texts;
    var theText =  new String;
    for (var m = 0; m < theArray.length; m++) {
    theText = theText + " " + theArray[m][0]
    // =======================================================
    var idMk = charIDToTypeID( "Mk  " );
        var desc4 = new ActionDescriptor();
        var idnull = charIDToTypeID( "null" );
            var ref2 = new ActionReference();
            var idTxLr = charIDToTypeID( "TxLr" );
            ref2.putClass( idTxLr );
        desc4.putReference( idnull, ref2 );
        var idUsng = charIDToTypeID( "Usng" );
            var desc5 = new ActionDescriptor();
            var idTxt = charIDToTypeID( "Txt " );
    // text;
            desc5.putString( idTxt, theText );
            var idwarp = stringIDToTypeID( "warp" );
                var desc6 = new ActionDescriptor();
                var idwarpStyle = stringIDToTypeID( "warpStyle" );
                var idwarpStyle = stringIDToTypeID( "warpStyle" );
                var idwarpNone = stringIDToTypeID( "warpNone" );
                desc6.putEnumerated( idwarpStyle, idwarpStyle, idwarpNone );
                var idwarpValue = stringIDToTypeID( "warpValue" );
                desc6.putDouble( idwarpValue, 0.000000 );
                var idwarpPerspective = stringIDToTypeID( "warpPerspective" );
                desc6.putDouble( idwarpPerspective, 0.000000 );
                var idwarpPerspectiveOther = stringIDToTypeID( "warpPerspectiveOther" );
                desc6.putDouble( idwarpPerspectiveOther, 0.000000 );
                var idwarpRotate = stringIDToTypeID( "warpRotate" );
                var idOrnt = charIDToTypeID( "Ornt" );
                var idHrzn = charIDToTypeID( "Hrzn" );
                desc6.putEnumerated( idwarpRotate, idOrnt, idHrzn );
            var idwarp = stringIDToTypeID( "warp" );
            desc5.putObject( idwarp, idwarp, desc6 );
    // position;
            var idTxtC = charIDToTypeID( "TxtC" );
                var desc7 = new ActionDescriptor();
                var idHrzn = charIDToTypeID( "Hrzn" );
                var idPrc = charIDToTypeID( "#Prc" );
                desc7.putUnitDouble( idHrzn, idPrc, theX );
                var idVrtc = charIDToTypeID( "Vrtc" );
                var idPrc = charIDToTypeID( "#Prc" );
                desc7.putUnitDouble( idVrtc, idPrc, theY );
            var idPnt = charIDToTypeID( "Pnt " );
            desc5.putObject( idTxtC, idPnt, desc7 );
            var idtextGridding = stringIDToTypeID( "textGridding" );
            var idtextGridding = stringIDToTypeID( "textGridding" );
            var idNone = charIDToTypeID( "None" );
            desc5.putEnumerated( idtextGridding, idtextGridding, idNone );
            var idOrnt = charIDToTypeID( "Ornt" );
            var idOrnt = charIDToTypeID( "Ornt" );
            var idHrzn = charIDToTypeID( "Hrzn" );
            desc5.putEnumerated( idOrnt, idOrnt, idHrzn );
            var idAntA = charIDToTypeID( "AntA" );
            var idAnnt = charIDToTypeID( "Annt" );
            var idantiAliasSharp = stringIDToTypeID( "antiAliasSharp" );
            desc5.putEnumerated( idAntA, idAnnt, idantiAliasSharp );
            var idtextShape = stringIDToTypeID( "textShape" );
                var list1 = new ActionList();
                    var desc8 = new ActionDescriptor();
                    var idTEXT = charIDToTypeID( "TEXT" );
                    var idTEXT = charIDToTypeID( "TEXT" );
                    var idPnt = charIDToTypeID( "Pnt " );
                    desc8.putEnumerated( idTEXT, idTEXT, idPnt );
                    var idOrnt = charIDToTypeID( "Ornt" );
                    var idOrnt = charIDToTypeID( "Ornt" );
                    var idHrzn = charIDToTypeID( "Hrzn" );
                    desc8.putEnumerated( idOrnt, idOrnt, idHrzn );
                    var idTrnf = charIDToTypeID( "Trnf" );
                        var desc9 = new ActionDescriptor();
                        var idxx = stringIDToTypeID( "xx" );
                        desc9.putDouble( idxx, 1.000000 );
                        var idxy = stringIDToTypeID( "xy" );
                        desc9.putDouble( idxy, 0.000000 );
                        var idyx = stringIDToTypeID( "yx" );
                        desc9.putDouble( idyx, 0.000000 );
                        var idyy = stringIDToTypeID( "yy" );
                        desc9.putDouble( idyy, 1.000000 );
                        var idtx = stringIDToTypeID( "tx" );
                        desc9.putDouble( idtx, 0.000000 );
                        var idty = stringIDToTypeID( "ty" );
                        desc9.putDouble( idty, 0.000000 );
                    var idTrnf = charIDToTypeID( "Trnf" );
                    desc8.putObject( idTrnf, idTrnf, desc9 );
                    var idrowCount = stringIDToTypeID( "rowCount" );
                    desc8.putInteger( idrowCount, 1 );
                    var idcolumnCount = stringIDToTypeID( "columnCount" );
                    desc8.putInteger( idcolumnCount, 1 );
                    var idrowMajorOrder = stringIDToTypeID( "rowMajorOrder" );
                    desc8.putBoolean( idrowMajorOrder, true );
                    var idrowGutter = stringIDToTypeID( "rowGutter" );
                    var idPnt = charIDToTypeID( "#Pnt" );
                    desc8.putUnitDouble( idrowGutter, idPnt, 0.000000 );
                    var idcolumnGutter = stringIDToTypeID( "columnGutter" );
                    var idPnt = charIDToTypeID( "#Pnt" );
                    desc8.putUnitDouble( idcolumnGutter, idPnt, 0.000000 );
                    var idSpcn = charIDToTypeID( "Spcn" );
                    var idPnt = charIDToTypeID( "#Pnt" );
                    desc8.putUnitDouble( idSpcn, idPnt, 0.000000 );
                    var idframeBaselineAlignment = stringIDToTypeID( "frameBaselineAlignment" );
                    var idframeBaselineAlignment = stringIDToTypeID( "frameBaselineAlignment" );
                    var idalignByAscent = stringIDToTypeID( "alignByAscent" );
                    desc8.putEnumerated( idframeBaselineAlignment, idframeBaselineAlignment, idalignByAscent );
                    var idfirstBaselineMinimum = stringIDToTypeID( "firstBaselineMinimum" );
                    var idPnt = charIDToTypeID( "#Pnt" );
                    desc8.putUnitDouble( idfirstBaselineMinimum, idPnt, 0.000000 );
                    var idbase = stringIDToTypeID( "base" );
                        var desc10 = new ActionDescriptor();
                        var idHrzn = charIDToTypeID( "Hrzn" );
                        desc10.putDouble( idHrzn, 0.000000 );
                        var idVrtc = charIDToTypeID( "Vrtc" );
                        desc10.putDouble( idVrtc, 0.000000 );
                    var idPnt = charIDToTypeID( "Pnt " );
                    desc8.putObject( idbase, idPnt, desc10 );
                var idtextShape = stringIDToTypeID( "textShape" );
                list1.putObject( idtextShape, desc8 );
            desc5.putList( idtextShape, list1 );
            var idTxtt = charIDToTypeID( "Txtt" );
                var list2 = new ActionList();
                    var desc11 = new ActionDescriptor();
                    var idFrom = charIDToTypeID( "From" );
    // from;
                    desc11.putInteger( idFrom, 0 );
                    var idT = charIDToTypeID( "T   " );
    // to;
                    desc11.putInteger( idT, theArray[0][0].length + 1);
                    var idTxtS = charIDToTypeID( "TxtS" );
                        var desc12 = new ActionDescriptor();
                        var idstyleSheetHasParent = stringIDToTypeID( "styleSheetHasParent" );
                        desc12.putBoolean( idstyleSheetHasParent, true );
                        var idfontPostScriptName = stringIDToTypeID( "fontPostScriptName" );
    // font;
                        desc12.putString( idfontPostScriptName, theArray[0][2] );
    /*                    var idFntN = charIDToTypeID( "FntN" );
                        desc12.putString( idFntN, """Arial""" );
                        var idFntS = charIDToTypeID( "FntS" );
                        desc12.putString( idFntS, """Regular""" );*/
                        var idScrp = charIDToTypeID( "Scrp" );
                        desc12.putInteger( idScrp, 0 );
                        var idFntT = charIDToTypeID( "FntT" );
                        desc12.putInteger( idFntT, 1 );
                        var idSz = charIDToTypeID( "Sz  " );
                        var idPnt = charIDToTypeID( "#Pnt" );
    // size;
    //                    desc12.putUnitDouble( idSz, idPnt, theArray[0][1] * (Math.random() * 0.4 + 0.8) );
                        desc12.putUnitDouble( idSz, idPnt, theArray[0][1] );
                        var idTrck = charIDToTypeID( "Trck" );
                        desc12.putInteger( idTrck, 15 );
                        var iddigitSet = stringIDToTypeID( "digitSet" );
                        var iddigitSet = stringIDToTypeID( "digitSet" );
                        var iddefaultDigits = stringIDToTypeID( "defaultDigits" );
                        desc12.putEnumerated( iddigitSet, iddigitSet, iddefaultDigits );
                        var idmarkYDistFromBaseline = stringIDToTypeID( "markYDistFromBaseline" );
                        var idPnt = charIDToTypeID( "#Pnt" );
                        desc12.putUnitDouble( idmarkYDistFromBaseline, idPnt, 5.760000 );
                        var idtextLanguage = stringIDToTypeID( "textLanguage" );
                        var idtextLanguage = stringIDToTypeID( "textLanguage" );
                        var idgermanLanguageReformedonenineninesix = stringIDToTypeID( "germanLanguageReformed1996" );
                        desc12.putEnumerated( idtextLanguage, idtextLanguage, idgermanLanguageReformedonenineninesix );
                        var idClr = charIDToTypeID( "Clr " );
                            var desc13 = new ActionDescriptor();
                            var idRd = charIDToTypeID( "Rd  " );
                            desc13.putDouble( idRd, 0 );
                            var idGrn = charIDToTypeID( "Grn " );
                            desc13.putDouble( idGrn, 0 );
                            var idBl = charIDToTypeID( "Bl  " );
                            desc13.putDouble( idBl, 0 );
                        var idRGBC = charIDToTypeID( "RGBC" );
                        desc12.putObject( idClr, idRGBC, desc13 );
                    var idTxtS = charIDToTypeID( "TxtS" );
                    desc11.putObject( idTxtS, idTxtS, desc12 );
                var idTxtt = charIDToTypeID( "Txtt" );
                list2.putObject( idTxtt, desc11 );
    // if more than one array;
    // add the string’s lengths;
    var theCounter = theArray[0][0].length + 1;
    for (var n = 1; n < theArray.length; n++) {
                    var desc14 = new ActionDescriptor();
                    var idFrom = charIDToTypeID( "From" );
    // from;
                    desc14.putInteger( idFrom, theCounter );
                    var idT = charIDToTypeID( "T   " );
    theCounter = theCounter + 1 + theArray[n][0].length;
    // to;
                    desc14.putInteger( idT, theCounter );
                    var idTxtS = charIDToTypeID( "TxtS" );
                        var desc15 = new ActionDescriptor();
                        var idstyleSheetHasParent = stringIDToTypeID( "styleSheetHasParent" );
                        desc15.putBoolean( idstyleSheetHasParent, true );
                        var idfontPostScriptName = stringIDToTypeID( "fontPostScriptName" );
    // font;
                        desc15.putString( idfontPostScriptName, theArray[n][2] );
                        var idScrp = charIDToTypeID( "Scrp" );
                        desc15.putInteger( idScrp, 0 );
                        var idFntT = charIDToTypeID( "FntT" );
                        desc15.putInteger( idFntT, 0 );
                        var idSz = charIDToTypeID( "Sz  " );
                        var idPnt = charIDToTypeID( "#Pnt" );
    // size;
                        desc15.putUnitDouble( idSz, idPnt, theArray[n][1] );
                        var idTrck = charIDToTypeID( "Trck" );
                        desc15.putInteger( idTrck, 15 );
                        var iddigitSet = stringIDToTypeID( "digitSet" );
                        var iddigitSet = stringIDToTypeID( "digitSet" );
                        var iddefaultDigits = stringIDToTypeID( "defaultDigits" );
                        desc15.putEnumerated( iddigitSet, iddigitSet, iddefaultDigits );
                        var idmarkYDistFromBaseline = stringIDToTypeID( "markYDistFromBaseline" );
                        var idPnt = charIDToTypeID( "#Pnt" );
                        desc15.putUnitDouble( idmarkYDistFromBaseline, idPnt, 5.760000 );
                        var idtextLanguage = stringIDToTypeID( "textLanguage" );
                        var idtextLanguage = stringIDToTypeID( "textLanguage" );
                        var idgermanLanguageReformedonenineninesix = stringIDToTypeID( "germanLanguageReformed1996" );
                        desc15.putEnumerated( idtextLanguage, idtextLanguage, idgermanLanguageReformedonenineninesix );
                        var idClr = charIDToTypeID( "Clr " );
                            var desc16 = new ActionDescriptor();
                            var idRd = charIDToTypeID( "Rd  " );
                            desc16.putDouble( idRd, 0 );
                            var idGrn = charIDToTypeID( "Grn " );
                            desc16.putDouble( idGrn, 0 );
                            var idBl = charIDToTypeID( "Bl  " );
                            desc16.putDouble( idBl, 0 );
                        var idRGBC = charIDToTypeID( "RGBC" );
                        desc15.putObject( idClr, idRGBC, desc16 );
                    var idTxtS = charIDToTypeID( "TxtS" );
                    desc14.putObject( idTxtS, idTxtS, desc15 );
                var idTxtt = charIDToTypeID( "Txtt" );
                list2.putObject( idTxtt, desc14 );
            desc5.putList( idTxtt, list2 );
            var idparagraphStyleRange = stringIDToTypeID( "paragraphStyleRange" );
                var list3 = new ActionList();
                    var desc17 = new ActionDescriptor();
                    var idFrom = charIDToTypeID( "From" );
                    desc17.putInteger( idFrom, 0 );
                    var idT = charIDToTypeID( "T   " );
    // to;
                    desc17.putInteger( idT, theText.length*2);
                    var idparagraphStyle = stringIDToTypeID( "paragraphStyle" );
                        var desc18 = new ActionDescriptor();
                        var idstyleSheetHasParent = stringIDToTypeID( "styleSheetHasParent" );
                        desc18.putBoolean( idstyleSheetHasParent, true );
                        var idAlgn = charIDToTypeID( "Algn" );
                        var idAlg = charIDToTypeID( "Alg " );
                        var idCntr = charIDToTypeID( "Cntr" );
                        desc18.putEnumerated( idAlgn, idAlg, idCntr );
                        var idhyphenate = stringIDToTypeID( "hyphenate" );
                        desc18.putBoolean( idhyphenate, true );
                        var idhyphenateWordSize = stringIDToTypeID( "hyphenateWordSize" );
                        desc18.putInteger( idhyphenateWordSize, 8 );
                        var idhyphenatePreLength = stringIDToTypeID( "hyphenatePreLength" );
                        desc18.putInteger( idhyphenatePreLength, 3 );
                        var idhyphenatePostLength = stringIDToTypeID( "hyphenatePostLength" );
                        desc18.putInteger( idhyphenatePostLength, 3 );
                        var idhyphenateLimit = stringIDToTypeID( "hyphenateLimit" );
                        desc18.putInteger( idhyphenateLimit, 2 );
                        var idhyphenationZone = stringIDToTypeID( "hyphenationZone" );
                        desc18.putDouble( idhyphenationZone, 36.000000 );
                        var idhyphenateCapitalized = stringIDToTypeID( "hyphenateCapitalized" );
                        desc18.putBoolean( idhyphenateCapitalized, true );
                        var idburasagari = stringIDToTypeID( "burasagari" );
                        var idburasagari = stringIDToTypeID( "burasagari" );
                        var idburasagariStandard = stringIDToTypeID( "burasagariStandard" );
                        desc18.putEnumerated( idburasagari, idburasagari, idburasagariStandard );
                        var idtextEveryLineComposer = stringIDToTypeID( "textEveryLineComposer" );
                        desc18.putBoolean( idtextEveryLineComposer, true );
                    var idparagraphStyle = stringIDToTypeID( "paragraphStyle" );
                    desc17.putObject( idparagraphStyle, idparagraphStyle, desc18 );
                var idparagraphStyleRange = stringIDToTypeID( "paragraphStyleRange" );
                list3.putObject( idparagraphStyleRange, desc17 );
            desc5.putList( idparagraphStyleRange, list3 );
            var idkerningRange = stringIDToTypeID( "kerningRange" );
                var list4 = new ActionList();
            desc5.putList( idkerningRange, list4 );
        var idTxLr = charIDToTypeID( "TxLr" );
        desc4.putObject( idUsng, idTxLr, desc5 );
    executeAction( idMk, desc4, DialogModes.NO );

  • I live in Canada.  Each time I travel to the US, I lose all calendar entries.  I have to erase all data, then restore from an iCloud backup.  Tedious.  iPhone 4, iOS 7.1, sync set to all events.  Any suggestions?

    I live in Canada.  Each time I travel to the US, I lose all calendar entries.  I have to erase all data, then restore from an iCloud backup.  Tedious.  iPhone 4, iOS 7.1, sync set to all events.  I only use the default calendar.  Do I have an incorrect setting?

    I did find another point worth mentioning. 
    I use my iPhone 4 with a corporate Exchange email account.  I had deleted the account from my phone just before I did this backup/restore process...and I thought my battery drain was much, much better (if not outright fixed). 
    Later in the day, after seeing my battery life improve to near-new behavior, I re-added my Exchange mail account.  Considering I have 1 yahoo account and 3 gmail accounts, the Exchange account adds a 5th email account.
    What happened?  Battery drain back to "worst case".  Removing or re-adding the Exchange account is like toggling between decent and terrible drain conditions.
    Bottom line is that I re-added a couple dozen applications and battery life didn't change.  By far, the Exchange account drains the battery worse than any other app and setting.  This account must be polling very frequently and since people tend to send very large file attachments to that account, perhaps those effect the battery drain even though I have the account set to not download attachments.
    Anyone running Microsoft Exchange might be able to confirm what I see?  If so I can open an enterprise ticket with Microsoft and bug them on this issue.

  • Set different fonts etc  within title?

    How do i set different fonts/sizes etc within the one title in 'basic text'?
    I, for example, I wish to create lower thirds and want to add another layer of text with different attributes, how do i add 'text 2' or 3 or even 4?
    And, if I'm in the 'lower third' preset, how do i add alignment options, if i need more?
    cheers

    Best you can do using 'Basic text' or 'Lower 3rd', is to create a new text clip for each change you want to make and stack them on top of each other. You can use the 'Basic Motion - x/y parameters' in the Motion tab.
    You have better independent sizing options using Boris Title 3D, but you will still be limited in independent alignment options without creating additional layers.
    K

  • CC 2014 (18.1.0) | Text Field editing causing crashes (Windows)

    Greetings;
    I've noticed lately that when saving files from CC 2014 to a CS6 format - and having those files edited on Mac, in either CS6 or CC - when re-opening those files text fields have been causing crashes on the Windows client. When that same file is opened and text fields are edited on the Mac client, a prompt will just appear stating "Cannot Edit text" - yet it still allows it.
    This has caused multiple issues for our teams as it has created files we're starting to refer to as "mine fields" - as working with the .ai file is like playing Russian roulette with text fields, you never know which one is going to crash the file.
    I would love to work with a team member from Adobe to help find a resolution to the problem, and I'm willing to provide any additional details that might aid in that process.
    Thanks!

    Hello Pureweb,
    Please upload the crashdumps on some file sharing website say Dropbox and share the link with us by sending a mail to "[email protected]". We will analyze the dump and will suggest you the workaround appropriately.
    In parallel, please check that you do not have any 3rd Party plugins installed in it. Please try to remove them one-by-one and see which one causes the crashes or do reverse i.e. remove all the 3rd party plugins. Or Uninstall Ai and check at following location:
    C:\Program Files\Adobe\Adobe Illustrator CC 2014
    Please verify that nothing is left at above location on uninstalling Ai. Then try a fresh install and see if Ai works.
    Also, verify that you have the updated Wacom drivers on your system. This might be an issue with the 3rd party program as well. One of the user who was having a similar issue reported on the Ai forum that one of the 3rd party Stahl's ImageWorx DTG RIP - a program for printing to a Direct To Garment printer was causing the issue. So, you may check if the similar thing is not happening in your case.
    Regards,
    Dhirendra

  • Setting the font

    I am trying to figure out how to set the font and this is what I have come up with up so far:
    AIFontKey fontKey;
    error = sAIFont->FindFont( "Arial", kAIAnyFontTechnology, kRomanAIScript, true, &fontKey );
    if (error) throw (error);
    FontRef fontRef;
    error = sAIFont->FontFromFontKey( fontKey, &fontRef );
    if (error) throw (error);
    IFont iFont( fontRef);
    features.SetFont( iFont);
    I am not sure if I am doing this correct. I took most of this code form another post, but was  not sure how to implement the code.
    I am trying to set the font and am using the below code to set the font size and the position of the text:
    ATE::IParaFeatures justif;
    ATE::ICharFeatures features;
    justif.SetLeadingType(ATE::kRomanLeadingType);
    justif.SetStartIndent(kAIRealZero);
    justif.SetFirstLineIndent(kAIRealZero);
    features.SetTracking(kAIRealZero);
    //Justification.
    justif.SetJustification(kCenterJustify);
    //Size
    features.SetFontSize(10);
    AIArtHandle artGroup = NULL;
    error = sAIArt->GetFirstArtOfLayer(NULL, &artGroup);
    aisdk::check_ai_error(error);
    // Add the new point text item to the layer.
    AITextOrientation orient = kHorizontalTextOrientation;
    AIRealPoint anchor = {this->fEndPoint.h,this->fEndPoint.v-4};
    AIArtHandle textFrame = NULL;
    error = sAITextFrame->NewPointText(kPlaceAboveAll, artGroup, orient, anchor, &textFrame);
    aisdk::check_ai_error(error);
    // Set the contents of the text range.
    TextRangeRef range = NULL;
    error = sAITextFrame->GetATETextRange(textFrame, &range);
    aisdk::check_ai_error(error);
    ITextRange crange(range);
    crange.SetLocalCharFeatures(features);
    crange.SetLocalParaFeatures(justif);
    crange.InsertAfter("X");
    Any help would help thanks daniel

    Okay, here is what I decided to do...it is lame, but it works. Thanks for the help. : )
    char buf[250], fonttext[500];
    short forfont;
    long fontCount = 0;
    int font_value;
    error = sAIFont->CountFonts(&fontCount);
    //char buffer[sizeof(long)*8+1];
    //MessageBox(NULL, ltoa(fontCount, buffer, 10), "Font Num", 0);
    aisdk::check_ai_error(error);
    for (int i = 0; i < fontCount; i++)
    // Report each font name to the log.
    AIFontKey fontKey = NULL;
    error = sAIFont->IndexFontList(i, &fontKey);
    aisdk::check_ai_error(error);
    error = sAIFont->GetUserFontName(fontKey,fonttext,forfont);
    if(strcmp(fonttext, "Arial Bold") == 0)
    font_value = i;
    break;
    else
    font_value = -1;
    aisdk::check_ai_error(error);
    FontRef fontRef;
    AIFontKey fontKey = NULL;
    //For instance, 10 is a number of the font in the font list.
    error = sAIFont -> IndexFontList(font_value, &fontKey );
    error = sAIFont -> FontFromFontKey ( fontKey, &fontRef );
    ATE::IFont iFont( fontRef );
    features.SetFont( iFont );

  • Photoshop CC Content - Aware Move Tool causes crash

    Does anyone have any ideas why this is happening? Content Aware Move tool causes crash every time so far with tiff and jpegs and its getting frustrating!
    I have Windows 8.1 Pro with 8GB RAM
    NVIDIA GeForce GT 650M Graphics
    Photoshop CC 64 bit

    Thanks for the reply JJMack - I have to be honest, i'm not exactly sure what i'm looking for here!
    Source
    Adobe Photoshop CC 2014
    Summary
    Stopped working
    Date
    06/04/2015 09:45
    Status
    Report sent
    Description
    Faulting Application Path: C:\Program Files\Adobe\Adobe Photoshop CC 2014\Photoshop.exe
    Problem signature
    Problem Event Name: APPCRASH
    Application Name: Photoshop.exe
    Application Version: 15.2.2.310
    Application Timestamp: 5480338c
    Fault Module Name: FaceDetection.dll
    Fault Module Version: 2.2.6.32411
    Fault Module Timestamp: 52e12400
    Exception Code: c0000005
    Exception Offset: 000000000001704d
    OS Version: 6.3.9600.2.0.0.256.48
    Locale ID: 2057
    Additional Information 1: e87c
    Additional Information 2: e87c816cbb2acbf5e54624fc2b1f98cc
    Additional Information 3: 1879
    Additional Information 4: 1879b998534215d47b0a850e45784427
    Extra information about the problem
    Bucket ID: 2dac81db98a57fddf5997edfd40ba6eb (85993531415)

  • Photoshop layer move and layer duplicate event ids

    I am running PSCC 2014 on a mac. I work with a wacom table and keyboard shortcuts. I work fast without looking look at the keyboard. Often end up moving layers, duplicating layers inadvertently by pressing the wrong keys.
    I have identified the keyboard shortcuts responsible for the layer shift/duplication and was able to record an action.
    The idea is to setup a Javascript alert when the layer moves or duplicates using the Scripts Events Manager Photoshop Event dialog.
    I have not been able to successfully add the Photoshop Event using the Event ID code 'copy' and ‘move’ listed in the Adobe Photoshop CC 2014 Javascript Scripting Reference guide. 
    The Adobe scripting listener plugin does not record the layer movement and layer duplication events.
    When I replicate the problem the History pallet registers both, the layer copy and layer move events as a ‘move’ history state.
    Other than Javascript Scripting Reference guide Is there a way to find out the exact event Id for a layer move and layer duplicate events?

    sorry, I wasn't aware you're using a mac. I know that in Windows, you can run additional software that will send you an alert every time you accidentally press those keys. It can even block the layer shift/duplication if you choose. I've just tried a sample here on my system and it works perfectly - every time cmd (in my case ctrl) is pressed, a tooltip at the mouse cursor will pop up, saying "CTRL is pressed". Additionally, whenever I press ctrl+option+drag, the tooltip instead says "Layer has been moved". I'm positive this can also be done on the mac.
    you should look into a key remapping program for the mac that resembles AutoHotKey for Windows (which is what I'm using). It will allow you to send alerts every time you press those key/mousebutton combinations by accident. This is a solution I bet you can take care of outside of Photoshop, meaning that you won't need to rely on javascripting or anything.
    Here's a webpage that gives a full list of mac software which are similar to AutoHotKey:
    AutoHotkey Alternatives for Mac OS X - AlternativeTo.net
    Keyboard Maestro seems to be the best bet but I wouldn't know for sure. Your solution will be in one of those programs for sure.
    By the way - I tried BCM's panel and it works perfectly! 

  • Why Does 3D Reposse cause crashes and work so slow?

    Why Does 3D Reposse cause crashes and work so slow?   I get the pinwheel of death when I use this feature.  It works at a snails pace.  I liked the 3D Type effects in iIllustrator.  Why couldn't Adobe have added all the Reposse features to Illustrator instead of craming all these new features into Photoshop?
    They're worthless if the program needs an hour to process every selection.

    What are your OS specs, your Video Card and your Preferences > Performance settings?
    Why Does 3D Reposse cause crashes and work so slow?
    My guess would be because it has to create a whole bunch of polygons and your computer-set-up may be insufficient for the task.

  • Table font size changes when I set other font property

    I had anomalous behavior in a VI i wrote so I did the following to troubleshoot it.  Can anybody explain what's going on?
    I created a table indicator and changed the font size to 36 for a 5x5 area cells using mouse-drag-select and the front panel "Xpt Application Font" dropdown.  I changed one of the rows to font=strikeout using the same front panel dropdown.    I then used the FOR loops and properties as below to change the stikeout property to FALSE for all 5 rows.  Running the VI caused the font size of all of the text to change, even though the CellFontSize property was not set anywhere in the VI.  I manually set the font sizes to 36 again and subsequent runs of the the VI did not affect the font sizes. 

    I did not attach the code because after it runs it is "fixed".  The FOR loop I described is easy enough to recreate but it seems there was an issue with the image in the first post so I've attached it here (rather than try again to include it in the message). 
    Attachments:
    table_font.png ‏12 KB

  • Windows xp, minidump, applemtm.sys caused crash

    hi, my mbp just crashed in windows xp.
    remained minidump said, applemtm.sys caused crash...
    ^^ i know this info is too little figure out the problem...
    but, is there anyone faced like this one?
    -------- minidump -----
    ATTEMPTEDSWITCH_FROMDPC (b8)
    A wait operation, attach process, or yield was attempted from a DPC routine.
    This is an illegal operation and the stack track will lead to the offending
    code and original DPC routine.
    Arguments:
    Arg1: 00000000, Original thread which is the cause of the failure
    Arg2: 00000000, New thread
    Arg3: 00000000, Stack address of the original thread
    Arg4: 00000000
    Debugging Details:
    *** Kernel symbols are WRONG. Please fix symbols to do analysis.
    * Your debugger is not using the correct symbols *
    * In order for this command to work properly, your symbol path *
    * must point to .pdb files that have full type information. *
    * Certain .pdb files (such as the public OS symbols) do not *
    * contain the required information. Contact the group that *
    * provided you with these symbols if you need this command to *
    * work. *
    * Type referenced: nt!_KPRCB *
    * Your debugger is not using the correct symbols *
    * In order for this command to work properly, your symbol path *
    * must point to .pdb files that have full type information. *
    * Certain .pdb files (such as the public OS symbols) do not *
    * contain the required information. Contact the group that *
    * provided you with these symbols if you need this command to *
    * work. *
    * Type referenced: nt!KPRCB *
    * Your debugger is not using the correct symbols *
    * In order for this command to work properly, your symbol path *
    * must point to .pdb files that have full type information. *
    * Certain .pdb files (such as the public OS symbols) do not *
    * contain the required information. Contact the group that *
    * provided you with these symbols if you need this command to *
    * work. *
    * Type referenced: nt!_KPRCB *
    * Your debugger is not using the correct symbols *
    * In order for this command to work properly, your symbol path *
    * must point to .pdb files that have full type information. *
    * Certain .pdb files (such as the public OS symbols) do not *
    * contain the required information. Contact the group that *
    * provided you with these symbols if you need this command to *
    * work. *
    * Type referenced: nt!KPRCB *
    * Your debugger is not using the correct symbols *
    * In order for this command to work properly, your symbol path *
    * must point to .pdb files that have full type information. *
    * Certain .pdb files (such as the public OS symbols) do not *
    * contain the required information. Contact the group that *
    * provided you with these symbols if you need this command to *
    * work. *
    * Type referenced: nt!_KPRCB *
    * Your debugger is not using the correct symbols *
    * In order for this command to work properly, your symbol path *
    * must point to .pdb files that have full type information. *
    * Certain .pdb files (such as the public OS symbols) do not *
    * contain the required information. Contact the group that *
    * provided you with these symbols if you need this command to *
    * work. *
    * Type referenced: nt!_KPRCB *
    * Your debugger is not using the correct symbols *
    * In order for this command to work properly, your symbol path *
    * must point to .pdb files that have full type information. *
    * Certain .pdb files (such as the public OS symbols) do not *
    * contain the required information. Contact the group that *
    * provided you with these symbols if you need this command to *
    * work. *
    * Type referenced: nt!_KPRCB *
    * Symbols can not be loaded because symbol path is not initialized. *
    * The Symbol Path can be set by: *
    * using the NT_SYMBOLPATH environment variable. *
    * using the -y <symbol_path> argument when starting the debugger. *
    * using .sympath and .sympath+ *
    * Symbols can not be loaded because symbol path is not initialized. *
    * The Symbol Path can be set by: *
    * using the NT_SYMBOLPATH environment variable. *
    * using the -y <symbol_path> argument when starting the debugger. *
    * using .sympath and .sympath+ *
    FAULTING_MODULE: 804d9000 nt
    DEBUGFLR_IMAGETIMESTAMP: 47685ec5
    CUSTOMERCRASHCOUNT: 1
    DEFAULTBUCKETID: WRONG_SYMBOLS
    BUGCHECK_STR: 0xB8
    LASTCONTROLTRANSFER: from 80547c4b to 804fbf0e
    STACK_TEXT:
    WARNING: Stack unwind information not available. Following frames may be wrong.
    bacd3c8c 80547c4b 000000b8 ffffffff 00000202 nt+0x22f0e
    bacd3ce4 b7e06569 00000000 00000000 00000000 nt+0x6ec4b
    bacd3d10 b7e4be4a 8a1711d8 00000000 8a451e08 Wdf01000+0x15569
    bacd3d2c b7fcb53b 8a171290 75dc0430 8a23fbc8 Wdf01000+0x5ae4a
    bacd3d4c b7fcb651 75bae3b8 8a00de70 bacd3da8 applemtm+0x53b
    bacd3d5c b7e261b2 760ef150 75dfc680 bacd3d80 applemtm+0x651
    bacd3da8 b7e26253 b7e57a08 8a203978 89f10ea8 Wdf01000+0x351b2
    bacd3dc0 b7dfd5d3 8a00df97 8a203978 00000000 Wdf01000+0x35253
    bacd3ddc b7dfd68d 01f10ea8 8962e450 bacd3e08 Wdf01000+0xc5d3
    bacd3dec 804f280d 8a46c5a8 8a00de70 89f10ea8 Wdf01000+0xc68d
    bacd3e08 804f36b0 8a46c5a8 8a00de70 8962e450 nt+0x1980d
    bacd3e38 b99210d5 8a00de70 88da4980 8a2d3028 nt+0x1a6b0
    bacd3ea0 b9921d47 895bd170 00000000 8a2d37d8 USBPORT+0xa0d5
    bacd3ed0 b9922944 026e6f44 8a2d30e0 8a2d30e0 USBPORT+0xad47
    bacd3f08 b992413a 8a2d3028 80548abc 8a2d3230 USBPORT+0xb944
    bacd3f34 b993224b 8a2d3028 80548abc 8a2d3028 USBPORT+0xd13a
    bacd3f70 b99323c2 8a2d3028 00000001 8a34a834 USBPORT+0x1b24b
    bacd3f8c ba6b8d54 8a2d364c 6b755044 00000000 USBPORT+0x1b3c2
    bacd3fbc 8a34adb2 8a34a310 b993225c bacd3fd0 sptd+0x11d54
    bacd3fc0 8a34a310 b993225c bacd3fd0 80547e6f 0x8a34adb2
    bacd3fc4 b993225c bacd3fd0 80547e6f 8a2d364c 0x8a34a310
    bacd3fc8 bacd3fd0 80547e6f 8a2d364c 8a2d3028 USBPORT+0x1b25c
    bacd3fcc 80547e6f 8a2d364c 8a2d3028 00000000 0xbacd3fd0
    bacd3fd0 8a2d364c 8a2d3028 00000000 00000000 nt+0x6ee6f
    bacd3fd4 8a2d3028 00000000 00000000 b401ff4a 0x8a2d364c
    bacd3fd8 00000000 00000000 b401ff4a 6803fe95 0x8a2d3028
    STACK_COMMAND: kb
    FOLLOWUP_IP:
    applemtm+53b
    b7fcb53b ?? ???
    SYMBOLSTACKINDEX: 4
    SYMBOL_NAME: applemtm+53b
    FOLLOWUP_NAME: MachineOwner
    MODULE_NAME: applemtm
    IMAGE_NAME: applemtm.sys
    BUCKET_ID: WRONG_SYMBOLS
    Followup: MachineOwner
    ---------

    My MBP crashed with exactly the same dump. The crashes occurred during a StandBy operation (My MBP crashed regularly but not reproducably while trying to stand by/sleep).
    Microsoft (R) Windows Debugger Version 6.9.0003.113 X86
    Copyright (c) Microsoft Corporation. All rights reserved.
    Loading Dump File [C:\Documents and Settings\vas\Desktop\Mini070508-01.dmp]
    Mini Kernel Dump File: Only registers and stack trace are available
    Symbol search path is: srvc:symbolshttp://msdl.microsoft.com/download/symbols
    Executable search path is: c:\windows\i386
    Windows XP Kernel Version 2600 (Service Pack 2) MP (2 procs) Free x86 compatible
    Product: WinNt, suite: TerminalServer SingleUserTS
    Built by: 2600.xpspsp2rtm.040803-2158
    Kernel base = 0x804d7000 PsLoadedModuleList = 0x8055c700
    Debug session time: Sat Jul 5 22:53:49.999 2008 (GMT-7)
    System Uptime: 0 days 22:33:47.814
    Loading Kernel Symbols
    Loading User Symbols
    Loading unloaded module list
    * Bugcheck Analysis *
    Use !analyze -v to get detailed debugging information.
    BugCheck B8, {0, 0, 0, 0}
    * WARNING: Unable to verify timestamp for applemtm.sys
    * ERROR: Module load completed but symbols could not be loaded for applemtm.sys
    Probably caused by : applemtm.sys ( applemtm+53b )
    Followup: MachineOwner
    1: kd> !analyze -v
    * Bugcheck Analysis *
    ATTEMPTEDSWITCH_FROMDPC (b8)
    A wait operation, attach process, or yield was attempted from a DPC routine.
    This is an illegal operation and the stack track will lead to the offending
    code and original DPC routine.
    Arguments:
    Arg1: 00000000, Original thread which is the cause of the failure
    Arg2: 00000000, New thread
    Arg3: 00000000, Stack address of the original thread
    Arg4: 00000000
    Debugging Details:
    CUSTOMERCRASHCOUNT: 1
    DEFAULTBUCKETID: DRIVER_FAULT
    BUGCHECK_STR: 0xB8
    PROCESS_NAME: System
    LASTCONTROLTRANSFER: from 80544c3b to 804f9c12
    STACK_TEXT:
    bace7ccc 80544c3b 000000b8 ffffffff 00000202 nt!KeBugCheck+0x14
    bace7cdc 8054498b bace7d24 88d3b418 bab40120 nt!ScPatchFxe+0x46
    bace7cf0 80502b17 88d3b488 88d3b418 804fad6c nt!KiSwapContext+0x2f
    bace7cfc 804fad6c 00000000 00000000 8a19a4b0 nt!KiSwapThread+0x6b
    bace7d24 b7022569 00000000 00000000 00000000 nt!KeWaitForSingleObject+0x1c2
    bace7d50 b7067e4a 8a0c2a30 00000000 8a37efb0 Wdf01000!FxWaitLockInternal::AcquireLock+0x3a
    bace7d6c b939853b 8a0c2ae8 75e65b78 8a19a480 Wdf01000!imp_WdfWaitLockAcquire+0xc9
    WARNING: Stack unwind information not available. Following frames may be wrong.
    bace7d8c b9398651 75c81210 89eee008 bace7de8 applemtm+0x53b
    bace7d9c b70421b2 764c7c80 7652beb8 bace7dc0 applemtm+0x651
    bace7de8 b7042253 b7073a08 89ad4140 89b38378 Wdf01000!FxRequestBase::CompleteSubmittedNoContext+0x63
    bace7e00 b70195d3 89eee12f 89ad4140 00000000 Wdf01000!FxRequestBase::CompleteSubmitted+0x97
    bace7e1c b701968d 01b38378 88a9ed80 bace7e48 Wdf01000!FxIoTarget::RequestCompletionRoutine+0x195
    bace7e2c 804f053f 8a053350 89eee008 89b38378 Wdf01000!FxIoTarget::_RequestCompletionRoutine+0x35
    bace7e48 804f13e2 8a053350 89eee008 88a9ed80 nt!IopUnloadSafeCompletion+0x1d
    bace7e78 b9843ee5 89eee008 892f5ee0 8a25c028 nt!IopfCompleteRequest+0xa2
    bace7ee0 b9844b57 89bdc4a8 00000000 8a25c7d8 USBPORT!USBPORT_CompleteTransfer+0x373
    bace7f10 b9845754 026e6f44 8a25c0e0 8a25c0e0 USBPORT!USBPORT_DoneTransfer+0x137
    bace7f48 b9846f6a 8a25c028 80545aac 8a25c230 USBPORT!USBPORT_FlushDoneTransferList+0x16c
    bace7f74 b9854fb0 8a25c028 80545aac 8a25c028 USBPORT!USBPORT_DpcWorker+0x224
    bace7fb0 b9855128 8a25c028 00000001 89edc578 USBPORT!USBPORT_IsrDpcWorker+0x37e
    bace7fcc 80544e5f 8a25c64c 6b755044 00000000 USBPORT!USBPORT_IsrDpc+0x166
    bace7ff4 805449cb b3f6362c 00000000 00000000 nt!KiRetireDpcList+0x61
    bace7ff8 b3f6362c 00000000 00000000 00000000 nt!KiDispatchInterrupt+0x2b
    805449cb 00000000 00000009 0081850f bb830000 0xb3f6362c
    STACK_COMMAND: kb
    FOLLOWUP_IP:
    applemtm+53b
    b939853b ?? ???
    SYMBOLSTACKINDEX: 7
    SYMBOL_NAME: applemtm+53b
    FOLLOWUP_NAME: MachineOwner
    MODULE_NAME: applemtm
    IMAGE_NAME: applemtm.sys
    DEBUGFLR_IMAGETIMESTAMP: 47685ec5
    FAILUREBUCKETID: 0xB8_applemtm+53b
    BUCKET_ID: 0xB8_applemtm+53b
    Followup: MachineOwner
    Message was edited by: tourist604

Maybe you are looking for

  • To add a text field in standard Transc

    Hi , I want to add a Text field for a email address in BP transaction Address tab and want to update that in to a data base table So can we suggest User Exit and BADI for the Updation if Any or tell me the process....

  • New to iMac , how do I save photo's to my computer?

    I just got a i-mac , this is my first mac computer so I am lost. I am trying to save photo's to my computer from a disk and am not sure how to do this. On my old computer I could just right click and save the image but I can not do that on the mac. t

  • Is there acharge for connections to other tv's without a converter box?

    is there acharge for connections to other tv's without a converter box? Solved! Go to Solution.

  • XML ContentHandler (URGENT)

    import org.xml.sax.*; import org.xml.sax.helpers.*; import javax.xml.parsers.*; public class BandRead {      public void read() throws Exception {           SAXParserFactory spf = SAXParserFactory.newInstance();           XMLReader parser = null;    

  • Business Delegate and Session Facade Pattern

    Hi! The only way to use the Session Facade Pattern, is if I use EJB for Persistence. Is valid to do this?: I use Ejb for simple update, insert querys. From my business delegate I call the Session Facade Layer, and from this I invoque Entyties for per