Flash AS IDE

1. I'd like to have a AS3 function navigator to quickly move
through large AS files. -- Feature Request
2. When I set breakpoints in the Flash AS3 editor, when I add
or remove lines, all the breakpoints stay on the same line, this
creates a situation where I've got to reset all my breakpoints
after each edit session. A real pain. What I'd like is the IDE to
adjust the breakpoints with editing.

http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

Similar Messages

  • AIR Intrinsic Classes-Tried and Proven Approach to building AIR applications   in the Flash CS3 IDE

    Hi everyone,
    For all of you out there who would like to develop AIR
    applications
    from the Flash CS3 IDE but aren't sure how to get those pesky
    intrinsic
    classes working, I have a technique that you can work with to
    create
    your classes and make fully functional AIR applications.
    First of all, those solutions out there that list
    "intrinsic" functions
    in their class definitions won't work. That keyword has been
    taken out
    and simply won't work. The "native" keyword also doesn't work
    because
    Flash will reject it. The solution is to do dynamic name
    resolution at
    runtime to get all the classes you need.
    Here's a sample class that returns references to the "File",
    "FileStream", and "FileMode" classes:
    package com.adobe{
    import flash.utils.*;
    import flash.display.*;
    public class AIR extends MovieClip {
    public static function get File():Class {
    try {
    var classRef:*=getDefinitionByName('flash.filesystem.File');
    } catch (err:ReferenceError) {
    return (null);
    }//catch
    return (classRef);
    }//get File
    public static function get FileMode():Class {
    try {
    var
    classRef:*=getDefinitionByName('flash.filesystem.FileMode');
    } catch (err:ReferenceError) {
    return (null);
    }//catch
    return (classRef);
    }//get FileMode
    public static function get FileStream():Class {
    try {
    var
    classRef:*=getDefinitionByName('flash.filesystem.FileStream');
    } catch (err:ReferenceError) {
    return (null);
    }//catch
    return (classRef);
    }//get FileStream
    }//AIR class
    }//com.adobe package
    I've defined the package as com.adobe but you can call it
    whatever you
    like. You do, however, need to import "flash.utils.*" because
    this
    package contains the "getDefinitionByName" method. Here I'm
    also
    extending the MovieClip class so that I can use the extending
    class
    (shown next) as the main Document class in the Flash IDE.
    Again, this is
    entirely up to you. If you have another type of class that
    will extend
    this one, you can have this one extend Sprite, Math, or
    whatever else
    you need (or nothing if it's all the same to you).
    Now, in the extending class, the Document class of the FLA,
    here's the
    class that extends and uses it:
    package {
    import com.adobe.AIR;
    public class airtest extends AIR{
    public function airtest() {
    var field:TextField=new TextField();
    field.autoSize='left';
    this.addChild(field);
    field.text="Fileobject="+File;
    }//constructor
    }//airtest class
    }//package
    Here I'm just showing that the class actually exists but not
    doing much
    with it.
    If you run this in the Flash IDE, the text field will show
    "File
    object=null". This is because in the IDE, there really is no
    File
    object, it only exists when the SWF is running within the
    Integrated
    Runtime. However, when you run the SWF as an AIR application
    (using the
    adl.exe utility that comes with the SDK, for example), the
    text field
    will now show: "File object=[object File]". Using this
    reference, you
    can use all of the File methods directly (have a look here
    for all of
    them:
    http://livedocs.adobe.com/labs/flex/3/langref/flash/filesystem/File.html).
    For example, you can call:
    var appResource:File=File.applicationResourceDirectory;
    This particular method is static so you don't need an
    instance. If you
    do (such as when Flash tells you the property isn't static),
    simply
    create an instance like this:
    var fileInstace:File=new File();
    fileInstance.someMethod('abc'); //just an example...read the
    reference
    for actual function calls
    Because the getter function in the AIR class returns a Class
    reference,
    it allows you to perform all of these actions directly as
    though the
    File class is part of the built in class structure (which in
    the
    runtime, it is!).
    Using this technique, you can create references to literally
    *ALL* of
    the AIR classes and use them to build your AIR application.
    The beauty
    of this technique is its brevity. When you define the class
    reference,
    all of the methods and properties are automatically
    associated with it
    so you don't need reams of code to define each and every
    item.
    There's a bit more that can be done with this AIR class to
    make it
    friendlier and I'll be extending mine until all the AIR
    classes are
    available. If anyone's interested, feel free to drop me a
    line or drop
    by my site at
    http://www.baynewmedia.com
    where I'll be posting the
    completed class. I may also make it into a component if
    there's enough
    interest. To all of you who knew all this already, I hope I
    didn't waste
    your time.
    Happy coding,
    Patrick

    Wow, you're right. The content simply doesn't show up at all.
    No
    JavaScript or HTML parsing errors, apparently. But no IE7
    content.
    I'll definitely have to look into that. In the meantime, try
    FireFox :)
    I'm trying to develop a panel to output AIR applications from
    within the
    Flash IDE. GSkinner has one but I haven't been able to get it
    to work
    successfully. Mine has exported an AIR app already so that's
    a step in
    the right direction but JSFL is a tricky beast, especially
    when trying
    to integrate it using MMExecute strings.
    But, if you can, create AIR applications by hand. I haven't
    yet seen an
    application that allows you to change every single option
    like you can
    when you update the application.xml file yourself. Also, it's
    a great
    fallback skill to have.
    Let me know if you need some assistance with AIR exports.
    Once you've
    done it a couple of times, it becomes pretty straightforward.
    Patrick
    GWD wrote:
    > P.S. I've clicked on your link a few times over the last
    couple of days to
    > check it out but all I get is a black page with a BNM
    flash header and no way
    > to navigate to any content. Using IE7 if that's any
    help.
    >
    >
    >
    http://www.baynewmedia.com
    Faster, easier, better...ActionScript development taken to
    new heights.
    Download the BNMAPI today. You'll wonder how you ever did
    without it!
    Available for ActionScript 2.0/3.0.

  • Flash CS5 IDE on OS X missing several font families from property inspector

    I'm missing several font families from the properties character font family inspector in my Flash CS5 ide on os x. These fonts are present in my font dir and are available in all my other CS5 suite applications (Photoshop, Dreamweaver, AfterEffects, etc).
    Anyone experience this?

    This forum is for Flash Media Server Developers so most likely you migth get much traction here. I would recommend you to post your query on Flash Builder forum: http://forums.adobe.com/community/flash_builder/using_flash_builder
    Also you can try posting here:
    Flash Platform Services For Promotion - http://forums.adobe.com/community/promotion
    Flash : http://forums.adobe.com/community/flash/flash_general

  • Flash CS4 IDE based project and embed metadata tags

    I posted this in one of the other sub-forums before I realised this one was available.
    I am moving over to using the Flex based embed metadata tags to import assets into my Flash CS4 IDE based project. This is working very well but I have hit one small problem - how do you now create a pre-loader? I've done the usual google to look for a solution and found many Flex based solutions and tried them all out but they do not appear to work from within a CS4 IDE based project - even when tried out on a web page.
    Is there a solution to this?

    I'm doing the same thing, it's great to have the embed function, but the swf loads all embed content before anything else.  This for me makes the feature useless. I make games and game sites want everything in one swf, so making a separate swf preloader wont work for me.  Hope Adobe creates a solution for this. 
    Here are my post on the subject:
    http://forums.adobe.com/thread/499997?tstart=0
    and
    http://forums.adobe.com/thread/499994?tstart=0
    Also I submitted a feature request with Adobe, I suggest you do the same.
    good luck!

  • BitmapData only works inside flash 8 IDE

    I need to take a snapshot of the currently playing .flv
    video:
    var snap = new BitmapData(70, 52);
    var mat:Matrix = new Matrix();
    mat.scale(70/640, 52/480); // scale to thumbnail size
    snap.draw(mc, mat);
    mc contains the video that is currently playing.
    The strange thing is that if I run it inside flash 8 IDE it
    works fine. But if I click on the .swf file and open it outside the
    IDE I get a blank picture.

    Hello dinepada, '''try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that temporarily turns off hardware acceleration, resets some settings, and disables add-ons (extensions and themes).
    '''If Firefox is open,''' you can restart in Firefox Safe Mode from the Help menu:
    * Click the menu button [[Image:New Fx Menu]], click Help [[Image:Help-29]] and select ''Restart with Add-ons Disabled''.
    '''If Firefox is not running,''' you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    When the Firefox Safe Mode window appears, select "Start in Safe Mode".
    ;[[Image:SafeMode-Fx35]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is '''probably caused by an extension''', theme, or hardware acceleration. Please follow the steps in the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.
    thank you

  • Apply Squiggly to Flash Pro IDE textfield.

    How do I apply Squiggly to a TLF textfield in the Flash Professional IDE?  I've been all over and can't seem to find a solution.  Thanks.
    Seems like the following should work (where 't' is the instance name of an editable TLF Textfield placed on the stage):
    import com.adobe.linguistics.spelling.SpellUIForTLF;
    SpellUIForTLF.enableSpelling(t.textFlow, "en_US");
    It actually works.  Spellchecking is enabled.  But I also get this in the output window:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at flashx.textLayout.container::TextContainerManager/getContentBounds()
              at SingleTextContainerManager/get contentWidth()
              at fl.text::TLFTextField/http://ns.adobe.com/textLayout/internal/2008::composeComplete()
              at fl.text::TLFTextField/http://ns.adobe.com/textLayout/internal/2008::updateComplete()
              at flash.events::EventDispatcher/dispatchEventFunction()
              at flash.events::EventDispatcher/dispatchEvent()
              at flashx.textLayout.container::TextContainerManager/dispatchEvent()
              at flash.events::EventDispatcher/dispatchEventFunction()
              at flash.events::EventDispatcher/dispatchEvent()
              at flashx.textLayout.elements::TextFlow/dispatchEvent()
              at flashx.textLayout.container::ContainerController/http://ns.adobe.com/textLayout/internal/2008::updateCompositionShapes()
              at flashx.textLayout.compose::StandardFlowComposer/updateCompositionShapes()
              at flashx.textLayout.compose::StandardFlowComposer/updateToController()
              at flashx.textLayout.compose::StandardFlowComposer/updateAllControllers()
              at com.adobe.linguistics.spelling::SpellingContextMenuForTLF()
              at com.adobe.linguistics.spelling::SpellUIForTLF/addContextMenu()
              at com.adobe.linguistics.spelling::SpellUIForTLF/loadDictComplete()
              at flash.events::EventDispatcher/dispatchEventFunction()
              at flash.events::EventDispatcher/dispatchEvent()
              at com.adobe.linguistics.spelling.framework::SpellingService/loadDictComplete()
              at flash.events::EventDispatcher/dispatchEventFunction()
              at flash.events::EventDispatcher/dispatchEvent()
              at com.adobe.linguistics.spelling::HunspellDictionary/loadDictionaryComplete()
              at flash.events::EventDispatcher/dispatchEventFunction()
              at flash.events::EventDispatcher/dispatchEvent()
              at com.adobe.linguistics.spelling.core.utils::SquigglyDictionaryLoader/loadWithoutTimeouts()
              at Function/http://adobe.com/AS3/2006/builtin::apply()
              at SetIntervalTimer/onTimer()
              at flash.utils::Timer/_timerDispatch()
              at flash.utils::Timer/tick()
    I'm trying to get it so I don't see that.
    I have AdobeSpellingConfig.xml and the dictionaries in the folder with the .fla.  I am also merging the AdobeSpellingUITLF.swc and textLayout.swc (3.0) at runtime.
    Thanks.
    Edits made to be more descriptive.

    i was able to fix the error with the source code of the textlayout : http://opensource.adobe.com/svn/opensource/flex/sdk/trunk/frameworks/projects/textLayout/
    and you change in TextContainerManager.as at line 1130
    getController():ContainerController instead of getController():TMContainerController
    now i still have a random problem that sometime when i right click instead of showing the context menu it trow a error
    SquigglyCustomContainerController/updateCustomMenuItems at c:something
    Error #1009: Cannot access a property or method of a null object reference.
    this cannot be fixed as Adobe didnt gave the source code for Squiggly

  • Flash Professional IDE Compile Target for Secondary SWFs?

    When building using the Flash Professional IDE (CS6), how should SWFs that are intended to be loaded secondarily be compiled. That is, what should their compile target be?
    Thanks

    >>Do you mean that the secondary swf's can have a compile target of flashplayer 11.3?
    Yes, secondary SWF with this target should get loaded.
    >>Then in the root swf has a compile target of air 3.6 and it does not matter what the target was for the secondary swf's?
    Yes.
    >>You mention that the secondary swf's are assets only, I thought the whole idea with 3.6 multi swf projects, was that these can now contain as3 code.
    Yes they can contain as3 code but there is no restriction of using swf-version>=19 with secondary SWFs.
    >>Also how are the secondary swf's supposed to be included in the root swf compile. (Not the runtime load method) In flash CS6 do we just add the secondary swf files to the included file list of the root publish settings dialog?
    Yes, you've to provide SWF files in included file list and also have to use code to load them at runtime.
    >>Also how do we designate AOT mode?
    In CS6, AOT mode ipa gets published in target Apple App Store and Ad hoc.

  • Problem with actionscript window in Flash CS3 IDE

    The actionscript window doesn't open up for any frames on the
    timeline. When I press 'F9' or try to access via context menu the
    action window tab appears at the top in minimized form. No matter
    how many times I click on it or on the maximize button the window
    doesn't open up. I tried reinstalling Flash CS3 but it didn't help.
    Any help with this issue is appreciated.
    Thanks!

    Found a solution for this atlast ! Delete the Users/AppData
    folder for flash CS3 and things will be back to normal. It seems
    the Flash IDE screws somewhere while saving the local users
    settings. Clearing these settings restored my action window
    !

  • Unable to open or import .swf into flash CC IDE

    hello, since I installed flash CC yesterday, I am unable to import .swf file into my .fla neither open .swf file in flash IDE. SWF extension is even not listed in list of supported files (I did all this normally in CS6 and before). When I try to open swf file in flash (because I got some assets in swf and need to edit it and put it to fla) it says something like "one or more files  were not imported because there were problems to read them." Shall I reinstall flash CC again or any other suggestion please ? thank you

    Maýbe you can install the trial CS6 from the product page and then sign in with your cloud ID? It has worked for me before when I had to re-install. After installed it should ask if you want trial or has a license, sign in to license and it should work again I hope. You may have to update CS6 after through the cc manager.
    Adobe should have put a full list of dropped features to read in one place before updating. It´s very poor customer management not to. But wise to all previous updates of Flash I keep every version, for ever if possible.

  • App fails to compile with mxmlc command-line but builds fine with flash builder IDE.

    Hi,
    i have this flex app (its a flex project created from flash builder ), it compiles fine when i build it from IDE.
    it fails to compile when i do it from command line through mxmlc.
    i am invoking the mxmlc at the location <flash-builder-installation>\sdks\<flex-ver>\bin\
    the mxml file is test.mxml
    i am invoking like the following
    c:\<bin>\mxmlc test.mxml
    i dont have any dependency on any of custom swc file.
    i am getting the following type errors when i compile it from my .as file
    Error: Type was not found or was not a compile-time constant: TouchEvent
    Error: Type was not found or was not a compile-time constant: File.
    Error: Type was not found or was not a compile-time constant: FileStream
    could you please let me know what i am missing here ?
    thanks,

    Is this a AIR app or a mobile app? If you are building AIR app for desktop then you can use amxmlc instead of mxmlc.
    If its a mobile app then use mxmlc +configname=airmobile
    -Gaurav
    http://www.gauravj.com/blog

  • Flash Catalyst idea

    I want to change default package organize in Flash Catalyst, how to do that?
    example, i want to rename the components package to the skins package, and more.

    Hi Adam,
    You are almost right !
    I am just rephrasing my question for you to understand!
    But I don't mean only carousel, I love to see the list control comes in some innovative paths. As you know in flash CS4 adobe has come with motion editor concept for tweening, where you can go ahead and fix some path for the motion of any object on the stage like in aftereffects.
    Now how about i take a template from illustrator where i define the data template of a data list control and scroll bar as vector assets. Now in flash catalyst, i come and fix them as data template and scroll bar. Now i double click and go into the datatemplate and then have a editor like in flash, where i can set a path for the motion of the repeated items, then in runtime it follows that path. This is my first idea.
    Second one was i have a search box on top of it , then i type some name to search from the above mentioned datalist control, now it refines and updates the exisiting list with relavant repeated items. When this layout updates , each item should animate and sit back on the data list.
    It's a small example for my idea! Hope you got my point!
    As you said , I am also mentioning the same repeated items(a.k.a. Data Template, a.k.a. Item Renderer)! One more level of animation to avoid coding and easy to create stunning path following list controls. Even it can be used to define other controls too ! I don't mean images, it can be anything!
    Can it be possible ?
    Thanks!
    Regards,
    Muthaiah,
    Principal Web Technologist,
    EMC Corporation, Bangalore.

  • Flash CS6 IDE Air Native Extensions problem HELP

    i'm trying to test out CS6's new native extension (ANE) but I'm having a difficult time getting it to work.
    First I went to Adobe's page: http://www.adobe.com/devnet/air/native-extensions-for-air.html
    Downloaded the "Vibration" ane and then through the Actionscript settings panel added the .ane file to my app and then in my actionscript tried to add the code:
    import com.adobe.extensions.Vibration
    var vibe:Vibration;
    vibe = new Vibration();
    vibe.vibrate();
    But when I go to compile I get this error:
    Scene 1, Layer 'Layer 2', Frame 1, Line 3
    1172: Definition com.adobe:Vibration could not be found.
    What do I need to do to get this running? I've tried several different things and variations on the above code but nothing seems to do it. Help!

    Well that gets me furthur than before. Thank you. I had to change a few things.
    import com.adobe.extensions.Vibration
    I had to change to:
    import com.adobe.nativeExtensions.Vibration
    but now when I test in the debugger I get this error:
    [SWF] iOS.swf - 3827 bytes after decompression
    Vibration Constructor
    Vibration Constructor: Create an extension context
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at com.adobe.nativeExtensions::Vibration$/initExtension()[/Users/mgarner/Dropbox/_apps/score board/com/adobe/nativeExtensions/Vibration.as:58]
              at com.adobe.nativeExtensions::Vibration()[/Users/mgarner/Dropbox/_apps/scoreboard/com/adobe /nativeExtensions/Vibration.as:32]
              at iOS_fla::MainTimeline/frame1()[iOS_fla.MainTimeline::frame1:14]
              at runtime::ContentPlayer/loadInitialContent()
              at runtime::ContentPlayer/playRawContent()
              at runtime::ContentPlayer/playContent()
              at runtime::AppRunner/run()
              at ADLAppEntry/run()
              at global/runtime::ADLEntry()
    And when I publich to app the phone doesn't vibrate, but all my other functions and actions are working. Any ideas?

  • Flash CS3 IDE Scroll bar behavior

    Hello,
    This behavior was experienced on CS3 Flash, Photoshop,
    Dreamweaver, at the same time. When I zoom in on anything, the
    scroll bar forces the screen to the bottom (PSD) or to the far
    right (FLA). If you attempt to pull the elevator box to the left,
    it returns to the right, like a stubborn child. Next the program
    crashes.
    I've learned that the typical solution for Photoshop is to
    reset the preferences, where you hold down the Shift+Ctrl+Alt. But
    this does not have the same result with Flash nor Dreamweaver.
    Is this a config problem? What can I do to correct it?
    --GM

    Thanks,
    This method seems to work for Photoshop and Bridge only.
    Do you know this will work for Flash? I've found no documentation in Adobe for refreshing preferences for Flash and Dreamweaver. When pressing Shift+Ctrl+Alt while launching Flash, I get a message about Blaze.
    What is the file name I should search for to delete? I don't believe speed could be the issue, I'm very quick to press after hitting the prog start.

  • XML editing from flash, any idea, suggestion

    Hello,
    I have created for a client a website dynamically loaded with
    XML formatted content (XML Files), now the client wants to be able
    to edit the contents of its site (CMS), the site displays several
    things but more specifically a list of products, which you can see
    by browsing the "PRODUCT RANGE" section of
    http://www.cellap.com/.
    I planned to use a php to rewrite the XML with the edited
    data sent from the flash (oldData, newData), it works fine, except
    that there are several problems:
    -I use the "ereg_replace" command of PHP, which seems not to
    handle correctly special charachters such as "*"...
    -If the php is told to replace i.e. "FACE" with "FIGURE", it
    will replace it everywhere on the XML, which is not what I want; so
    maybe I'm not using the right technique; I know it'd be more easy
    to do if the content was on a MySQL database, but the client wanted
    XML, to be able to browse the site offline...
    Any help or suggestions would be greatly appreciated!
    Tks

    loading yes. editing no.
    you need some sort of server script to do the editing(php,
    asp, cmf)
    Dan Mode
    *THE online Radio*
    http://www.tornadostream.com
    *Must Read*
    http://www.smithmediafusion.com/blog
    *Flash Helps*
    http://www.smithmediafusion.com/blog/?cat=11
    "ELTIGRE" <[email protected]> wrote in
    message
    news:e94vsk$fjb$[email protected]..
    > is it posible Loading and Editing xml data from flash
    without any
    > programing language using actionscript only?

  • Flash CS5 (IDE) always crashes whenever I try to import a photoshop file (PSD)

    Everytime I try to import a photoshop file in to Flash, the software crashes. They are both cs5 but whenever I drag and drop a jpg or png to the stage, they work fine. The PSD file is what I want to import into Flash but it's not happening. This is the error I get...
    Process:         Adobe Flash CS5 [1110]
    Path:            /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/MacOS/Adobe Flash CS5
    Identifier:      Adobe Flash CS5
    Version:         ??? (???)
    Code Type:       X86 (Native)
    Parent Process:  launchd [146]
    Date/Time:       2011-03-13 13:42:01.448 +0000
    OS Version:      Mac OS X 10.6.6 (10J567)
    Report Version:  6
    Interval Since Last Report:          208417 sec
    Crashes Since Last Report:           8
    Per-App Crashes Since Last Report:   6
    Anonymous UUID:                      93BA3313-95A5-47B7-87B2-02E2BA5A364F
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  9  Java: VM Thread
    Application Specific Information:
    abort() called
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib             0x987700a6 __semwait_signal + 10
    1   libSystem.B.dylib             0x9876fd62 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x987719f8 pthread_cond_wait$UNIX2003 + 73
    3   com.adobe.psl                 0x06fc8228 0x6f66000 + 401960
    4   com.adobe.psl                 0x06fc8371 0x6f66000 + 402289
    5   com.adobe.psl                 0x06fc7111 0x6f66000 + 397585
    6   com.adobe.psl                 0x06fc71ab 0x6f66000 + 397739
    7   com.adobe.psl                 0x073e05f2 0x6f66000 + 4695538
    8   com.adobe.psl                 0x073c30ce 0x6f66000 + 4575438
    9   com.adobe.psl                 0x073c333c 0x6f66000 + 4576060
    10  com.adobe.psl                 0x073c33e5 0x6f66000 + 4576229
    11  com.adobe.psl                 0x073c344d 0x6f66000 + 4576333
    12  com.adobe.psl                 0x070d1c86 0x6f66000 + 1490054
    13  com.adobe.psl                 0x070d4230 0x6f66000 + 1499696
    14  com.adobe.psl                 0x070dbe0b 0x6f66000 + 1531403
    15  com.adobe.psl                 0x07222265 0x6f66000 + 2867813
    16  com.adobe.psl                 0x072254b9 0x6f66000 + 2880697
    17  com.adobe.psl                 0x07225f69 0x6f66000 + 2883433
    18  com.adobe.psl                 0x07226121 0x6f66000 + 2883873
    19  com.adobe.psl                 0x07226731 0x6f66000 + 2885425
    20  com.adobe.psl                 0x07226b5d 0x6f66000 + 2886493
    21  com.adobe.psl                 0x072278bb 0x6f66000 + 2889915
    22  com.adobe.psl                 0x0720740d 0x6f66000 + 2757645
    23  com.adobe.psl                 0x071b596f 0x6f66000 + 2423151
    24  com.adobe.psl                 0x07428e6f PSLGetImageAttributes + 2715
    25  com.adobe.psl                 0x07458160 PSLGetPixelsTileSize + 4480
    26  com.adobe.psl                 0x074588fc PSLGetPixelsByChannel + 308
    27  com.adobe.psl                 0x07458a09 PSLGetPixelsMinimalBounds + 73
    28  ...Importer.PSDImporter.bundle 0x3015a4d6 PixelsConverter::GetBounds(AdobePSL::PSLBounds&) + 124
    29  ...Importer.PSDImporter.bundle 0x3015b624 PixelsConverter::ConvertRGBA8ToMediaBits(void*&) + 98
    30  ...Importer.PSDImporter.bundle 0x3015c07b PixelsConverter::ConvertToMediaBits(void*&, void*) + 167
    31  ...Importer.PSDImporter.bundle 0x301580bc LayerConverter::ConvertToMediaBitsMaintainingAppearance(void*&, void*, MFIMatrix&, MFIRect&) + 120
    32  ...Importer.PSDImporter.bundle 0x30154477 ImportActionBitmap::ExecuteToStage(ImageConverter&) + 139
    33  ...Importer.PSDImporter.bundle 0x301542c9 ImportAction::Execute(ImageConverter&) + 43
    34  ...Importer.PSDImporter.bundle 0x30155d87 ImportActionGroup::Execute(ImageConverter&) + 413
    35  ...Importer.PSDImporter.bundle 0x301542c9 ImportAction::Execute(ImageConverter&) + 43
    36  ...Importer.PSDImporter.bundle 0x30155d87 ImportActionGroup::Execute(ImageConverter&) + 413
    37  ...Importer.PSDImporter.bundle 0x301542c9 ImportAction::Execute(ImageConverter&) + 43
    38  ...Importer.PSDImporter.bundle 0x30155d87 ImportActionGroup::Execute(ImageConverter&) + 413
    39  ...Importer.PSDImporter.bundle 0x301542c9 ImportAction::Execute(ImageConverter&) + 43
    40  ...Importer.PSDImporter.bundle 0x30155d87 ImportActionGroup::Execute(ImageConverter&) + 413
    41  ...Importer.PSDImporter.bundle 0x3014470d PhotoshopReader::ReadDocument(unsigned short const*, MFIPlugInInterface::MFIReadMode) + 351
    42  com.adobe.flash               0x002c5b5f CPicSingleObjIter::~CPicSingleObjIter() + 3277
    43  com.adobe.flash               0x002e12ce COSStatusException::GetOSStatus() + 760
    44  com.adobe.flash               0x002c261d CUserCanceledException::GetRuntimeClass() const + 2853
    45  com.adobe.flash               0x002c2e21 CUserCanceledException::GetRuntimeClass() const + 4905
    46  com.adobe.flash               0x002c3146 CUserCanceledException::GetRuntimeClass() const + 5710
    47  com.adobe.flash               0x004cef5a CStdioFile::GetRuntimeClass() const + 21722
    48  com.adobe.flash               0x00198cd0 CSketchViewPrintContext::CSketchViewPrintContext() + 88394
    49  com.adobe.flash               0x00d7d9ab non-virtual thunk to CStdioFile::~CStdioFile() + 19245
    50  com.adobe.flash               0x00d79d2b non-virtual thunk to CStdioFile::~CStdioFile() + 3757
    51  com.adobe.flash               0x00d79bf6 non-virtual thunk to CStdioFile::~CStdioFile() + 3448
    52  com.adobe.flash               0x00d7add2 non-virtual thunk to CStdioFile::~CStdioFile() + 8020
    53  com.adobe.flash               0x00d7a160 non-virtual thunk to CStdioFile::~CStdioFile() + 4834
    54  com.apple.HIToolbox           0x9160becf DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1567
    55  com.apple.HIToolbox           0x9160b196 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    56  com.apple.HIToolbox           0x9160aff5 SendEventToEventTargetWithOptions + 58
    57  com.apple.HIToolbox           0x9163fc18 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 3006
    58  com.apple.HIToolbox           0x9160c320 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2672
    59  com.apple.HIToolbox           0x9160b196 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    60  com.apple.HIToolbox           0x9162da07 SendEventToEventTarget + 52
    61  com.apple.HIToolbox           0x917b6d2b ToolboxEventDispatcher + 86
    62  com.apple.HIToolbox           0x917b6e63 RunApplicationEventLoop + 243
    63  com.adobe.flash               0x00d6f4fe non-virtual thunk to CFileDialogImpl::~CFileDialogImpl() + 4302
    64  com.adobe.flash               0x00d45d1f CTimerImpl::~CTimerImpl() + 297
    65  com.adobe.flash               0x00d45dcb CTimerImpl::~CTimerImpl() + 469
    66  com.adobe.flash               0x00003716 0x1000 + 10006
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib             0x98768982 kevent + 10
    1   libSystem.B.dylib             0x9876909c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib             0x98768559 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib             0x987682fe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib             0x98767d81 _pthread_wqthread + 390
    5   libSystem.B.dylib             0x98767bc6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib             0x98742142 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib             0x9876fcfc _pthread_cond_wait + 1089
    2   libSystem.B.dylib             0x987b846f pthread_cond_wait + 48
    3   com.adobe.amt.services        0x0af2c126 AMTConditionLock::LockWhenCondition(int) + 46
    4   com.adobe.amt.services        0x0af24db0 _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 116
    5   com.adobe.amt.services        0x0af2c18c AMTThread::Worker(void*) + 24
    6   libSystem.B.dylib             0x9876f85d _pthread_start + 345
    7   libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 3:
    0   libSystem.B.dylib             0x987700a6 __semwait_signal + 10
    1   libSystem.B.dylib             0x9876fd62 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x987719f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x921d451e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x921bfea5 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x921bb873 MPWaitOnQueue + 250
    6   AdobeACE                      0x0533b6f1 0x5301000 + 239345
    7   AdobeACE                      0x0533b0ed 0x5301000 + 237805
    8   ...ple.CoreServices.CarbonCore 0x9219f85a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x9876f85d _pthread_start + 345
    10  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 4:  com.apple.CFSocket.private
    0   libSystem.B.dylib             0x987610c6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation      0x91a6ac83 __CFSocketManager + 1091
    2   libSystem.B.dylib             0x9876f85d _pthread_start + 345
    3   libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib             0x9877f5fe recvfrom$UNIX2003 + 10
    1   libSystem.B.dylib             0x9879f3c7 recv$UNIX2003 + 54
    2   ServiceManager-Launcher.dylib 0x21c136cf Invoke + 54887
    3   ServiceManager-Launcher.dylib 0x21c1276e Invoke + 50950
    4   ServiceManager-Launcher.dylib 0x21c1161f Invoke + 46519
    5   ServiceManager-Launcher.dylib 0x21c11671 Invoke + 46601
    6   ServiceManager-Launcher.dylib 0x21c116fb Invoke + 46739
    7   ServiceManager-Launcher.dylib 0x21c0bafe Invoke + 23190
    8   ServiceManager-Launcher.dylib 0x21c0bce7 Invoke + 23679
    9   ServiceManager-Launcher.dylib 0x21c0c8c7 Invoke + 26719
    10  ServiceManager-Launcher.dylib 0x21c0c9c5 Invoke + 26973
    11  ServiceManager-Launcher.dylib 0x21c0fdb0 Invoke + 40264
    12  ServiceManager-Launcher.dylib 0x21c10059 Invoke + 40945
    13  ServiceManager-Launcher.dylib 0x21c10687 Invoke + 42527
    14  ServiceManager-Launcher.dylib 0x21c10884 Invoke + 43036
    15  ServiceManager-Launcher.dylib 0x21c02826 Login + 1654
    16  ServiceManager-Launcher.dylib 0x21c03c71 Login + 6849
    17  ServiceManager-Launcher.dylib 0x21c10df3 Invoke + 44427
    18  ServiceManager-Launcher.dylib 0x21c13341 Invoke + 53977
    19  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    20  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 6:  Java: Exception Handler Thread
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libSystem.B.dylib             0x987ae088 mach_msg_server + 520
    3   libjvm.dylib                  0x2fa0fa6d JNI_CreateJavaVM_Impl + 56194
    4   libjvm.dylib                  0x2fa0fa18 JNI_CreateJavaVM_Impl + 56109
    5   libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    6   libSystem.B.dylib             0x9876f85d _pthread_start + 345
    7   libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 7:  Java: Gang worker#0 (Parallel GC Threads)
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fa0ee6e JNI_CreateJavaVM_Impl + 53123
    4   libjvm.dylib                  0x2fc786c1 JVM_RaiseSignal + 315119
    5   libjvm.dylib                  0x2fc78790 JVM_RaiseSignal + 315326
    6   libjvm.dylib                  0x2fa0eabb JNI_CreateJavaVM_Impl + 52176
    7   libjvm.dylib                  0x2fa22fd2 jio_vsnprintf + 331
    8   libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    9   libSystem.B.dylib             0x9876f85d _pthread_start + 345
    10  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 8:  Java: Gang worker#1 (Parallel GC Threads)
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fa0ee6e JNI_CreateJavaVM_Impl + 53123
    4   libjvm.dylib                  0x2fc786c1 JVM_RaiseSignal + 315119
    5   libjvm.dylib                  0x2fc78790 JVM_RaiseSignal + 315326
    6   libjvm.dylib                  0x2fa0eabb JNI_CreateJavaVM_Impl + 52176
    7   libjvm.dylib                  0x2fa22fd2 jio_vsnprintf + 331
    8   libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    9   libSystem.B.dylib             0x9876f85d _pthread_start + 345
    10  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 9 Crashed:  Java: VM Thread
    0   libSystem.B.dylib             0x987af4fe __semwait_signal_nocancel + 10
    1   libSystem.B.dylib             0x987af3e2 nanosleep$NOCANCEL$UNIX2003 + 166
    2   libSystem.B.dylib             0x9882a2aa usleep$NOCANCEL$UNIX2003 + 61
    3   libSystem.B.dylib             0x9884b9c8 abort + 105
    4   libstdc++.6.dylib             0x9411afda __gnu_cxx::__verbose_terminate_handler() + 433
    5   libstdc++.6.dylib             0x9411917a __cxxabiv1::__terminate(void (*)()) + 10
    6   libstdc++.6.dylib             0x941191ba __cxxabiv1::__unexpected(void (*)()) + 0
    7   libstdc++.6.dylib             0x94119753 __cxa_pure_virtual + 48
    8   ...strator.plugins.FuzzyEffect 0x29c6f5f5 PluginMain + 23719
    9   ...strator.plugins.FuzzyEffect 0x29c6f53f PluginMain + 23537
    10  ...strator.plugins.FuzzyEffect 0x29c69a74 PluginMain + 294
    11  com.adobe.illustrator         0x040f7564 spEdgeCallPlugin(SPAccess*, char const*, char const*, void*, long*) + 172
    12  com.adobe.illustrator         0x040f36c9 SPCallPlugin + 91
    13  com.adobe.illustrator         0x040fb38c SPSendMessage + 582
    14  com.adobe.illustrator         0x040fb6d9 spAdapter + 197
    15  com.adobe.illustrator         0x040f7564 spEdgeCallPlugin(SPAccess*, char const*, char const*, void*, long*) + 172
    16  com.adobe.illustrator         0x040f36c9 SPCallPlugin + 91
    17  com.adobe.illustrator         0x040fb38c SPSendMessage + 582
    18  com.adobe.illustrator         0x040f43d2 spShutdownTermSPAdapter() + 162
    19  com.adobe.illustrator         0x040f57b6 SPTerm + 44
    20  com.adobe.illustrator         0x03a818e7 PluginMgr::PluginsTerm() + 67
    21  com.adobe.illustrator         0x036a251a CAIAspectType<CAIAGMBridgeNotifier::Any>::NotifyObserver(void*, CAIAspectBase::ObserverData&, void const*) + 58
    22  com.adobe.illustrator         0x036d0ee2 MultiObserverImpl::Notify(CAIAspectBase&, void const*, unsigned short) + 76
    23  com.adobe.illustrator         0x036d1ad6 CAIAspectBase::Impl::Notify(CAIAspectBase&, void const*) + 102
    24  com.adobe.illustrator         0x036d1244 CAIAspectBase::Notify(void const*) + 50
    25  com.adobe.illustrator         0x036a22d9 CAIAGMBridge::UpdateACEBridge(CAIAspectEntry&, CAIACEBridgeNotifier::Quitting const&) + 93
    26  com.adobe.illustrator         0x0368fbba CAIAspectType<CAIACEBridgeNotifier::Any>::NotifyObserver(void*, CAIAspectBase::ObserverData&, void const*) + 58
    27  com.adobe.illustrator         0x036d0ee2 MultiObserverImpl::Notify(CAIAspectBase&, void const*, unsigned short) + 76
    28  com.adobe.illustrator         0x036d1ad6 CAIAspectBase::Impl::Notify(CAIAspectBase&, void const*) + 102
    29  com.adobe.illustrator         0x036d1244 CAIAspectBase::Notify(void const*) + 50
    30  com.adobe.illustrator         0x0368f98e CAIACEBridge::UpdateBIBBridge(CAIAspectEntry&, CAIBIBBridgeNotifier::Quitting const&) + 80
    31  com.adobe.illustrator         0x036ddc88 CAIAspectType<CAIBIBBridgeNotifier::Any>::NotifyObserver(void*, CAIAspectBase::ObserverData&, void const*) + 58
    32  com.adobe.illustrator         0x036d1ab5 CAIAspectBase::Impl::Notify(CAIAspectBase&, void const*) + 69
    33  com.adobe.illustrator         0x036d1244 CAIAspectBase::Notify(void const*) + 50
    34  com.adobe.illustrator         0x036dd95c CAIBIBBridge::UpdateApplicationLaunchQuit(CAIAspectEntry&, CAIApplicationNotifier::Quitting const&) + 80
    35  com.adobe.illustrator         0x036ae278 CAIAspectType<CAIApplicationNotifier::AnyLaunchQuit>::NotifyObserver(void*, CAIAspectBase::ObserverData&, void const*) + 58
    36  com.adobe.illustrator         0x036d0ee2 MultiObserverImpl::Notify(CAIAspectBase&, void const*, unsigned short) + 76
    37  com.adobe.illustrator         0x036d1ad6 CAIAspectBase::Impl::Notify(CAIAspectBase&, void const*) + 102
    38  com.adobe.illustrator         0x036d1244 CAIAspectBase::Notify(void const*) + 50
    39  com.adobe.illustrator         0x036ad7b1 CAIApplication::QuitDLL() + 63
    40  com.adobe.illustrator         0x03abb23c AILTerminate + 50
    41  ...porter.AICS3Importer.bundle 0x27c9992b AICS3PlugInInterface::~AICS3PlugInInterface() + 41
    42  libSystem.B.dylib             0x987611ff __cxa_finalize + 208
    43  libSystem.B.dylib             0x98761114 exit + 33
    44  libjvm.dylib                  0x2faff8fc JVM_Halt + 446
    45  libjvm.dylib                  0x2faff8df JVM_Halt + 417
    46  libjvm.dylib                  0x2fad3c51 JVM_GetClassInterfaces + 4319
    47  libjvm.dylib                  0x2fad3b74 JVM_GetClassInterfaces + 4098
    48  libjvm.dylib                  0x2fa8b0ac JVM_Lseek + 139370
    49  libjvm.dylib                  0x2fa8abf4 JVM_Lseek + 138162
    50  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    51  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    52  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 10:  Java: Reference Handler
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fa0ee6e JNI_CreateJavaVM_Impl + 53123
    4   libjvm.dylib                  0x2fcbe58a JVM_RaiseSignal + 601528
    5   libjvm.dylib                  0x2fcbe9ed JVM_RaiseSignal + 602651
    6   libjvm.dylib                  0x2fa96002 JVM_MonitorWait + 221
    7   libjvmlinkage.dylib           0x21e9ce75 JVM_MonitorWait + 69
    8   ???                           0x5400b9d9 0 + 1409333721
    9   ???                           0x54003e31 0 + 1409302065
    10  ???                           0x54003e31 0 + 1409302065
    11  ???                           0x54001374 0 + 1409291124
    12  libjvm.dylib                  0x2fa8c1be JVM_Lseek + 143740
    13  libjvm.dylib                  0x2fa8bf66 JVM_Lseek + 143140
    14  libjvm.dylib                  0x2fa95de9 JVM_StartThread + 2639
    15  libjvm.dylib                  0x2fa95cee JVM_StartThread + 2388
    16  libjvm.dylib                  0x2fa95c7d JVM_StartThread + 2275
    17  libjvm.dylib                  0x2fa95af0 JVM_StartThread + 1878
    18  libjvm.dylib                  0x2fa9599f JVM_StartThread + 1541
    19  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    20  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    21  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 11:  Java: Finalizer
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fa0ee6e JNI_CreateJavaVM_Impl + 53123
    4   libjvm.dylib                  0x2fcbe58a JVM_RaiseSignal + 601528
    5   libjvm.dylib                  0x2fcbe9ed JVM_RaiseSignal + 602651
    6   libjvm.dylib                  0x2fa96002 JVM_MonitorWait + 221
    7   libjvmlinkage.dylib           0x21e9ce75 JVM_MonitorWait + 69
    8   ???                           0x5400b9d9 0 + 1409333721
    9   ???                           0x54003e31 0 + 1409302065
    10  ???                           0x54003f97 0 + 1409302423
    11  ???                           0x54003f97 0 + 1409302423
    12  ???                           0x54001374 0 + 1409291124
    13  libjvm.dylib                  0x2fa8c1be JVM_Lseek + 143740
    14  libjvm.dylib                  0x2fa8bf66 JVM_Lseek + 143140
    15  libjvm.dylib                  0x2fa95de9 JVM_StartThread + 2639
    16  libjvm.dylib                  0x2fa95cee JVM_StartThread + 2388
    17  libjvm.dylib                  0x2fa95c7d JVM_StartThread + 2275
    18  libjvm.dylib                  0x2fa95af0 JVM_StartThread + 1878
    19  libjvm.dylib                  0x2fa9599f JVM_StartThread + 1541
    20  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    21  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    22  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 12:  Java: Surrogate Locker Thread (CMS)
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fa0ee6e JNI_CreateJavaVM_Impl + 53123
    4   libjvm.dylib                  0x2fc786c1 JVM_RaiseSignal + 315119
    5   libjvm.dylib                  0x2fc78790 JVM_RaiseSignal + 315326
    6   libjvm.dylib                  0x2fa0ea02 JNI_CreateJavaVM_Impl + 51991
    7   libjvm.dylib                  0x2faa7b03 JVM_IsPrimitiveClass + 5163
    8   libjvm.dylib                  0x2fa95af0 JVM_StartThread + 1878
    9   libjvm.dylib                  0x2fa9599f JVM_StartThread + 1541
    10  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    11  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    12  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 13:  Java: Signal Dispatcher
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fa0ee6e JNI_CreateJavaVM_Impl + 53123
    4   libjvm.dylib                  0x2fc786c1 JVM_RaiseSignal + 315119
    5   libjvm.dylib                  0x2fa0dc41 JNI_CreateJavaVM_Impl + 48470
    6   libjvm.dylib                  0x2fa0db86 JNI_CreateJavaVM_Impl + 48283
    7   libjvm.dylib                  0x2fad2139 JVM_EnableCompiler + 21065
    8   libjvm.dylib                  0x2fc6e1b1 JVM_RaiseSignal + 272863
    9   libjvm.dylib                  0x2faa878c JVM_IsPrimitiveClass + 8372
    10  libjvm.dylib                  0x2faa842c JVM_IsPrimitiveClass + 7508
    11  libjvm.dylib                  0x2fa95af0 JVM_StartThread + 1878
    12  libjvm.dylib                  0x2fa9599f JVM_StartThread + 1541
    13  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    14  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    15  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 14:  Java: CompilerThread0
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fa0ee6e JNI_CreateJavaVM_Impl + 53123
    4   libjvm.dylib                  0x2fc786c1 JVM_RaiseSignal + 315119
    5   libjvm.dylib                  0x2fc78790 JVM_RaiseSignal + 315326
    6   libjvm.dylib                  0x2fa0ea02 JNI_CreateJavaVM_Impl + 51991
    7   libjvm.dylib                  0x2faaf5cf JVM_Write + 2387
    8   libjvm.dylib                  0x2faa97c4 JVM_IsPrimitiveClass + 12524
    9   libjvm.dylib                  0x2fa95af0 JVM_StartThread + 1878
    10  libjvm.dylib                  0x2fa9599f JVM_StartThread + 1541
    11  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    12  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    13  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 15:  Java: Low Memory Detector
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fa0ee6e JNI_CreateJavaVM_Impl + 53123
    4   libjvm.dylib                  0x2fc786c1 JVM_RaiseSignal + 315119
    5   libjvm.dylib                  0x2fc78790 JVM_RaiseSignal + 315326
    6   libjvm.dylib                  0x2fa0eabb JNI_CreateJavaVM_Impl + 52176
    7   libjvm.dylib                  0x2faaaec6 JVM_IsPrimitiveClass + 18414
    8   libjvm.dylib                  0x2fa95af0 JVM_StartThread + 1878
    9   libjvm.dylib                  0x2fa9599f JVM_StartThread + 1541
    10  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    11  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    12  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 16:  Java: FelixDispatchQueue
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fa0ee6e JNI_CreateJavaVM_Impl + 53123
    4   libjvm.dylib                  0x2fcbe58a JVM_RaiseSignal + 601528
    5   libjvm.dylib                  0x2fcbe9ed JVM_RaiseSignal + 602651
    6   libjvm.dylib                  0x2fa96002 JVM_MonitorWait + 221
    7   libjvmlinkage.dylib           0x21e9ce75 JVM_MonitorWait + 69
    8   ???                           0x5400b9d9 0 + 1409333721
    9   ???                           0x54003e31 0 + 1409302065
    10  ???                           0x54003e31 0 + 1409302065
    11  ???                           0x54003e31 0 + 1409302065
    12  ???                           0x54003e31 0 + 1409302065
    13  ???                           0x5400430d 0 + 1409303309
    14  ???                           0x54001374 0 + 1409291124
    15  libjvm.dylib                  0x2fa8c1be JVM_Lseek + 143740
    16  libjvm.dylib                  0x2fa8bf66 JVM_Lseek + 143140
    17  libjvm.dylib                  0x2fa95de9 JVM_StartThread + 2639
    18  libjvm.dylib                  0x2fa95cee JVM_StartThread + 2388
    19  libjvm.dylib                  0x2fa95c7d JVM_StartThread + 2275
    20  libjvm.dylib                  0x2fa95af0 JVM_StartThread + 1878
    21  libjvm.dylib                  0x2fa9599f JVM_StartThread + 1541
    22  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    23  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    24  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 17:  Java: FelixStartLevel
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fa0ee6e JNI_CreateJavaVM_Impl + 53123
    4   libjvm.dylib                  0x2fcbe58a JVM_RaiseSignal + 601528
    5   libjvm.dylib                  0x2fcbe9ed JVM_RaiseSignal + 602651
    6   libjvm.dylib                  0x2fa96002 JVM_MonitorWait + 221
    7   libjvmlinkage.dylib           0x21e9ce75 JVM_MonitorWait + 69
    8   ???                           0x5400b9d9 0 + 1409333721
    9   ???                           0x54003e31 0 + 1409302065
    10  ???                           0x54003e31 0 + 1409302065
    11  ???                           0x5400430d 0 + 1409303309
    12  ???                           0x54001374 0 + 1409291124
    13  libjvm.dylib                  0x2fa8c1be JVM_Lseek + 143740
    14  libjvm.dylib                  0x2fa8bf66 JVM_Lseek + 143140
    15  libjvm.dylib                  0x2fa95de9 JVM_StartThread + 2639
    16  libjvm.dylib                  0x2fa95cee JVM_StartThread + 2388
    17  libjvm.dylib                  0x2fa95c7d JVM_StartThread + 2275
    18  libjvm.dylib                  0x2fa95af0 JVM_StartThread + 1878
    19  libjvm.dylib                  0x2fa9599f JVM_StartThread + 1541
    20  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    21  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    22  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 18:  Java: FelixPackageAdmin
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fa0ee6e JNI_CreateJavaVM_Impl + 53123
    4   libjvm.dylib                  0x2fcbe58a JVM_RaiseSignal + 601528
    5   libjvm.dylib                  0x2fcbe9ed JVM_RaiseSignal + 602651
    6   libjvm.dylib                  0x2fa96002 JVM_MonitorWait + 221
    7   libjvmlinkage.dylib           0x21e9ce75 JVM_MonitorWait + 69
    8   ???                           0x5400b9d9 0 + 1409333721
    9   ???                           0x54003e31 0 + 1409302065
    10  ???                           0x54003e31 0 + 1409302065
    11  ???                           0x5400430d 0 + 1409303309
    12  ???                           0x54001374 0 + 1409291124
    13  libjvm.dylib                  0x2fa8c1be JVM_Lseek + 143740
    14  libjvm.dylib                  0x2fa8bf66 JVM_Lseek + 143140
    15  libjvm.dylib                  0x2fa95de9 JVM_StartThread + 2639
    16  libjvm.dylib                  0x2fa95cee JVM_StartThread + 2388
    17  libjvm.dylib                  0x2fa95c7d JVM_StartThread + 2275
    18  libjvm.dylib                  0x2fa95af0 JVM_StartThread + 1878
    19  libjvm.dylib                  0x2fa9599f JVM_StartThread + 1541
    20  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    21  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    22  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 19:  Java: Code Model Worker
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fc83def JVM_RaiseSignal + 362013
    4   libjvm.dylib                  0x2fb16d25 JVM_ActiveProcessorCount + 300
    5   ???                           0x5400b9d9 0 + 1409333721
    6   ???                           0x54003e31 0 + 1409302065
    7   ???                           0x54003e31 0 + 1409302065
    8   ???                           0x5400430d 0 + 1409303309
    9   ???                           0x54004473 0 + 1409303667
    10  ???                           0x54003f97 0 + 1409302423
    11  ???                           0x5400430d 0 + 1409303309
    12  ???                           0x54001374 0 + 1409291124
    13  libjvm.dylib                  0x2fa8c1be JVM_Lseek + 143740
    14  libjvm.dylib                  0x2fa8bf66 JVM_Lseek + 143140
    15  libjvm.dylib                  0x2fa95de9 JVM_StartThread + 2639
    16  libjvm.dylib                  0x2fa95cee JVM_StartThread + 2388
    17  libjvm.dylib                  0x2fa95c7d JVM_StartThread + 2275
    18  libjvm.dylib                  0x2fa95af0 JVM_StartThread + 1878
    19  libjvm.dylib                  0x2fa9599f JVM_StartThread + 1541
    20  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    21  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    22  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 20:  Java: Code Model Worker
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fc83def JVM_RaiseSignal + 362013
    4   libjvm.dylib                  0x2fb16d25 JVM_ActiveProcessorCount + 300
    5   ???                           0x5400b9d9 0 + 1409333721
    6   ???                           0x54003e31 0 + 1409302065
    7   ???                           0x54003e31 0 + 1409302065
    8   ???                           0x5400430d 0 + 1409303309
    9   ???                           0x54004473 0 + 1409303667
    10  ???                           0x54003f97 0 + 1409302423
    11  ???                           0x5400430d 0 + 1409303309
    12  ???                           0x54001374 0 + 1409291124
    13  libjvm.dylib                  0x2fa8c1be JVM_Lseek + 143740
    14  libjvm.dylib                  0x2fa8bf66 JVM_Lseek + 143140
    15  libjvm.dylib                  0x2fa95de9 JVM_StartThread + 2639
    16  libjvm.dylib                  0x2fa95cee JVM_StartThread + 2388
    17  libjvm.dylib                  0x2fa95c7d JVM_StartThread + 2275
    18  libjvm.dylib                  0x2fa95af0 JVM_StartThread + 1878
    19  libjvm.dylib                  0x2fa9599f JVM_StartThread + 1541
    20  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    21  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    22  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 21:
    0   libSystem.B.dylib             0x987700a6 __semwait_signal + 10
    1   libSystem.B.dylib             0x9879bee5 nanosleep$UNIX2003 + 188
    2   com.adobe.flash.flbridge      0x22900d4b ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.flash.flbridge      0x228fb2d3 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.flash.flbridge      0x22900e58 ScObjects::Thread::go(void*) + 168
    5   libSystem.B.dylib             0x9876f85d _pthread_start + 345
    6   libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 22:
    0   libSystem.B.dylib             0x98742142 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib             0x9876fcfc _pthread_cond_wait + 1089
    2   libSystem.B.dylib             0x987b846f pthread_cond_wait + 48
    3   ...ia.Flash Player.authplaylib 0x20dba31f 0x20997000 + 4338463
    4   ...ia.Flash Player.authplaylib 0x209b06ef 0x20997000 + 104175
    5   ...ia.Flash Player.authplaylib 0x20dba40c 0x20997000 + 4338700
    6   ...ia.Flash Player.authplaylib 0x20dba450 0x20997000 + 4338768
    7   ...ia.Flash Player.authplaylib 0x20dba53b 0x20997000 + 4339003
    8   libSystem.B.dylib             0x9876f85d _pthread_start + 345
    9   libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 23:
    0   libSystem.B.dylib             0x98742142 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib             0x9876fcfc _pthread_cond_wait + 1089
    2   libSystem.B.dylib             0x987b846f pthread_cond_wait + 48
    3   ...ia.Flash Player.authplaylib 0x20dba31f 0x20997000 + 4338463
    4   ...ia.Flash Player.authplaylib 0x209b06ef 0x20997000 + 104175
    5   ...ia.Flash Player.authplaylib 0x20dba40c 0x20997000 + 4338700
    6   ...ia.Flash Player.authplaylib 0x20dba450 0x20997000 + 4338768
    7   ...ia.Flash Player.authplaylib 0x20dba53b 0x20997000 + 4339003
    8   libSystem.B.dylib             0x9876f85d _pthread_start + 345
    9   libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 24:  Java: Thread-4
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83b79 JVM_RaiseSignal + 361383
    3   libjvm.dylib                  0x2fc8404b JVM_RaiseSignal + 362617
    4   libjvm.dylib                  0x2fadee60 JVM_Sleep + 267
    5   libjvmlinkage.dylib           0x21e9da68 JVM_Sleep + 72
    6   ???                           0x5400b9d9 0 + 1409333721
    7   ???                           0x54003e31 0 + 1409302065
    8   ???                           0x5400430d 0 + 1409303309
    9   ???                           0x54001374 0 + 1409291124
    10  libjvm.dylib                  0x2fa8c1be JVM_Lseek + 143740
    11  libjvm.dylib                  0x2fa8bf66 JVM_Lseek + 143140
    12  libjvm.dylib                  0x2fa95de9 JVM_StartThread + 2639
    13  libjvm.dylib                  0x2fa95cee JVM_StartThread + 2388
    14  libjvm.dylib                  0x2fa95c7d JVM_StartThread + 2275
    15  libjvm.dylib                  0x2fa95af0 JVM_StartThread + 1878
    16  libjvm.dylib                  0x2fa9599f JVM_StartThread + 1541
    17  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    18  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    19  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 25:
    0   libSystem.B.dylib             0x9874215a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x9876fce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib             0x9879eac8 pthread_cond_timedwait_relative_np + 47
    3   ...ia.Flash Player.authplaylib 0x20dba2e7 0x20997000 + 4338407
    4   ...ia.Flash Player.authplaylib 0x20b6c38e 0x20997000 + 1921934
    5   ...ia.Flash Player.authplaylib 0x20dba40c 0x20997000 + 4338700
    6   ...ia.Flash Player.authplaylib 0x20dba450 0x20997000 + 4338768
    7   ...ia.Flash Player.authplaylib 0x20dba53b 0x20997000 + 4339003
    8   libSystem.B.dylib             0x9876f85d _pthread_start + 345
    9   libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 26:
    0   libSystem.B.dylib             0x987a03aa pwrite$UNIX2003 + 10
    1   ...ple.CoreServices.CarbonCore 0x921bc471 BasicWrite(FileRecord*, short, long long, unsigned long long*, void*, unsigned long long*) + 160
    2   ...ple.CoreServices.CarbonCore 0x921bc3a3 PBWriteForkSync + 117
    3   ...ple.CoreServices.CarbonCore 0x921bf917 AsyncFileThread(void*) + 220
    4   libSystem.B.dylib             0x9876f85d _pthread_start + 345
    5   libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 27:  Java: SIGTERM handler
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fa0ee6e JNI_CreateJavaVM_Impl + 53123
    4   libjvm.dylib                  0x2fc786c1 JVM_RaiseSignal + 315119
    5   libjvm.dylib                  0x2fc78790 JVM_RaiseSignal + 315326
    6   libjvm.dylib                  0x2fa0ea02 JNI_CreateJavaVM_Impl + 51991
    7   libjvm.dylib                  0x2fad3262 JVM_GetClassInterfaces + 1776
    8   libjvm.dylib                  0x2faff851 JVM_Halt + 275
    9   libjvm.dylib                  0x2faff79a JVM_Halt + 92
    10  libjvmlinkage.dylib           0x21e9d1b3 JVM_Halt + 35
    11  libjava.jnilib                0x22517be9 Java_java_lang_Shutdown_halt0 + 17
    12  ???                           0x5400b9d9 0 + 1409333721
    13  ???                           0x54003e31 0 + 1409302065
    14  ???                           0x54003e31 0 + 1409302065
    15  ???                           0x54003e31 0 + 1409302065
    16  ???                           0x5400430d 0 + 1409303309
    17  ???                           0x5400430d 0 + 1409303309
    18  ???                           0x54001374 0 + 1409291124
    19  libjvm.dylib                  0x2fa8c1be JVM_Lseek + 143740
    20  libjvm.dylib                  0x2fa8bf66 JVM_Lseek + 143140
    21  libjvm.dylib                  0x2fa95de9 JVM_StartThread + 2639
    22  libjvm.dylib                  0x2fa95cee JVM_StartThread + 2388
    23  libjvm.dylib                  0x2fa95c7d JVM_StartThread + 2275
    24  libjvm.dylib                  0x2fa95af0 JVM_StartThread + 1878
    25  libjvm.dylib                  0x2fa9599f JVM_StartThread + 1541
    26  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    27  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    28  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 9 crashed with X86 Thread State (32-bit):
      eax: 0x0000003c  ebx: 0x987af349  ecx: 0xb09a423c  edx: 0x987af4fe
      edi: 0x29c7f044  esi: 0xb09a4298  ebp: 0xb09a4278  esp: 0xb09a423c
       ss: 0x0000001f  efl: 0x00000247  eip: 0x987af4fe   cs: 0x00000007
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x2cf6132c
    Binary Images:
        0x1000 -  0x17c5fe0 +com.adobe.flash 11.0.2.489 (11.0.2) <BA9CB7ED-F0D3-CB9D-BF54-610852BE1D35> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/MacOS/Adobe Flash CS5
    0x20e9000 -  0x2261ffb +com.adobe.PlugPlug 2.0.0.746 (2.0.0.746) <08AD22E3-34C0-6749-E497-616C66A246AD> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
    0x2305000 -  0x23d2fe7 +AdobeAXEDOMCore ??? (???) <F76D74DC-FD5A-9783-C447-2E58773DA7E1> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
    0x2441000 -  0x24d2ff7 +libicucnv.dylib.36.0 36.0.0 (compatibility 36.0.0) <581475CC-C039-1B42-49BA-71811D8B4E15> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/ICUConverter.framework/Versions/3.6/libicucnv.dylib.36.0
    0x24f1000 -  0x25beff3 +libicui18n.dylib.36.0 36.0.0 (compatibility 36.0.0) <08F15219-7F35-574E-7725-1ACAA1B18A00> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/ICUInternationalization.framework/Versions/3.6/libicui18n.dyl ib.36.0
    0x2621000 -  0x26fbfef +libicuuc.dylib.36.0 36.0.0 (compatibility 36.0.0) <5EE72009-40B3-7FB7-3A49-576AEDE0D400> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc.dylib.36.0
    0x273b000 -  0x30ebfff +libicudata.dylib.36.0 36.0.0 (compatibility 36.0.0) <02108DEA-3DD2-14BE-DAEB-BE522B619C1D> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.dylib.36.0
    0x30ee000 -  0x30f9fef +libChar16.dylib ??? (???) <816B48D0-ACE3-4B7F-17E6-5185148CE7AD> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/MacOS/libChar16.dylib
    0x3102000 -  0x3119fe0 +libCoreTypes.dylib ??? (???) <D471DE81-0710-AAD8-3508-B6DAD42630CA> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/MacOS/libCoreTypes.dylib
    0x3136000 -  0x3145fef +ZLib.dylib ??? (???) /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/frameworks/ZLib.dylib
    0x314a000 -  0x3345ff7  com.apple.carbonframeworktemplate 1.0 (1.0) <F87C62DE-492B-35ED-C61D-A0A5B374F556> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/frameworks/Xerces.framework/Versions/A/Xerces
    0x35e9000 -  0x35edff7  com.apple.JavaVM 13.4.0 (13.4.0) <77CA466B-7DDA-D261-53A0-312FB7B0A6DC> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x35f5000 -  0x4380fe7 +com.adobe.illustrator 382 (15.0.0) <64F68532-0311-6BBA-1F50-246CAF917549> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AILib.framework/Versions/A/AILib
    0x5165000 -  0x51a9fff +com.adobe.illustrator.aiport AIPort version 1.0 (1.0) <69EDC44E-D7BB-A259-282D-C42725AE0E26> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AIPort.framework/Versions/A/AIPort
    0x520c000 -  0x5252fff +FilterPort ??? (???) <23FAE9D1-9376-1E71-21F7-D3EB2BFD50EE> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/FilterPort.framework/Versions/A/FilterPort
    0x52c7000 -  0x52c7fff +SPBasic ??? (???) <5D1760D8-C910-C641-0BC9-CF74A1A5190D> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
    0x52cb000 -  0x52e7ff9 +AdobePDFSettings ??? (???) /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSettings
    0x5301000 -  0x5415fff +AdobeACE ??? (???) <DD291A17-ECF4-FE20-5837-AC1F5BC76940> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x5438000 -  0x593afef +AdobeAGM ??? (???) <5B8478AC-5DD0-F116-5B3E-45596CF551C6> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x5a76000 -  0x5ab1fff +AdobeARE ??? (???) <CEE507DA-9B96-FAF9-7894-445C427C3D7A> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x5aba000 -  0x5ad4fff +AdobeBIB ??? (???) <5533CDC7-676C-0CF0-97B7-8EDD26837FFC> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x5add000 -  0x5afeff7 +AdobeBIBUtils ??? (???) <726B8463-9301-CE6C-0F2C-5CA81795A4CA> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x5b0a000 -  0x5dfcff7 +AdobeCoolType ??? (???) <2BF62C8A-D715-FDE8-650C-1984CFFCE33C> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x5e84000 -  0x625cff7 +AdobeMPS ??? (???) <272DAEDE-FC7E-B412-7C97-CF47FF6BF242> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x638b000 -  0x6469fef +AdobePDFPort ??? (???) <324E65FD-0011-F93F-9B92-FB4E17968181> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
    0x649f000 -  0x6ad3feb +AdobePDFL ??? (???) <1A619F3E-A9D4-A99C-791E-92B564F64609> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
    0x6bff000 -  0x6c25ff6 +AdobeAXE8SharedExpat ??? (???) <5848BBCE-3A3E-66EE-5527-97A96F0CA4CC> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AdobeAXE8SharedExpat.f

    Everytime I try to import a photoshop file in to Flash, the software crashes. They are both cs5 but whenever I drag and drop a jpg or png to the stage, they work fine. The PSD file is what I want to import into Flash but it's not happening. This is the error I get...
    Process:         Adobe Flash CS5 [1110]
    Path:            /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/MacOS/Adobe Flash CS5
    Identifier:      Adobe Flash CS5
    Version:         ??? (???)
    Code Type:       X86 (Native)
    Parent Process:  launchd [146]
    Date/Time:       2011-03-13 13:42:01.448 +0000
    OS Version:      Mac OS X 10.6.6 (10J567)
    Report Version:  6
    Interval Since Last Report:          208417 sec
    Crashes Since Last Report:           8
    Per-App Crashes Since Last Report:   6
    Anonymous UUID:                      93BA3313-95A5-47B7-87B2-02E2BA5A364F
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  9  Java: VM Thread
    Application Specific Information:
    abort() called
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib             0x987700a6 __semwait_signal + 10
    1   libSystem.B.dylib             0x9876fd62 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x987719f8 pthread_cond_wait$UNIX2003 + 73
    3   com.adobe.psl                 0x06fc8228 0x6f66000 + 401960
    4   com.adobe.psl                 0x06fc8371 0x6f66000 + 402289
    5   com.adobe.psl                 0x06fc7111 0x6f66000 + 397585
    6   com.adobe.psl                 0x06fc71ab 0x6f66000 + 397739
    7   com.adobe.psl                 0x073e05f2 0x6f66000 + 4695538
    8   com.adobe.psl                 0x073c30ce 0x6f66000 + 4575438
    9   com.adobe.psl                 0x073c333c 0x6f66000 + 4576060
    10  com.adobe.psl                 0x073c33e5 0x6f66000 + 4576229
    11  com.adobe.psl                 0x073c344d 0x6f66000 + 4576333
    12  com.adobe.psl                 0x070d1c86 0x6f66000 + 1490054
    13  com.adobe.psl                 0x070d4230 0x6f66000 + 1499696
    14  com.adobe.psl                 0x070dbe0b 0x6f66000 + 1531403
    15  com.adobe.psl                 0x07222265 0x6f66000 + 2867813
    16  com.adobe.psl                 0x072254b9 0x6f66000 + 2880697
    17  com.adobe.psl                 0x07225f69 0x6f66000 + 2883433
    18  com.adobe.psl                 0x07226121 0x6f66000 + 2883873
    19  com.adobe.psl                 0x07226731 0x6f66000 + 2885425
    20  com.adobe.psl                 0x07226b5d 0x6f66000 + 2886493
    21  com.adobe.psl                 0x072278bb 0x6f66000 + 2889915
    22  com.adobe.psl                 0x0720740d 0x6f66000 + 2757645
    23  com.adobe.psl                 0x071b596f 0x6f66000 + 2423151
    24  com.adobe.psl                 0x07428e6f PSLGetImageAttributes + 2715
    25  com.adobe.psl                 0x07458160 PSLGetPixelsTileSize + 4480
    26  com.adobe.psl                 0x074588fc PSLGetPixelsByChannel + 308
    27  com.adobe.psl                 0x07458a09 PSLGetPixelsMinimalBounds + 73
    28  ...Importer.PSDImporter.bundle 0x3015a4d6 PixelsConverter::GetBounds(AdobePSL::PSLBounds&) + 124
    29  ...Importer.PSDImporter.bundle 0x3015b624 PixelsConverter::ConvertRGBA8ToMediaBits(void*&) + 98
    30  ...Importer.PSDImporter.bundle 0x3015c07b PixelsConverter::ConvertToMediaBits(void*&, void*) + 167
    31  ...Importer.PSDImporter.bundle 0x301580bc LayerConverter::ConvertToMediaBitsMaintainingAppearance(void*&, void*, MFIMatrix&, MFIRect&) + 120
    32  ...Importer.PSDImporter.bundle 0x30154477 ImportActionBitmap::ExecuteToStage(ImageConverter&) + 139
    33  ...Importer.PSDImporter.bundle 0x301542c9 ImportAction::Execute(ImageConverter&) + 43
    34  ...Importer.PSDImporter.bundle 0x30155d87 ImportActionGroup::Execute(ImageConverter&) + 413
    35  ...Importer.PSDImporter.bundle 0x301542c9 ImportAction::Execute(ImageConverter&) + 43
    36  ...Importer.PSDImporter.bundle 0x30155d87 ImportActionGroup::Execute(ImageConverter&) + 413
    37  ...Importer.PSDImporter.bundle 0x301542c9 ImportAction::Execute(ImageConverter&) + 43
    38  ...Importer.PSDImporter.bundle 0x30155d87 ImportActionGroup::Execute(ImageConverter&) + 413
    39  ...Importer.PSDImporter.bundle 0x301542c9 ImportAction::Execute(ImageConverter&) + 43
    40  ...Importer.PSDImporter.bundle 0x30155d87 ImportActionGroup::Execute(ImageConverter&) + 413
    41  ...Importer.PSDImporter.bundle 0x3014470d PhotoshopReader::ReadDocument(unsigned short const*, MFIPlugInInterface::MFIReadMode) + 351
    42  com.adobe.flash               0x002c5b5f CPicSingleObjIter::~CPicSingleObjIter() + 3277
    43  com.adobe.flash               0x002e12ce COSStatusException::GetOSStatus() + 760
    44  com.adobe.flash               0x002c261d CUserCanceledException::GetRuntimeClass() const + 2853
    45  com.adobe.flash               0x002c2e21 CUserCanceledException::GetRuntimeClass() const + 4905
    46  com.adobe.flash               0x002c3146 CUserCanceledException::GetRuntimeClass() const + 5710
    47  com.adobe.flash               0x004cef5a CStdioFile::GetRuntimeClass() const + 21722
    48  com.adobe.flash               0x00198cd0 CSketchViewPrintContext::CSketchViewPrintContext() + 88394
    49  com.adobe.flash               0x00d7d9ab non-virtual thunk to CStdioFile::~CStdioFile() + 19245
    50  com.adobe.flash               0x00d79d2b non-virtual thunk to CStdioFile::~CStdioFile() + 3757
    51  com.adobe.flash               0x00d79bf6 non-virtual thunk to CStdioFile::~CStdioFile() + 3448
    52  com.adobe.flash               0x00d7add2 non-virtual thunk to CStdioFile::~CStdioFile() + 8020
    53  com.adobe.flash               0x00d7a160 non-virtual thunk to CStdioFile::~CStdioFile() + 4834
    54  com.apple.HIToolbox           0x9160becf DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1567
    55  com.apple.HIToolbox           0x9160b196 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    56  com.apple.HIToolbox           0x9160aff5 SendEventToEventTargetWithOptions + 58
    57  com.apple.HIToolbox           0x9163fc18 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 3006
    58  com.apple.HIToolbox           0x9160c320 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2672
    59  com.apple.HIToolbox           0x9160b196 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    60  com.apple.HIToolbox           0x9162da07 SendEventToEventTarget + 52
    61  com.apple.HIToolbox           0x917b6d2b ToolboxEventDispatcher + 86
    62  com.apple.HIToolbox           0x917b6e63 RunApplicationEventLoop + 243
    63  com.adobe.flash               0x00d6f4fe non-virtual thunk to CFileDialogImpl::~CFileDialogImpl() + 4302
    64  com.adobe.flash               0x00d45d1f CTimerImpl::~CTimerImpl() + 297
    65  com.adobe.flash               0x00d45dcb CTimerImpl::~CTimerImpl() + 469
    66  com.adobe.flash               0x00003716 0x1000 + 10006
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib             0x98768982 kevent + 10
    1   libSystem.B.dylib             0x9876909c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib             0x98768559 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib             0x987682fe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib             0x98767d81 _pthread_wqthread + 390
    5   libSystem.B.dylib             0x98767bc6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib             0x98742142 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib             0x9876fcfc _pthread_cond_wait + 1089
    2   libSystem.B.dylib             0x987b846f pthread_cond_wait + 48
    3   com.adobe.amt.services        0x0af2c126 AMTConditionLock::LockWhenCondition(int) + 46
    4   com.adobe.amt.services        0x0af24db0 _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 116
    5   com.adobe.amt.services        0x0af2c18c AMTThread::Worker(void*) + 24
    6   libSystem.B.dylib             0x9876f85d _pthread_start + 345
    7   libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 3:
    0   libSystem.B.dylib             0x987700a6 __semwait_signal + 10
    1   libSystem.B.dylib             0x9876fd62 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x987719f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x921d451e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x921bfea5 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x921bb873 MPWaitOnQueue + 250
    6   AdobeACE                      0x0533b6f1 0x5301000 + 239345
    7   AdobeACE                      0x0533b0ed 0x5301000 + 237805
    8   ...ple.CoreServices.CarbonCore 0x9219f85a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x9876f85d _pthread_start + 345
    10  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 4:  com.apple.CFSocket.private
    0   libSystem.B.dylib             0x987610c6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation      0x91a6ac83 __CFSocketManager + 1091
    2   libSystem.B.dylib             0x9876f85d _pthread_start + 345
    3   libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib             0x9877f5fe recvfrom$UNIX2003 + 10
    1   libSystem.B.dylib             0x9879f3c7 recv$UNIX2003 + 54
    2   ServiceManager-Launcher.dylib 0x21c136cf Invoke + 54887
    3   ServiceManager-Launcher.dylib 0x21c1276e Invoke + 50950
    4   ServiceManager-Launcher.dylib 0x21c1161f Invoke + 46519
    5   ServiceManager-Launcher.dylib 0x21c11671 Invoke + 46601
    6   ServiceManager-Launcher.dylib 0x21c116fb Invoke + 46739
    7   ServiceManager-Launcher.dylib 0x21c0bafe Invoke + 23190
    8   ServiceManager-Launcher.dylib 0x21c0bce7 Invoke + 23679
    9   ServiceManager-Launcher.dylib 0x21c0c8c7 Invoke + 26719
    10  ServiceManager-Launcher.dylib 0x21c0c9c5 Invoke + 26973
    11  ServiceManager-Launcher.dylib 0x21c0fdb0 Invoke + 40264
    12  ServiceManager-Launcher.dylib 0x21c10059 Invoke + 40945
    13  ServiceManager-Launcher.dylib 0x21c10687 Invoke + 42527
    14  ServiceManager-Launcher.dylib 0x21c10884 Invoke + 43036
    15  ServiceManager-Launcher.dylib 0x21c02826 Login + 1654
    16  ServiceManager-Launcher.dylib 0x21c03c71 Login + 6849
    17  ServiceManager-Launcher.dylib 0x21c10df3 Invoke + 44427
    18  ServiceManager-Launcher.dylib 0x21c13341 Invoke + 53977
    19  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    20  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 6:  Java: Exception Handler Thread
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libSystem.B.dylib             0x987ae088 mach_msg_server + 520
    3   libjvm.dylib                  0x2fa0fa6d JNI_CreateJavaVM_Impl + 56194
    4   libjvm.dylib                  0x2fa0fa18 JNI_CreateJavaVM_Impl + 56109
    5   libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    6   libSystem.B.dylib             0x9876f85d _pthread_start + 345
    7   libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 7:  Java: Gang worker#0 (Parallel GC Threads)
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fa0ee6e JNI_CreateJavaVM_Impl + 53123
    4   libjvm.dylib                  0x2fc786c1 JVM_RaiseSignal + 315119
    5   libjvm.dylib                  0x2fc78790 JVM_RaiseSignal + 315326
    6   libjvm.dylib                  0x2fa0eabb JNI_CreateJavaVM_Impl + 52176
    7   libjvm.dylib                  0x2fa22fd2 jio_vsnprintf + 331
    8   libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    9   libSystem.B.dylib             0x9876f85d _pthread_start + 345
    10  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 8:  Java: Gang worker#1 (Parallel GC Threads)
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fa0ee6e JNI_CreateJavaVM_Impl + 53123
    4   libjvm.dylib                  0x2fc786c1 JVM_RaiseSignal + 315119
    5   libjvm.dylib                  0x2fc78790 JVM_RaiseSignal + 315326
    6   libjvm.dylib                  0x2fa0eabb JNI_CreateJavaVM_Impl + 52176
    7   libjvm.dylib                  0x2fa22fd2 jio_vsnprintf + 331
    8   libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    9   libSystem.B.dylib             0x9876f85d _pthread_start + 345
    10  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 9 Crashed:  Java: VM Thread
    0   libSystem.B.dylib             0x987af4fe __semwait_signal_nocancel + 10
    1   libSystem.B.dylib             0x987af3e2 nanosleep$NOCANCEL$UNIX2003 + 166
    2   libSystem.B.dylib             0x9882a2aa usleep$NOCANCEL$UNIX2003 + 61
    3   libSystem.B.dylib             0x9884b9c8 abort + 105
    4   libstdc++.6.dylib             0x9411afda __gnu_cxx::__verbose_terminate_handler() + 433
    5   libstdc++.6.dylib             0x9411917a __cxxabiv1::__terminate(void (*)()) + 10
    6   libstdc++.6.dylib             0x941191ba __cxxabiv1::__unexpected(void (*)()) + 0
    7   libstdc++.6.dylib             0x94119753 __cxa_pure_virtual + 48
    8   ...strator.plugins.FuzzyEffect 0x29c6f5f5 PluginMain + 23719
    9   ...strator.plugins.FuzzyEffect 0x29c6f53f PluginMain + 23537
    10  ...strator.plugins.FuzzyEffect 0x29c69a74 PluginMain + 294
    11  com.adobe.illustrator         0x040f7564 spEdgeCallPlugin(SPAccess*, char const*, char const*, void*, long*) + 172
    12  com.adobe.illustrator         0x040f36c9 SPCallPlugin + 91
    13  com.adobe.illustrator         0x040fb38c SPSendMessage + 582
    14  com.adobe.illustrator         0x040fb6d9 spAdapter + 197
    15  com.adobe.illustrator         0x040f7564 spEdgeCallPlugin(SPAccess*, char const*, char const*, void*, long*) + 172
    16  com.adobe.illustrator         0x040f36c9 SPCallPlugin + 91
    17  com.adobe.illustrator         0x040fb38c SPSendMessage + 582
    18  com.adobe.illustrator         0x040f43d2 spShutdownTermSPAdapter() + 162
    19  com.adobe.illustrator         0x040f57b6 SPTerm + 44
    20  com.adobe.illustrator         0x03a818e7 PluginMgr::PluginsTerm() + 67
    21  com.adobe.illustrator         0x036a251a CAIAspectType<CAIAGMBridgeNotifier::Any>::NotifyObserver(void*, CAIAspectBase::ObserverData&, void const*) + 58
    22  com.adobe.illustrator         0x036d0ee2 MultiObserverImpl::Notify(CAIAspectBase&, void const*, unsigned short) + 76
    23  com.adobe.illustrator         0x036d1ad6 CAIAspectBase::Impl::Notify(CAIAspectBase&, void const*) + 102
    24  com.adobe.illustrator         0x036d1244 CAIAspectBase::Notify(void const*) + 50
    25  com.adobe.illustrator         0x036a22d9 CAIAGMBridge::UpdateACEBridge(CAIAspectEntry&, CAIACEBridgeNotifier::Quitting const&) + 93
    26  com.adobe.illustrator         0x0368fbba CAIAspectType<CAIACEBridgeNotifier::Any>::NotifyObserver(void*, CAIAspectBase::ObserverData&, void const*) + 58
    27  com.adobe.illustrator         0x036d0ee2 MultiObserverImpl::Notify(CAIAspectBase&, void const*, unsigned short) + 76
    28  com.adobe.illustrator         0x036d1ad6 CAIAspectBase::Impl::Notify(CAIAspectBase&, void const*) + 102
    29  com.adobe.illustrator         0x036d1244 CAIAspectBase::Notify(void const*) + 50
    30  com.adobe.illustrator         0x0368f98e CAIACEBridge::UpdateBIBBridge(CAIAspectEntry&, CAIBIBBridgeNotifier::Quitting const&) + 80
    31  com.adobe.illustrator         0x036ddc88 CAIAspectType<CAIBIBBridgeNotifier::Any>::NotifyObserver(void*, CAIAspectBase::ObserverData&, void const*) + 58
    32  com.adobe.illustrator         0x036d1ab5 CAIAspectBase::Impl::Notify(CAIAspectBase&, void const*) + 69
    33  com.adobe.illustrator         0x036d1244 CAIAspectBase::Notify(void const*) + 50
    34  com.adobe.illustrator         0x036dd95c CAIBIBBridge::UpdateApplicationLaunchQuit(CAIAspectEntry&, CAIApplicationNotifier::Quitting const&) + 80
    35  com.adobe.illustrator         0x036ae278 CAIAspectType<CAIApplicationNotifier::AnyLaunchQuit>::NotifyObserver(void*, CAIAspectBase::ObserverData&, void const*) + 58
    36  com.adobe.illustrator         0x036d0ee2 MultiObserverImpl::Notify(CAIAspectBase&, void const*, unsigned short) + 76
    37  com.adobe.illustrator         0x036d1ad6 CAIAspectBase::Impl::Notify(CAIAspectBase&, void const*) + 102
    38  com.adobe.illustrator         0x036d1244 CAIAspectBase::Notify(void const*) + 50
    39  com.adobe.illustrator         0x036ad7b1 CAIApplication::QuitDLL() + 63
    40  com.adobe.illustrator         0x03abb23c AILTerminate + 50
    41  ...porter.AICS3Importer.bundle 0x27c9992b AICS3PlugInInterface::~AICS3PlugInInterface() + 41
    42  libSystem.B.dylib             0x987611ff __cxa_finalize + 208
    43  libSystem.B.dylib             0x98761114 exit + 33
    44  libjvm.dylib                  0x2faff8fc JVM_Halt + 446
    45  libjvm.dylib                  0x2faff8df JVM_Halt + 417
    46  libjvm.dylib                  0x2fad3c51 JVM_GetClassInterfaces + 4319
    47  libjvm.dylib                  0x2fad3b74 JVM_GetClassInterfaces + 4098
    48  libjvm.dylib                  0x2fa8b0ac JVM_Lseek + 139370
    49  libjvm.dylib                  0x2fa8abf4 JVM_Lseek + 138162
    50  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    51  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    52  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 10:  Java: Reference Handler
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fa0ee6e JNI_CreateJavaVM_Impl + 53123
    4   libjvm.dylib                  0x2fcbe58a JVM_RaiseSignal + 601528
    5   libjvm.dylib                  0x2fcbe9ed JVM_RaiseSignal + 602651
    6   libjvm.dylib                  0x2fa96002 JVM_MonitorWait + 221
    7   libjvmlinkage.dylib           0x21e9ce75 JVM_MonitorWait + 69
    8   ???                           0x5400b9d9 0 + 1409333721
    9   ???                           0x54003e31 0 + 1409302065
    10  ???                           0x54003e31 0 + 1409302065
    11  ???                           0x54001374 0 + 1409291124
    12  libjvm.dylib                  0x2fa8c1be JVM_Lseek + 143740
    13  libjvm.dylib                  0x2fa8bf66 JVM_Lseek + 143140
    14  libjvm.dylib                  0x2fa95de9 JVM_StartThread + 2639
    15  libjvm.dylib                  0x2fa95cee JVM_StartThread + 2388
    16  libjvm.dylib                  0x2fa95c7d JVM_StartThread + 2275
    17  libjvm.dylib                  0x2fa95af0 JVM_StartThread + 1878
    18  libjvm.dylib                  0x2fa9599f JVM_StartThread + 1541
    19  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    20  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    21  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 11:  Java: Finalizer
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fa0ee6e JNI_CreateJavaVM_Impl + 53123
    4   libjvm.dylib                  0x2fcbe58a JVM_RaiseSignal + 601528
    5   libjvm.dylib                  0x2fcbe9ed JVM_RaiseSignal + 602651
    6   libjvm.dylib                  0x2fa96002 JVM_MonitorWait + 221
    7   libjvmlinkage.dylib           0x21e9ce75 JVM_MonitorWait + 69
    8   ???                           0x5400b9d9 0 + 1409333721
    9   ???                           0x54003e31 0 + 1409302065
    10  ???                           0x54003f97 0 + 1409302423
    11  ???                           0x54003f97 0 + 1409302423
    12  ???                           0x54001374 0 + 1409291124
    13  libjvm.dylib                  0x2fa8c1be JVM_Lseek + 143740
    14  libjvm.dylib                  0x2fa8bf66 JVM_Lseek + 143140
    15  libjvm.dylib                  0x2fa95de9 JVM_StartThread + 2639
    16  libjvm.dylib                  0x2fa95cee JVM_StartThread + 2388
    17  libjvm.dylib                  0x2fa95c7d JVM_StartThread + 2275
    18  libjvm.dylib                  0x2fa95af0 JVM_StartThread + 1878
    19  libjvm.dylib                  0x2fa9599f JVM_StartThread + 1541
    20  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    21  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    22  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 12:  Java: Surrogate Locker Thread (CMS)
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fa0ee6e JNI_CreateJavaVM_Impl + 53123
    4   libjvm.dylib                  0x2fc786c1 JVM_RaiseSignal + 315119
    5   libjvm.dylib                  0x2fc78790 JVM_RaiseSignal + 315326
    6   libjvm.dylib                  0x2fa0ea02 JNI_CreateJavaVM_Impl + 51991
    7   libjvm.dylib                  0x2faa7b03 JVM_IsPrimitiveClass + 5163
    8   libjvm.dylib                  0x2fa95af0 JVM_StartThread + 1878
    9   libjvm.dylib                  0x2fa9599f JVM_StartThread + 1541
    10  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    11  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    12  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 13:  Java: Signal Dispatcher
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fa0ee6e JNI_CreateJavaVM_Impl + 53123
    4   libjvm.dylib                  0x2fc786c1 JVM_RaiseSignal + 315119
    5   libjvm.dylib                  0x2fa0dc41 JNI_CreateJavaVM_Impl + 48470
    6   libjvm.dylib                  0x2fa0db86 JNI_CreateJavaVM_Impl + 48283
    7   libjvm.dylib                  0x2fad2139 JVM_EnableCompiler + 21065
    8   libjvm.dylib                  0x2fc6e1b1 JVM_RaiseSignal + 272863
    9   libjvm.dylib                  0x2faa878c JVM_IsPrimitiveClass + 8372
    10  libjvm.dylib                  0x2faa842c JVM_IsPrimitiveClass + 7508
    11  libjvm.dylib                  0x2fa95af0 JVM_StartThread + 1878
    12  libjvm.dylib                  0x2fa9599f JVM_StartThread + 1541
    13  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    14  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    15  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 14:  Java: CompilerThread0
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fa0ee6e JNI_CreateJavaVM_Impl + 53123
    4   libjvm.dylib                  0x2fc786c1 JVM_RaiseSignal + 315119
    5   libjvm.dylib                  0x2fc78790 JVM_RaiseSignal + 315326
    6   libjvm.dylib                  0x2fa0ea02 JNI_CreateJavaVM_Impl + 51991
    7   libjvm.dylib                  0x2faaf5cf JVM_Write + 2387
    8   libjvm.dylib                  0x2faa97c4 JVM_IsPrimitiveClass + 12524
    9   libjvm.dylib                  0x2fa95af0 JVM_StartThread + 1878
    10  libjvm.dylib                  0x2fa9599f JVM_StartThread + 1541
    11  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    12  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    13  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 15:  Java: Low Memory Detector
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fa0ee6e JNI_CreateJavaVM_Impl + 53123
    4   libjvm.dylib                  0x2fc786c1 JVM_RaiseSignal + 315119
    5   libjvm.dylib                  0x2fc78790 JVM_RaiseSignal + 315326
    6   libjvm.dylib                  0x2fa0eabb JNI_CreateJavaVM_Impl + 52176
    7   libjvm.dylib                  0x2faaaec6 JVM_IsPrimitiveClass + 18414
    8   libjvm.dylib                  0x2fa95af0 JVM_StartThread + 1878
    9   libjvm.dylib                  0x2fa9599f JVM_StartThread + 1541
    10  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    11  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    12  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 16:  Java: FelixDispatchQueue
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fa0ee6e JNI_CreateJavaVM_Impl + 53123
    4   libjvm.dylib                  0x2fcbe58a JVM_RaiseSignal + 601528
    5   libjvm.dylib                  0x2fcbe9ed JVM_RaiseSignal + 602651
    6   libjvm.dylib                  0x2fa96002 JVM_MonitorWait + 221
    7   libjvmlinkage.dylib           0x21e9ce75 JVM_MonitorWait + 69
    8   ???                           0x5400b9d9 0 + 1409333721
    9   ???                           0x54003e31 0 + 1409302065
    10  ???                           0x54003e31 0 + 1409302065
    11  ???                           0x54003e31 0 + 1409302065
    12  ???                           0x54003e31 0 + 1409302065
    13  ???                           0x5400430d 0 + 1409303309
    14  ???                           0x54001374 0 + 1409291124
    15  libjvm.dylib                  0x2fa8c1be JVM_Lseek + 143740
    16  libjvm.dylib                  0x2fa8bf66 JVM_Lseek + 143140
    17  libjvm.dylib                  0x2fa95de9 JVM_StartThread + 2639
    18  libjvm.dylib                  0x2fa95cee JVM_StartThread + 2388
    19  libjvm.dylib                  0x2fa95c7d JVM_StartThread + 2275
    20  libjvm.dylib                  0x2fa95af0 JVM_StartThread + 1878
    21  libjvm.dylib                  0x2fa9599f JVM_StartThread + 1541
    22  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    23  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    24  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 17:  Java: FelixStartLevel
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fa0ee6e JNI_CreateJavaVM_Impl + 53123
    4   libjvm.dylib                  0x2fcbe58a JVM_RaiseSignal + 601528
    5   libjvm.dylib                  0x2fcbe9ed JVM_RaiseSignal + 602651
    6   libjvm.dylib                  0x2fa96002 JVM_MonitorWait + 221
    7   libjvmlinkage.dylib           0x21e9ce75 JVM_MonitorWait + 69
    8   ???                           0x5400b9d9 0 + 1409333721
    9   ???                           0x54003e31 0 + 1409302065
    10  ???                           0x54003e31 0 + 1409302065
    11  ???                           0x5400430d 0 + 1409303309
    12  ???                           0x54001374 0 + 1409291124
    13  libjvm.dylib                  0x2fa8c1be JVM_Lseek + 143740
    14  libjvm.dylib                  0x2fa8bf66 JVM_Lseek + 143140
    15  libjvm.dylib                  0x2fa95de9 JVM_StartThread + 2639
    16  libjvm.dylib                  0x2fa95cee JVM_StartThread + 2388
    17  libjvm.dylib                  0x2fa95c7d JVM_StartThread + 2275
    18  libjvm.dylib                  0x2fa95af0 JVM_StartThread + 1878
    19  libjvm.dylib                  0x2fa9599f JVM_StartThread + 1541
    20  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    21  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    22  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 18:  Java: FelixPackageAdmin
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fa0ee6e JNI_CreateJavaVM_Impl + 53123
    4   libjvm.dylib                  0x2fcbe58a JVM_RaiseSignal + 601528
    5   libjvm.dylib                  0x2fcbe9ed JVM_RaiseSignal + 602651
    6   libjvm.dylib                  0x2fa96002 JVM_MonitorWait + 221
    7   libjvmlinkage.dylib           0x21e9ce75 JVM_MonitorWait + 69
    8   ???                           0x5400b9d9 0 + 1409333721
    9   ???                           0x54003e31 0 + 1409302065
    10  ???                           0x54003e31 0 + 1409302065
    11  ???                           0x5400430d 0 + 1409303309
    12  ???                           0x54001374 0 + 1409291124
    13  libjvm.dylib                  0x2fa8c1be JVM_Lseek + 143740
    14  libjvm.dylib                  0x2fa8bf66 JVM_Lseek + 143140
    15  libjvm.dylib                  0x2fa95de9 JVM_StartThread + 2639
    16  libjvm.dylib                  0x2fa95cee JVM_StartThread + 2388
    17  libjvm.dylib                  0x2fa95c7d JVM_StartThread + 2275
    18  libjvm.dylib                  0x2fa95af0 JVM_StartThread + 1878
    19  libjvm.dylib                  0x2fa9599f JVM_StartThread + 1541
    20  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    21  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    22  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 19:  Java: Code Model Worker
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fc83def JVM_RaiseSignal + 362013
    4   libjvm.dylib                  0x2fb16d25 JVM_ActiveProcessorCount + 300
    5   ???                           0x5400b9d9 0 + 1409333721
    6   ???                           0x54003e31 0 + 1409302065
    7   ???                           0x54003e31 0 + 1409302065
    8   ???                           0x5400430d 0 + 1409303309
    9   ???                           0x54004473 0 + 1409303667
    10  ???                           0x54003f97 0 + 1409302423
    11  ???                           0x5400430d 0 + 1409303309
    12  ???                           0x54001374 0 + 1409291124
    13  libjvm.dylib                  0x2fa8c1be JVM_Lseek + 143740
    14  libjvm.dylib                  0x2fa8bf66 JVM_Lseek + 143140
    15  libjvm.dylib                  0x2fa95de9 JVM_StartThread + 2639
    16  libjvm.dylib                  0x2fa95cee JVM_StartThread + 2388
    17  libjvm.dylib                  0x2fa95c7d JVM_StartThread + 2275
    18  libjvm.dylib                  0x2fa95af0 JVM_StartThread + 1878
    19  libjvm.dylib                  0x2fa9599f JVM_StartThread + 1541
    20  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    21  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    22  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 20:  Java: Code Model Worker
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fc83def JVM_RaiseSignal + 362013
    4   libjvm.dylib                  0x2fb16d25 JVM_ActiveProcessorCount + 300
    5   ???                           0x5400b9d9 0 + 1409333721
    6   ???                           0x54003e31 0 + 1409302065
    7   ???                           0x54003e31 0 + 1409302065
    8   ???                           0x5400430d 0 + 1409303309
    9   ???                           0x54004473 0 + 1409303667
    10  ???                           0x54003f97 0 + 1409302423
    11  ???                           0x5400430d 0 + 1409303309
    12  ???                           0x54001374 0 + 1409291124
    13  libjvm.dylib                  0x2fa8c1be JVM_Lseek + 143740
    14  libjvm.dylib                  0x2fa8bf66 JVM_Lseek + 143140
    15  libjvm.dylib                  0x2fa95de9 JVM_StartThread + 2639
    16  libjvm.dylib                  0x2fa95cee JVM_StartThread + 2388
    17  libjvm.dylib                  0x2fa95c7d JVM_StartThread + 2275
    18  libjvm.dylib                  0x2fa95af0 JVM_StartThread + 1878
    19  libjvm.dylib                  0x2fa9599f JVM_StartThread + 1541
    20  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    21  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    22  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 21:
    0   libSystem.B.dylib             0x987700a6 __semwait_signal + 10
    1   libSystem.B.dylib             0x9879bee5 nanosleep$UNIX2003 + 188
    2   com.adobe.flash.flbridge      0x22900d4b ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.flash.flbridge      0x228fb2d3 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.flash.flbridge      0x22900e58 ScObjects::Thread::go(void*) + 168
    5   libSystem.B.dylib             0x9876f85d _pthread_start + 345
    6   libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 22:
    0   libSystem.B.dylib             0x98742142 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib             0x9876fcfc _pthread_cond_wait + 1089
    2   libSystem.B.dylib             0x987b846f pthread_cond_wait + 48
    3   ...ia.Flash Player.authplaylib 0x20dba31f 0x20997000 + 4338463
    4   ...ia.Flash Player.authplaylib 0x209b06ef 0x20997000 + 104175
    5   ...ia.Flash Player.authplaylib 0x20dba40c 0x20997000 + 4338700
    6   ...ia.Flash Player.authplaylib 0x20dba450 0x20997000 + 4338768
    7   ...ia.Flash Player.authplaylib 0x20dba53b 0x20997000 + 4339003
    8   libSystem.B.dylib             0x9876f85d _pthread_start + 345
    9   libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 23:
    0   libSystem.B.dylib             0x98742142 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib             0x9876fcfc _pthread_cond_wait + 1089
    2   libSystem.B.dylib             0x987b846f pthread_cond_wait + 48
    3   ...ia.Flash Player.authplaylib 0x20dba31f 0x20997000 + 4338463
    4   ...ia.Flash Player.authplaylib 0x209b06ef 0x20997000 + 104175
    5   ...ia.Flash Player.authplaylib 0x20dba40c 0x20997000 + 4338700
    6   ...ia.Flash Player.authplaylib 0x20dba450 0x20997000 + 4338768
    7   ...ia.Flash Player.authplaylib 0x20dba53b 0x20997000 + 4339003
    8   libSystem.B.dylib             0x9876f85d _pthread_start + 345
    9   libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 24:  Java: Thread-4
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83b79 JVM_RaiseSignal + 361383
    3   libjvm.dylib                  0x2fc8404b JVM_RaiseSignal + 362617
    4   libjvm.dylib                  0x2fadee60 JVM_Sleep + 267
    5   libjvmlinkage.dylib           0x21e9da68 JVM_Sleep + 72
    6   ???                           0x5400b9d9 0 + 1409333721
    7   ???                           0x54003e31 0 + 1409302065
    8   ???                           0x5400430d 0 + 1409303309
    9   ???                           0x54001374 0 + 1409291124
    10  libjvm.dylib                  0x2fa8c1be JVM_Lseek + 143740
    11  libjvm.dylib                  0x2fa8bf66 JVM_Lseek + 143140
    12  libjvm.dylib                  0x2fa95de9 JVM_StartThread + 2639
    13  libjvm.dylib                  0x2fa95cee JVM_StartThread + 2388
    14  libjvm.dylib                  0x2fa95c7d JVM_StartThread + 2275
    15  libjvm.dylib                  0x2fa95af0 JVM_StartThread + 1878
    16  libjvm.dylib                  0x2fa9599f JVM_StartThread + 1541
    17  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    18  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    19  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 25:
    0   libSystem.B.dylib             0x9874215a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x9876fce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib             0x9879eac8 pthread_cond_timedwait_relative_np + 47
    3   ...ia.Flash Player.authplaylib 0x20dba2e7 0x20997000 + 4338407
    4   ...ia.Flash Player.authplaylib 0x20b6c38e 0x20997000 + 1921934
    5   ...ia.Flash Player.authplaylib 0x20dba40c 0x20997000 + 4338700
    6   ...ia.Flash Player.authplaylib 0x20dba450 0x20997000 + 4338768
    7   ...ia.Flash Player.authplaylib 0x20dba53b 0x20997000 + 4339003
    8   libSystem.B.dylib             0x9876f85d _pthread_start + 345
    9   libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 26:
    0   libSystem.B.dylib             0x987a03aa pwrite$UNIX2003 + 10
    1   ...ple.CoreServices.CarbonCore 0x921bc471 BasicWrite(FileRecord*, short, long long, unsigned long long*, void*, unsigned long long*) + 160
    2   ...ple.CoreServices.CarbonCore 0x921bc3a3 PBWriteForkSync + 117
    3   ...ple.CoreServices.CarbonCore 0x921bf917 AsyncFileThread(void*) + 220
    4   libSystem.B.dylib             0x9876f85d _pthread_start + 345
    5   libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 27:  Java: SIGTERM handler
    0   libSystem.B.dylib             0x987420fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98742867 mach_msg + 68
    2   libjvm.dylib                  0x2fc83aa9 JVM_RaiseSignal + 361175
    3   libjvm.dylib                  0x2fa0ee6e JNI_CreateJavaVM_Impl + 53123
    4   libjvm.dylib                  0x2fc786c1 JVM_RaiseSignal + 315119
    5   libjvm.dylib                  0x2fc78790 JVM_RaiseSignal + 315326
    6   libjvm.dylib                  0x2fa0ea02 JNI_CreateJavaVM_Impl + 51991
    7   libjvm.dylib                  0x2fad3262 JVM_GetClassInterfaces + 1776
    8   libjvm.dylib                  0x2faff851 JVM_Halt + 275
    9   libjvm.dylib                  0x2faff79a JVM_Halt + 92
    10  libjvmlinkage.dylib           0x21e9d1b3 JVM_Halt + 35
    11  libjava.jnilib                0x22517be9 Java_java_lang_Shutdown_halt0 + 17
    12  ???                           0x5400b9d9 0 + 1409333721
    13  ???                           0x54003e31 0 + 1409302065
    14  ???                           0x54003e31 0 + 1409302065
    15  ???                           0x54003e31 0 + 1409302065
    16  ???                           0x5400430d 0 + 1409303309
    17  ???                           0x5400430d 0 + 1409303309
    18  ???                           0x54001374 0 + 1409291124
    19  libjvm.dylib                  0x2fa8c1be JVM_Lseek + 143740
    20  libjvm.dylib                  0x2fa8bf66 JVM_Lseek + 143140
    21  libjvm.dylib                  0x2fa95de9 JVM_StartThread + 2639
    22  libjvm.dylib                  0x2fa95cee JVM_StartThread + 2388
    23  libjvm.dylib                  0x2fa95c7d JVM_StartThread + 2275
    24  libjvm.dylib                  0x2fa95af0 JVM_StartThread + 1878
    25  libjvm.dylib                  0x2fa9599f JVM_StartThread + 1541
    26  libjvm.dylib                  0x2fa0e8e9 JNI_CreateJavaVM_Impl + 51710
    27  libSystem.B.dylib             0x9876f85d _pthread_start + 345
    28  libSystem.B.dylib             0x9876f6e2 thread_start + 34
    Thread 9 crashed with X86 Thread State (32-bit):
      eax: 0x0000003c  ebx: 0x987af349  ecx: 0xb09a423c  edx: 0x987af4fe
      edi: 0x29c7f044  esi: 0xb09a4298  ebp: 0xb09a4278  esp: 0xb09a423c
       ss: 0x0000001f  efl: 0x00000247  eip: 0x987af4fe   cs: 0x00000007
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x2cf6132c
    Binary Images:
        0x1000 -  0x17c5fe0 +com.adobe.flash 11.0.2.489 (11.0.2) <BA9CB7ED-F0D3-CB9D-BF54-610852BE1D35> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/MacOS/Adobe Flash CS5
    0x20e9000 -  0x2261ffb +com.adobe.PlugPlug 2.0.0.746 (2.0.0.746) <08AD22E3-34C0-6749-E497-616C66A246AD> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
    0x2305000 -  0x23d2fe7 +AdobeAXEDOMCore ??? (???) <F76D74DC-FD5A-9783-C447-2E58773DA7E1> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
    0x2441000 -  0x24d2ff7 +libicucnv.dylib.36.0 36.0.0 (compatibility 36.0.0) <581475CC-C039-1B42-49BA-71811D8B4E15> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/ICUConverter.framework/Versions/3.6/libicucnv.dylib.36.0
    0x24f1000 -  0x25beff3 +libicui18n.dylib.36.0 36.0.0 (compatibility 36.0.0) <08F15219-7F35-574E-7725-1ACAA1B18A00> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/ICUInternationalization.framework/Versions/3.6/libicui18n.dyl ib.36.0
    0x2621000 -  0x26fbfef +libicuuc.dylib.36.0 36.0.0 (compatibility 36.0.0) <5EE72009-40B3-7FB7-3A49-576AEDE0D400> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc.dylib.36.0
    0x273b000 -  0x30ebfff +libicudata.dylib.36.0 36.0.0 (compatibility 36.0.0) <02108DEA-3DD2-14BE-DAEB-BE522B619C1D> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.dylib.36.0
    0x30ee000 -  0x30f9fef +libChar16.dylib ??? (???) <816B48D0-ACE3-4B7F-17E6-5185148CE7AD> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/MacOS/libChar16.dylib
    0x3102000 -  0x3119fe0 +libCoreTypes.dylib ??? (???) <D471DE81-0710-AAD8-3508-B6DAD42630CA> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/MacOS/libCoreTypes.dylib
    0x3136000 -  0x3145fef +ZLib.dylib ??? (???) /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/frameworks/ZLib.dylib
    0x314a000 -  0x3345ff7  com.apple.carbonframeworktemplate 1.0 (1.0) <F87C62DE-492B-35ED-C61D-A0A5B374F556> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/frameworks/Xerces.framework/Versions/A/Xerces
    0x35e9000 -  0x35edff7  com.apple.JavaVM 13.4.0 (13.4.0) <77CA466B-7DDA-D261-53A0-312FB7B0A6DC> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x35f5000 -  0x4380fe7 +com.adobe.illustrator 382 (15.0.0) <64F68532-0311-6BBA-1F50-246CAF917549> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AILib.framework/Versions/A/AILib
    0x5165000 -  0x51a9fff +com.adobe.illustrator.aiport AIPort version 1.0 (1.0) <69EDC44E-D7BB-A259-282D-C42725AE0E26> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AIPort.framework/Versions/A/AIPort
    0x520c000 -  0x5252fff +FilterPort ??? (???) <23FAE9D1-9376-1E71-21F7-D3EB2BFD50EE> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/FilterPort.framework/Versions/A/FilterPort
    0x52c7000 -  0x52c7fff +SPBasic ??? (???) <5D1760D8-C910-C641-0BC9-CF74A1A5190D> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
    0x52cb000 -  0x52e7ff9 +AdobePDFSettings ??? (???) /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSettings
    0x5301000 -  0x5415fff +AdobeACE ??? (???) <DD291A17-ECF4-FE20-5837-AC1F5BC76940> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x5438000 -  0x593afef +AdobeAGM ??? (???) <5B8478AC-5DD0-F116-5B3E-45596CF551C6> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x5a76000 -  0x5ab1fff +AdobeARE ??? (???) <CEE507DA-9B96-FAF9-7894-445C427C3D7A> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x5aba000 -  0x5ad4fff +AdobeBIB ??? (???) <5533CDC7-676C-0CF0-97B7-8EDD26837FFC> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x5add000 -  0x5afeff7 +AdobeBIBUtils ??? (???) <726B8463-9301-CE6C-0F2C-5CA81795A4CA> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x5b0a000 -  0x5dfcff7 +AdobeCoolType ??? (???) <2BF62C8A-D715-FDE8-650C-1984CFFCE33C> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x5e84000 -  0x625cff7 +AdobeMPS ??? (???) <272DAEDE-FC7E-B412-7C97-CF47FF6BF242> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x638b000 -  0x6469fef +AdobePDFPort ??? (???) <324E65FD-0011-F93F-9B92-FB4E17968181> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
    0x649f000 -  0x6ad3feb +AdobePDFL ??? (???) <1A619F3E-A9D4-A99C-791E-92B564F64609> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
    0x6bff000 -  0x6c25ff6 +AdobeAXE8SharedExpat ??? (???) <5848BBCE-3A3E-66EE-5527-97A96F0CA4CC> /Applications/Adobe Flash CS5/Adobe Flash CS5.app/Contents/Frameworks/AdobeAXE8SharedExpat.f

Maybe you are looking for