Changing or Loading Styles crashes InDesign

Hello,
In a particular document, if I try to load or even change (paragraph) styles, InDesign crashes.
I've been able to load styles from the same source document into other documents. But this document, no.
What could be wrong with this document and how can I fix it?
Thanks,
Margie

Have you tried exporting the document as an InDesign Interchange document then reopening it again. The interchange format is like a no frills InDesign document that (from my best understanding) is realy just a set of instructions for InDesign to reconstruct the document from scratch.
* So on the mac all you would do would be go File->Export
* Select "Indesign Interchange" from the format drop down list
* Select a destination for the file (eg Desktop)
* Close the offending document
* Find the newly created interchage file (ends with .INX) and open it
* Cross your fingers and test it

Similar Messages

  • ChangeCase of Selected Style in InDesign CS4

    There is a certain lowercase letters applied in a character style those alone want to be change as UPPERCASE without changing the character style in InDesign CS4 (for e.g. if a group of lowercase characters (that can be any letter) applied in a character style "smallcaps". I want to change that all lowercase characters to UPPERCASE by selecting the "smallcaps" style. Please help me out how to do it in InDesign CS4.

    If you search the forum, you'll find a couple of recent discussions where I posted a script for this.
    If you want a more complete solution you might be interested in this: http://in-tools.com/wordpress/indesign/plugins/formatting-tools/formatting-tools-1-0-5
    Harbs

  • CS2 Javascript crashing InDesign works as 2 parts and in CS3.

    I have a script which works fine in CS3 but when I set it up in CS2 I found it was crashing InDesign. I've tried to cut it down to the minimum and set the 2 parts as functions.
    The first function makeMyslug create a new layer called slug and then some text frames on all master pages, with details about the document. The second function printMyslug prints all pages to postscript and adds a page number to the postscript file.
    If I have a document open and run each of the functions separately all is well. If I try and run both function in one go InDesign crashes. The script seems to crash InDesign once the printing process begins.
    NOTE for this example to work you will need to have a document open and make sure there are no blank pages. I'll post in as a reply so that it can be copied if anyone is able to help me out.
    Any suggestions would be greatly appreciated.

    //Here is the script.
    var mySluglay, myBlueBlk, mySlugChr, mySlugPar, myPageNo, myTitle
    myPageNo = 1;
    myTitle = "Test";
    myDocument = app.activeDocument;
    function makeMyslug(){
    //Create a layer for the slug items.
    mySluglay = myDocument.layers.item("Slug");
    if (mySluglay == null){
    mySluglay = myDocument.layers.add({name:"Slug"});
    //Create a blue background color.
    myBlueBlk = myDocument.colors.item("BlueBack");
    if (myBlueBlk == null){
    myDocument.colors.add({name:"BlueBack", model:ColorModel.process, colorSpace:ColorSpace.cmyk, colorValue:[100, 60, 0, 0]});
    //Create a cahr style.
    mySlugChr = myDocument.characterStyles.item("SlugChar");
    if (mySlugChr == null){
    myDocument.characterStyles.add({name:"SlugChar", appliedFont:"Arial"});
    //Create a para style.
    mySlugPar = myDocument.paragraphStyles.item("SlugPar");
    if (mySlugPar == null){
    myDocument.paragraphStyles.add({name:"SlugPar"});
    // Set units to mm.
    app.activeDocument.viewPreferences.horizontalMeasurementUnits = MeasurementUnits.MILLIMETERS
    app.activeDocument.viewPreferences.verticalMeasurementUnits = MeasurementUnits.MILLIMETERS;
    with(myDocument.documentPreferences){
    //Slug
    slugBottomOffset = "20";
    slugTopOffset = "20";
    slugInsideOrLeftOffset = "0";
    slugRightOrOutsideOffset = "0";
    //Set the documents ruler origin to page origin. This is very important
    //--if you dont do this, getting objects to the correct position on the
    //page is much more difficult.
    myDocument.viewPreferences.rulerOrigin = RulerOrigin.pageOrigin;
    //Create the slug details on all master pages.
    with(myDocument.masterSpreads.item(0)){
    myDocument.pages[0].appliedSection.continueNumbering = false;
    myDocument.pages[0].appliedSection.pageNumberStart = parseInt(myPageNo);
    var myDetails = "Title: "+myTitle;
    var myPageWidth = myDocument.documentPreferences.pageWidth;
    var myPageHeight = myDocument.documentPreferences.pageHeight;
    mp = app.activeDocument.masterSpreads.everyItem().pages.everyItem().getElements();
    for (i = 0; i < mp.length; i++){
    var myTitleBox = mp[i].textFrames.add(myDocument.layers.item("Slug"), undefined, undefined, {geometricBounds:[myPageHeight+6,10,myPageHeight+14, myPageWidth-10], contents:myDetails});
    myTitleBox.label = "Title";
    myTitleBox.textFramePreferences.verticalJustification = VerticalJustification.bottomAlign;
    myTitleBox.parentStory.paragraphs[0].appliedCharacterStyle = "SlugChar";
    myTitleBox.parentStory.paragraphs[0].appliedParagraphStyle = "SlugPar";
    myTitleBox.parentStory.fillColor = myDocument.swatches.item("Paper");
    myTitleBox.parentStory.pointSize = 10;
    myTitleBox.bringToFront();
    myTitleBox.textFramePreferences.ignoreWrap = true;
    myTitleBox.textFramePreferences.textColumnCount = 1;
    var mycount = app.activeDocument.masterSpreads.item(0).pages.item(0).textFrames.item("Title");
    var myBlueBlock = mp[i].textFrames.add(myDocument.layers.item("Slug"), undefined, undefined, {geometricBounds:[myPageHeight+6, 8,myPageHeight+20, myPageWidth-8]});
    myBlueBlock.label = "BlueBlock";
    myBlueBlock.fillColor = "BlueBack";
    myBlueBlock.textFramePreferences.verticalJustification = VerticalJustification.bottomAlign;
    myBlueBlock.sendToBack();
    var myWhiteBlock = mp[i].textFrames.add(myDocument.layers.item("Slug"), undefined, undefined, {geometricBounds:[myPageHeight+14.5, 9,myPageHeight+19, myPageWidth-9]});
    myWhiteBlock.label = "WhiteBlock";
    myWhiteBlock.fillColor = myDocument.swatches.item("Paper");
    var myPageNoBox = mp[i].textFrames.add(myDocument.layers.item("Slug"), undefined, undefined, {geometricBounds:[myPageHeight-5, 10, myPageHeight+18, myPageWidth-10]});
    myPageNoBox.label = "PageNo";
    myPageNoBox.insertionPoints.item(0).contents = SpecialCharacters.autoPageNumber;
    myPageNoBox.insertionPoints.item(0).contents = SpecialCharacters.emSpace;
    myPageNoBox.insertionPoints.item(0).contents = "Page No";
    myPageNoBox.parentStory.paragraphs[0].appliedCharacterStyle = "SlugChar";
    myPageNoBox.parentStory.paragraphs[0].appliedParagraphStyle = "SlugPar";
    myPageNoBox.textFramePreferences.verticalJustification = VerticalJustification.bottomAlign;
    myPageNoBox.textFramePreferences.ignoreWrap = true;
    myPageNoBox.textFramePreferences.textColumnCount = 1;
    //print function
    function printMyslug(){
    alert("Start print process.");
    myDocument.printPreferences.printer = Printer.POSTSCRIPT_FILE;
    myDocument.printPreferences.ppd = PPDValues.DEVICE_INDEPENDENT;
    for(var myCounter = 0; myCounter < myDocument.pages.length; myCounter++){
    myPageName = myDocument.pages.item(myCounter).name;
    myDocument.printPreferences.pageRange = myPageName;
    //The name of the exported files will be the base name + the page name + ".pdf".
    //If the page name contains a colon (as it will if the document contains sections),
    //then remove the colon.
    var myRegExp = new RegExp(":","gi");
    myPageName = myPageName.replace(myRegExp, "_");
    myFilePath = "/c/idjavascript/test_" + myPageName + ".ps";
    myFile = new File(myFilePath);
    document.printPreferences.printFile = myFile;
    try{
    myDocument.print(false);
    catch(e){
    alert("Page "+myPageName+" may be blank plesae check.");
    //call the makeMyslug function
    makeMyslug();
    //call the printMyslug function
    printMyslug();

  • FIND/CHANGE - Applying Paragraph Style

    Hello,
    I used FIND/CHANGE to apply my paragraph style and when I apply the paragraph style... it applies the style to the entire line.
    For example,
    A. #70712       resulted to         A. #70712
    I only wanted the "#70712" to be changed to my style. I used the GREP search and entered #.+ and then I choose the paragraph style I want and clicked change all. The problem is that it changed all the text on that line and applied the paragraph style.
    Please help. Thank you very much.

    graphicsoc wrote:
    Hello,
    I used FIND/CHANGE to apply my paragraph style and when I apply the paragraph style... it applies the style to the entire line.
    For example,
    A. #70712       resulted to         A. #70712
    I only wanted the "#70712" to be changed to my style. I used the GREP search and entered #.+ and then I choose the paragraph style I want and clicked change all. The problem is that it changed all the text on that line and applied the paragraph style.
    Please help. Thank you very much.
    If I understand your request correctly:
    If your paragraph style uses a numbered list to create the "A." and the remainder of the paragraph consists of only "# 70712" that you type in manually (or place from an existing file), I believe that you you don't need GREP. You can format the auto-numbered list differently from the remainder of its paragraph, by specifying a character style for the number portion.
    To extract only the non-numbered portion of an auto-numbered paragraph, for a TOC, in the Table of Contents dialog box, open the bottom part by clicking More Options if necessary, and in the Numbered Paragraphs pull-down menu, select Exclude Numbers.
    Read more about Table of Contents in Help, and/or with a Google search for terms like "InDesign table of contents numbered list exclude numbers" without quotes.
    If you need additional special formatting "tricks" in the source paragraphs, or in the TOC entry paragraphs, look into Nested Styles and GREP
    Styles in Help or Google searches.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • CS3: Period in findWhat crashes InDesign

    This code crashes InDesign CS3:
    app.findTextPreferences.findWhat = ", .";
    app.changeTextPreferences.changeTo = ".";
    app.changeText();
    This works fine:
    app.findGrepPreferences.findWhat = ", \\.";
    app.changeGrepPreferences.changeTo = ".";
    app.changeGrep();
    Hope this helps someone.
    Walt

    Sadly, CS3 may crash on virtually any scripted search/replace. I had it crash on double quotes, tabs, and even spaces. Usually, moving the specific s&r from regular to GREP or the other way around clears it for that offending file only.
    The symptom seems connected to a specific file (as it may always fail on one and never on another), but saving as INX and re-loading never cleared it up for me. As it is quite a hassle to find the exact code it crashes on this time (with intermittant crashes on each new try), I usually shrug and do my replaces from memory. After all, it's just a few hundred of'em.

  • ERROR Could not load style sheet: custom.css

    Hi i am working with ADF faces.I had used selectors to change the skin.I put all the selectors in custom.css file.And i put the folder in the webcontent folder.
    Like Skins/Ex/custom.css.
    And here is the content of my adf-faces-skins.xml file
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <skins xmlns="http://xmlns.oracle.com/adf/view/faces/skin">
    <skin>
    <id>Ex.desktop</id>
    <family>Ex</family>
    <!-- <skin-family>#{sessionScope.skinFamily}</skin-family> -->
    <render-kit-id>oracle.adf.desktop</render-kit-id>
    <style-sheet-name>custom.css</style-sheet-name>
    </skin>
    </skins>
    And adf-faces-config.xml content is
    <?xml version="1.0" encoding="windows-1252"?>
    <adf-faces-config xmlns="http://xmlns.oracle.com/adf/view/faces/config">
    <skin-family>Ex</skin-family>
    </adf-faces-config>
    Now my problem is my application could't recognize the stylesheet.
    And while i run the application i am getting the output which is using the Simple skin.......And in the log file it showing the error like
    2006-11-09 14:18:58.125 ERROR Could not load style sheet: skins\Ex\custom.css
    So anybody could help me in finding out the error.......Hope so..........
    Thanks.......
    simmi

    I am sorry
    Here is the content of my adf-faces-skins.xml file
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <skins xmlns="http://xmlns.oracle.com/adf/view/faces/skin">
    <skin>
    <id>Ex.desktop</id>
    <family>Ex</family>
    <!-- <skin-family>#{sessionScope.skinFamily}</skin-family> -->
    <render-kit-id>oracle.adf.desktop</render-kit-id>
    <style-sheet-name>skins\Ex\custom.css</style-sheet-name>
    </skin>
    </skins>

  • Textframe crashing InDesign...??

    I'm breaking a bunch of documents out of their textframes. I'm basically taking a bunch of objects that have been placed into one textframe and I'm placing them into individual ones. Essentiallly I get the paragraph outlines, and copy the correlative contents into it. There's been a lot of exception handling etc. that I've had to deal with, but for the most part its gone smoothly. Then I stumble into this:
    OS_PopupWindows: InDesign.exe - Application Error
    The instruction at 0x71482357 referenced memory at 0x171d9000. The memory could not be read.
    I feel like that means something is corrupted, but don't really know. The application isn't particularly informative of why it's crashing... I'm sure this means something to a machine. I suppose this is a nice crash in the sense that I get any information at all.
    Is it possible for a single textframe to be somehow "corrupted"? Otherwise any ideas on how this type of thing could happen? Anything at this point would help. Every other document processes fine without crashing InDesign. Ultimately it might be a matter of simply laying it out from scratch...
    A brief summary of some of the testing I've done to try and isolate the problem:
    1) Checked to see if any of the objects were locked and if so I unlocked them.
    2) Tried removing the paragraphs one at a time, I found that a paragraph containing a graphic would crash if I removed it.
    3) If I duplicate the textframe, its duplicate behaves "normally" in the sense I can move it around or remove it without experiencing a crash, however even with a duplicate attempts to remove the original crash the application.
    4) Checked if the textframe was anchored... it's not.

    Ok, ho capito dove è il problema. Cambia i dizionari in Proximity, e togli Hunspell. Ero quasi certo fosse un problema di dizionario.. ed in effetti è quello.
    Ne approfitto per ricordarti che esiste anche un gruppo italiano di InDesign..
    https://www.facebook.com/groups/indesignusergroupit/
    Leonardo Agosti
    AdobeGuru
    PS.. for the english people reading this conversation, the problem is in the HUNSPELL dictionary. Changing it in the preferences and choosing the old (and wise) Proximity, InDesign doesn't crash.

  • GREP search crashes InDesign

    Hi,
    I have a script which imports XML and formats it. As part of the formatting, there's numerous GREP searches which remove redundant spaces, returns and so on.
    One in particular crashes InDesign and it's driving me nuts.
    It's supposed to remove redundant returns in a table:
    // GREP Search for redundant returns
    app.findGrepPreferences = app.changeGrepPreferences = null;      
    app.findGrepPreferences.appliedParagraphStyle = "ArticleMinister";
    app.findGrepPreferences.findWhat = "\r$";
    app.changeGrepPreferences.changeTo = "";
    app.activeDocument.changeGrep();
    The problem is there's an XML closing tag between the carriage return and the end of the para, i.e. data{return}</closingtag>, but it works fine when the XML is data</closingtag>{return}.
    Any assistance would be most appreciated.

    Hi Vamitul,
    Thanks very much for the reply and it makes perfect sense.
    This script creates quite a complex document and, for some reason, moving the {return} outside the XML tags makes a mess of the document. I do not know why but I suspect that some of the 'clean up' non-GREP search and replace commands in the script are ignoring the XML data - perhaps not but I cannot for the life of me work out why a simple change is making the text a real mess.
    So the 'harder fix' sounds like something worth pursuing as this is the last step in a long process. Do you have any more information about checking the xmlContents? I don't expect anyone else to do my work for me, but advanced (or even intermediate) scripting is something I struggle with.
    Cheers,
    Simon.

  • I have just installed CS6 Master collection but indesign isn't working, when opening I get the message "Cannot load Assignment UI.InDesign because it requires Username. Please install the Username plugin and restart InDesign." not sure what to do next?

    I have successfully installed the CS6 master collection and all the programs seem to be working apart from InDesign. When opening it I get the message "Cannot load Assignment UI.InDesign because it requires Username. Please install the Username plugin and restart InDesign.". I have no idea what to do next?

    Many people use a font manager to organize a large collection of fonts, and sometimes these cause problems in ID. You might not realize that the font manager has installed a plugin in ID, but I think you would know if you added any other program extensions to help you work.
    Can you show us a new crash report since the 8.0.2 update?
    What happens if you start the Mac with the Shift key held down to prevent extensions from loading? What happens if you go to the System settings and create a new user, then restart the Mac and log in with the new user?

  • PC Suite 7 - Loading Style Failed - Clean Vista ma...

    Hello,
    I work at a company that migrates from windows XP to Vista , we are trying to deploy PC Suite on a clean vista machine , and we tried on several machines. but the application straight downloaded from nokia.com/pcsuite starts with an error. its shows a little popup box telling "loading style failed" some how the gui doesnt start up.
    on 5 machines the same error pops up but on 1 machine afther a new ghost has been placed on it) it did start up but the gui was completely messed up (small letters , or no letters, size of the gui was wrong so buttons where shown half). then exiting the application trough right click on the tray icon of PCSync it came with the same error starting it up the next time.
    Fun thing is that all the applications work fine, when we start the executables, as example
    C:\Program Files\Nokia\PC Suite 7\contentcopier.exe
    C:\Program Files\Nokia\PC Suite 7\videomanager.exe
    and so on.
    But the PCSuite.exe wont load. (and the get connected(.exe) wizard also switches back to Pcsuite.exe when exiting
    I tried with several profiles and also machine configurations. compatibility mode, run as administrator and so on..and so on.. but sofar no luck.
    i think it might be a policy or other (3rd party software) interference on our end. but i have no clue where to start looking.
    Some help would be greatly apreciated.
    Kind regards
    Arnold 
    Message Edited by Saint_One on 14-Oct-2009 08:29 AM

    Thank you AdrianHughes for your swift reply,
    i just downloaded as suggested the latetst version of Ovi Suite, are you shure its not still in beta testing ?, cause this final release that i downloaded starts up with a Portugese-Brazillian interface & licence agreement. then it wants to check for updates wich i allowed to do (ofcourse we want the latest version)
    while installing this message popped up:
    Seems the common Dell Optiplex 775 (business pc) isnt supported
    So im sorry to say this isnt gonna work for me (my company) since this machine configuration is used alround .. and if i package this and distribute it, it might not work on slightly different configurations)
    I had a program running in the back that recorded everything the application does so lets see what it actually did ... extracted/downloaded several files to %appdata%\OviInstallerCache including 2 of the 3 Prerequirements (being windows components).
    but what amazed me more is that this application is build on the *old* components of Pc Suite 7 what didnt work in the first place under vista (even tho these are loose components) And nokia made it even harder to deploy this software using microsoft installer technologie .. instead of making 1 Msi file to be installed.. they now have a total of 9 MSI files whilest PC suite 7 had 4..
    Prerequirements:
    WindowsMediaFormat11.msi
    VC90-x86.msi (or 64)
    MSXML6.msi
    Application it self:
    NokiaConnectivityDriver.msi (same as nokia pc suite 7 *maybe slightly changed)
    PCCS.msi (same as nokia pc suite 7 *maybe slightly changed)
    OviTrilogy.msi
    Oviplatform.msi
    Nokia_Ovi_Suite_Software_updater_1_8__39420.msi
    Nokia_Ovi_Suite.msi
    Why not make 1 msi file for deployment..  well atleast thanks for the support sofar, if any one else has an idea on how to fix this problem with pc suite 7 im all ears.(eyes on screen)
    Kind Regards
    Arnold

  • Crashing Indesign writing 5 letters

    Hi,
    I'm trying to write this 5 letters combination:
    ÌÍ5GÓ
    Always causes the crash of indesign.
    Just write this in a new document with the text instrument.
    I have test it with indesign CC 2014 and indesign CS6 (italian versions), with mac and windows...always crash.
    There is an hack to write this without crashing indesign?
    This text is present in a big document that I need to merge, so I can't create outline of it.

    Ok, ho capito dove è il problema. Cambia i dizionari in Proximity, e togli Hunspell. Ero quasi certo fosse un problema di dizionario.. ed in effetti è quello.
    Ne approfitto per ricordarti che esiste anche un gruppo italiano di InDesign..
    https://www.facebook.com/groups/indesignusergroupit/
    Leonardo Agosti
    AdobeGuru
    PS.. for the english people reading this conversation, the problem is in the HUNSPELL dictionary. Changing it in the preferences and choosing the old (and wise) Proximity, InDesign doesn't crash.

  • Unable to load style(SWF is not a loadable module)

    While devoloping an App voor iOS we decided to use several StyleSheets.
    We are implementing the loading of Stylesheets as:
    event_dispatcher:IEventDispatcher = this.styleManager.loadStyleDeclarations2("assests/styles/default.swf");
     event_dispatcher.addEventListener(StyleEvent.COMPLETE, OnStyleLoaded);
    event_dispatcher.addEventListener(StyleEvent.ERROR, OnStyleError);
    running the app on the desktop simulators work fine.
    packaging the app with package method fast, and running the app on an iphone4 works fine.
    packaging the app with package method standaard, and running the app on an iphone4 gives an error:
    Unable to load style(SWF is not a loadable module): assets/styles/default.swf.
    Is there something im missing? Why does it work when packaging as Fast, and not as Standard?

    Hi,
            The source file is .swf ie(.css is converted to .swf).
             Main swf is running from local.
             Style module is from server.
    I set security domain. But it throws security sanbox violation.
    What should i do. Even some time if a use the local url means it thorws the same error Unable to load style(SWF is not a loadable module).
    thanks,
    Jayagopal.

  • Preview on Mac OS X Lion 10.7.3 won't load and crashes! Help!

    Preview on Mac OS X Lion 10.7.3 won't load and crashes. These are the details after it closes:
    Please help!
    Process:         Preview [644]
    Path:            /Applications/Preview.app/Contents/MacOS/Preview
    Identifier:      com.apple.Preview
    Version:         5.5.1 (719.16)
    Build Info:      Preview-719016000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [123]
    Date/Time:       2012-03-10 13:54:27.241 +0000
    OS Version:      Mac OS X 10.7.3 (11D50d)
    Report Version:  9
    Interval Since Last Report:          1704 sec
    Crashes Since Last Report:           5
    Per-App Interval Since Last Report:  272 sec
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      F11533E3-FBBF-4799-B4C2-A5CC4A263F12
    Crashed Thread:  5  Dispatch queue: com.apple.root.default-priority
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: 0x000000000000000a, 0x00000001109cc000
    VM Regions Near 0x1109cc000:
        MALLOC_LARGE           00000001108f1000-0000000110906000 [   84K] rw-/rwx SM=COW 
    --> mapped file            0000000110906000-0000000110a12000 [ 1072K] r--/rwx SM=COW  /Users/USER/Desktop/*.jpg
        shared memory          0000000110a12000-0000000110b13000 [ 1028K] r--/r-- SM=SHM 
    Application Specific Information:
    objc[644]: garbage collection is OFF
    Thread 0:: Dispatch queue: CFPreferences Background Sync Queue
    0   libsystem_kernel.dylib                  0x00007fff83c795b6 fsync + 10
    1   com.apple.CoreFoundation                0x00007fff84ca0ca2 -[CFXPreferencesPropertyListSourceSynchronizer writePlistToDisk] + 706
    2   com.apple.CoreFoundation                0x00007fff84c698e5 -[CFXPreferencesPropertyListSourceSynchronizer synchronizeAlreadyFlocked] + 613
    3   com.apple.CoreFoundation                0x00007fff84c69639 -[CFXPreferencesPropertyListSourceSynchronizer synchronize] + 441
    4   com.apple.CoreFoundation                0x00007fff84c692ac -[CFXPreferencesPropertyListSource synchronize] + 108
    5   com.apple.CoreFoundation                0x00007fff84c96d02 -[CFXPreferencesSearchListSource synchronize] + 98
    6   com.apple.CoreFoundation                0x00007fff84c9f071 ___CFXPreferencesAppSynchronize_block_invoke_1 + 49
    7   com.apple.CoreFoundation                0x00007fff84c68550 ____CFXPREFS_SYNC_LOCKED_block_invoke_1 + 32
    8   libdispatch.dylib                       0x00007fff88dd1aad _dispatch_barrier_sync_f_invoke + 33
    9   com.apple.CoreFoundation                0x00007fff84c9f014 CFPreferencesAppSynchronize + 292
    10  com.apple.Foundation                    0x00007fff8ef580e1 -[NSUserDefaults(NSUserDefaults) synchronize] + 19
    11  com.apple.AppKit                        0x000000010afc3755 -[_NSScrollerStyleRecommender scrollerStyleRecommendationUpdateTimerFired:] + 48
    12  com.apple.Foundation                    0x00007fff8ef98f64 __NSFireTimer + 102
    13  com.apple.CoreFoundation                0x00007fff84c78c24 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    14  com.apple.CoreFoundation                0x00007fff84c78776 __CFRunLoopDoTimer + 534
    15  com.apple.CoreFoundation                0x00007fff84c59001 __CFRunLoopRun + 1617
    16  com.apple.CoreFoundation                0x00007fff84c58676 CFRunLoopRunSpecific + 230
    17  com.apple.HIToolbox                     0x00007fff8f38531f RunCurrentEventLoopInMode + 277
    18  com.apple.HIToolbox                     0x00007fff8f38c51b ReceiveNextEventCommon + 181
    19  com.apple.HIToolbox                     0x00007fff8f38c456 BlockUntilNextEventMatchingListInMode + 62
    20  com.apple.AppKit                        0x000000010ad87f5d _DPSNextEvent + 659
    21  com.apple.AppKit                        0x000000010ad87861 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    22  com.apple.AppKit                        0x000000010ad8419d -[NSApplication run] + 470
    23  com.apple.AppKit                        0x000000010b002b88 NSApplicationMain + 867
    24  com.apple.Preview                       0x000000010a670db4 0x10a66f000 + 7604
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff83c797e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff88dd15be _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff88dd014e _dispatch_mgr_thread + 54
    Thread 2:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff83c78bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff88a251a1 pthread_mutex_lock + 545
    2   com.apple.ImageIO.framework             0x00007fff8950abd6 ImageProviderCopyImageBlockSetCallback + 172
    3   com.apple.CoreGraphics                  0x00007fff8db5e7b2 subImageProviderCopyImageBlockSet + 356
    4   com.apple.CoreGraphics                  0x00007fff8d707815 CGImageProviderCopyImageBlockSet + 50
    5   com.apple.CoreGraphics                  0x00007fff8d7073d8 img_blocks_create + 412
    6   com.apple.CoreGraphics                  0x00007fff8d735538 img_blocks_extent + 88
    7   com.apple.CoreGraphics                  0x00007fff8d682e68 img_data_lock + 8112
    8   com.apple.CoreGraphics                  0x00007fff8d7066f9 CGSImageDataLock + 186
    9   libRIP.A.dylib                          0x00007fff8cae1082 ripc_AcquireImage + 2209
    10  libRIP.A.dylib                          0x00007fff8cadf8c4 ripc_DrawImage + 1048
    11  com.apple.CoreGraphics                  0x00007fff8d70634c CGContextDrawImage + 432
    12  com.apple.Preview                       0x000000010a6a8313 0x10a66f000 + 234259
    13  com.apple.Preview                       0x000000010a6a7649 0x10a66f000 + 230985
    14  com.apple.Preview                       0x000000010a6a72bd 0x10a66f000 + 230077
    15  com.apple.Preview                       0x000000010a6a71ae 0x10a66f000 + 229806
    16  com.apple.Foundation                    0x00007fff8ef896d8 -[__NSOperationInternal start] + 705
    17  com.apple.Foundation                    0x00007fff8ef9c936 ____NSOQSchedule_block_invoke_2 + 124
    18  libdispatch.dylib                       0x00007fff88dcf8ba _dispatch_call_block_and_release + 18
    19  libdispatch.dylib                       0x00007fff88dd0799 _dispatch_worker_thread2 + 255
    20  libsystem_c.dylib                       0x00007fff88a283da _pthread_wqthread + 316
    21  libsystem_c.dylib                       0x00007fff88a29b85 start_wqthread + 13
    Thread 3:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff83c78bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff88a251a1 pthread_mutex_lock + 545
    2   com.apple.ImageIO.framework             0x00007fff8950abd6 ImageProviderCopyImageBlockSetCallback + 172
    3   com.apple.CoreGraphics                  0x00007fff8db5e7b2 subImageProviderCopyImageBlockSet + 356
    4   com.apple.CoreGraphics                  0x00007fff8d707815 CGImageProviderCopyImageBlockSet + 50
    5   com.apple.CoreGraphics                  0x00007fff8d7073d8 img_blocks_create + 412
    6   com.apple.CoreGraphics                  0x00007fff8d735538 img_blocks_extent + 88
    7   com.apple.CoreGraphics                  0x00007fff8d682e68 img_data_lock + 8112
    8   com.apple.CoreGraphics                  0x00007fff8d7066f9 CGSImageDataLock + 186
    9   libRIP.A.dylib                          0x00007fff8cae1082 ripc_AcquireImage + 2209
    10  libRIP.A.dylib                          0x00007fff8cadf8c4 ripc_DrawImage + 1048
    11  com.apple.CoreGraphics                  0x00007fff8d70634c CGContextDrawImage + 432
    12  com.apple.Preview                       0x000000010a6a8313 0x10a66f000 + 234259
    13  com.apple.Preview                       0x000000010a6a7649 0x10a66f000 + 230985
    14  com.apple.Preview                       0x000000010a6a72bd 0x10a66f000 + 230077
    15  com.apple.Preview                       0x000000010a6a71ae 0x10a66f000 + 229806
    16  com.apple.Foundation                    0x00007fff8ef896d8 -[__NSOperationInternal start] + 705
    17  com.apple.Foundation                    0x00007fff8ef9c936 ____NSOQSchedule_block_invoke_2 + 124
    18  libdispatch.dylib                       0x00007fff88dcf8ba _dispatch_call_block_and_release + 18
    19  libdispatch.dylib                       0x00007fff88dd0799 _dispatch_worker_thread2 + 255
    20  libsystem_c.dylib                       0x00007fff88a283da _pthread_wqthread + 316
    21  libsystem_c.dylib                       0x00007fff88a29b85 start_wqthread + 13
    Thread 4:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff83c78bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff88a251a1 pthread_mutex_lock + 545
    2   com.apple.ImageIO.framework             0x00007fff8950abd6 ImageProviderCopyImageBlockSetCallback + 172
    3   com.apple.CoreGraphics                  0x00007fff8db5e7b2 subImageProviderCopyImageBlockSet + 356
    4   com.apple.CoreGraphics                  0x00007fff8d707815 CGImageProviderCopyImageBlockSet + 50
    5   com.apple.CoreGraphics                  0x00007fff8d7073d8 img_blocks_create + 412
    6   com.apple.CoreGraphics                  0x00007fff8d735538 img_blocks_extent + 88
    7   com.apple.CoreGraphics                  0x00007fff8d682e68 img_data_lock + 8112
    8   com.apple.CoreGraphics                  0x00007fff8d7066f9 CGSImageDataLock + 186
    9   libRIP.A.dylib                          0x00007fff8cae1082 ripc_AcquireImage + 2209
    10  libRIP.A.dylib                          0x00007fff8cadf8c4 ripc_DrawImage + 1048
    11  com.apple.CoreGraphics                  0x00007fff8d70634c CGContextDrawImage + 432
    12  com.apple.Preview                       0x000000010a6a8313 0x10a66f000 + 234259
    13  com.apple.Preview                       0x000000010a6a7649 0x10a66f000 + 230985
    14  com.apple.Preview                       0x000000010a6a72bd 0x10a66f000 + 230077
    15  com.apple.Preview                       0x000000010a6a71ae 0x10a66f000 + 229806
    16  com.apple.Foundation                    0x00007fff8ef896d8 -[__NSOperationInternal start] + 705
    17  com.apple.Foundation                    0x00007fff8ef9c936 ____NSOQSchedule_block_invoke_2 + 124
    18  libdispatch.dylib                       0x00007fff88dcf8ba _dispatch_call_block_and_release + 18
    19  libdispatch.dylib                       0x00007fff88dd0799 _dispatch_worker_thread2 + 255
    20  libsystem_c.dylib                       0x00007fff88a283da _pthread_wqthread + 316
    21  libsystem_c.dylib                       0x00007fff88a29b85 start_wqthread + 13
    Thread 5 Crashed:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_c.dylib                       0x00007fff88a00308 memmove$VARIANT$sse3x + 1099
    1   com.apple.ImageIO.framework             0x00007fff89507a3b CGImageReadGetBytesAtOffset + 613
    2   com.apple.ImageIO.framework             0x00007fff895077c7 CGImageReadSessionGetBytes + 33
    3   com.apple.ImageIO.framework             0x00007fff895076ad fill_input_buffer + 197
    4   libJPEG.dylib                           0x00007fff88cb0ee3 decode_mcu_optimized + 2848
    5   libJPEG.dylib                           0x00007fff88cb023a decompress_onepass + 201
    6   libJPEG.dylib                           0x00007fff88cb0112 process_data_simple_main + 61
    7   libJPEG.dylib                           0x00007fff88cb00c9 _cg_jpeg_read_scanlines + 177
    8   com.apple.ImageIO.framework             0x00007fff8950b9fb copyImageBlockSetJPEG + 3185
    9   com.apple.ImageIO.framework             0x00007fff8950accb ImageProviderCopyImageBlockSetCallback + 417
    10  com.apple.CoreGraphics                  0x00007fff8db5e7b2 subImageProviderCopyImageBlockSet + 356
    11  com.apple.CoreGraphics                  0x00007fff8d707815 CGImageProviderCopyImageBlockSet + 50
    12  com.apple.CoreGraphics                  0x00007fff8d7073d8 img_blocks_create + 412
    13  com.apple.CoreGraphics                  0x00007fff8d735538 img_blocks_extent + 88
    14  com.apple.CoreGraphics                  0x00007fff8d682e68 img_data_lock + 8112
    15  com.apple.CoreGraphics                  0x00007fff8d7066f9 CGSImageDataLock + 186
    16  libRIP.A.dylib                          0x00007fff8cae1082 ripc_AcquireImage + 2209
    17  libRIP.A.dylib                          0x00007fff8cadf8c4 ripc_DrawImage + 1048
    18  com.apple.CoreGraphics                  0x00007fff8d70634c CGContextDrawImage + 432
    19  com.apple.Preview                       0x000000010a6a8313 0x10a66f000 + 234259
    20  com.apple.Preview                       0x000000010a6a7649 0x10a66f000 + 230985
    21  com.apple.Preview                       0x000000010a6a72bd 0x10a66f000 + 230077
    22  com.apple.Preview                       0x000000010a6a71ae 0x10a66f000 + 229806
    23  com.apple.Foundation                    0x00007fff8ef896d8 -[__NSOperationInternal start] + 705
    24  com.apple.Foundation                    0x00007fff8ef9c936 ____NSOQSchedule_block_invoke_2 + 124
    25  libdispatch.dylib                       0x00007fff88dcf8ba _dispatch_call_block_and_release + 18
    26  libdispatch.dylib                       0x00007fff88dd0799 _dispatch_worker_thread2 + 255
    27  libsystem_c.dylib                       0x00007fff88a283da _pthread_wqthread + 316
    28  libsystem_c.dylib                       0x00007fff88a29b85 start_wqthread + 13
    Thread 6:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff83c78bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff88a251a1 pthread_mutex_lock + 545
    2   com.apple.ImageIO.framework             0x00007fff8950abd6 ImageProviderCopyImageBlockSetCallback + 172
    3   com.apple.CoreGraphics                  0x00007fff8db5e7b2 subImageProviderCopyImageBlockSet + 356
    4   com.apple.CoreGraphics                  0x00007fff8d707815 CGImageProviderCopyImageBlockSet + 50
    5   com.apple.CoreGraphics                  0x00007fff8d7073d8 img_blocks_create + 412
    6   com.apple.CoreGraphics                  0x00007fff8d735538 img_blocks_extent + 88
    7   com.apple.CoreGraphics                  0x00007fff8d682e68 img_data_lock + 8112
    8   com.apple.CoreGraphics                  0x00007fff8d7066f9 CGSImageDataLock + 186
    9   libRIP.A.dylib                          0x00007fff8cae1082 ripc_AcquireImage + 2209
    10  libRIP.A.dylib                          0x00007fff8cadf8c4 ripc_DrawImage + 1048
    11  com.apple.CoreGraphics                  0x00007fff8d70634c CGContextDrawImage + 432
    12  com.apple.Preview                       0x000000010a6a8313 0x10a66f000 + 234259
    13  com.apple.Preview                       0x000000010a6a7649 0x10a66f000 + 230985
    14  com.apple.Preview                       0x000000010a6a72bd 0x10a66f000 + 230077
    15  com.apple.Preview                       0x000000010a6a71ae 0x10a66f000 + 229806
    16  com.apple.Foundation                    0x00007fff8ef896d8 -[__NSOperationInternal start] + 705
    17  com.apple.Foundation                    0x00007fff8ef9c936 ____NSOQSchedule_block_invoke_2 + 124
    18  libdispatch.dylib                       0x00007fff88dcf8ba _dispatch_call_block_and_release + 18
    19  libdispatch.dylib                       0x00007fff88dd0799 _dispatch_worker_thread2 + 255
    20  libsystem_c.dylib                       0x00007fff88a283da _pthread_wqthread + 316
    21  libsystem_c.dylib                       0x00007fff88a29b85 start_wqthread + 13
    Thread 7:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff83c78bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff88a251a1 pthread_mutex_lock + 545
    2   com.apple.ImageIO.framework             0x00007fff8950abd6 ImageProviderCopyImageBlockSetCallback + 172
    3   com.apple.CoreGraphics                  0x00007fff8db5e7b2 subImageProviderCopyImageBlockSet + 356
    4   com.apple.CoreGraphics                  0x00007fff8d707815 CGImageProviderCopyImageBlockSet + 50
    5   com.apple.CoreGraphics                  0x00007fff8d7073d8 img_blocks_create + 412
    6   com.apple.CoreGraphics                  0x00007fff8d735538 img_blocks_extent + 88
    7   com.apple.CoreGraphics                  0x00007fff8d682e68 img_data_lock + 8112
    8   com.apple.CoreGraphics                  0x00007fff8d7066f9 CGSImageDataLock + 186
    9   libRIP.A.dylib                          0x00007fff8cae1082 ripc_AcquireImage + 2209
    10  libRIP.A.dylib                          0x00007fff8cadf8c4 ripc_DrawImage + 1048
    11  com.apple.CoreGraphics                  0x00007fff8d70634c CGContextDrawImage + 432
    12  com.apple.Preview                       0x000000010a6a8313 0x10a66f000 + 234259
    13  com.apple.Preview                       0x000000010a6a7649 0x10a66f000 + 230985
    14  com.apple.Preview                       0x000000010a6a72bd 0x10a66f000 + 230077
    15  com.apple.Preview                       0x000000010a6a71ae 0x10a66f000 + 229806
    16  com.apple.Foundation                    0x00007fff8ef896d8 -[__NSOperationInternal start] + 705
    17  com.apple.Foundation                    0x00007fff8ef9c936 ____NSOQSchedule_block_invoke_2 + 124
    18  libdispatch.dylib                       0x00007fff88dcf8ba _dispatch_call_block_and_release + 18
    19  libdispatch.dylib                       0x00007fff88dd0799 _dispatch_worker_thread2 + 255
    20  libsystem_c.dylib                       0x00007fff88a283da _pthread_wqthread + 316
    21  libsystem_c.dylib                       0x00007fff88a29b85 start_wqthread + 13
    Thread 8:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff83c78bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff88a251a1 pthread_mutex_lock + 545
    2   com.apple.ImageIO.framework             0x00007fff8950abd6 ImageProviderCopyImageBlockSetCallback + 172
    3   com.apple.CoreGraphics                  0x00007fff8db5e7b2 subImageProviderCopyImageBlockSet + 356
    4   com.apple.CoreGraphics                  0x00007fff8d707815 CGImageProviderCopyImageBlockSet + 50
    5   com.apple.CoreGraphics                  0x00007fff8d7073d8 img_blocks_create + 412
    6   com.apple.CoreGraphics                  0x00007fff8d735538 img_blocks_extent + 88
    7   com.apple.CoreGraphics                  0x00007fff8d682e68 img_data_lock + 8112
    8   com.apple.CoreGraphics                  0x00007fff8d7066f9 CGSImageDataLock + 186
    9   libRIP.A.dylib                          0x00007fff8cae1082 ripc_AcquireImage + 2209
    10  libRIP.A.dylib                          0x00007fff8cadf8c4 ripc_DrawImage + 1048
    11  com.apple.CoreGraphics                  0x00007fff8d70634c CGContextDrawImage + 432
    12  com.apple.Preview                       0x000000010a6a8313 0x10a66f000 + 234259
    13  com.apple.Preview                       0x000000010a6a7649 0x10a66f000 + 230985
    14  com.apple.Preview                       0x000000010a6a72bd 0x10a66f000 + 230077
    15  com.apple.Preview                       0x000000010a6a71ae 0x10a66f000 + 229806
    16  com.apple.Foundation                    0x00007fff8ef896d8 -[__NSOperationInternal start] + 705
    17  com.apple.Foundation                    0x00007fff8ef9c936 ____NSOQSchedule_block_invoke_2 + 124
    18  libdispatch.dylib                       0x00007fff88dcf8ba _dispatch_call_block_and_release + 18
    19  libdispatch.dylib                       0x00007fff88dd0799 _dispatch_worker_thread2 + 255
    20  libsystem_c.dylib                       0x00007fff88a283da _pthread_wqthread + 316
    21  libsystem_c.dylib                       0x00007fff88a29b85 start_wqthread + 13
    Thread 9:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff83c78bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff88a251a1 pthread_mutex_lock + 545
    2   com.apple.ImageIO.framework             0x00007fff8950abd6 ImageProviderCopyImageBlockSetCallback + 172
    3   com.apple.CoreGraphics                  0x00007fff8db5e7b2 subImageProviderCopyImageBlockSet + 356
    4   com.apple.CoreGraphics                  0x00007fff8d707815 CGImageProviderCopyImageBlockSet + 50
    5   com.apple.CoreGraphics                  0x00007fff8d7073d8 img_blocks_create + 412
    6   com.apple.CoreGraphics                  0x00007fff8d735538 img_blocks_extent + 88
    7   com.apple.CoreGraphics                  0x00007fff8d682e68 img_data_lock + 8112
    8   com.apple.CoreGraphics                  0x00007fff8d7066f9 CGSImageDataLock + 186
    9   libRIP.A.dylib                          0x00007fff8cae1082 ripc_AcquireImage + 2209
    10  libRIP.A.dylib                          0x00007fff8cadf8c4 ripc_DrawImage + 1048
    11  com.apple.CoreGraphics                  0x00007fff8d70634c CGContextDrawImage + 432
    12  com.apple.Preview                       0x000000010a6a8313 0x10a66f000 + 234259
    13  com.apple.Preview                       0x000000010a6a7649 0x10a66f000 + 230985
    14  com.apple.Preview                       0x000000010a6a72bd 0x10a66f000 + 230077
    15  com.apple.Preview                       0x000000010a6a71ae 0x10a66f000 + 229806
    16  com.apple.Foundation                    0x00007fff8ef896d8 -[__NSOperationInternal start] + 705
    17  com.apple.Foundation                    0x00007fff8ef9c936 ____NSOQSchedule_block_invoke_2 + 124
    18  libdispatch.dylib                       0x00007fff88dcf8ba _dispatch_call_block_and_release + 18
    19  libdispatch.dylib                       0x00007fff88dd0799 _dispatch_worker_thread2 + 255
    20  libsystem_c.dylib                       0x00007fff88a283da _pthread_wqthread + 316
    21  libsystem_c.dylib                       0x00007fff88a29b85 start_wqthread + 13
    Thread 10:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff83c78bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff88a251a1 pthread_mutex_lock + 545
    2   com.apple.imageKit                      0x00007fff8370f7a9 -[IKThumbnailBuilder clear] + 18
    3   com.apple.imageKit                      0x00007fff8370f69b -[IKThumbnailOperation notifyDelegate] + 105
    4   com.apple.Foundation                    0x00007fff8efadde3 -[NSOperationQueue cancelAllOperations] + 288
    5   com.apple.imageKit                      0x00007fff8370f144 -[IKThumbnailBuilderQueue cancelTasks] + 50
    6   com.apple.imageKit                      0x00007fff8363c88e -[IKImageBrowserView(ImageBrowserImport) _importThumbnails:state:] + 1036
    7   com.apple.imageKit                      0x00007fff836df998 -[IKImageBrowserView(IKImageBrowserTasks) _performAsyncImportIfAny:delegate:] + 51
    8   com.apple.CoreFoundation                0x00007fff84cb6591 -[NSObject performSelector:withObject:withObject:] + 65
    9   com.apple.imageKit                      0x00007fff836dd00c -[IKTaskAsyncOperation main] + 62
    10  com.apple.Foundation                    0x00007fff8ef896d8 -[__NSOperationInternal start] + 705
    11  com.apple.Foundation                    0x00007fff8ef9c936 ____NSOQSchedule_block_invoke_2 + 124
    12  libdispatch.dylib                       0x00007fff88dcf8ba _dispatch_call_block_and_release + 18
    13  libdispatch.dylib                       0x00007fff88dd0799 _dispatch_worker_thread2 + 255
    14  libsystem_c.dylib                       0x00007fff88a283da _pthread_wqthread + 316
    15  libsystem_c.dylib                       0x00007fff88a29b85 start_wqthread + 13
    Thread 11:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_c.dylib                       0x00007fff88a00498 memmove$VARIANT$sse3x + 1499
    1   com.apple.ImageIO.framework             0x00007fff89507a3b CGImageReadGetBytesAtOffset + 613
    2   com.apple.ImageIO.framework             0x00007fff895077c7 CGImageReadSessionGetBytes + 33
    3   com.apple.ImageIO.framework             0x00007fff8954da2b read_fn + 44
    4   libPng.dylib                            0x00007fff893fd5c5 png_crc_read + 52
    5   libPng.dylib                            0x00007fff893febee _cg_png_read_row + 542
    6   com.apple.ImageIO.framework             0x00007fff89511787 copyImageBlockSetPNG + 2529
    7   com.apple.ImageIO.framework             0x00007fff8950accb ImageProviderCopyImageBlockSetCallback + 417
    8   com.apple.CoreGraphics                  0x00007fff8d707815 CGImageProviderCopyImageBlockSet + 50
    9   com.apple.CoreGraphics                  0x00007fff8d7073d8 img_blocks_create + 412
    10  com.apple.CoreGraphics                  0x00007fff8d735538 img_blocks_extent + 88
    11  com.apple.CoreGraphics                  0x00007fff8d77741c img_interpolate_extent + 136
    12  com.apple.CoreGraphics                  0x00007fff8d682e68 img_data_lock + 8112
    13  com.apple.CoreGraphics                  0x00007fff8d7066f9 CGSImageDataLock + 186
    14  libRIP.A.dylib                          0x00007fff8cae1082 ripc_AcquireImage + 2209
    15  libRIP.A.dylib                          0x00007fff8cadf8c4 ripc_DrawImage + 1048
    16  com.apple.CoreGraphics                  0x00007fff8d70634c CGContextDrawImage + 432
    17  com.apple.imageKit                      0x00007fff836203c8 _IKThumbnailImageFromSourceRef + 2080
    18  com.apple.imageKit                      0x00007fff836204c5 _IKFastThumbnailImageFromURL + 72
    19  com.apple.imageKit                      0x00007fff8361c132 -[IKImageWrapper _thumbnailWithSize:antialiased:quality:] + 105
    20  com.apple.imageKit                      0x00007fff8361c070 -[IKImageWrapper thumbnailWithSize:antialiased:quality:] + 188
    21  com.apple.imageKit                      0x00007fff8370fa9d -[IKThumbnailBuilder computeThumbnail] + 237
    22  com.apple.imageKit                      0x00007fff8370f5f4 -[IKThumbnailOperation main] + 35
    23  com.apple.Foundation                    0x00007fff8ef896d8 -[__NSOperationInternal start] + 705
    24  com.apple.Foundation                    0x00007fff8ef9c936 ____NSOQSchedule_block_invoke_2 + 124
    25  libdispatch.dylib                       0x00007fff88dcf8ba _dispatch_call_block_and_release + 18
    26  libdispatch.dylib                       0x00007fff88dd0799 _dispatch_worker_thread2 + 255
    27  libsystem_c.dylib                       0x00007fff88a283da _pthread_wqthread + 316
    28  libsystem_c.dylib                       0x00007fff88a29b85 start_wqthread + 13
    Thread 12:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_c.dylib                       0x00007fff88a002b6 memmove$VARIANT$sse3x + 1017
    1   com.apple.ImageIO.framework             0x00007fff89507a3b CGImageReadGetBytesAtOffset + 613
    2   com.apple.ImageIO.framework             0x00007fff895077c7 CGImageReadSessionGetBytes + 33
    3   com.apple.ImageIO.framework             0x00007fff895076ad fill_input_buffer + 197
    4   libJPEG.dylib                           0x00007fff88cb8a87 save_marker + 411
    5   libJPEG.dylib                           0x00007fff88cac641 read_markers + 2691
    6   libJPEG.dylib                           0x00007fff88cab8de consume_markers + 58
    7   libJPEG.dylib                           0x00007fff88cab594 _cg_jpeg_consume_input + 85
    8   libJPEG.dylib                           0x00007fff88cab506 _cg_jpeg_read_header + 61
    9   com.apple.ImageIO.framework             0x00007fff89505848 initImageJPEG + 3200
    10  com.apple.ImageIO.framework             0x00007fff89504b9b _CGImagePluginInitJPEG + 79
    11  com.apple.ImageIO.framework             0x00007fff89504412 makeImagePlus + 652
    12  com.apple.ImageIO.framework             0x00007fff8950ea31 _CGImageSourceGetPropertiesAtIndexInternal + 58
    13  com.apple.ImageIO.framework             0x00007fff8950e9c0 CGImageSourceCopyPropertiesAtIndex + 123
    14  com.apple.imageKit                      0x00007fff8361bada -[IKImageWrapper _size] + 752
    15  com.apple.imageKit                      0x00007fff8361b7cd -[IKImageWrapper size] + 140
    16  com.apple.imageKit                      0x00007fff8370f9fb -[IKThumbnailBuilder computeThumbnail] + 75
    17  com.apple.imageKit                      0x00007fff8370f5f4 -[IKThumbnailOperation main] + 35
    18  com.apple.Foundation                    0x00007fff8ef896d8 -[__NSOperationInternal start] + 705
    19  com.apple.Foundation                    0x00007fff8ef9c936 ____NSOQSchedule_block_invoke_2 + 124
    20  libdispatch.dylib                       0x00007fff88dcf8ba _dispatch_call_block_and_release + 18
    21  libdispatch.dylib                       0x00007fff88dd0799 _dispatch_worker_thread2 + 255
    22  libsystem_c.dylib                       0x00007fff88a283da _pthread_wqthread + 316
    23  libsystem_c.dylib                       0x00007fff88a29b85 start_wqthread + 13
    Thread 13:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff83c78a1e __mmap + 10
    1   com.apple.ImageIO.framework             0x00007fff89513881 _CFDataCreateWithMappedFile + 292
    2   com.apple.ImageIO.framework             0x00007fff8951364a CGImageReadCreateWithFile + 207
    3   com.apple.ImageIO.framework             0x00007fff89513332 CGImageSourceCreateWithURL + 417
    4   com.apple.Preview                       0x000000010a69ef8d 0x10a66f000 + 196493
    5   com.apple.Preview                       0x000000010a69ef5e 0x10a66f000 + 196446
    6   com.apple.Preview                       0x000000010a6af9eb 0x10a66f000 + 264683
    7   com.apple.Preview                       0x000000010a77a611 0x10a66f000 + 1095185
    8   com.apple.Preview                       0x000000010a77a461 0x10a66f000 + 1094753
    9   com.apple.Preview                       0x000000010a68d59b 0x10a66f000 + 124315
    10  com.apple.Preview                       0x000000010a68d07d 0x10a66f000 + 123005
    11  com.apple.Preview                       0x000000010a7be93d 0x10a66f000 + 1374525
    12  libdispatch.dylib                       0x00007fff88dcf8ba _dispatch_call_block_and_release + 18
    13  libdispatch.dylib                       0x00007fff88dd0799 _dispatch_worker_thread2 + 255
    14  libsystem_c.dylib                       0x00007fff88a283da _pthread_wqthread + 316
    15  libsystem_c.dylib                       0x00007fff88a29b85 start_wqthread + 13
    Thread 14:: Dispatch queue: NSPersistentUI I/O
    0   libsystem_kernel.dylib                  0x00007fff83c790ea __unlink + 10
    1   libsystem_kernel.dylib                  0x00007fff83c78322 unlink + 14
    2   libremovefile.dylib                     0x00007fff8e22368e __removefile_process_file + 362
    3   libremovefile.dylib                     0x00007fff8e223785 __removefile_tree_walker + 169
    4   libremovefile.dylib                     0x00007fff8e222812 removefile + 146
    5   com.apple.Foundation                    0x00007fff8ef8ae99 -[NSFilesystemItemRemoveOperation main] + 249
    6   com.apple.Foundation                    0x00007fff8ef896d8 -[__NSOperationInternal start] + 705
    7   com.apple.Foundation                    0x00007fff8ef88831 -[NSFileManager removeItemAtPath:error:] + 85
    8   com.apple.Foundation                    0x00007fff8ef887a5 -[NSFileManager removeItemAtURL:error:] + 151
    9   com.apple.AppKit                        0x000000010adbca68 -[NSPersistentUIManager _interiorClearCrashCountFileIfNecessary] + 114
    10  com.apple.AppKit                        0x000000010adbc98a __-[NSPersistentUIManager modifyCrashBlameCounterBy:]_block_invoke_1 + 49
    11  libdispatch.dylib                       0x00007fff88dcf8ba _dispatch_call_block_and_release + 18
    12  libdispatch.dylib                       0x00007fff88dd110a _dispatch_queue_drain + 264
    13  libdispatch.dylib                       0x00007fff88dd0f66 _dispatch_queue_invoke + 54
    14  libdispatch.dylib                       0x00007fff88dd0760 _dispatch_worker_thread2 + 198
    15  libsystem_c.dylib                       0x00007fff88a283da _pthread_wqthread + 316
    16  libsystem_c.dylib                       0x00007fff88a29b85 start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff83c78bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff88a2a274 _pthread_cond_wait + 840
    2   com.apple.Foundation                    0x00007fff8ef9d4e4 -[NSCondition wait] + 261
    3   com.apple.Foundation                    0x00007fff8ef90878 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 975
    4   com.apple.Foundation                    0x00007fff8efbb76e -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:modes:] + 84
    5   com.apple.CoreFoundation                0x00007fff84cb0ff4 ___forwarding___ + 756
    6   com.apple.CoreFoundation                0x00007fff84cb0c88 _CF_forwarding_prep_0 + 232
    7   com.apple.imageKit                      0x00007fff836def62 -[IKImageBrowserView(IKImageBrowserTasks) cellsArrayForTasks] + 84
    8   com.apple.imageKit                      0x00007fff8363d7a7 -[IKImageBrowserView(ImageBrowserImport) startImportVisibleCells] + 73
    9   com.apple.CoreFoundation                0x00007fff84cbb021 -[NSObject performSelector:] + 49
    10  com.apple.imageKit                      0x00007fff836ddf7d -[IKTaskManager taskLoop] + 776
    11  com.apple.Foundation                    0x00007fff8ef9b74e -[NSThread main] + 68
    12  com.apple.Foundation                    0x00007fff8ef9b6c6 __NSThread__main__ + 1575
    13  libsystem_c.dylib                       0x00007fff88a268bf _pthread_start + 335
    14  libsystem_c.dylib                       0x00007fff88a29b75 thread_start + 13
    Thread 16:: Dispatch queue: com.apple.root.default-priority
    0   com.apple.CoreFoundation                0x00007fff84c22a41 CFRetain + 1
    1   com.apple.CoreFoundation                0x00007fff84c33ba3 __CFDataInit + 707
    2   com.apple.ImageIO.framework             0x00007fff8951395c _CFDataCreateWithMappedFile + 511
    3   com.apple.ImageIO.framework             0x00007fff8951364a CGImageReadCreateWithFile + 207
    4   com.apple.ImageIO.framework             0x00007fff89513332 CGImageSourceCreateWithURL + 417
    5   com.apple.Preview                       0x000000010a69ef8d 0x10a66f000 + 196493
    6   com.apple.Preview                       0x000000010a69ef5e 0x10a66f000 + 196446
    7   com.apple.Preview                       0x000000010a6af9eb 0x10a66f000 + 264683
    8   com.apple.Preview                       0x000000010a77a611 0x10a66f000 + 1095185
    9   com.apple.Preview                       0x000000010a77a461 0x10a66f000 + 1094753
    10  com.apple.Preview                       0x000000010a68d59b 0x10a66f000 + 124315
    11  com.apple.Preview                       0x000000010a68d07d 0x10a66f000 + 123005
    12  com.apple.Preview                       0x000000010a7be93d 0x10a66f000 + 1374525
    13  libdispatch.dylib                       0x00007fff88dcf8ba _dispatch_call_block_and_release + 18
    14  libdispatch.dylib                       0x00007fff88dd0799 _dispatch_worker_thread2 + 255
    15  libsystem_c.dylib                       0x00007fff88a283da _pthread_wqthread + 316
    16  libsystem_c.dylib                       0x00007fff88a29b85 start_wqthread + 13
    Thread 5 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff88a00302  rbx: 0x000000000003fd31  rcx: 0xfffffffffffff340  rdx: 0x0000000000000018
      rdi: 0x00007fd1fba39330  rsi: 0x00000001109cccb9  rbp: 0x000000010fb92010  rsp: 0x000000010fb92010
       r8: 0x00007fff889fff48   r9: 0x000000004d372e8e  r10: 0x00007fd1fb0aeca0  r11: 0x00007fd1fba383a8
      r12: 0x00007fd1fba38350  r13: 0x0000000000000000  r14: 0x0000000000000fa0  r15: 0x000000011098c000
      rip: 0x00007fff88a00308  rfl: 0x0000000000010282  cr2: 0x00000001109cc000
    Logical CPU: 0
    Binary Images:
           0x10a66f000 -        0x10a853fef  com.apple.Preview (5.5.1 - 719.16) <EE12E506-F88C-319F-A2B4-5EF997884F0C> /Applications/Preview.app/Contents/MacOS/Preview
           0x10a8e2000 -        0x10abc4fff  com.apple.security (7.0 - 55110) <252F9E04-FF8A-3EA7-A38E-51DD0653663C> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x10ace2000 -        0x10acf2ff7  com.apple.opengl (1.7.6 - 1.7.6) <C168883D-9BC5-3C38-9937-42852D719718> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x10acfd000 -        0x10ad1cfff  com.apple.MediaUI (1.0 - 1) <0DF5368C-31CC-39DF-95A8-587B82321925> /System/Library/PrivateFrameworks/MediaUI.framework/Versions/A/MediaUI
           0x10ad40000 -        0x10ad6dfe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <7BEBB139-50BB-3112-947A-F4AA168F991C> /usr/lib/libSystem.B.dylib
           0x10ad7f000 -        0x10b983fff  com.apple.AppKit (6.7.3 - 1138.32) <A9EB81C6-C519-3F29-89F1-42C3E8930281> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x10c00c000 -        0x10c011ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
           0x10c01a000 -        0x10c029ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
           0x10c034000 -        0x10c236fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
           0x10c2c8000 -        0x10c2fbff7  com.apple.GSS (2.1 - 2.0) <57AD81CE-6320-38C9-9B66-0E5A4DEA898A> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
           0x10c319000 -        0x10c37fff7  com.apple.coreui (1.2.1 - 165.3) <378C9221-ADE6-36D9-9944-F33AE6904E4F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x10c3c1000 -        0x10c413ff7  libGLU.dylib (??? - ???) <3C9153A0-8499-3DC0-AAA4-9FA6E488BE13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x10c428000 -        0x10c42efff  libGFXShared.dylib (??? - ???) <B95E9B22-AE68-3E48-8733-00CCCA08D50E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
           0x10c43a000 -        0x10c450fff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
           0x10c469000 -        0x10c4a8ff7  libGLImage.dylib (??? - ???) <348729DC-BC44-3744-B249-9DFA6498344A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
           0x10c4b3000 -        0x10c4b5fff  libCVMSPluginSupport.dylib (??? - ???) <B2FC6EC0-1A0C-3482-A3C9-D08446E8713A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
           0x10c4bf000 -        0x10c4c2fff  libCoreVMClient.dylib (??? - ???) <E034C772-4263-3F48-B083-25A758DD6228> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
           0x10e2d3000 -        0x10e301ff7  GLRendererFloat (??? - ???) <0C213C61-C08C-3B5D-85A4-EB4660AF55BF> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x10fb9b000 -        0x10fd34fff  GLEngine (??? - ???) <8BA26192-A4D7-362D-8B57-5FCF4B706A25> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x10fd68000 -        0x10fe61fff  libGLProgrammability.dylib (??? - ???) <B7710703-8652-36B8-83DD-4F216FAF0730> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x10fe87000 -        0x110562ff7  libclh.dylib (4.0.3 - 4.0.3) <29108026-20C1-3BF9-A43F-0986E0430FF0> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
           0x1107c4000 -        0x1107c5ffc +cl_kernels (??? - ???) <45AC429B-3369-49B4-A6AE-B696C6BEEBD8> cl_kernels
           0x111d40000 -        0x111d43ff7  libCoreFSCache.dylib (??? - ???) <0E2C3D54-7D05-35E8-BA10-2142B7C03946> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x111d5c000 -        0x111d5cffd +cl_kernels (??? - ???) <CBF77A72-BE62-4854-80C7-D16BDE85ED6E> cl_kernels
           0x112a41000 -        0x112a42ff3 +cl_kernels (??? - ???) <C33C0D9C-9557-45E6-9BF5-035C490D96CB> cl_kernels
           0x1134fe000 -        0x113504fef  libcldcpuengine.dylib (1.50.69 - compatibility 1.0.0) <C0C4CC37-F2FD-301C-A830-EC54D86612D5> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x113538000 -        0x1135cbff7  unorm8_bgra.dylib (1.50.69 - compatibility 1.0.0) <5FB796A4-1AD0-3B4D-AA83-F8A46E039224> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
           0x1135f3000 -        0x1135f4ff3 +cl_kernels (??? - ???) <2F089452-5FA0-4E98-B0E9-1934173EE353> cl_kernels
           0x200000000 -        0x2007e6ff7  com.apple.GeForceGLDriver (7.18.11 - 7.1.8) <66FE927B-DCB6-3D51-B713-90D9676AA079> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
        0x7fff6a26f000 -     0x7fff6a2a3baf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
        0x7fff835ee000 -     0x7fff83612fff  com.apple.RemoteViewServices (1.3 - 44) <21D7A0E7-6699-37AB-AE6C-BF69AF3D61C2> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff83613000 -     0x7fff83889ff7  com.apple.imageKit (2.1.1 - 1.0) <A4A58BBB-70BB-3A0F-84F0-49EC6113BF2F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8388a000 -     0x7fff838deff7  com.apple.ImageCaptureCore (3.0.2 - 3.0.2) <68147E63-C211-361E-8B24-B5E0675B4297> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff838df000 -     0x7fff83981ff7  com.apple.securityfoundation (5.0 - 55107) <6C2E7362-CB11-3CBD-BB1C-348E4B10F25A> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff83982000 -     0x7fff83a1cff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff83a1d000 -     0x7fff83a5efff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff83c62000 -     0x7fff83c82fff  libsystem_kernel.dylib (1699.24.8 - compatibility 1.0.0) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib
        0x7fff83c83000 -     0x7fff83e22fff  com.apple.QuartzCore (1.7 - 270.2) <F2CCDEFB-DE43-3E32-B242-A22C82617186> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff83e23000 -     0x7fff83e2eff7  com.apple.DisplayServicesFW (2.5.2 - 317) <D1FE33BD-1D71-343F-B790-685253F1F701> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff83e2f000 -     0x7fff83e34fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <1571C3AB-BCB2-38CD-B3B2-C5FC3F927C6A> /usr/lib/system/libcache.dylib
        0x7fff83e35000 -     0x7fff83e38fff  com.apple.AppleSystemInfo (1.0 - 1) <111B6F69-3FBD-3860-BCF8-1DF02D9BED28> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff83e92000 -     0x7fff83e92fff  com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff83ee7000 -     0x7fff844cbfff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff844cc000 -     0x7fff844cefff  libquarantine.dylib (36.2.0 - compatibility 1.0.0) <48656562-FF20-3B55-9F93-407ACA7341C0> /usr/lib/system/libquarantine.dylib
        0x7fff844cf000 -     0x7fff844cffff  com.apple.Cocoa (6.6 - ???) <7EC4D759-B2A6-3A99-AC75-809FED1500C6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff846d3000 -     0x7fff84af0ff7  com.apple.SceneKit (2.2 - 125.3) <DDCC8DB6-D5DB-31CD-A401-F56C84216E1C> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
        0x7fff84af1000 -     0x7fff84af9fff  libsystem_dnssd.dylib (??? - ???) <998E3778-7B43-301C-9053-12045AB8544D> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff84b07000 -     0x7fff84b69ff7  com.apple.Symbolication (1.3 - 91) <B072970E-9EC1-3495-A1FA-D344C6E74A13> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff84bb6000 -     0x7fff84c11ff7  com.apple.HIServices (1.11 - ???) <DE8FA7FA-0A41-35D9-8473-5104F81DA934> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff84c20000 -     0x7fff84df4fff  com.apple.CoreFoundation (6.7.1 - 635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff84e87000 -     0x7fff84ed7fff  com.apple.CoreMediaIO (210.0 - 3180) <C5B60D3E-71BE-3CD2-90FC-3B2F9961D662> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff84ee7000 -     0x7fff84ef9ff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff84f02000 -     0x7fff84f42ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <29DE948E-38C4-3CC5-B528-40C691380607> /usr/lib/libcups.2.dylib
        0x7fff84f43000 -     0x7fff85025fff  com.apple.CoreServices.OSServices (478.37 - 478.37) <1DAC695E-0D0F-3AE2-974F-A173E69E67CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff85389000 -     0x7fff8548bff7  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <22F1D1B6-1761-3687-9EFD-036EA15FB2E4> /usr/lib/libxml2.2.dylib
        0x7fff85617000 -     0x7fff8577eff7  com.apple.CFNetwork (520.3.2 - 520.3.2) <516B611D-E53E-3467-9211-3C5B86ABA865> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff86856000 -     0x7fff8685bfff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8685c000 -     0x7fff8693afff  com.apple.DiscRecording (6.0.3 - 6030.4.1) <8DB1BDDD-F066-3E8B-B416-11DF712C6A1E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8698b000 -     0x7fff8698cfff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff8698d000 -     0x7fff869e1ff7  com.apple.ScalableUserInterface (1.0 - 1) <33563775-C662-313D-B7FA-3D575A9F3D41> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff869e2000 -     0x7fff869e2fff  com.apple.Carbon (153 - 153) <C1A30E01-E113-38A0-95CA-99360F92A37A> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff869e3000 -     0x7fff86c6efff  com.apple.JavaScriptCore (7534.53 - 7534.53.8) <619D6392-D833-3C55-B1C0-4DAA0477796C> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff86c6f000 -     0x7fff86c6ffff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff86c87000 -     0x7fff86cfafff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff86cfb000 -     0x7fff86cfbfff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff86cfc000 -     0x7fff86d06ff7  liblaunch.dylib (392.35.0 - compatibility 1.0.0) <8F8BB206-CECA-33A5-A105-4A01C3ED5D23> /usr/lib/system/liblaunch.dylib
        0x7fff86d07000 -     0x7fff86d0afff  com.apple.help (1.3.2 - 42) <BF14DE49-F7E8-336F-81FB-BBDF2DB3AC09> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff86d0b000 -     0x7fff8713dfef  com.apple.VideoToolbox (1.0 - 705.61) <1A70CA82-C849-3033-8598-37C5A72637CC> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff87e63000 -     0x7fff87ea2fff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff87ea3000 -     0x7fff87eb7ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff87eb8000 -     0x7fff87ebcfff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <380C3F44-0CA7-3514-8080-46D1C9DF4FCD> /usr/lib/system/libdyld.dylib
        0x7fff87ee5000 -     0x7fff87f27ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <BB770C22-8C57-365A-8716-4A3C36AE7BFB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff87f61000 -     0x7fff8806efff  libJP2.dylib (??? - ???) <F2B34A61-75F0-3BFE-A309-EE0DF4AF9E37> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff880d1000 -     0x7fff880d1fff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff880d2000 -     0x7fff88156ff7  com.apple.ApplicationServices.ATS (317.5.0 - ???) <C2B254F0-6ED8-3313-9CFC-9ACD519C8A9E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff88157000 -     0x7fff88162ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff88171000 -     0x7fff88178ff7  com.apple.CommerceCore (1.0 - 17) <3894FE48-EDCE-30E9-9796-E2F959D92704> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff881cf000 -     0x7fff881d5fff  IOSurface (??? - ???) <03F95CAC-569C-3573-B3D7-2D211B8BDC56> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff881d6000 -     0x7fff881edfff  com.apple.CFOpenDirectory (10.7 - 146) <E71AE4A2-F72B-35F2-9043-9F45CF75F11A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff881ee000 -     0x7fff882eefff  com.apple.QuickLookUIFramework (3.1 - 500.10) <ABD3BF58-DD33-31CA-AAE3-E0EE274C8B9C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff882ef000 -     0x7fff88517fe7  com.apple.CoreData (104.1 - 358.13) <F1DA3110-C4DF-3F0A-A057-AEE78DE8C99D> /System/Library/Frameworks/CoreData.framework/Versions/

    Found another solution that worked for me, which did not involve going into terminal:
    Open Finder
    Click on GO in menu and a list box drops down
    Press the ALT key (This will show the Library folder int he drop down list box that appeared)
    Click LIBRARY which opens another list of folders
    Click CONTAINERS which will open the container folder and should show a Textedit and Preview folder.
    DELETE both these folders
    And that's it!!

  • [CS3 JS] event crashes InDesign

    Scripting ladies and gentlemen,
    I'm working on this event script that searches for linked PDF files and
    lets the user copy/relink them. Using the afterOpen eventListener however
    crashes InDesign no matter what I do. This is also the case with
    beforeClose. It appears that my function cnvrtPDFlnk is causing the crash
    (I'm able to alert succesfully with the afterOpen event if I //-comment
    the cnvrtPDFLnk(myDocument)).
    Do one of you scripting gurues have a tip?
    #targetengine "session"
    main();
    function main() {
       app.addEventListener("afterOpen", myEventFunction, false);
    function myEventFunction(myEvent) {
       var myDocument = myEvent.parent;
       var label = docLabel(myDocument, "PDFCheck");
       if(label) {
          //myEvent.stopPropagation();
          //myEvent.preventDefault();
          exit();
       else {
          cnvrtPDFLnk(myDocument);
    function docLabel(myDocument, key) {
       var hasLabel = (eval(myDocument.extractLabel(key))?true:false);
       return hasLabel;
    function cnvrtPDFLnk(myDocument) {
       var graphics = myDocument.allGraphics;
       var link; var linkExt; var linkType; var linkPath; var linkPageRef; var myConfirm; var myFolder; var myFile; var myOrgPath;
       var myLinkObjects = [];
       for (var i = 0; i < graphics.length; i++) {        
          link = graphics[i].itemLink;
          linkExt = link.filePath.split('.').pop().toLowerCase(); 
          linkType = link.linkType.toLowerCase();       
          if (linkExt == 'pdf' || linkType.match('pdf') != null) {
             link.show();
             if(myConfirm= confirm(link.name+"\nDo you want to convert this link?")?myLinkObjects.push(link):alert("Link skipped!\n"+link.name));
       if (myLinkObjects.length > 0) {
          myFolder = Folder.selectDialog("Point me to a hotfolder..");
          copyLink(myLinkObjects, myFolder); // run copyLink function - copies links according to myfolder
          if(myConfirm = confirm("Do you want to relink now?")) {
             reLink(myLinkObjects); // run reLink function - relinks according to myFile dialogue
             app.menuActions.item("Fit Page in Window").invoke();
             app.menuActions.item("First Page").invoke();    
       myDocument.insertLabel("PDFCheck", "true");
       }// no links
    }// end cnvrtPDFLnk
    Best regards,
    Rasmus

    Hi Rasmus,
    Here is an example of scripted plug-in — very simple yet useful for me.
    Its goal is to check color settings in InDesign and Photoshop after a document opens. We use two profiles at work: one for the main part of our magazine and another profile for its cover and the inset for another magazine. Sometimes, although rarely, we forget to switch on the correct setting.
    That's where the plug-in comes to the aid. After a document opens it checks if the file name contains certain characters – e.g. if file name starts with "Obl_" that means that this is a cover and the script checks the color settings, if they are not correct it gives warning.
    Here is short description of how to do it:
    Create a new scripted plug-in project from APIDTemplate.indd file.
    Open APID panel
    Enter 'docLoaded' into Event Filter field and press Enter
    Here is the script that does the job (the script file is generated in the same folder as indd-file):
    if (theItem.eventCode == "docLoaded") {
       var gKasmyDoc = app.activeDocument;
       var gKasDocumentName = app.activeDocument.name;
       KasCheckProfile();
       KasinfoFromPS();
    function KasCheckProfile(){
       var myIssueNumber = parseInt(gKasDocumentName.substr(2, 3));
       if (gKasDocumentName.substr(0, 2) == "Q_" && myIssueNumber >= 730 && myIssueNumber <= 999 && gKasDocumentName.match("_Vshivka") == null){
          if (app.colorSettings.workingSpaceCMYK != "ISO Web Coated"){
             alert("Внимание! Для газеты должен использоваться провиль \"ISO Web Coated\", а установлен. — " + app.colorSettings.workingSpaceCMYK);
       if (gKasDocumentName.substr(0, 2) == "Q_" && myIssueNumber >= 730 && myIssueNumber <= 999 && gKasDocumentName.match("_Vshivka") != null){
          if (app.colorSettings.workingSpaceCMYK != "ImationMatchprn175lpi_avr.icc          "){
             alert("Внимание! Для вшивки должен использоваться провиль \"ImationMatchprn175lpi_avr.icc\", а установлен. — " + app.colorSettings.workingSpaceCMYK);
       else if (gKasDocumentName.substr(0, 4) == "Obl_"){
          if (app.colorSettings.workingSpaceCMYK != "ImationMatchprn175lpi_avr.icc          "){
    //         alert("Внимание! Для обложки должен использоваться провиль \"ImationMatchprn175lpi_avr.icc\", а установлен. — " + app.colorSettings.workingSpaceCMYK);
             if (confirm("Внимание! Для обложки должен использоваться провиль \"ImationMatchprn175lpi_avr.icc\", а установлен. — " + app.colorSettings.workingSpaceCMYK)) {
                app.colorSettings.cmsSettings = "Listovaya Mashina";
    function KasinfoFromPS() {
       var bt = new BridgeTalk;
       bt.target = "photoshop";
       bt.body = "app.colorSettings;"
       bt.onResult = function(resObj) {
          var myResult = resObj.body;
          KascheckPsColorSettings(myResult);
       bt.send();
    function KascheckPsColorSettings(myColorSettings){
       var myIssueNumber = parseInt(gKasDocumentName.substr(2, 3));
       if (gKasDocumentName.substr(0, 2) == "Q_" && myIssueNumber >= 730 && myIssueNumber <= 999 && gKasDocumentName.match("_Vshivka") == null){
          if (myColorSettings != "ISO Web Coated"){
             alert("Внимание в Photoshop! Для газеты должен использоваться провиль \"ISO Web Coated\", а установлен. — \"" + myColorSettings + "\"");
       if (gKasDocumentName.substr(0, 2) == "Q_" && myIssueNumber >= 730 && myIssueNumber <= 999 && gKasDocumentName.match("_Vshivka") != null){
          if (myColorSettings != "Listovaya Mashina"){
             alert("Внимание в Photoshop! Для вшивки должен использоваться провиль \"ImationMatchprn175lpi_avr.icc\", а установлен. — \"" + myColorSettings + "\"");
       else if (gKasDocumentName.substr(0, 4) == "Obl_"){
          if (myColorSettings != "Listovaya Mashina"){
             alert("Внимание в Photoshop! Для обложки должен использоваться провиль \"ImationMatchprn175lpi_avr.icc\", а установлен. — \"" + myColorSettings + "\"");
    You can put your own stuff into the script:
    if (theItem.eventCode == "docLoaded") {
    // do your stuff here
    And finally generate the plug-in.
    Kasyan

  • PAGES: How change a Paragraph Style ?

    Hello all,
    there is something that is driving me crazy...
    using Pages for iPad is it possible to change the default settings of a Paragraph Style ?
    I am not talking about importing a document with a custom set of styles but simply:
    - I open my document in Pages for iPad
    - I select a line of text and apply the "Header 1" style to it
    - I am not happy - for example - with the font size of the Header 1 style and I want to make all my Header 1 paragraphs change their font size
    - In the desktop version you would simply change/update the style you need, but on the iPad I cant find a way to change those values
    (BTW, I seem to remember that I once managed to do this...)
    Thanks,

    You seem to be able to copy and paste styles, but nowhere that I can find does it let you update the defined styles.
    There is the manual which does not refer to any suitable method, and also some eBooks on the subject but I have scanned those and can find no reference to redefining styles either.
    The more I play with Pages for iPad the more of a toy it seems. Sort of amazing that it does what it does on a mobile tablet, but when you get right down to it, not very useful.
    Peter

Maybe you are looking for

  • Saving .psp files as .jpg?

    Hi! I am working on a blog banner on the 30day trial version. I have created a .psp file and need to save it as a .jpg file. How do I do this? The File>Save For Web & Devices option is grayed out. I have flattened the image, but that didn't help. I'm

  • Trying to add songs to second Ipod....

    Just want to know if there's anyway I can add songs to a second library without interfering with my itunes library. My friend has a slow computer and he wants me to add some stuff to his Ipod. Thanks for any help.

  • Mba late 2011 fan issue

    Having bought the MBA13  1.8 Ghz I7 , notice the fan is constantly runing even no major App  like Iphoto or Aperture is on. Using Safari only. Istat 3 is getting me following values: User 1% System 2% Idle 97%  Threads 398 Processs 84 temp CPU A 72 

  • View by Size Grayed Out

    When I click on a photo and go to "view by size" in menu, that option is grayed out. I know I can go to "info", but would like to use this option. Using iphoto'11. Any ideas? Rob

  • HT201303 How do I buy itunes music from my new computer?

    How do I buy itunes from a new computer?