PORTING MACROMEDIA MX 6.0 TO CS5.5

I started making changes to a mx 6.0 swf, however in both the debugger and when trying to run the compiled swf, input text boxes that previously accepted numeric only will only accept 0  and 9, but nothing else?
also there are help msgbox's displayed via this methodology:
firstNameHelp_mc.onRelease = function() {
    _parent.fieldID = "firstName";
    _parent.setHelp();
that work in the compiled version but not the debugger?
I  thought everything would work in the debugger and don't know what the problem is with the numbers in the text box

version
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,79,0
and sorry,  to invoke help is like  this
         firstNameHelp_mc.onRelease = function() {
            _parent.fieldID = "firstName";
            _parent.setHelp();
so there are about 30 labels that have help, basically just a paragraph of text, evidently in movie clips with names like ?????????help_mc
but I cannot find any of the ......._mc components in the library, I'm pretty sure I have looked at every item and all  their sublevels in the library and they are not  there, or any place that I can see under 'window'?

Similar Messages

  • Upgrade from Macromedia Dreamweaver MX to Adobe CS5.5

    I purchased Adobe Dreamweaver CS5.5 some time ago as an upgrade to Dreamweaver MX by Macromedia, I was not able to install until my recent computer upgrade from an overburdened XP.  Adobe assured me over the phone it was a compatible upgrade, but the only products I can select to put in my prior version is Adobe Go Live.  How do I facilitate the full version without a Go Live serial number?

    You should probably get in touch with Adobe directly: Contact Customer Care
    My guess would be you need to have the old version installed on your machine first, before you can install the upgrade product.

  • Porting from CS4 to CS5

    Im trying to port some plugins from CS4 to CS5. During the process I encounter several errors. Once of them is listed below.
    Error 1 fatal error C1189: #error :  DEBUG and NDEBUG are out of sync!    // $$$ need to set NDEBUG in release builds c:\program files\adobe\cs5\indesign product sdk\source\public\includes\K2Debugging.h 53

    Pectora:
      Check the C++/Preprocessor/Preprocessing Definitions field in your Project Properties dialog.  Make sure that your Debug version has a "DEBUG" definition placed in there, and that your release version has an "NDEBUG" definition placed in there someplace.  My guess is that either you left one of them out, or that you have the DEBUG definition in your release properties.  Other possibilities are a failure to separate definitions properly or misspelling.
    HTH!
    P.S. I am assuming that you are working with VS8 on a Windows box.  This information should be included in your next submission just to make sure we are all working from the same starting point.

  • Porting CS4 Plugin to CS5

    Hello Guys,
    i'm trying to port a Plugin from CS4 to CS5 but after a lot of hard work i receive a last error that i cannot trace. The Event-Element cause a strange error:
    File /Adobe InDesign Products SDK/build/mac/prj/../../../source/sdksamples/JPEGExport.server/JPEGExport.fr; Line 141 # Error: Expression must be numeric.
    File /Adobe InDesign Products SDK/build/mac/prj/../../../source/sdksamples/JPEGExport.server/JPEGExport.fr; Line 152 # Error: Expected '}'.
    all I do is defining an Event-Element to supply a scripting method to the IDS scripting DOM:
    resource VersionedScriptElementInfo( 4010 )
        //Contexts
        kCobaltScriptVersion, kCoreScriptManagerBoss, kInDesignAllLanguagesFS, k_Wild,
        kCobaltScriptVersion, kCoreScriptManagerBoss, kInDesignServerAllLanguagesFS, k_Wild,
        //Elements
            Event
                kJPEGExportEventScriptElement,
                e_Quit,
                "get Jpg",
                "JPEGExport",
                BoolType, <<<<<<<<<<<<<<< here is line 141
                    c_Param1, "savePath", "JPEGExport", StringType, kRequired,
                    c_Param2, "pageIDList", "JPEGExport", StringType, kOptional,
                    c_Param3, "dpi", "JPEGExport", Int32Type, kOptional,
                    c_Param4, "spreads", "JPEGExport", BoolType, kOptional,
                    c_Param5, "imageName", "JPEGExport", StringType, kOptional, 
                    c_Param6, "quality", "JPEGExport", StringType, kOptional,
                    c_Param7, "bleed", "JPEGExport", BoolType, kOptional,
                    c_Param8, "guides", "JPEGExport", BoolType, kOptional,
                    c_Param9, "baselineGrid", "JPEGExport", BoolType, kOptional,
                } <<<<<<< here is line 152
            Event
                kAssetExportEventScriptElement,
                e_AssetData,
                "get Asset Jpg",
                "AssetExport",
                BoolType,
                    c_AssetParam1, "assetID", "AssetExport", Int32Type, kRequired,
                    c_AssetParam2, "savePath", "AssetExport", StringType, kRequired,
                    c_AssetParam3, "dpi", "AssetExport", Int32Type, kRequired,
                    c_AssetParam4, "quality", "AssetExport", StringType, kRequired,
                    c_AssetParam5, "imageName", "AssetExport", StringType, kRequired,
            Provider
                kJPEGExportScriptProviderBoss,
                    Object{ kDocumentObjectScriptElement },
                    Event{ kJPEGExportEventScriptElement }
            Provider
                kAssetExportScriptProviderBoss,
                    Object{ kApplicationObjectScriptElement },
                    Event{ kAssetExportEventScriptElement }
    when i remove both Event-elements the plugin compiles fine, so maybe someone could point me to the right direction?
    Btw, the Adobe InDesign CS5 Products Programming Guide describes the following structure for the Event-element:
    Event // See Note 1
    kQuitEventScriptElement, // See Note 2
    e_Quit, // See Note 3
    "quit", // See Note 4
    "Quit the application", // See Note 5
    VoidType, // See Note 6
    { // See Note 7
      en_SaveOptions, // See Note 8
      "saving", // See Note 9
      "Whether to save changes before closing open documents", // See Note 10
      EnumDefaultType( kSaveOptionsEnumScriptElement, en_No ), // See Note 11
      kOptional, // See Note 12
      // See Note 13
    and i think this is exactly what i am using in my code, isn't it?
    Thanks in advance!

    You were right, seems to be possible to use "Method" instead of "Event". But unfortunately another error occurs:
    File /Adobe InDesign Products SDK/build/mac/prj/../../../source/sdksamples/JPEGExport.server/JPEGExport.fr; Line 143 # Error: Expected string.
    the strange thing is, c_Param1 is a string containing "Par1". Maybe the parameters have changed for the Method-Element?
    resource VersionedScriptElementInfo( 4010 )
        //Contexts
        kCobaltScriptVersion, kCoreScriptManagerBoss, kInDesignAllLanguagesFS, k_Wild,
        kCobaltScriptVersion, kCoreScriptManagerBoss, kInDesignServerAllLanguagesFS, k_Wild,
        //Elements
            Method
                kJPEGExportMethodScriptElement,
                e_Quit,
                "get jpg",
                "exports a preview image for pages or spreads",
                BoolType,
                    c_Param1, "savePath", "the root save path for the exported image(s)", StringType, kRequired, <<<<<<<<<<< this is line 143
                    c_Param2, "pageIDList", "a comma separated list of ids that should be exported", StringType, kOptional,
                    c_Param3, "dpi", "the resolution in dpi", Int32Type, kOptional,
                    c_Param4, "spreads", "whether to export spread images or page images", BoolType, kOptional,
                    c_Param5, "imageName", "optional name for the exported image", StringType, kOptional, 
                    c_Param6, "quality", "the quality of the exported images (low, medium, high)", StringType, kOptional,
                    c_Param7, "bleed", "whether to texport bleed", BoolType, kOptional,
                    c_Param8, "guides", "whether to export guide lines", BoolType, kOptional,
                    c_Param9, "baselineGrid", "whether to export baseline grids", BoolType, kOptional,
            Method
                kAssetExportMethodScriptElement,
                e_AssetData,
                "get Asset Jpg",
                "exports a preview image for assets",
                BoolType,
                    c_AssetParam1, "assetID", "the id of the asset to export", Int32Type, kRequired,
                    c_AssetParam2, "savePath", "the root save path for the exported image", StringType, kRequired,
                    c_AssetParam3, "dpi", "the resolution in dpi", Int32Type, kRequired,
                    c_AssetParam4, "quality", "the quality of the exported image (low, medium, high)", StringType, kRequired,
                    c_AssetParam5, "imageName", "optional name for the exported image", StringType, kRequired,
            Provider
                kJPEGExportScriptProviderBoss,
                    Object{ kDocumentObjectScriptElement },
                    Method{ kJPEGExportMethodScriptElement }
            Provider
                kAssetExportScriptProviderBoss,
                    Object{ kApplicationObjectScriptElement },
                    Method{ kAssetExportMethodScriptElement }

  • Mac Plug-ins for Adobe indesign CS5

    Hi all,
    I am making new  Indesign CS5  plug-ins for Mac os.
    build my project and i get error "Developer/usr/bin/gcc-4.0 failed with exit code 1"
    what it mean error "exit code 1"?
    and I am work on porting of Adobe Indesign CS4 to CS5 plugIns for Mac Os,What Project Settings required Xcode for build code succesfully?
    Pls kindly help me out from this problem.
    Thanks  a lot:

    I build samples project its working fine for that.
    I use  xcode Version 3.1.3
    Component versions
    Xcode IDE: 1191.0
    Xcode Core: 1192.0
    ToolSupport: 1186.
    are you set any path, inside Project Settings before compile your project?
    like "jni" releated path.

  • Why do my InDesign documents report my ported plugin as missing?

    I recently ported a plugin from CS4 to CS5, but when I open my old InDesign documents associated with the CS4 plugin, CS5 reports my plugin as missing (I can open the plugin and use it just fine, so it's obviously not missing).
    I have one CriticalTag defined for my plugin, but I haven't changed my persistent data between the two versions in any way that I'm aware.
    Shouldn't Indesign associate my ported plugin with these old documents? And if not, what am I missing?

    What does it look like in ID when you turn on Overprint Preview?

  • In ID CS5 SDK, where are those Preflight and Package go?

    In ID CS5, there are no longer "IPreflightSrcData.h", "IS4SPPackage.h", etc, How am I going to DoPreflight(), SetHiddenLayersFlag(false), etc? Anyone knew?
    Moreover, when I do Package on CS5 doc with missing font and links by using ID CS5 interface from File->Package, it always crash the InDesign CS5.

    I did not sleep last night until 3:00 am. It is painful when something did not get solved..
    Now I can programatically get all the missing fonts, missing links, etc and also actually do the 'Packaging" on CS5 MAc/Windows. I get the package report, physical packages, etc. Happy with porting last years code to ID CS5 plug-ins. Ha-ha-ha-ha!
    By the way, ID CS5 SDK sample plug-in PreflightRule and PreflightRuleUI still do not work on my ID CS5 windows. Moreover, ID document with missing fonts and links can not be packaged by File->Package from ID CS5 menu, it results in ID CS5 crash. Not sure why not just handle the exception and jump out instead of 'crash the whole ID CS5"????
    I hope that sample PreflightRuleUI can work properly next.....

  • FLA file load black in CS5.5

    I got a flash file from my friend he uses Macromedia Flash 8, I use CS5.5 (Flash 11.5). When I open the file I get a blank project that looks like something should be there.   Does anybody know how I can fix this. I ask my friend and he can’t send anything else other than this cause this is all he has and know of the issue but don’t know how to address it. Any thoughts on this issue?

    As you wish
    http://dl.dropbox.com/u/1132201/Image.gif

  • DW CS5 11.0.2 Update...NOT UPDATING (Windows 7)

    I noticed there is a Dreamweaver CS5 11.0.2 update available on  the Adobe download site (http://www.adobe.com/support/dreamweaver/downloads_updaters.html).
    I downloaded the Windows version from here: http://download.macromedia.com/pub/dreamweaver/updates/cs5/11_0_2/win/AdobeDreamweaver-11. 0-All-Update.zip
    This is the link listed on the Adobe download page, strangely the link starts with "http://download.MACROMEDIA.com"
    I  installed it but it HAS NOT updated my DW to 11.0.2. It still shows as  v11.0 and only seemed to install BrowserLab updates!
    Come on Adobe, get your act together! For a huge global company you sure overlook A LOT of little things!

    See the instructions here: http://forums.adobe.com/thread/678947?tstart=0.

  • Latest DisplayLink Drivers For Running Dual Monitors on Mac Lion OS Crashes Fireworks CS5

    I run dual monitors off of my 2011 MacBook Pro via the Diamond BVU195 HD USB Display Adapter. The Diamond BVU195 uses DisplayLink drivers.
    I upgraded my Mac OS to Lion yesterday and had to update my DisplayLink drivers to the latest version: 1.7b2. The new drivers enabled me to use my 2 monitors again. However, they also cause Adobe Fireworks CS5 to crash every time I try to open it. When I unplug the Diamond BVU195 and just use the laptop screen, Fireworks opens and works just fine.
    Here is the error code that Adobe Fireworks CS5 is spititng out:
    Process:         Adobe Fireworks CS5.1 [1621]
    Path:            /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/MacOS/Adobe Fireworks CS5.1
    Identifier:      com.macromedia.fireworks
    Version:         Adobe Fireworks CS5.1 version 11.1.0.205 (11.1.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [133]
    Date/Time:       2011-07-28 09:41:01.009 -0400
    OS Version:      Mac OS X 10.7 (11A511)
    Report Version:  9
    Interval Since Last Report:          39507 sec
    Crashes Since Last Report:           54
    Per-App Interval Since Last Report:  328 sec
    Per-App Crashes Since Last Report:   10
    Anonymous UUID:                      C1EF46A2-2EDC-4272-9FAE-A7A1475A954B
    Crashed Thread:  36
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/MacOS/Adobe Fireworks CS5.1
        __TEXT                 0000000000001000-0000000001450000 [ 20.3M] r-x/rwx SM=COW  /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/MacOS/Adobe Fireworks CS5.1
    Application Specific Information:
    objc[1621]: garbage collection is OFF
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreGraphics        0x9a7ba746 CGClipGetMode + 0
    1   libRIP.A.dylib                0x975023fc ripc_GetClipState + 3820
    2   libRIP.A.dylib                0x975011c0 ripc_GetRenderingState + 177
    3   libRIP.A.dylib                0x97500f0c ripc_DrawRects + 139
    4   com.apple.CoreGraphics        0x9a7a2293 CGContextFillRects + 150
    5   com.apple.CoreGraphics        0x9a7a2052 CGContextClearRect + 77
    6   com.adobe.owl                 0x01fcd9a7 OWLThemeAddBrush + 76891
    7   com.adobe.owl                 0x020a67ec OWLWorkspaceBookmarkSnapshot + 57402
    8   com.adobe.owl                 0x01fbb2e0 OWLThemeAddBrush + 1428
    9   com.apple.HIToolbox           0x9102fe54 _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    10  com.apple.HIToolbox           0x90eab82b _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1602
    11  com.apple.HIToolbox           0x90eaaca8 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14HandlerCall Rec + 482
    12  com.apple.HIToolbox           0x90eaaac0 SendEventToEventTargetWithOptions + 75
    13  com.apple.HIToolbox           0x90ecb888 HIView::SendDraw(short, OpaqueGrafPtr*, __HIShape const*, CGContext*) + 478
    14  com.apple.HIToolbox           0x90f5a42b HIView::RecursiveDrawComposited(__HIShape const*, __HIShape const*, unsigned long, HIView*, CGContext*, unsigned char, float) + 755
    15  com.apple.HIToolbox           0x90f5b6cf HIView::DrawComposited(short, OpaqueGrafPtr*, __HIShape const*, unsigned long, HIView*, CGContext*) + 1227
    16  com.apple.HIToolbox           0x90f5b817 HIView::Draw(short, OpaqueGrafPtr*, unsigned long) + 81
    17  com.apple.HIToolbox           0x90f5bbdf HIView::Render(unsigned long, CGContext*) + 45
    18  com.apple.HIToolbox           0x90ef15c5 WindowData::PrepareForVisibility() + 137
    19  com.apple.HIToolbox           0x90ef0621 _ShowHideWindows + 355
    20  com.apple.HIToolbox           0x90ef04b6 ShowHide + 44
    21  com.adobe.owl                 0x01fe59a6 OWLPaletteCreateNonComposite + 82364
    22  com.adobe.owl                 0x01fe662b OWLPaletteCreateNonComposite + 85569
    23  com.adobe.owl                 0x01fe76f4 OWLPaletteCreateNonComposite + 89866
    24  com.adobe.owl                 0x01fbb2e0 OWLThemeAddBrush + 1428
    25  com.apple.HIToolbox           0x9102fe54 _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    26  com.apple.HIToolbox           0x90eab82b _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1602
    27  com.apple.HIToolbox           0x90eaaca8 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14HandlerCall Rec + 482
    28  com.apple.HIToolbox           0x90eaaac0 SendEventToEventTargetWithOptions + 75
    29  com.adobe.owl                 0x01ff5f02 OWLWidgetGetLatentVisibility + 1636
    30  com.adobe.owl                 0x02009dad OWLControlBarGetPreferredSize + 8829
    31  com.adobe.owl                 0x01fbb2e0 OWLThemeAddBrush + 1428
    32  com.apple.HIToolbox           0x9102fe54 _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    33  com.apple.HIToolbox           0x90eab82b _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1602
    34  com.apple.HIToolbox           0x90eaaca8 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14HandlerCall Rec + 482
    35  com.apple.HIToolbox           0x90ebfac9 SendEventToEventTarget + 76
    36  com.apple.HIToolbox           0x9102fca0 ToolboxEventDispatcher + 82
    37  com.apple.HIToolbox           0x9102fdcf RunApplicationEventLoop + 236
    38  com.macromedia.fireworks      0x008a6b28 0x1000 + 9067304
    39  com.macromedia.fireworks      0x00004366 0x1000 + 13158
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib        0x97fe290a kevent + 10
    1   libdispatch.dylib             0x950d8ccc _dispatch_mgr_invoke + 969
    2   libdispatch.dylib             0x950d771b _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib        0x97fe202e __workq_kernreturn + 10
    1   libsystem_c.dylib             0x99f85ccf _pthread_wqthread + 773
    2   libsystem_c.dylib             0x99f876fe start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib        0x97fe202e __workq_kernreturn + 10
    1   libsystem_c.dylib             0x99f85ccf _pthread_wqthread + 773
    2   libsystem_c.dylib             0x99f876fe start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib        0x97fe183e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99f87e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99f87f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore 0x93fb98fb TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore 0x93fb9671 TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore 0x93fb9482 TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore 0x9402e740 TimerThread + 292
    7   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    8   libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib        0x97fdfc22 mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x97fdf1f6 mach_msg + 70
    2   com.apple.CoreServices.CarbonCore 0x940476e8 YieldToThread + 308
    3   com.apple.CoreServices.CarbonCore 0x940477fd SetThreadState + 152
    4   com.apple.CoreServices.CarbonCore 0x94047898 SetThreadStateEndCritical + 114
    5   libPowerPlant2.dylib          0x081beb51 FW_PowerPlant::LThread::SemWait(FW_PowerPlant::LSemaphore*, long, QHdr&, unsigned char&) + 119
    6   libPowerPlant2.dylib          0x081bdb07 FW_PowerPlant::LSemaphore::BlockThread(long) + 61
    7   libPowerPlant2.dylib          0x081bdb6d FW_PowerPlant::LSemaphore::Wait(long) + 71
    8   libPowerPlant2.dylib          0x081bef70 FW_PowerPlant::LThread::Cleanup::Run() + 32
    9   libPowerPlant2.dylib          0x081bf94e FW_PowerPlant::LThread::DoEntry(void*) + 30
    10  com.apple.CoreServices.CarbonCore 0x94047da6 CooperativeThread + 308
    11  libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    12  libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib        0x97fe202e __workq_kernreturn + 10
    1   libsystem_c.dylib             0x99f85ccf _pthread_wqthread + 773
    2   libsystem_c.dylib             0x99f876fe start_wqthread + 30
    Thread 7:
    0   libsystem_kernel.dylib        0x97fe202e __workq_kernreturn + 10
    1   libsystem_c.dylib             0x99f85ccf _pthread_wqthread + 773
    2   libsystem_c.dylib             0x99f876fe start_wqthread + 30
    Thread 8:
    0   libsystem_kernel.dylib        0x97fe183e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99f87e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99f2f82a pthread_cond_wait + 48
    3   com.adobe.amt.services        0x0fe25274 C_AMTUISwitchSuppressUpdates + 16864
    4   com.adobe.amt.services        0x0fe1e074 C_EULA_SetState + 2166
    5   com.adobe.amt.services        0x0fe252da C_AMTUISwitchSuppressUpdates + 16966
    6   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    7   libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib        0x97fe183e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99f87e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x99f3842c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x9404820a TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore 0x93fb98d1 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore 0x9401ba29 MPWaitOnQueue + 200
    6   com.macromedia.fireworks      0x00aea269 0x1000 + 11440745
    7   com.apple.CoreServices.CarbonCore 0x9401c988 PrivateMPEntryPoint + 68
    8   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    9   libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib        0x97fe183e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99f87e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x99f3842c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x9404820a TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore 0x93fb98d1 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore 0x9401ba29 MPWaitOnQueue + 200
    6   AdobeACE                      0x02c4e6f1 0x2c14000 + 239345
    7   AdobeACE                      0x02c4e0ed 0x2c14000 + 237805
    8   com.apple.CoreServices.CarbonCore 0x9401c988 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    10  libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib        0x97fe183e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99f87e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x99f3842c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x9404820a TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore 0x93fb98d1 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore 0x9401ba29 MPWaitOnQueue + 200
    6   AdobeACE                      0x02c4e6f1 0x2c14000 + 239345
    7   AdobeACE                      0x02c4e0ed 0x2c14000 + 237805
    8   com.apple.CoreServices.CarbonCore 0x9401c988 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    10  libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib        0x97fe183e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99f87e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x99f3842c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x9404820a TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore 0x93fb98d1 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore 0x9401ba29 MPWaitOnQueue + 200
    6   AdobeACE                      0x02c4e6f1 0x2c14000 + 239345
    7   AdobeACE                      0x02c4e0ed 0x2c14000 + 237805
    8   com.apple.CoreServices.CarbonCore 0x9401c988 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    10  libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib        0x97fe183e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99f87e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x99f3842c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x9404820a TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore 0x93fb98d1 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore 0x9401ba29 MPWaitOnQueue + 200
    6   AdobeACE                      0x02c4e6f1 0x2c14000 + 239345
    7   AdobeACE                      0x02c4e0ed 0x2c14000 + 237805
    8   com.apple.CoreServices.CarbonCore 0x9401c988 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    10  libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib        0x97fe183e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99f87e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x99f3842c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x9404820a TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore 0x93fb98d1 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore 0x9401ba29 MPWaitOnQueue + 200
    6   AdobeACE                      0x02c4e6f1 0x2c14000 + 239345
    7   AdobeACE                      0x02c4e0ed 0x2c14000 + 237805
    8   com.apple.CoreServices.CarbonCore 0x9401c988 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    10  libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib        0x97fe183e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99f87e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x99f3842c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x9404820a TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore 0x93fb98d1 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore 0x9401ba29 MPWaitOnQueue + 200
    6   AdobeACE                      0x02c4e6f1 0x2c14000 + 239345
    7   AdobeACE                      0x02c4e0ed 0x2c14000 + 237805
    8   com.apple.CoreServices.CarbonCore 0x9401c988 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    10  libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib        0x97fe183e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99f87e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x99f3842c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x9404820a TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore 0x93fb98d1 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore 0x9401ba29 MPWaitOnQueue + 200
    6   AdobeACE                      0x02c4e6f1 0x2c14000 + 239345
    7   AdobeACE                      0x02c4e0ed 0x2c14000 + 237805
    8   com.apple.CoreServices.CarbonCore 0x9401c988 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    10  libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib        0x97fe0e12 __accept + 10
    1   com.macromedia.fireworks      0x00995883 0x1000 + 10045571
    2   com.macromedia.fireworks      0x006e6745 0x1000 + 7231301
    3   com.macromedia.fireworks      0x0076251e 0x1000 + 7738654
    4   com.macromedia.fireworks      0x00964bde 0x1000 + 9845726
    5   com.apple.CoreServices.CarbonCore 0x9401c988 PrivateMPEntryPoint + 68
    6   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    7   libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib        0x97fe1bb2 __semwait_signal + 10
    1   libsystem_c.dylib             0x99f387b9 nanosleep$UNIX2003 + 187
    2   ServiceManager-Launcher.dylib 0x16c63a45 Invoke + 52693
    3   ServiceManager-Launcher.dylib 0x16c64a8d Invoke + 56861
    4   ServiceManager-Launcher.dylib 0x16c60fb5 Invoke + 41797
    5   ServiceManager-Launcher.dylib 0x16c611b8 Invoke + 42312
    6   ServiceManager-Launcher.dylib 0x16c611f2 Invoke + 42370
    7   ServiceManager-Launcher.dylib 0x16c6123d Invoke + 42445
    8   ServiceManager-Launcher.dylib 0x16c6148c Invoke + 43036
    9   ServiceManager-Launcher.dylib 0x16c5311a Login + 1654
    10  ServiceManager-Launcher.dylib 0x16c546f7 Login + 7251
    11  ServiceManager-Launcher.dylib 0x16c619fb Invoke + 44427
    12  ServiceManager-Launcher.dylib 0x16c63f49 Invoke + 53977
    13  libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    14  libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 19:
    0   libsystem_kernel.dylib        0x97fe183e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99f87e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99f2f82a pthread_cond_wait + 48
    3   com.adobe.adobeswfl           0x1cb9b42f APXGetHostAPI + 2599903
    4   com.adobe.adobeswfl           0x1c93453f APXGetHostAPI + 81135
    5   com.adobe.adobeswfl           0x1cb9b51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl           0x1cb9b587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl           0x1cb9b6a6 APXGetHostAPI + 2600534
    8   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    9   libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib        0x97fe183e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99f87e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99f2f82a pthread_cond_wait + 48
    3   com.adobe.adobeswfl           0x1cb9b42f APXGetHostAPI + 2599903
    4   com.adobe.adobeswfl           0x1c93453f APXGetHostAPI + 81135
    5   com.adobe.adobeswfl           0x1cb9b51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl           0x1cb9b587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl           0x1cb9b6a6 APXGetHostAPI + 2600534
    8   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    9   libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 21:
    0   libsystem_kernel.dylib        0x97fe183e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99f87e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99f2f82a pthread_cond_wait + 48
    3   com.adobe.adobeswfl           0x1cb9b42f APXGetHostAPI + 2599903
    4   com.adobe.adobeswfl           0x1c93453f APXGetHostAPI + 81135
    5   com.adobe.adobeswfl           0x1cb9b51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl           0x1cb9b587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl           0x1cb9b6a6 APXGetHostAPI + 2600534
    8   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    9   libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 22:
    0   libsystem_kernel.dylib        0x97fe183e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99f87e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99f2f82a pthread_cond_wait + 48
    3   com.adobe.adobeswfl           0x1cb9b42f APXGetHostAPI + 2599903
    4   com.adobe.adobeswfl           0x1c93453f APXGetHostAPI + 81135
    5   com.adobe.adobeswfl           0x1cb9b51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl           0x1cb9b587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl           0x1cb9b6a6 APXGetHostAPI + 2600534
    8   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    9   libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 23:
    0   libsystem_kernel.dylib        0x97fe183e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99f87e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99f87f7b pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl           0x1cb9b3f7 APXGetHostAPI + 2599847
    4   com.adobe.adobeswfl           0x1cbb5e4e APXGetHostAPI + 2708990
    5   com.adobe.adobeswfl           0x1cb9b51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl           0x1cb9b587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl           0x1cb9b6a6 APXGetHostAPI + 2600534
    8   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    9   libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 24:
    0   libsystem_kernel.dylib        0x97fe183e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99f87e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99f87f7b pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl           0x1cb9b3f7 APXGetHostAPI + 2599847
    4   com.adobe.adobeswfl           0x1cd12348 APXGetHostAPI + 4135672
    5   com.adobe.adobeswfl           0x1cb9b51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl           0x1cb9b587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl           0x1cb9b6a6 APXGetHostAPI + 2600534
    8   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    9   libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 25:
    0   libsystem_kernel.dylib        0x97fdfc22 mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x97fdf1f6 mach_msg + 70
    2   com.macromedia.Flash Player.authplaylib 0x1dfba942 ExternalPlayer_Initialize + 1873594
    3   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    4   libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 26:
    0   libsystem_kernel.dylib        0x97fe183e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99f87e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99f2f82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib 0x1dde515c 0x1db0c000 + 2986332
    4   com.macromedia.Flash Player.authplaylib 0x1de06a15 ExternalPlayer_Initialize + 87949
    5   com.macromedia.Flash Player.authplaylib 0x1dde555a 0x1db0c000 + 2987354
    6   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    7   libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 27:
    0   libsystem_kernel.dylib        0x97fe183e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99f87e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99f2f82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib 0x1dde515c 0x1db0c000 + 2986332
    4   com.macromedia.Flash Player.authplaylib 0x1de06a15 ExternalPlayer_Initialize + 87949
    5   com.macromedia.Flash Player.authplaylib 0x1dde555a 0x1db0c000 + 2987354
    6   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    7   libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 28:
    0   libsystem_kernel.dylib        0x97fe183e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99f87e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99f2f82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib 0x1dde515c 0x1db0c000 + 2986332
    4   com.macromedia.Flash Player.authplaylib 0x1de06a15 ExternalPlayer_Initialize + 87949
    5   com.macromedia.Flash Player.authplaylib 0x1dde555a 0x1db0c000 + 2987354
    6   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    7   libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 29:
    0   libsystem_kernel.dylib        0x97fe183e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99f87e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99f2f82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib 0x1dde515c 0x1db0c000 + 2986332
    4   com.macromedia.Flash Player.authplaylib 0x1de06a15 ExternalPlayer_Initialize + 87949
    5   com.macromedia.Flash Player.authplaylib 0x1dde555a 0x1db0c000 + 2987354
    6   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    7   libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 30:
    0   libsystem_kernel.dylib        0x97fe183e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99f87e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99f2f82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib 0x1dde515c 0x1db0c000 + 2986332
    4   com.macromedia.Flash Player.authplaylib 0x1de06a15 ExternalPlayer_Initialize + 87949
    5   com.macromedia.Flash Player.authplaylib 0x1dde555a 0x1db0c000 + 2987354
    6   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    7   libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 31:
    0   libsystem_kernel.dylib        0x97fe183e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99f87e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99f2f82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib 0x1dde515c 0x1db0c000 + 2986332
    4   com.macromedia.Flash Player.authplaylib 0x1de06a15 ExternalPlayer_Initialize + 87949
    5   com.macromedia.Flash Player.authplaylib 0x1dde555a 0x1db0c000 + 2987354
    6   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    7   libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 32:
    0   libsystem_kernel.dylib        0x97fe183e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99f87e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99f2f82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib 0x1dde515c 0x1db0c000 + 2986332
    4   com.macromedia.Flash Player.authplaylib 0x1de06a15 ExternalPlayer_Initialize + 87949
    5   com.macromedia.Flash Player.authplaylib 0x1dde555a 0x1db0c000 + 2987354
    6   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    7   libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 33:
    0   libsystem_kernel.dylib        0x97fe183e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x99f87e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x99f2f82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib 0x1dde515c 0x1db0c000 + 2986332
    4   com.macromedia.Flash Player.authplaylib 0x1de06a15 ExternalPlayer_Initialize + 87949
    5   com.macromedia.Flash Player.authplaylib 0x1dde555a 0x1db0c000 + 2987354
    6   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    7   libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 34:
    0   libsystem_kernel.dylib        0x97fe1bb2 __semwait_signal + 10
    1   libsystem_c.dylib             0x99f387b9 nanosleep$UNIX2003 + 187
    2   com.macromedia.fireworks      0x010aab1b catch_exception_raise + 5219589
    3   com.macromedia.fireworks      0x010a3b13 catch_exception_raise + 5190909
    4   com.macromedia.fireworks      0x010aac28 catch_exception_raise + 5219858
    5   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    6   libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 35:
    0   libsystem_kernel.dylib        0x97fdfc22 mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x97fdf1f6 mach_msg + 70
    2   com.apple.CoreFoundation      0x951179ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation      0x95120b14 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation      0x951201ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation      0x95120098 CFRunLoopRunInMode + 120
    6   com.apple.HIToolbox           0x90ea5487 RunCurrentEventLoopInMode + 318
    7   com.apple.HIToolbox           0x90f0507d RunCurrentEventLoop + 64
    8   com.macromedia.fireworks      0x0088c8a6 0x1000 + 8960166
    9   com.macromedia.fireworks      0x00964bde 0x1000 + 9845726
    10  com.apple.CoreServices.CarbonCore 0x9401c988 PrivateMPEntryPoint + 68
    11  libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    12  libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 36 Crashed:
    0   com.apple.opengl              0x93d82852 CGLDescribeRenderer + 70
    1   com.adobe.psl                 0x04160d3a 0x3dba000 + 3829050
    2   com.adobe.psl                 0x042a6d00 PSLInit + 4476
    3   com.adobe.psl                 0x042f0d3b PSLCreateStringFromErrorCode + 221499
    4   com.adobe.psl                 0x042ef1dc PSLCreateStringFromErrorCode + 214492
    5   com.adobe.psl                 0x042a58d0 PSLFreeUnusedVM + 1954
    6   com.adobe.psl                 0x042a5b34 PSLFreeUnusedVM + 2566
    7   com.macromedia.fireworks      0x00ad4995 0x1000 + 11352469
    8   com.adobe.linguistic.LinguisticManager 0x07aecd8d thread_proxy + 141
    9   libsystem_c.dylib             0x99f83ed9 _pthread_start + 335
    10  libsystem_c.dylib             0x99f876de thread_start + 34
    Thread 36 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x00000000  ecx: 0x00000000  edx: 0x0872630c
      edi: 0x00000000  esi: 0x00000080  ebp: 0xb1369988  esp: 0xb13698e0
       ss: 0x00000023  efl: 0x00010246  eip: 0x93d82852   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU: 6
    Binary Images:
        0x1000 -  0x144fff5 +com.macromedia.fireworks (Adobe Fireworks CS5.1 version 11.1.0.205 - 11.1.0) <D6C5CC77-72DF-C73A-2103-AA03E258769A> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/MacOS/Adobe Fireworks CS5.1
    0x1e7d000 -  0x1ed3ffb +com.adobe.headlights.LogSessionFramework (??? - 2.1.2.1263) <5B594BC9-5222-651B-6B70-7AD067035B1A> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x1f1c000 -  0x1f8affb +com.adobe.amtlib (amtlib 4.0.0.21 - 4.0.0.21) <3090D254-587A-A820-DBCD-729C27532FC8> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x1fa1000 -  0x2140fe7 +com.adobe.owl (AdobeOwl version 3.0.81 - 3.0.81) <9C261D9E-9BD7-5DE6-5676-AEEF4828D17B> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x21ad000 -  0x22e5fe7 +WRServices (??? - ???) <52CE5B97-1E6A-92A2-EA70-93511AB7EA2E> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x232f000 -  0x239cfef +FileInfo (??? - ???) <4A4C74F9-CA83-B174-F56D-F7671DC61389> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x23b7000 -  0x23ddff6 +AdobeAXE8SharedExpat (??? - ???) <5848BBCE-3A3E-66EE-5527-97A96F0CA4CC> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedEx pat
    0x23f0000 -  0x240bfff +AdobeBIB (??? - ???) <3B3092DC-A296-9D1C-1922-D20E6A5A7D7E> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x2416000 -  0x246eff7 +AdobeXMP (??? - ???) <73329999-C364-2451-6574-4D0277057D19> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x247e000 -  0x2aacfe7 +AdobeAGM (??? - ???) <91D37E54-E985-47E1-2696-0BD7E4183132> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x2c14000 -  0x2d28fff +AdobeACE (??? - ???) <DD291A17-ECF4-FE20-5837-AC1F5BC76940> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x2d4e000 -  0x3040ff7 +AdobeCoolType (??? - ???) <9FDD596D-9824-2BB9-5DA2-25DACAB6A324> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x30cd000 -  0x30eeff7 +AdobeBIBUtils (??? - ???) <E1FAA7A3-E807-DE5A-1F68-7A53780E8202> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x30fb000 -  0x3137fff +AdobeARE (??? - ???) <76851E91-2381-5D05-742C-BB24E4BAD276> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x3141000 -  0x3519ff7 +AdobeMPS (??? - ???) <36BB5D09-B87A-77AB-C171-E988910367F8> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x3650000 -  0x3c84feb +AdobePDFL (??? - ???) <49D6D58A-1EBB-424A-4CB0-8F9691E0991D> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
    0x3dba000 -  0x4afdfff +com.adobe.psl (AdobePSL 12.0.0.7524 - 12.0.0.7524) <CFBCB19A-03F7-D095-1F48-8D68F05A25C5> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0x4e51000 -  0x4edeff7 +com.adobe.AdobeScCore (ScCore 4.1.28 - 4.1.28.12764) <410AEFDB-A716-D200-E889-BFCB3CCC17A9> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x4f25000 -  0x5008fef +AdobePDFPort (??? - ???) <A2E6DCF7-283F-09E9-53AE-D5D84D020469> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
    0x5040000 -  0x5043ffc +com.adobe.ape.shim (adbeape version 3.1.74.12761 - 3.1.74.12761) <FE2ABE8A-1D3F-7AF5-297C-D22FC3E0FBDA> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x504a000 -  0x50dbff7 +libicucnv.dylib.36.0 (36.0.0 - compatibility 36.0.0) <581475CC-C039-1B42-49BA-71811D8B4E15> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/ICUConverter.framework/Versions/3.6/libicucnv.dylib.36.0
    0x50fc000 -  0x5aacfff +libicudata.dylib.36.0 (36.0.0 - compatibility 36.0.0) <02108DEA-3DD2-14BE-DAEB-BE522B619C1D> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.dylib.36.0
    0x5abc000 -  0x5b89ff3 +libicui18n.dylib.36.0 (36.0.0 - compatibility 36.0.0) <08F15219-7F35-574E-7725-1ACAA1B18A00> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/ICUInternationalization.framework/Versions/3.6/libicui18n.d ylib.36.0
    0x5bef000 -  0x5cc9fef +libicuuc.dylib.36.0 (36.0.0 - compatibility 36.0.0) <5EE72009-40B3-7FB7-3A49-576AEDE0D400> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc.dylib.36.0
    0x5d0c000 -  0x6a97fe7 +com.adobe.illustrator (382 - 15.0.0) <64F68532-0311-6BBA-1F50-246CAF917549> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/AILib.framework/Versions/A/AILib
    0x789f000 -  0x78e3fff +com.adobe.illustrator.aiport (AIPort version 1.0 - 1.0) <69EDC44E-D7BB-A259-282D-C42725AE0E26> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/AIPort.framework/Versions/A/AIPort
    0x7949000 -  0x798ffff +FilterPort (??? - ???) <23FAE9D1-9376-1E71-21F7-D3EB2BFD50EE> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/FilterPort.framework/Versions/A/FilterPort
    0x7a06000 -  0x7a06fff +SPBasic (??? - ???) <5D1760D8-C910-C641-0BC9-CF74A1A5190D> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
    0x7a0b000 -  0x7bf1ff7 +com.adobe.linguistic.LinguisticManager (5.0.0 - 11309) <CA1D50A3-F965-F8B2-76B9-007F290C5791> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x7c83000 -  0x7d50fe7 +AdobeAXEDOMCore (??? - ???) <F76D74DC-FD5A-9783-C447-2E58773DA7E1> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
    0x7dc2000 -  0x7f3cfe3 +com.adobe.PlugPlug (2.5.0.232 - 2.5.0.232) <04C90B5C-DC6D-A2B5-BE9B-193466222BE7> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
    0x7fe5000 -  0x8002fef +libCurl.dylib (??? - ???) <1BA6E2DE-EF14-D50A-4697-035AE07875D7> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/MacOS/libCurl.dylib
    0x800b000 -  0x8021ff4 +libChar16.dylib (??? - ???) <30CD0194-BAD7-4101-EA60-436EBF2F8FF7> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/MacOS/libChar16.dylib
    0x802b000 -  0x804efe0 +libCoreTypes.dylib (??? - ???) <C29FAF5E-1CC7-F6BE-7CD0-049CF59F6AE5> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/MacOS/libCoreTypes.dylib
    0x805f000 -  0x8066ffc  com.apple.carbonframeworktemplate (1.0 - 1.0) <0D270CC7-B715-943E-2B4F-5C9B5775505A> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/NetIO.framework/Versions/A/NetIO
    0x8073000 -  0x8076fff +Dioxide.dylib (??? - ???) <BCE94F23-4CCA-20FB-79A8-DE7925879DCD> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/Dioxide.dylib
    0x807f000 -  0x8085ffc +libfwutility.dylib (??? - ???) <4951B965-CF5A-1A49-8682-66B255CB4313> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/libfwutility.dylib
    0x808d000 -  0x80ddfff +com.macromedia.javascript (Javascript version 1.0 - 1.0) <540CB029-3946-8E41-BD91-AED6F73C86B7> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/Javascript.framework/Versions/A/Javascript
    0x80f4000 -  0x8101fff +com.macromedia.moa (Moa version 1.0 - 1.0) <3C4B7F42-5A5D-78E7-B1DC-DAA06A99CCB2> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/Moa.framework/Versions/A/Moa
    0x810c000 -  0x8113fff +com.macromedia.morefiles (MoreFiles version 1.0 - 1.0) <36115C66-79A3-5DB9-B36B-8D655B46FC76> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/MoreFiles.framework/Versions/A/MoreFiles
    0x811b000 -  0x81fffe3 +libPowerPlant2.dylib (??? - ???) <964FB3D7-B7EE-94EB-FD95-4AE90C657A4A> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/libPowerPlant2.dylib
    0x8336000 -  0x833cffb +com.macromedia.testframework (1.0 - 1.0) <ED14FA00-1C6F-D433-1EEB-833BB4402B2B> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/uwchar.framework/Versions/A/uwchar
    0x8342000 -  0x835afef +libgiff.dylib (??? - ???) <8F90552B-3D11-2B1E-D1BA-A109FEB99969> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/libgiff.dylib
    0x8363000 -  0x8381fe7 +com.macromedia.png (LibPNG version 1.0 - 1.0) <2DBA0A3F-4F01-7474-0FED-3021382D635F> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/LibPNG.framework/Versions/A/LibPNG
    0x838b000 -  0x8399feb +com.macromedia.zlib (ZLib version 1.0 - 1.0) <EEA4CFAF-A748-FA72-91F0-ADE7A1BE9FA7> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/ZLib.framework/Versions/A/ZLib
    0x839f000 -  0x83a3ffd +com.yourcompany.yourcocoaframework (??? - 1.0) <7EF7A82E-0AAE-0022-3B15-7C50F1C550C1> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/ASEFramework.framework/Versions/A/ASEFramework
    0x83a8000 -  0x83afff2 +com.adobe.boost_threads.framework (boost_threads version 5.0.0 - 5.0.0.0) <F966C78A-3CC1-8678-B3B7-B0A2B118343A> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
    0x83c0000 -  0x83c6fef +com.adobe.boost_date_time.framework (boost_date_time version 5.0.0 - 5.0.0.0) <8837A972-1EBE-CAA9-473A-CD157F17163D> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
    0x83d8000 -  0x8455fff +AdobeOwlCanvas (??? - ???) <65B2E680-4F43-BE46-2290-3500758D1BF7> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
    0x8473000 -  0x847eff3 +com.adobe.boost_filesystem.framework (boost_filesystem version 5.0.0 - 5.0.0.0) <90B8B4E3-6C44-D110-1545-1A34EB14B22D> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesystem
    0x8493000 -  0x8495ffb +com.adobe.boost_system.framework (boost_system version 5.0.0 - 5.0.0.0) <0C4D56E8-9593-4C4A-4A7E-BEAEDE1CA131> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
    0x849e000 -  0x84a2ffc +com.adobe.AdobeCrashReporter (3.0 - 5.5.20101001) <EA9B7B55-7FE5-14D2-FBAE-817121F94086> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x84a9000 -  0x8556ff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
    0x859b000 -  0x864bff7 +libCrypto.dylib (??? - ???) <7743860E-1E20-BC36-8443-53A4DC91A879> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/MacOS/libCrypto.dylib
    0x869a000 -  0x86bbffc +libSSL.dylib (??? - ???) <202C3E7F-DBBB-4AF1-FFA7-7DDD19A17938> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/MacOS/libSSL.dylib
    0x86ca000 -  0x8707fff  com.apple.vmutils (4.2 - 106) <E16C6BE7-C3B2-3836-85CF-989364FBE163> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x87ae000 -  0x87afff1  com.apple.textencoding.unicode (2.4 - 2.4) <4E55D4B9-4E67-3FC9-9407-3E99D1D50F15> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x8fe6000 -  0x8feefff +com.adobe.asneu.framework (asneu version 1.7.0.1 - 1.7.0.1) <80195B5C-2C67-D841-232C-74FCAB79D304> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0xfcb0000 -  0xfce5fef +com.adobe.pip (??? - 5.5.0.1265) <660E209C-F595-AB0B-FB5E-C8FC1527CF4D> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/AdobePIP.framework/AdobePIP
    0xfe00000 -  0xfe6bfe7 +com.adobe.amt.services (AMTServices 4.0.0.21 [BuildVersion: 4.0; BuildDate: Mon Jan 24 2011 21:49:00] - 4.0.0.21) <018F21DE-7E2E-C850-4C32-D4A2131ABF74> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservices
    0xff6d000 -  0xffddfeb +com.adobe.adobe_caps (adobe_caps 4.0.42.0 - 4.0.42.0) <55D7D2EA-D21E-98B1-77C6-58C0A0E07051> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x10d2d000 - 0x10d5aff8  GLRendererFloat (??? - ???) <BBFAA220-4A07-3CDC-9A93-DF6A2220AE01> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
    0x12900000 - 0x12a6dff0  GLEngine (??? - ???) <3C6D5F72-9CDA-37E2-B085-7F38C99FE8C5> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x12aa1000 - 0x12b98ffb  libGLProgrammability.dylib (??? - ???) <560A7F12-1AA6-35E1-A922-309016BF6D3C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0x12bbc000 - 0x12e8bffb  com.apple.ATIRadeonX3000GLDriver (7.2.9 - 7.0.2) <F4616DD7-FD38-3FE4-9545-CDD802105F8D> /System/Library/Extensions/ATIRadeonX3000GLDriver.bundle/Contents/MacOS/ATIRadeonX3000GLD river
    0x12ebc000 - 0x1399affb  com.apple.driver.AppleIntelHDGraphicsGLDriver (7.2.9 - 7.0.2) <CAA291D4-5A96-320C-87FD-CC92B12889EE> /System/Library/Extensions/AppleIntelHDGraphicsGLDriver.bundle/Contents/MacOS/AppleIntelH DGraphicsGLDriver
    0x14512000 - 0x1454bffb +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 2.0.0.15 - 2.0.0.15) <3A9CF871-6678-90BB-3770-CDBF56AF21D5> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/UpdaterNotificati ons
    0x1455b000 - 0x14584fef +com.adobe.ape (adbeapecore version 3.1.74.12761 - 3.1.74.12761) <21548488-E9C3-4638-D7FC-895EE0F8EE30> /Library/Application Support/Adobe/*/adbeapecore.framework/adbeapecore
    0x1471f000 - 0x14731fff  libTraditionalChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <ADEB72F9-0048-3C87-AD9B-71AA57D523E9> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x147e2000 - 0x147f0ffb  libSimplifiedChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <D3F1CC34-55EB-3D33-A7C2-025D5C8025D0> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x16739000 - 0x16741fff  com.apple.carbonbundletemplate (1.0 - 1.0) <CF59539F-6DC9-3B0B-FBD4-509DA74AEBE3> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/JSExtensions/AIRext.bundle/Contents/MacOS/AIRext
    0x16761000 - 0x16787ff2  com.apple.carbonbundletemplate (3.0.2,5298 - 3.0.2) <F75E094F-15D1-483C-AE07-71D5FEA37305> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/JSExtensions/MMNotes.bundle/Contents/MacOS/MMNotes
    0x167ad000 - 0x167b5fff +com.macromedia.bmpimportexport (1.0 - 1.0) <A2D04F1D-3150-8E7A-6C3D-EB48C582C261> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/PlugIns/BMP Import Export.bundle/Contents/MacOS/BMP Import Export
    0x167bd000 - 0x167dbff7 +com.macromedia.mix_services (MIX Services version 1.0 - 1.0) <A2E68C22-D23E-165E-0A57-E6BA9B9D5B2D> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/PlugIns/Mix Services.bundle/Contents/MacOS/MIX Services
    0x167f0000 - 0x167f5ffb +com.macromedia.pict (PICT Import Export version 1.0 - 1.0) <5B7C5D2E-E7E5-9486-FC7D-8757F26AC4AA> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/PlugIns/PICT Import Export.bundle/Contents/MacOS/PICT Import Export
    0x167fd000 - 0x16801fff +com.macromedia.targa (Targa Import version 1.0 - 1.0) <FB1FC0D2-B47B-A054-C026-66A5E8BB31DD> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/PlugIns/Targa Import.bundle/Contents/MacOS/Targa Import
    0x16808000 - 0x1684afef +com.macromedia.tiff (TIFF Import Export version 1.0 - 1.0) <2ABEC8A4-B15C-1B8D-53B3-DFDDC8A0851B> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/PlugIns/Tiff Import Export.bundle/Contents/MacOS/Tiff Import Export
    0x16859000 - 0x1685efeb +com.macromedia.twain (TwainAgent version 1.0 - 1.0) <FDFAD6E4-D5F4-A773-9A1B-5DAC9B464075> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/PlugIns/TwainAgent.bundle/Contents/MacOS/TwainAgent
    0x16865000 - 0x1686bfff  org.twain.dsm (1.9.4 - 1.9.4) <C0CCCE50-2929-3853-BE08-0DAE14CA29B8> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
    0x16872000 - 0x16875fff +com.macromedia.wbmp (WBMP Import Export version 1.0 - 1.0) <E3A57AC0-D6E8-7619-74AD-E7B1ADB99B94> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/PlugIns/WBMP Import Export.bundle/Contents/MacOS/WBMP Import Export
    0x168bd000 - 0x168c1ffb  com.apple.audio.AudioIPCPlugIn (1.2.0 - 1.2.0) <8A4CC918-D47D-3F33-8420-0698071A5944> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
    0x16c51000 - 0x16c74fe7 +ServiceManager-Launcher.dylib (236.0.0 - compatibility 2.5.0) <F2933B29-0CC1-00B4-1778-BF44110851F8> /Library/Application Support/Adobe/*/ServiceManager-Launcher.dylib
    0x16ff2000 - 0x16ff8ffb  com.apple.audio.AppleHDAHALPlugIn (2.1.1 - 2.1.1f11) <8CA3DFAA-56F6-37B1-9C93-16C5C3A0A00F> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
    0x16ffd000 - 0x17029ff3  com.apple.audio.CoreAudioKit (1.6.2 - 1.6.2) <C2F6DA06-35A9-310A-9444-D07D6F47E0B4> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x1ac17000 - 0x1af5ffe7 +com.adobe.dvaadameve.framework (dvaadameve version 5.0.0 - 5.0.0.0) <3D6B5526-68C6-AB1B-B98F-326F18EA44F0> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/dvaadameve.framework/dvaadameve
    0x1b9ff000 - 0x1bb7bfe7 +com.adobe.dvacore.framework (dvacore version 5.0.0 - 5.0.0.0) <4BC4AD81-2341-CCA5-6972-F9C2B8C7B097> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
    0x1c2eb000 - 0x1c5d1fff +com.adobe.dvaui.framework (dvaui version 5.0.0 - 5.0.0.0) <3F61310E-8DF6-5E42-878E-E6A696BDD0AF> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
    0x1c8f0000 - 0x1d74dfeb +com.adobe.adobeswfl (??? - 2.0.0.11360) <3E243C12-18DB-469A-DFA9-B0AE4A1C620F> /Library/Application Support/Adobe/*/adbeapecore.framework/Resources/AdobeSWFL.bundle/Contents/MacOS/AdobeSWFL
    0x1db0c000 - 0x1e1a1ffb +com.macromedia.Flash Player.authplaylib (10.0.0.508 - 1.0.1d333) <02A2245F-4883-4AA8-B06C-47704216613B> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/PlugIns/AuthPlayLib.bundle/Contents/MacOS/AuthPlayLib
    0x40000000 - 0x400d1fe7 +AdobeJP2K (??? - ???) <2ABF10A7-540A-06C8-21FA-186263931DF9> /Applications/Adobe Fireworks CS5.1/Adobe Fireworks CS5.1.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x8fe4f000 - 0x8fe819c7  dyld (195.5 - ???) <134323A7-49DC-3A9D-ACFD-32FAD0FD6BA2> /usr/lib/dyld
    0x90005000 - 0x9028afe3  com.apple.QuickTime (7.7.1 - 2246) <56DF434A-D929-350C-86D5-684089D0EDFB> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x902d9000 - 0x903eaff7  libJP2.dylib (??? - ???) <E938C201-C508-3E3D-B9A9-81FE52349E1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJP2.dylib
    0x9042a000 - 0x9045eff3  libTrueTypeScaler.dylib (??? - ???) <FF162272-243C-321C-B152-AD81B3171C54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
    0x9045f000 - 0x90861ff6  libLAPACK.dylib (??? - ???) <00BE0221-8564-3F87-9F6B-8A910CF2F141> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x90940000 - 0x90947fff  libnotify.dylib (80.0.0 - compatibility 1.0.0) <B3B3875D-311D-31A7-A09F-D1BC56795E00> /usr/lib/system/libnotify.dylib
    0x90948000 - 0

    Unlikely the solution, but just in case (I'm going back to all the places I was looking before I found the answer to my problem), see:
    http://forums.adobe.com/message/3929927#3929927
    If you have flashfirebug installed, it messes up EVERYTHING, including launching fireworks cs5.1

  • [CS5] Unable to save or close a document

    I'm working on porting a plugin from CS4 to CS5. One of its functions is to save each page of a document as a separate file. It does this by saving a copy of the main document, opening it, removing the unwanted pages, and finally saving it. This worked fine in all previous InDesign versions, but in CS5 IDocFileHander is returning false for CanSave() and CanClose(). Ignoring that, or processing a save or close command directly, causes ID to enter protective shutdown.
    There was another message posted recently with a similar problem  ( http://forums.adobe.com/thread/647045?tstart=0 ), but I'm not performing my actions as part of a command or a command sequence. Is there another reason why InDesign wouldn't allow me to save or close a document?

    Hello Andrew,
    here is Adam from the thread you already read. I might some more hints for you. First, when I was saving my document, I needed to add a textframe, then export the document *with* the textframe to XML and after that I deleted the textframe so the user doest see anything. So it looked like:
    SaveMyDoc(docref)
         1. add a textframe
         2. export my XML file
         3. delete my textframe
         4. call IDocFileHandler to save it <- here CanSaveAs Asserted
    When I changed to following style, I got what I needed without the Assert
    SaveMyDoc(docref)
         1. call IDocFileHandler to save it
         2. add a textframe
         3. export my XML file
         4. delete the textframe
    I got no assert, but the document was dirty and the user had to do Save again which was not nice.
    I added line 5:
         call IDocFileHandler to revert to the saved file.
    Now it feels OK.
    More notes: my methods are in a facade in the model plugin and are called via Utils<IIMyUtils>(). I double checked my commands which set the persistent data in my document.
    Lets hope what is written here is useful.
    //Adam

  • [CS5] IDocFileHandler::SaveAs fails

    Hello to all of you!
    I am starting to be desperate why the following code fails in CS5 runtime, release & debug, windows (yet). Actually the code  is part of SDKLayoutHelper, where it is used as example.
            InterfacePtr<IDocFileHandler> docFileHandler(Utils<IDocumentUtils>()->QueryDocFileHandler(documentRef));
            if (!docFileHandler)
                ELOG("Failed to get doc file handler");
                break;
            //Try to do SaveAs
            if(!docFileHandler->CanSaveAs(documentRef) )
                ELOG("Can't SaveAs the document!");
                break;
    So - here my docfilehandler knows, that my document (it can be any document, new or opened) cannot be saved as. Of course, if I ignore the advice and try to persuade him, he can do it with
    docFileHandler->SaveAs (documentRef, &inddFile, K2::kFullUI/*K2::kSuppressUI*/, kFalse);
    It is not a success at all.
    I am porting from CS2/CS3/CS4 to CS5 and I did not have so much fun for a long time. Does anyone have similar experience?
    Thanks a lot for sharing!

    I don't know why you can't. I am using on desktop InDesign and InDesign Server.
    I am using as following,
    UIDRef docUIDRef = ::GetUIDRef(document);
    InterfacePtr<IDocumentUtils> docUtils(GetExecutionContextSession(), IID_IDOCUMENTUTILS);
    InterfacePtr<IDocFileHandler> docFileHandler(docUtils->QueryDocFileHandler(docUIDRef));
    if (docFileHandler->CanSaveAs(docUIDRef)) {
    docFileHandler->SaveAs(docUIDRef, &newSysFile, kSuppressUI);

  • CS5 Dialog blanks on Re-Draw

    Hello, I'm porting a CS3 plugin over to CS5.
    In CS3, when an ADMDialog was re-drawn it kept its state and I was able to simply update its relevent area's (I'm using the dialog to display an animation). In CS5, however, at the beginning of a new draw, the dialog is being blanked to gray. Is there a way to disable this and have it preserve its image data?
    Thanks,
    Jeremy

    Hi Dallen,
    Does this also happen with new files with little content to manipulate?
    What about older files with little content?
    I came across this issue some time back when working on a file with a lot of content and filters applied to objects. See if you can identify something specific to content or amount of content.
    Cheers
    --Vikas

  • HTML5 pack for Dreamweaver CS5

    Hi All, I am looking for HTML5 pack for Dreamweaver CS5.
    I found the same for CS4 from the following link: http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&extid=2188522

    Did you click the link I provided above?
    I also found this: http://download.macromedia.com/pub/dreamweaver/updates/cs5/11_0_4/mac/AdobeDreamweaver-11- 0-All-Update.dmg

  • Advice needed on monitor for Photoshop and Lightroom use

    Hi. I am aserious amature photographer wishing to move to the next level and sell some of my work.
    I just had a custom pc built to work with the new copies of Photoshop CS5 and Lightroom 3 I bought (lots or RAM and HD space, ssd, etc....)
    The last piece of my system is to purchase a monitor. I want to be somewhere in the better then Best Buy but less than NEC/Eizo range in price, or between $500 - $900. I have worked with cameras since the early 80's and moved to digital several years ago but the only post processing I have done is with Photoshop Elements.  I would be doing mostly prints to sell but also need to have a web site to do so. Will also use the pc for daily net surfing... but do not game or watch a lot of video on the pc.
    Being really new to this whole process I have a few questions.
    The first thing I need to decide is whether I need to look for a wide gamut display or not.
    I realize the whole chain must be 10 bit (Adobe -OS - graphics driver - graphics card - display port.
    I have Adobe Photoshop CS5 and Lightroom 3, Win7 64 bit, Zotac ZT 50701 10M video card (which uses GeForce GTX 560  fermi and an nvidia chipset. It does have displayport). I am having a hard time determining whether my video card actually supports wide gamut (10bit).
    Standard vs Wide Gamut? Is wide gamut important enough to deal with the issues it brings (calibration, viewing things other than PS and LR or color managed, which appear to be rare?) Is sRGB good enough for most prints (don't do fine art, mostly nature and portraits but starting to do some HRD things). If wide gamut is the way to go I have no problem with that and have the time to learn about calibration, color management, etc... But I also want to make sure the juice is worth the squeeze.
    24" vs 27"? Is there any advantage to one or the other when editing photos?
    IPS vs PLS? I realize they are similar but are there differences worth noting?
    Glossy vs Matte Anti-Glare? seems to be a lot of comments regarding the anti-glare coating, mostly poor. Yet I can see issues using a glossy screen in my study with a window to my back.
    One manufacturer vs another? I realize Eizo, NEC and LaCie are at the top of the heap. But with my budget, after upgrading my pc and camera equipment, I can't make that work now. So I need to choose from the next group down (Dell, HP, Samsung, Asus...)
    One or two monitors? It looks like many (mid-grade) wide gamut monitors do a lousy job of displaying anything but color managed sites. Is that necessarily true of all the mid-grades? Or can some be used for graphics but as well for routine net surfing, MS Office, etc...? Or am I better off getting two monitors, one for graphics and one for the rest? That would pretty much limit me to 24" or less given my budget (used to using a Dell 21" TN monitor that oddly crapped out just as my new pc was done).
    The more I read reviews the more confusing it gets. There seems to be a difference of opinion even among pros on whether to go wide gamut or stick with an easier sRGB. Realizing a standard gamut monitor would be cheaper, I do want to make the right decision up front, given my budget.
    The one thing I have found astounding is that there is nowhere to actually see many of the monitors I am considering. We live in Nashville TN but my wife is from Atlanta Ga so we drove there a few weeks ago to visit family and for me to visit monitor shops. Even the largest ones there (Fry's and Microcenter) had minimal IPS monitors, a few Dells and HP's. The knowledge of their sales folks was so poor I finally gave up. Felt bad about this until I posted this on another board and got a reply from a guy in LA (second largest city in the US) that he wanted to see a particular monitor and there was no place even there to do so.
    Anyhow, here is what I have considered:
    24" Wide Gamut: Dell U2410 and Asus PA246Q. Dells appear to be good IF you get a good one. The Asus appears to be a clone of the Dell that gets a lot of good press.
    27" Wide Gamut: Dell U2711 that also gets a ton of good reviews
    24: Standard Gamut: Dell U2412 and HP ZR2440.
    27" Standard Gamut: Samsung S27A850D and Apple Cinema- The Samsung uses PLS technology versus IPS while the Apple is a glossy screen that will work with a pc.
    Sorry for the long post. Any comments are greatly appreciated.

    dkg62 wrote:
    I realize the whole chain must be 10 bit
    Not trying to talk you out of setting up a 10 bit pipeline, but it's still not very mature, and it really isn't a necessity to get a good editing experience.
    Personally I find advantage in using two 4:3 ratio monitors for Photoshop work.  All my panels are on the right monitor, while pretty much the entire left one shows the Photoshop main window and the working canvas space.  My desktop is 3200 x 1200 pixels overall, and I find having the panels remain visible all the time is important.
    Regarding whether a wide gamut is important...  Will you be printing to devices that deliver a wide gamut?  What other things will you be doing with your system?
    It's not a no-brainer whether a wider gamut monitor is always "better" for everything, since it can accentuate the differences between the output from color-managed and non-color-managed applications, and it's definitely true that not everything is color-managed.  With a monitor that's close to sRGB, for example, you might find Internet Explorer output acceptable, while using a wide gamut monitor will result in garishly oversaturated IE displays.  On the other hand, FireFox (with a settings tweak) seems to get color management right, so there is an alternative.
    I think, as John has implied above, you should work to get your head completely around how color-management works, soup to nuts.  If you don't, there will always be things that are a mystery or which surprise you at the wrong times.  Being able to order a print and have it come back with the expected color can be very important, as you might imagine.
    -Noel

Maybe you are looking for

  • Condition records in contract management

    We are using contract management linked to our internal catalog. When we create the contract we have found that where the contract has multiple lines only the first 8 records get conditions associated with them. This is causing us an issue as when we

  • How do I pass parameters in Dynamic Pages ????!!!!!!

    I have 4 dynamic pages, a user enters in variables on first page. At the next 3 dynamic pages I send the user to I have to display the items they entered on the first page in text items. How do I pass these variables ???? thanks! null

  • Receive an error when closing my program built using LabVIEW applicatio​n builder

    When I close my program built using LabVIEW application builder I receive an application error,"The instruction at "0x77fcb1ad" referenced memory at "0x023a0010". The memory could not be "read". Click OK to terminate the program" I have no idea why t

  • InD suddenly won't export to pdf

    I've been exporting files to pdf all day to send to my printer, and suddenly InDesign won't export anymore. Pop ups open as usual, but nothing happens.Grrrrrrr!!

  • How to sort as per variant

    Dear All, Can I sort an internal table in a report, according to the variant of the report. The report gives the production figures of different materials. The user wants the order of material same as in his variant. How can I achieve this. {ls sugge