Problem with ADM's StandardPutFileDialog

Hi,
I'm trying to do a plug-in in C++ for Acrobat.
I want to use the function "StandardPutFileDialog".
The programs compiles fine, but the StandardPutFileDialog dialog does not appear.
Can you help me?
My code:
static ADMPlatformFileTypesSpecification3 csvFilter = {
"Comma Separated Value Files (*.csv)\0"
"*.csv;\0"
"All Files\0"
"*.*\0"
"\0"
const char* inMessage = "Export CVS As\0";
char* inStartingFile = "/0";
SPPlatformFileSpecification* outResult;
SPPlatformFileSpecification inStartingDir;
AVSweetPeaGetBasicSuiteP()->AcquireSuite (kADMBasicSuite, kADMBasicSuiteVersion7, (const void **)&sADMBasic);
ASBoolean status = false;
status = sADMBasic->StandardPutFileDialog(inMessage, &csvFilter, &inStartingDir, inStartingFile, outResult);
AVSweetPeaGetBasicSuiteP()->ReleaseSuite(kADMBasicSuite, kADMBasicSuiteVersion7);

Don't use the ADM PutFileDialog - use the one in the AV APIs.
Leonard

Similar Messages

  • Problem with non modal ADM dialog

    I have problem with focus and mouse and keyboard event passing to non modal dialog if some modal window was opened and closed on Windows platform.
    I have this problem in my plugin, but also I did some tests with SDK WordFinder Plugin.There are 2 dialogs open there : CountDialog-non modal dialog and PromtDialog-modal one. I commented all lines in function DeleteCountDialog to leave this dialog on the screen. So, first, when "create page map" menu is selected, CountDialog is appearing and stays on the screen. At this stage, it can be moved and get focus when is clicked.After that, I click on "find word by word offset" and then PromtDialog is appearing. when I close Promtdialog by clicking on OK or Cancel, CountDialog is "freezing" - means, it can not be moved and does not get focus when I click on it.
    Is it known problem ? Is there is some workaround there ?
    thanks in advance,
    Lidia.

    Thanks a lot for your response.
    I did changes as you recommended, but still have the same result.
    So I have WordFinder from Acrobat SDK 8 with only one file changed:WordFinderDlg.cpp - see below.The result is the same:
    1. I open Acrobat->Open some file
    2. Click on "Advanced->Acrobat SDK->Word Finder->create Page Map" menu
    3. "count" non Modal Dialog is opened and working and then stays on the screen and can be moved without problem.
    4. Now I click on "Advanced->Acrobat SDK->Word Finder->find Word By Offset" - Modal Promt Dialog is opened. click some number and then click ok - choosen word is selected in Acrobat. From this moment, first "Count" dialog is frosen - can be selected, can not be moved.
    The only workaround I see here is to create non Modal dialog every time I close Modal one.
    Could you please advice ? May I please send to you project in zip ?
    I really need it ASAP ?
    thanks in advance,
    Lidia.
    ADOBE SYSTEMS INCORPORATED
    Copyright (C) 1994-2006 Adobe Systems Incorporated
    All rights reserved.
    NOTICE: Adobe permits you to use, modify, and distribute this file
    in accordance with the terms of the Adobe license agreement
    accompanying it. If you have received this file from a source other
    than Adobe, then your use, modification, or distribution of it
    requires the prior written permission of Adobe.
    \file WordFinderDlg.cpp
    - Implements a modeless progress dialog and a generic prompt dialog.
    // Acrobat headers
    #ifdef WIN_PLATFORM
    #include "PIHeaders.h"
    #endif
    #include "ADMAcroSDK.h"
    #include "resource.h"
    Constants/Declarations
    static ADMDialogRef countDialog;
    static AVWindow gAVWindow = NULL;
    // Global variables used for simplicity
    const ASInt32 MaxLen = 80;
    static char textStr[MaxLen];
    static char titleStr[MaxLen];
    static char msgStr[MaxLen];
    Modeless Progress Dialog
    /* UpdateCountDialog
    ** Updates the dialog with a new GUI function to show count number
    void UpdateCountDialog(ASInt32 cnt)
    ADMItemRef itemRef;
    itemRef = sADMDialog->GetItem(countDialog, IDC_COUNT);
    sADMItem->SetIntValue(itemRef, cnt);
    sADMDialog->Update(countDialog);
    /* CreateCountDialog
    /** GUI function to delete the count dialog
    void DeleteCountDialog(void)
    // destroy dialog
    /*if (countDialog) {
    sADMDialog->Destroy(countDialog);
    countDialog = NULL;
    // Release ADM
    ADMUtils::ReleaseADM();*/
    /* SettingsCountDialogOnInit
    ** Called to initialize the the dialog controls
    ASErr ASAPI CountDialogOnInit(ADMDialogRef dialogRef)
    ADMItemRef itemRef;
    itemRef = sADMDialog->GetItem(dialogRef, IDC_COUNT);
    sADMItem->SetUnits(itemRef, kADMNoUnits);
    sADMItem->SetIntValue(itemRef, 0);
    return kSPNoError;
    /* CreateCountDialog
    ** Creates the modeless dialog.
    void CreateCountDialog(void)
    // Initialize ADM.
    ADMUtils::InitializeADM();
    // Display modeless dialog.
    countDialog = sADMDialog->Create(sADMPluginRef, "ADBE:Wordfinder", IDD_COUNT_DIALOG,
    kADMNoCloseFloatingDialogStyle, CountDialogOnInit, NULL, NULL);
    Generic Prompt Dialog
    /* PromptOnOK
    ** Called when the user clicks OK. Stores the string entered by the
    ** user.
    static void ASAPI PromptOnOK(ADMItemRef item, ADMNotifierRef inNotifier )
    sADMItem->DefaultNotify(item, inNotifier);
    // get user input string
    ADMDialogRef dialog = sADMItem->GetDialog(item);
    ADMItemRef item1 = sADMDialog->GetItem(dialog, ID_PROMPT_FIELD);
    sADMItem->GetText(item1, textStr, MaxLen);
    sADMDialog->EndModal(dialog,IDOK,FALSE);
    AVAppEndModal();
    AVWindowDestroy(gAVWindow);
    /* PromptDialogOnInit
    ** Called to initialize the dialog controls.
    ASErr ASAPI PromptDialogOnInit(ADMDialogRef dialogRef)
    gAVWindow = AVWindowNewFromPlatformThing (AVWLmodal, AVWIN_WANTSKEY, NULL, gExtensionID, sADMDialog->GetWindowRef(dialogRef));
    AVAppBeginModal (gAVWindow);
    sADMDialog->SetText(dialogRef, titleStr);
    sADMDialog->SetDefaultItemID(dialogRef, IDOK);
    sADMDialog->SetCancelItemID(dialogRef, IDCANCEL);
    ADMItemRef itemRef;
    itemRef = sADMDialog->GetItem(dialogRef, IDOK);
    sADMItem->SetNotifyProc(itemRef, PromptOnOK);
    itemRef = sADMDialog->GetItem(dialogRef, ID_PROMPT_FIELD);
    sADMItem->SetUnits(itemRef, kADMNoUnits);
    sADMItem->SetMinIntValue(itemRef, 1);
    itemRef = sADMDialog->GetItem(dialogRef, ID_PROMPT_NAME);
    sADMItem->SetText(itemRef, msgStr);
    return kSPNoError;
    /* PromptForInfo
    /** Generic prompt dialog that gets a text string from the user.
    /** @return IDOK or IDCANCEL.
    ASInt32 PromptForInfo(const char *title, const char *msg, char *buf, ASInt32 bufLen)
    if (!buf || (bufLen == 0))
    ASRaise (GenError(genErrBadParm));
    // Initialize ADM.
    ADMUtils::InitializeADM();
    // init data
    buf[0] = 0;
    strncpy(titleStr, title, sizeof(titleStr) - 1);
    strncpy(msgStr, msg, sizeof(msgStr) - 1);
    // Dispaly modal dialog to get user input
    ASInt32 rc = sADMDialog->Modal(sADMPluginRef, "ADBE:Wordfinder", IDD_PROMPT_DIALOG,
    kADMModalDialogStyle, PromptDialogOnInit, NULL, NULL);
    // get user input data
    if (rc==IDOK)
    strcpy(buf, textStr);
    // Release ADM
    ADMUtils::ReleaseADM();
    return rc;

  • Problem with zoom in Photoshop CS6

    Hello
    I've got problem with new(?) feature in Photoshop CS6.
    When I'm working on my project and have for example 150% zoom and I want to move workspace with SPACE+LMB.
    In my previous version (CS3) I can do this without problem but know Photoshop shows me my file with FIT TO SCREEN zoom and some frame to choose
    which screen area I want to zoom in.
    It's just zooming out to full view of file. I hate this, but I can't turn it off.
    My system info:
    Adobe Photoshop Version: 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:5, Stepping:5 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 2
    Logical processor count: 4
    Processor speed: 2660 MHz
    Built-in memory: 3828 MB
    Free memory: 148 MB
    Memory available to Photoshop: 3250 MB
    Memory used by Photoshop: 80 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Basic
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: GeForce GT 420M/PCIe/SSE2
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 768, right: 1366
    Video Card Number: 2
    Video Card: Intel(R) HD Graphics
    OpenCL Unavailable
    Driver Version: 8.15.10.2189
    Driver Date: 20100728000000.000000-000
    Video Card Driver: igdumd64.dll,igd10umd64.dll,igdumdx32,igd10umd32
    Video Mode: 1366 x 768 x 4294967296 colors
    Video Card Caption: Intel(R) HD Graphics
    Video Card Memory: 1024 MB
    Video Rect Texture Size: 16384
    Video Card Number: 1
    Video Card: %NVIDIA_DEV.0DF1.01%
    OpenCL Unavailable
    Driver Version: 8.17.13.553
    Driver Date: 20120802000000.000000-000
    Video Card Driver: nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Video Mode:
    Video Card Caption: %NVIDIA_DEV.0DF1.01%
    Video Card Memory: 1024 MB
    Video Rect Texture Size: 16384
    Serial number: 90970819015185381107
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\VDS\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 111,7G, 14,6G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2012/01/18-15:07:40   66.492997   66.492997
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOwl.dll   Adobe Owl 2012/02/09-16:00:02   4.0.93   66.496052
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1654  
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   6,0,29,0  
       AGM.dll   AGM 2012/01/18-15:07:40   66.492997   66.492997
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib (64 Bit)   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/01/18-15:07:40   66.492997   66.492997
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/01/18-15:07:40   66.492997   66.492997
       BIBUtils.dll   BIBUtils 2012/01/18-15:07:40   66.492997   66.492997
       boost_date_time.dll   DVA Product   6.0.0  
       boost_signals.dll   DVA Product   6.0.0  
       boost_system.dll   DVA Product   6.0.0  
       boost_threads.dll   DVA Product   6.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/01/18-15:07:40   66.492997   66.492997
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0  
       dvacore.dll   DVA Product   6.0.0  
       dvamarshal.dll   DVA Product   6.0.0  
       dvamediatypes.dll   DVA Product   6.0.0  
       dvaplayer.dll   DVA Product   6.0.0  
       dvatransport.dll   DVA Product   6.0.0  
       dvaunittesting.dll   DVA Product   6.0.0  
       dynamiclink.dll   DVA Product   6.0.0  
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2.1.2.1640  
       mediacoreif.dll   DVA Product   6.0.0  
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS6   CS6  
       Plugin.dll   Adobe Photoshop CS6   CS6  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   3.0.0.383  
       PSArt.dll   Adobe Photoshop CS6   CS6  
       PSViews.dll   Adobe Photoshop CS6   CS6  
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
       wu3d.dll   U3D Writer   9.3.0.113  
    Required plug-ins:
       3D Studio 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       ADM 3.11x01
       Angled Strokes 13.0
       Average 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Bas Relief 13.0
       BMP 13.0
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Clouds 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Collada 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Color Efex Pro 4 NO VERSION
       Color Efex Pro 4 NO VERSION
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Dicom 13.0
       Difference Clouds 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Embed Watermark 4.0
       Entropy 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Extrude 13.0
       FastCore Routines 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Flash 3D 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Google Earth 4 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Kurtosis 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Maximum 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Mean 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Measurement Core 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Median 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Mezzotint 13.0
       Minimum 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       MMXCore Routines 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Photocopy 13.0
       Photoshop 3D Engine 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Picture Package Filter 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Pinch 13.0
       Pixar 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Range 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.0
       Shear 13.0
       Skewness 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Standard Deviation 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Sumi-e 13.0
       Summation 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Torn Edges 13.0
       Twirl 13.0
       U3D 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Underpainting 13.0
       Vanishing Point 13.0
       Variance 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Variations 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       Wavefront|OBJ 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       WIA Support 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Wind 13.0
       Wireless Bitmap 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       ZigZag 13.0
    Optional and third party plug-ins:
       Camera Raw 7.1
       Nik Selective Tool 2.1.3.17256
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE

    I was just being sarcastic. I knew it is a feature while searching for a way to fix the issue awhile back. I am very interested in knowing if any user out there could somehow fix the problem by reseting, reinstalling, etc. I got an update a few hours ago, and that didnt fix it either.
    I have tried a lot of suggestions, and the only one seems to be working for me is to turn on "Scrubby Zoom"
    Noel,
    I run Adobe CS5 on MBP 10.6 and CS6 on MBPr 10.8. No additional plugins, English US keyboard. The laptops come with standard configuration... nonetheless, they both have the same issue.
    I am sure my computers have different settings from others, but this issue does not seem to be isolate as there are other users have experience it too.
    I personally, don't think it is too hard to re-create.  Most likely happen when
    1. Hold down space+command to zoom in
    2. Release keys, then hold down space and start moving around
    3. there you go, "bird's eye view" comes
    One thing I notice is that the problem does not occur all the time.
    -B

  • Problem with EM (Enterprise Manager is not able to connect to the database)

    Hi all,
    I've Oracle DB 11g Rel.1 installed on Windows XP SP3. The database is up and running i.e. everyone can connect to the DB by using any App tool e.g. SQL*Plus, Forms, or Reports. It means that the listener and the service is running. But the problem is that when I try to start the EM I see some error messages on the webpage.
    It says:
    Enterprise Manager is not able to connect to the database instance. The state of the components are listed below.Database Instance (Green arrow)
    Status     Open                         Details     The instance is open.
    Host          shiman
    Port          *1521*
    SID          orcl
    Oracle Home     d:\Oracle\product\11.1.0\db_1
    Agent Connection to Instance (Green arrow)
    Status Succeeded
    Details
    Listener (Green arrow)
    Status     Up
    Host          shiman
    Port          *1521*
    Name          LISTENER
    Oracle Home     d:\Oracle\product\11.1.0\db_1
    Location     d:\Oracle\product\11.1.0\db_1\network\admin
    Details          
    please see the attached file:
    http://rapidshare.com/files/404840300/em.JPGI've already checked all the services, they are running. And when I execute emctl command I got the following message.
    emctl status dbconsole
    Oracle Enterprise Manager 11g Database Control Release 11.1.0.6.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    http://shiman:1158/em/console/aboutApplication
    Oracle Enterprise Manager 11g is running.I have checked some documents around config files in sysman and test_orcl\sysman directories. Moreover, I have checked dbsnmp and sysman account for unlockness and password accuracy. But they did not help me to solve the problem.
    My question is if every thing is working fine then what is the problem with the EM? Why it is not connecting to the DB?
    Thanks.
    Iman

    emdctl.trc2010-07-13 18:42:21 Thread-2196 WARN http: snmehl_connect: connect failed to (shiman:1158): No connection could be made because the target machine actively refused it.
    (error = 10061)
    2010-07-13 18:42:26 Thread-4856 WARN http: snmehl_connect: connect failed to (shiman:1158): No connection could be made because the target machine actively refused it.
    (error = 10061)
    2010-07-13 18:42:28 Thread-5684 ERROR ssl: nzos_Handshake failed, ret=28864
    2010-07-13 18:42:28 Thread-5684 ERROR http: 1704: Unable to initialize ssl connection with server, aborting connection attempt
    2010-07-13 18:42:28 Thread-5684 ERROR main: nmectla_agentctl: Error connecting to https://shiman:3938/emd/main. Returning status code 1
    emoms.trc2010-07-13 18:45:44,562 [ApplicationServerThread-1] ERROR conn.ConnectionService verifyRepositoryEx.818 - Invalid Connection Pool. ERROR = Locale not recognized
    2010-07-13 18:45:46,875 [ApplicationServerThread-2] ERROR conn.ConnectionService verifyRepositoryEx.818 - Invalid Connection Pool. ERROR = Locale not recognized
    2010-07-13 18:45:46,921 [ApplicationServerThread-0] ERROR conn.ConnectionService verifyRepositoryEx.818 - Invalid Connection Pool. ERROR = Locale not recognized
    2010-07-13 18:45:47,078 [ApplicationServerThread-2] ERROR conn.ConnectionService verifyRepositoryEx.818 - Invalid Connection Pool. ERROR = Locale not recognized
    2010-07-13 18:45:47,125 [ApplicationServerThread-1] ERROR conn.ConnectionService verifyRepositoryEx.818 - Invalid Connection Pool. ERROR = Locale not recognized
    2010-07-13 18:45:47,140 [ApplicationServerThread-3] ERROR conn.ConnectionService verifyRepositoryEx.818 - Invalid Connection Pool. ERROR = Locale not recognized
    2010-07-13 18:45:47,187 [ApplicationServerThread-0] ERROR conn.ConnectionService verifyRepositoryEx.818 - Invalid Connection Pool. ERROR = Locale not recognized
    2010-07-13 18:45:47,234 [ApplicationServerThread-5] ERROR conn.ConnectionService verifyRepositoryEx.818 - Invalid Connection Pool. ERROR = Locale not recognized
    2010-07-13 18:45:47,281 [ApplicationServerThread-4] ERROR conn.ConnectionService verifyRepositoryEx.818 - Invalid Connection Pool. ERROR = Locale not recognized
    2010-07-13 18:45:47,328 [ApplicationServerThread-6] ERROR conn.ConnectionService verifyRepositoryEx.818 - Invalid Connection Pool. ERROR = Locale not recognized
    2010-07-13 18:45:48,984 [ApplicationServerThread-2] ERROR conn.ConnectionService verifyRepositoryEx.818 - Invalid Connection Pool. ERROR = Locale not recognized
    2010-07-13 18:45:49,000 [EMUI_18_45_48_/console/aboutApplication] ERROR svlt.PageHandler handleRequest.639 - java.lang.IllegalStateException: Response has already been committed
    java.lang.IllegalStateException: Response has already been committed
         at com.evermind.server.http.EvermindHttpServletResponse.resetBuffer(EvermindHttpServletResponse.java:1853)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:260)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:42)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:204)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:209)
         at oracle.sysman.emSDK.svlt.PageHandler.render(PageHandler.java:1113)
         at oracle.sysman.emSDK.svlt.PageHandler.myRender(PageHandler.java:1173)
         at oracle.sysman.emSDK.svlt.PageHandler.handleRequest(PageHandler.java:597)
         at oracle.sysman.emSDK.svlt.EMServlet.myDoGet(EMServlet.java:781)
         at oracle.sysman.emSDK.svlt.EMServlet.doGet(EMServlet.java:337)
         at oracle.sysman.eml.app.Console.doGet(Console.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.sysman.eml.app.EMRepLoginFilter.doFilter(EMRepLoginFilter.java:87)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.sysman.db.adm.inst.HandleRepDownFilter.doFilter(HandleRepDownFilter.java:134)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
         at oracle.sysman.eml.app.BrowserVersionFilter.doFilter(BrowserVersionFilter.java:122)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
         at oracle.sysman.emSDK.svlt.EMRedirectFilter.doFilter(EMRedirectFilter.java:102)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
         at oracle.sysman.eml.app.ContextInitFilter.doFilter(ContextInitFilter.java:306)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    2010-07-13 18:45:49,000 [EMUI_18_45_48_/console/aboutApplication] ERROR em.console doGet.357 - java.lang.IllegalStateException: Response has already been committed, be sure not to write to the OutputStream or to trigger a commit due to any other action before calling this method.
    java.lang.IllegalStateException: Response has already been committed, be sure not to write to the OutputStream or to trigger a commit due to any other action before calling this method.
         at com.evermind.server.http.EvermindHttpServletResponse.sendRedirect(EvermindHttpServletResponse.java:1339)
         at oracle.sysman.emSDK.svlt.EMServlet.myDoGet(EMServlet.java:806)
         at oracle.sysman.emSDK.svlt.EMServlet.doGet(EMServlet.java:337)
         at oracle.sysman.eml.app.Console.doGet(Console.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.sysman.eml.app.EMRepLoginFilter.doFilter(EMRepLoginFilter.java:87)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.sysman.db.adm.inst.HandleRepDownFilter.doFilter(HandleRepDownFilter.java:134)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
         at oracle.sysman.eml.app.BrowserVersionFilter.doFilter(BrowserVersionFilter.java:122)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
         at oracle.sysman.emSDK.svlt.EMRedirectFilter.doFilter(EMRedirectFilter.java:102)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
         at oracle.sysman.eml.app.ContextInitFilter.doFilter(ContextInitFilter.java:306)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)

  • Problem with Amanda

    Hi All, i have a problem with the Amanda under soalris 10, the planner is not able to get an estimate, se below:
    AMANDA bex> /usr/local/libexec/planner daily
    planner: pid 3833 executable /usr/local/libexec/planner version 2.5.1
    planner: build: VERSION="Amanda-2.5.1"
    planner:        BUILT_DATE="Thu Sep 14 22:40:36 CEST 2006"
    planner:        BUILT_MACH="SunOS bex 5.10 Generic_118855-14 i86pc i386 i86pc"
    planner:        CC="gcc"
    planner:        CONFIGURE_COMMAND="'./configure' '--with-group=amanda' '--with-user=amanda' '--datadir=/opt/local/share' '--sysconfdir=/opt/local/etc' '--sharedstatedir=/opt/local/com' '--localstatedir=/opt/local/var'"
    planner: paths: bindir="/usr/local/bin" sbindir="/usr/local/sbin"
    planner:        libexecdir="/usr/local/libexec" mandir="/usr/local/man"
    planner:        AMANDA_TMPDIR="/tmp/amanda" AMANDA_DBGDIR="/tmp/amanda"
    planner:        CONFIG_DIR="/opt/local/etc/amanda" DEV_PREFIX="/dev/dsk/"
    planner:        RDEV_PREFIX="/dev/rdsk/" DUMP="/usr/sbin/ufsdump"
    planner:        RESTORE="/usr/sbin/ufsrestore" VDUMP=UNDEF VRESTORE=UNDEF
    planner:        XFSDUMP=UNDEF XFSRESTORE=UNDEF VXDUMP=UNDEF VXRESTORE=UNDEF
    planner:        SAMBA_CLIENT=UNDEF GNUTAR=UNDEF
    planner:        COMPRESS_PATH="/usr/bin/gzip"
    planner:        UNCOMPRESS_PATH="/usr/bin/gzip" LPRCMD="/usr/bin/lp"
    planner:        MAILER="/usr/bin/mailx"
    planner:        listed_incr_dir="/opt/local/var/amanda/gnutar-lists"
    planner: defs:  DEFAULT_SERVER="bex" DEFAULT_CONFIG="DailySet1"
    planner:        DEFAULT_TAPE_SERVER="bex" HAVE_MMAP HAVE_SYSVSHM
    planner:        LOCKING=POSIX_FCNTL SETPGRP_VOID DEBUG_CODE
    planner:        AMANDA_DEBUG_DAYS=4 BSD_SECURITY RSH_SECURITY USE_AMANDAHOSTS
    planner:        CLIENT_LOGIN="amanda" FORCE_USERID HAVE_GZIP
    planner:        COMPRESS_SUFFIX=".gz" COMPRESS_FAST_OPT="--fast"
    planner:        COMPRESS_BEST_OPT="--best" UNCOMPRESS_OPT="-dc"
    READING CONF FILES...
    DATE 20060919082701
    planner: timestamp 20060919082701
    planner: time 0.233: startup took 0.233 secs
    SENDING FLUSHES...
    ENDFLUSH
    ENDFLUSH
    SETTING UP FOR ESTIMATES...
    planner: time 0.234: setting up estimates for bex.martel-consulting.ch:d0
    bex.martel-consulting.ch:d0 overdue 13410 days for level 0
    setup_estimate: bex.martel-consulting.ch:d0: command 0, options: none    last_level -1 next_level0 -13410 level_days 0    getting estimates 0 (-2) -1 (-2) -1 (-2)
    planner: time 0.236: setting up estimates took 0.001 secs
    GETTING ESTIMATES...
    planner: time 0.420: got result for host bex.martel-consulting.ch disk d0: 0 -> -2K, -1 -> -2K, -1 -> -2K
    error result for host bex.martel-consulting.ch disk d0: missing estimate
    planner: time 0.421: getting estimates took 0.184 secs
    FAILED QUEUE:
      0: bex.martel-consulting.ch d0
    DONE QUEUE: empty
    ANALYZING ESTIMATES...
    planner: FAILED bex.martel-consulting.ch d0 20060919082701 0 [missing result for d0 in bex.martel-consulting.ch response]
    INITIAL SCHEDULE (size 2064):
    DELAYING DUMPS IF NEEDED, total_size 2064, tape length 30793728 mark 1000
      delay: Total size now 2064.
    PROMOTING DUMPS IF NEEDED, total_lev0 0, balanced_size 0...
    planner: time 0.421: analysis took 0.000 secs
    GENERATING SCHEDULE:
    I have a .amandahosts:
    AMANDA bex> ls -l .amandahosts
    -rw-------   1 amanda   amanda        11 Sep 16 22:25 .amandahosts
    AMANDA bex> more .amandahosts
    bex amanda
    the amanda service is defined
    bex> grep amanda /etc/services
    amanda          10080/udp
    amandaidx       10082/tcp
    bex> inetadm | grep amanda
    enabled   online         svc:/network/amandaidx/tcp:default
    enabled   online         svc:/network/amanda/udp:default
    bex> inetadm -l svc:/network/amanda/udp:default
    SCOPE    NAME=VALUE
             name="amanda"
             endpoint_type="dgram"
             proto="udp"
             isrpc=FALSE
             wait=TRUE
             exec="/usr/local/libexec/amandad"
             user="amanda"
    default  bind_addr=""
    default  bind_fail_max=-1
    default  bind_fail_interval=-1
    default  max_con_rate=-1
    default  max_copies=-1
    default  con_rate_offline=-1
    default  failrate_cnt=40
    default  failrate_interval=60
    default  inherit_env=TRUE
    default  tcp_trace=FALSE
    default  tcp_wrappers=FALSE
    bex>
    my config is
    bex> cat /opt/local/etc/amanda/daily/amanda.conf
    # amanda.conf - sample Amanda configuration file. See amanda.conf(5) for
    # details
    org      "BackupService"        # your organization name for reports
    mailto   "[email protected]"    # space separated list of operators at your site
    dumpuser "amanda"       # the user to run dumps under
    inparallel 4            # maximum dumpers that will run in parallel (max 63)
                            # this maximum can be increased at compile-time,
                            # modifying MAX_DUMPERS in server-src/driverio.h
    dumporder "sssS"        # specify the priority order of each dumper
                            #   s -> smallest size
                            #   S -> biggest size
                            #   t -> smallest time
                            #   T -> biggest time
                            #   b -> smallest bandwitdh
                            #   B -> biggest bandwitdh
                            # try "BTBTBTBTBTBT" if you are not holding
                            # disk constrained
    taperalgo first         # The algorithm used to choose which dump image to send
                            # to the taper.
                            # Possible values:
                            # [first|firstfit|largest|largestfit|smallest|last]
                            # Default: first.
                            # first         First in - first out.
                            # firstfit      The first dump image that will fit
                            #               on the current tape.
                            # largest       The largest dump image.
                            # largestfit    The largest dump image that will fit
                            #               on the current tape.
                            # smallest      The smallest dump image.
                            # last          Last in - first out.
    displayunit "k"         # Possible values: "k|m|g|t"
                            # Default: k.
                            # The unit used to print many numbers.
                            # k=kilo, m=mega, g=giga, t=tera
    netusage  600 Kbps      # maximum net bandwidth for Amanda, in KB per sec
    dumpcycle 4 weeks       # the number of days in the normal dump cycle
    runspercycle 20         # the number of amdump runs in dumpcycle days
                            # (4 weeks * 5 amdump runs per week -- just weekdays)
    #tapecycle 25 tapes     # the number of tapes in rotation
                            # 4 weeks (dumpcycle) times 5 tapes per week (just
                            # the weekdays) plus a few to handle errors that
                            # need amflush and so we do not overwrite the full
                            # backups performed at the beginning of the previous
                            # cycle
    #* vtapes
    define tapetype HARD-DISK {
    comment "Dump onto hard disk"
    length 30072 mbytes # specified in mbytes to get the exact size of 3GB
    tapecycle 20
    tapetype HARD-DISK
    tpchanger "chg-disk"
    changerfile "/opt/local/etc/amanda/daily/changer"
    tapedev "file:/backupdisk1/daily"
    bumpsize 20 Mb          # minimum savings (threshold) to bump level 1 -> 2
    bumppercent 20          # minimum savings (threshold) to bump level 1 -> 2
    bumpdays 1              # minimum days at each level
    bumpmult 4              # threshold = bumpsize * bumpmult^(level-1)
    etimeout 300            # number of seconds per filesystem for estimates.
    dtimeout 1800           # number of idle seconds before a dump is aborted.
    ctimeout 30             # maximum number of seconds that amcheck waits
                            # for each client host
    tapebufs 20             # A positive integer telling taper how many
                            # 32k buffers to allocate.  The default is 20 (640k).
    # By default, Amanda can only track at most one run per calendar day. When
    # the usetimestamps option is enabled, however, Amanda can track as many
    # runs as you care to make.
    # WARNING: This option is not backward-compatible. Do not enable it if you
    #          intend to downgrade your server installation to Amanda community
    #          edition 2.5
    usetimestamps yes
    # Specify tape device and/or tape changer.  If you don't have a tape
    # changer, and you don't want to use more than one tape per run of
    # amdump, just comment out the definition of tpchanger.
    # Some tape changers require tapedev to be defined; others will use
    # their own tape device selection mechanism.  Some use a separate tape
    # changer device (changerdev), others will simply ignore this
    # parameter.  Some rely on a configuration file (changerfile) to
    # obtain more information about tape devices, number of slots, etc;
    # others just need to store some data in files, whose names will start
    # with changerfile.
    # At most one changerfile entry must be defined; select the most
    # appropriate one for your configuration.  If you select man-changer,
    # keep the first one; if you decide not to use a tape changer, you may
    # comment them all out.
    runtapes 1                      # number of tapes to be used in a single run of amdump
    ##tpchanger "chg-manual"                # the tape-changer glue script
    ##tapedev ""    # the no-rewind tape device to be used
    rawtapedev "/dev/null"  # the raw device to be used (ftape only)
    #changerfile "/usr/local/etc/amanda/DailySet1/changer"
    #changerfile "/usr/local/etc/amanda/DailySet1/changer-status"
    ##changerfile "/usr/local/etc/amanda/DailySet1/changer.conf"
    changerdev "/dev/null"
    # If you want Amanda to automatically label any non-Amanda tapes it
    # encounters, uncomment the line below. Note that this will ERASE any
    # non-Amanda tapes you may have, and may also ERASE any near-failing tapes.
    # Use with caution.
    ## label_new_tapes "DailySet1-%%%"
    maxdumpsize -1          # Maximum number of bytes the planner will schedule
                            # for a run (default: runtapes * tape_length).
    ##tapetype HP-DAT               # what kind of tape it is (see tapetypes below)
    labelstr "^DailySet1-[0-9][0-9]*$"      # label constraint regex: all tapes must match
    amrecover_do_fsf yes            # amrecover will call amrestore with the
                                    # -f flag for faster positioning of the tape.
    amrecover_check_label yes       # amrecover will call amrestore with the
                                    # -l flag to check the label.
    amrecover_changer ""    # amrecover will use the changer if you restore
                                    # from this device.
                                    # It could be a string like 'changer' and
                                    # amrecover will use your changer if you
                                    # set your tape with 'settape changer'
    # Specify holding disks.  These are used as a temporary staging area for
    # dumps before they are written to tape and are recommended for most sites.
    # The advantages include: tape drive is more likely to operate in streaming
    # mode (which reduces tape and drive wear, reduces total dump time); multiple
    # dumps can be done in parallel (which can dramatically reduce total dump time.
    # The main disadvantage is that dumps on the holding disk need to be flushed
    # (with amflush) to tape after an operating system crash or a tape failure.
    # If no holding disks are specified then all dumps will be written directly
    # to tape.  If a dump is too big to fit on the holding disk than it will be
    # written directly to tape.  If more than one holding disk is specified then
    # they will all be used based on activity and available space.
    holdingdisk hd1 {
        comment "main holding disk"
        directory "/dumps/amanda"   # where the holding disk is
        use -100 Mb                 # how much space can we use on it
                                    # a non-positive value means:
                                    # use all space but that value
        chunksize 1Gb       # size of chunk if you want big dump to be
                            # dumped on multiple files on holding disks
                            #  N Kb/Mb/Gb split images in chunks of size N
                            #             The maximum value should be
                            #             (MAX_FILE_SIZE - 1Mb)
                            #  0          same as INT_MAX bytes
    #holdingdisk hd2 {
    #    directory "/dumps2/amanda"
    #    use 1000 Mb
    #holdingdisk hd3 {
    #    directory "/mnt/disk4"
    #    use 1000 Mb
    # If amanda cannot find a tape on which to store backups, it will run
    # as many backups as it can to the holding disks.  In order to save
    # space for unattended backups, by default, amanda will only perform
    # incremental backups in this case, i.e., it will reserve 100% of the
    # holding disk space for the so-called degraded mode backups.
    # However, if you specify a different value for the `reserve'
    # parameter, amanda will not degrade backups if they will fit in the
    # non-reserved portion of the holding disk.
    # reserve 30 # percent
    # This means save at least 30% of the holding disk space for degraded
    # mode backups.
    autoflush no #
    # if autoflush is set to yes, then amdump will schedule all dump on
    # holding disks to be flush to tape during the run.
    # The format for a ColumnSpec is a ',' seperated list of triples.
    # Each triple consists of
    #   + the name of the column (as in ColumnNameStrings)
    #   + prefix before the column
    #   + the width of the column, if set to -1 it will be recalculated
    #     to the maximum length of a line to print.
    # Example:
    #       "Disk=1:17,HostName=1:10,OutKB=1:7"
    # or
    #       "Disk=1:-1,HostName=1:10,OutKB=1:7"
    # You need only specify those colums that should be changed from
    # the default. If nothing is specified in the configfile, the
    # above compiled in values will be in effect, resulting in an
    # output as it was all the time.
    # The names of the colums are:
    # HostName, Disk, Level, OrigKB, OutKB, Compress, DumpTime, DumpRate,
    # TapeTime and TapeRate.
    #                                                       ElB, 1999-02-24.
    # columnspec "Disk=1:18,HostName=0:10,OutKB=1:7"
    # Amanda needs a few Mb of diskspace for the log and debug files,
    # as well as a database.  This stuff can grow large, so the conf directory
    # isn't usually appropriate.  Some sites use /usr/local/var and some /usr/adm.
    # Create an amanda directory under there.  You need a separate infofile and
    # logdir for each configuration, so create subdirectories for each conf and
    # put the files there.  Specify the locations below.
    # Note that, although the keyword below is infofile, it is only so for
    # historic reasons, since now it is supposed to be a directory (unless
    # you have selected some database format other than the `text' default)
    infofile "/opt/local/etc/amanda/daily/curinfo"  # database DIRECTORY
    logdir   "/opt/local/etc/amanda/daily"          # log directory
    indexdir "/opt/local/etc/amanda/daily/index"            # index directory
    #tapelist "/usr/local/etc/amanda/DailySet1/tapelist"    # list of used tapes
    # tapelist is stored, by default, in the directory that contains amanda.conf
    # tapetypes
    # Define the type of tape you use here, and use it in "tapetype"
    # above.  Some typical types of tapes are included here.  The tapetype
    # tells amanda how many MB will fit on the tape, how big the filemarks
    # are, and how fast the tape device is.
    # A filemark is the amount of wasted space every time a tape section
    # ends.  If you run `make tapetype' in tape-src, you'll get a program
    # that generates tapetype entries, but it is slow as hell, use it only
    # if you really must and, if you do, make sure you post the data to
    # the amanda mailing list, so that others can use what you found out
    # by searching the archives.
    # For completeness Amanda should calculate the inter-record gaps too,
    # but it doesn't.  For EXABYTE and DAT tapes this is ok.  Anyone using
    # 9 tracks for amanda and need IRG calculations?  Drop me a note if
    # so.
    # If you want amanda to print postscript paper tape labels
    # add a line after the comment in the tapetype of the form
    #    lbl-templ "/path/to/postscript/template/label.ps"
    # if you want the label to go to a printer other than the default
    # for your system, you can also add a line above for a different
    # printer. (i usually add that line after the dumpuser specification)
    # dumpuser "operator"     # the user to run dumps under
    # printer "mypostscript"  # printer to print paper label on
    # here is an example of my definition for an EXB-8500
    # define tapetype EXB-8500 {
    #     lbl-templ "/usr/local/etc/amanda/config/lbl.exabyte.ps"
    define tapetype QIC-60 {
        comment "Archive Viper"
        length 60 mbytes
        filemark 100 kbytes         # don't know a better value
        speed 100 kbytes            # dito
    define tapetype DEC-DLT2000 {
        comment "DEC Differential Digital Linear Tape 2000"
        length 15000 mbytes
        filemark 8 kbytes
        speed 1250 kbytes
    # [email protected]
    # in amanda-users (Thu Dec 26 01:55:38 MEZ 1996)
    define tapetype DLT {
        comment "DLT tape drives"
        length 20000 mbytes         # 20 Gig tapes
        filemark 2000 kbytes        # I don't know what this means
        speed 1536 kbytes           # 1.5 Mb/s
    define tapetype SURESTORE-1200E {
        comment "HP AutoLoader"
        length 3900 mbytes
        filemark 100 kbytes
        speed 500 kbytes
    define tapetype EXB-8500 {
        comment "Exabyte EXB-8500 drive on decent machine"
        length 4200 mbytes
        filemark 48 kbytes
        speed 474 kbytes
    define tapetype EXB-8200 {
        comment "Exabyte EXB-8200 drive on decent machine"
        length 2200 mbytes
        filemark 2130 kbytes
        speed 240 kbytes
    define tapetype HP-DAT {
        comment "DAT tape drives"
        # data provided by Rob Browning <[email protected]>
        length 1930 mbytes
        filemark 111 kbytes
        speed 468 kbytes
    define tapetype DAT {
        comment "DAT tape drives"
        length 1000 mbytes          # these numbers are not accurate
        filemark 100 kbytes         # but you get the idea
        speed 100 kbytes
    define tapetype MIMSY-MEGATAPE {
        comment "Megatape (Exabyte based) drive through Emulex on Vax 8600"
        length 2200 mbytes
        filemark 2130 kbytes
        speed 170 kbytes            # limited by the Emulex bus interface, ugh
    # dumptypes
    # These are referred to by the disklist file.  The dumptype specifies
    # certain parameters for dumping including:
    #   auth        - authentication scheme to use between server and client.
    #                 Valid values are "bsd", "krb4", "krb5" and "ssh".
    #                 Default: [auth bsd]
    #   comment     - just a comment string
    #   comprate    - set default compression rate.  Should be followed by one or
    #                 two numbers, optionally separated by a comma.  The 1st is
    #                 the full compression rate; the 2nd is the incremental rate.
    #                 If the second is omitted, it is assumed equal to the first.
    #                 The numbers represent the amount of the original file the
    #                 compressed file is expected to take up.
    #                 Default: [comprate 0.50, 0.50]
    #   compress    - specify compression of the backed up data.  Valid values are:
    #                 "none"        - don't compress the dump output.
    #                 "client best" - compress on the client using the best (and
    #                                 probably slowest) algorithm.
    #                 "client fast" - compress on the client using fast algorithm.
    #                 "client custom" - compress using your custom client compression program.
    #                                   use client_custom_compress "PROG" to specify
    #                                   the custom compression program.
    #                                   PROG must not contain white space.
    #                 "server best" - compress on the tape host using the best (and
    #                                 probably slowest) algorithm.
    #                 "server fast" - compress on the tape host using a fast
    #                                 algorithm.  This may be useful when a fast
    #                                 tape host is backing up slow clients.
    #                 "server custom" - compress using your server custom compression program.
    #                                   use server_custom_compress "PROG" to specify
    #                                   the custom compression program.
    #                                   PROG must not contain white space.
    #                 Default: [compress client fast]
    #   dumpcycle   - set the number of days in the dump cycle, ie, set how often a
    #                 full dump should be performed.  Default: from DUMPCYCLE above
    #   estimate      Determine the way AMANDA does it's estimate.
    #                 "client"      - Use the same program as the dumping program,
    #                               this is the most accurate way to do estimates,
    #                               but it can take a long time.
    #                 "calcsize"    - Use a faster program to do estimates, but the
    #                               result is less accurate.
    #                 "server"      - Use only statistics from the previous run to
    #                               give an estimate,
    #                               it takes only a few seconds but the result is not
    #                               accurate if your disk usage changes from day to day.
    #                 Default: [client]
    #   encrypt  - specify encryption of the backed up data. Valid values are:
    #                 "none"   - don't encrypt the dump output.
    #                 "client" - encrypt on the client using the program specified by
    #                            client_encrypt "PROG".
    #                            Use client_decrypt_option to specify the decrypt-
    #                            parameter, default is "-d".
    #                            PROG and decrypt-parameter must not contain white space.
    #                 "server" - encrypt on the server using the program specified by
    #                            server_encrypt "PROG".
    #                            Use server_decrypt_option to specify the decrypt-
    #                            parameter, default is "-d".
    #                            PROG and decrypt-parameter must not contain white space.
    #                 Default: [none]
    #   exclude     - specify files and directories to be excluded from the dump.
    #                 Useful with gnutar only; silently ignored by dump and samba.
    #                 Valid values are:
    #                 "pattern"       - a shell glob pattern defining which files
    #                                   to exclude.
    #                                   gnutar gets --exclude="pattern"
    #                 list "filename" - a file (on the client!) containing patterns
    #                                   re's (1 per line) defining which files to
    #                                   exclude.
    #                                   gnutar gets --exclude-from="filename"
    #                 Note that the `full pathname' of a file within its
    #                 filesystem starts with `./', because of the way amanda runs
    #                 gnutar: `tar -C $mountpoint -cf - --lots-of-options .' (note
    #                 the final dot!)  Thus, if you're backing up `/usr' with a
    #                 diskfile entry like ``host /usr gnutar-root', but you don't
    #                 want to backup /usr/tmp, your exclude list should contain
    #                 the pattern `./tmp', as this is relative to the `/usr' above.
    #                 Please refer to the man-page of gnutar for more information.
    #                 If a relative pathname is specified as the exclude list,
    #                 it is searched from within the directory that is
    #                 going to be backed up.
    #                 Default: include all files
    #   holdingdisk - should the holding disk be used for this dump.  Useful for
    #                 dumping the holding disk itself.  Default: [holdingdisk auto]
    #                 "never"    - Never use the holding disk.
    #                 "auto"     - Use the holding disk if possible.
    #                 "required" - Always use the holding disk.
    #   ignore      - do not back this filesystem up.  Useful for sharing a single
    #                 disklist in several configurations.
    #   index       - keep an index of the files backed up.  Default: [index no]
    #   kencrypt    - encrypt the data stream between the client and server.
    #                 Default: [kencrypt no]
    #   maxdumps    - max number of concurrent dumps to run on the client.
    #                 Default: [maxdumps 1]
    #   maxpromoteday - max number of day for a promotion, set it 0 if you don't
    #                 want promotion, set it to 1 or 2 if your disk get
    #                 overpromoted.
    #                 Default: [10000]
    #   priority    - priority level of the dump.  Valid levels are "low", "medium"
    #                 or "high".  These are really only used when Amanda has no
    #                 tape to write to because of some error.  In that "degraded
    #                 mode", as many incrementals as will fit on the holding disk
    #                 are done, higher priority first, to insure the important
    #                 disks are at least dumped.  Default: [priority medium]
    #   program     - specify the dump system to use.  Valid values are "DUMP",
    #                 or "GNUTAR".  Default: [program "DUMP"].
    #   record      - record the backup in the time-stamp-database of the backup
    #                 program (e.g. /etc/dumpdates for DUMP or
    #                 /usr/local/var/amanda/gnutar-lists for GNUTAR.).
    #                 Default: [record yes]
    #   skip-full   - skip the disk when a level 0 is due, to allow full backups
    #                 outside Amanda, eg when the machine is in single-user mode.
    #   skip-incr   - skip the disk when the level 0 is NOT due.  This is used in
    #                 archive configurations, where only full dumps are done and
    #                 the tapes saved.
    #   starttime   - delay the start of the dump?  Default: no delay
    #   strategy    - set the dump strategy.  Valid strategies are currently:
    #                 "standard" - the standard one.
    #                 "nofull"   - do level 1 dumps every time.  This can be used,
    #                              for example, for small root filesystems that
    #                              only change slightly relative to a site-wide
    #                              prototype.  Amanda then backs up just the
    #                              changes.
    #                 "noinc"    - do level 0 dumps every time.
    #                 "skip"     - skip all dumps.  Useful for sharing a single
    #                              disklist in several configurations.
    #                 "incronly" - do only incremental dumps. This is similar
    #                              to strategy 'nofull', but will increase
    #                              the dump level as usual. Full dumps will
    #                              only be performed when an 'amadmin force'
    #                              has been issued
    #                 Default: [strategy standard]
    # tape_splitsize - (optional) split dump file into pieces of a specified size.
    #                 This allows dumps to be spread across multiple tapes, and can
    #                 potentially make more efficient use of tape space.  Note that
    #                 if this value is too large (more than half the size of the
    #                 average dump being split), substantial tape space can be
    #                 wasted.  If too small, large dumps will be split into
    #                 innumerable tiny dumpfiles, adding to restoration complexity.
    #                 A good rule of thumb, usually, is 1/10 of the size of your
    #                 tape.  Default: [disabled]
    # split_diskbuffer - (optional) When dumping a split dump  in  PORT-WRITE
    #                 mode (usually meaning "no holding disk"), buffer the split
    #                 chunks to a file in the directory specified by this option.
    #                 Default: [none]
    # fallback_splitsize - (optional) When dumping a split dump  in  PORT-WRITE
    #                 mode, if no split_diskbuffer is specified (or if we somehow
    #                 fail to use our split_diskbuffer), we must buffer split
    #                 chunks in memory.  This specifies the maximum size split
    #                 chunks can be in this scenario, and thus the maximum amount
    #                 of memory consumed for in-memory splitting.  Default: [10m]
    # Note that you may specify previously defined dumptypes as a shorthand way of
    # defining parameters.
    define dumptype global {
        comment "Global definitions"
        # This is quite useful for setting global parameters, so you don't have
        # to type them everywhere.  All dumptype definitions in this sample file
        # do include these definitions, either directly or indirectly.
        # There's nothing special about the name `global'; if you create any
        # dumptype that does not contain the word `global' or the name of any
        # other dumptype that contains it, these definitions won't apply.
        # Note that these definitions may be overridden in other
        # dumptypes, if the redefinitions appear *after* the `global'
        # dumptype name.
        # You may want to use this for globally enabling or disabling
        # indexing, recording, etc.  Some examples:
        # index yes
        # record no
        # split_diskbuffer "/raid/amanda"
        # fallback_splitsize 64m
    define dumptype always-full {
        global
        comment "Full dump of this filesystem always"
        compress none
        priority high
        dumpcycle 0
    # Dumptypes for gnutar
    define dumptype root-tar {
        global
        program "GNUTAR"
        comment "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          

    Auntbeee4 wrote:
    I just bought the LG ALLY and would love to have the Accuweather widget on the phone. My problem is while my phone shows the correct time, (I am on Eastern here, but about 15 miles away in Illinois they are on Central) the Accuweather Widget is off by an hour showing Central time. I tried to sync it, but I can't find it in my list of sync-able programs. If someone can help it would be greatly appreciated. It's frustrating both me and a co-worker with the same phone/problem.
    Thank you!
    Amanda
    I have the same issue, Amanda. The weather widget that comes with the Ally was poorly written. The time issue is bad enough, but it takes up more screen space than is visible. Try it, if you touch and hold on the space below the widget, it will select it. This also means you can't add widgets or icons directly below it, resulting in a great deal of wasted space. 

  • Problems with Photoshop Elements 11 freezing up

    I recently upgraded from Elements 9 to Elements 11. Now when I work in the Organizer or Editor the program frequently freezes up and then displays the message "program not responding". If I wait long enough - several minutes - it begins to run again. I never had this problem with Elements 9

    My primary disk when i open elements 11 for all the time working, mouse cursor lagging and swaping. All my operation on Photoshop Elements is not instantly.
    I install yesterday fresh Windows 7 with all updates of corse. Problem persist.
    This is my log from PSE:
    Wersja Adobe Photoshop Elements: 11.0 (11.0 (20120922.r.32287)) x32
    System operacyjny: Windows 7 64 bity
    Wersja: 6.1 Service Pack 1
    Architektura systemu: Intel rodzina CPU:6, Model:10, Stopień:5 z MMX Liczba całkowita SSE, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2
    Fizyczny licznik procesora: 8
    Szybkość procesora: 2672 MHz
    Wbudowana pamięć: 12279 MB
    Wolna pamięć: 8991 MB
    Pamięć dostępna dla programu Photoshop Elements: 3255 MB
    Pamięć używana przez program Photoshop Elements: 71 %
    Rozmiar płytki obrazu: 128K
    Poziomy pamięci podręcznej obrazu: 6
    Monitor: 2
    Granice ekranu:=  góra: 0, lewa strona: -1920, dół: 1080, prawa strona: 0
    Monitor: 1
    Granice ekranu:=  góra: 0, lewa strona: 0, dół: 1200, prawa strona: 1920
    Numer karty wideo: 1
    Karta wideo: NVIDIA GeForce GTX 570
    Wersja sterownika: 9.18.13.1106
    Data sterownika: 20130118000000.000000-000
    Sterownik karty wideo: nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Tryb wideo: 1920 x 1200 x 4294967296 colors
    Podpis karty wideo: NVIDIA GeForce GTX 570
    Pamięć karty wideo: 1280 MB
    Folder aplikacji: C:\Program Files (x86)\Adobe\Photoshop Elements 11\
    Tymczasowa ścieżka pliku: C:\Users\SOBTAI~1\AppData\Local\Temp\
    Magazyn programu Photoshop Elements ma we/wy asynchroniczne włączony
    Dyski magazynujące:
      C:\, 244,1G, 189,0G wolne
    Wymagany folder wtyczek: C:\Program Files (x86)\Adobe\Photoshop Elements 11\Required\
    Podstawowy folder wtyczek: C:\Program Files (x86)\Adobe\Photoshop Elements 11\Plug-Ins\
    Dodatkowy folder wtyczek: nie ustawiony
    Zainstalowane składniki:
       ACE.dll   ACE 2011/03/29-16:11:44   63.457850   63.457850
       adbeape.dll   Adobe APE 2011/01/17-12:03:36   64.452786   64.452786
       AdobeLinguistic.dll   Adobe Linguisitc Library   5.0.0  
       AdobeOwl.dll   Adobe Owl 2012/06/20-18:39:56   4.1.9   78.509892
       AdobeOwlCanvas.dll   Adobe Owl Canvas   3.0.68   61.2954
       AdobePDFL.dll   PDFL 2011/03/29-16:11:44   63.378681   63.378681
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1654  
       AdobeXMP.dll   Adobe XMP Core 2010/10/12-08:45:30   63.139439   63.139439
       AdobeXMPFiles.dll   Adobe XMP Files   5.0   61.134777
       adobe_caps.dll   Adobe CAPS   4,0,42,0  
       Adobe_OOBE_Launcher.dll   Adobe OOBE Launcher   2.2.0.4 (BuildVersion: 2.2; BuildDate: Wed Apr 27 2011 21:49:00)   1.000000
       AGM.dll   AGM 2011/03/29-16:11:44   63.457850   63.457850
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   1.486530
       aif_ogl.dll   AIF   3.0   1.486530
       amtlib.dll   AMTLib   4.2.0.4 (BuildVersion: 4.2; BuildDate: Wed Apr 27 2011 21:49:00)   1.000000
       amtservices.dll   AMTServices   4.2.0.4 (BuildVersion: 4.2; BuildDate: Wed Apr 27 2011 21:49:00)   1.000000
       ARE.dll   ARE 2011/03/29-16:11:44   63.457850   63.457850
       asneu.dll    AsnEndUser Dynamic Link Library   1, 7, 0, 1  
       AXE8SharedExpat.dll   AXE8SharedExpat   3.3   49.279053
       AXEDOMCore.dll   AXEDOMCore   3.3   49.279053
       AXSLE.dll   AXSLE   3.3   49.279053
       Bib.dll   BIB 2011/03/29-16:11:44   63.457850   63.457850
       BIBUtils.dll   BIBUtils 2011/03/29-16:11:44   63.457850   63.457850
       boost_threads.dll   DVA Product   5.0.0  
       cg.dll   NVIDIA Cg Runtime   2.0.0015  
       cgGL.dll   NVIDIA Cg Runtime   2.0.0015  
       CoolType.dll   CoolType 2011/03/29-16:11:44   63.457850   63.457850
       data_flow.dll   AIF   3.0   1.486530
       dvaadameve.dll   DVA Product   5.0.0  
       dvacore.dll   DVA Product   5.0.0  
       dvaui.dll   DVA Product   5.0.0  
       ems.dll   Elements Organizer   11.0  
       ExtendScript.dll   ExtendScript 2010/03/05-08:21:15   61.423205   61.423205
       FaceDetector.dll   FaceDetector 0000/00/00-00:00:00   2.0.1.1   2.0.1.1
       FileInfo.dll   Adobe XMP FileInfo   5.0   61.134777
       filter_graph.dll   AIF   3.0   1.486530
       hydra_filters.dll   AIF   3.0   1.486530
       icucnv36.dll   International Components for Unicode 2009/06/17-13:21:03    Build gtlib_main.9896  
       icudt36.dll   International Components for Unicode 2009/06/17-13:21:03    Build gtlib_main.9896  
       image_compiler.dll   AIF   3.0   1.486530
       image_flow.dll   AIF   3.0   1.486530
       image_runtime.dll   AIF   3.0   1.486530
       JP2KLib.dll   JP2KLib 2011/03/29-16:11:44   63.196876   63.196876
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2.1.2.1640  
       MPS.dll   MPS 2011/05/24-09:45:42   63.464027   63.464027
       MSVCP100.dll   Microsoft® Visual Studio® 2010   10.00.30319.1  
       MSVCP71.dll   Microsoft® Visual Studio .NET   7.10.3077.0  
       MSVCR100.dll   Microsoft® Visual Studio® 2010   10.00.30319.1  
       MSVCR71.dll   Microsoft® Visual Studio .NET   7.10.3052.4  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop Elements Editor   11.0  
       platform.DLL   Adobe Help System   1, 0, 0, 1  
       Plugin.dll   Adobe Photoshop Elements Editor   11.0  
       PSArt.dll   Adobe Photoshop Elements Editor   11.0  
       PSViews.dll   Adobe Photoshop Elements Editor   11.0  
       ScCore.dll   ScCore 2010/03/05-08:21:15   61.423205   61.423205
       shfolder.dll   Microsoft(R) Windows (R) 2000 Operating System   5.50.4027.300  
       Tbb.dll   Intel(R) Threading Building Blocks for Windows   2, 2, 2009, 1011  
       updaternotifications.dll   Adobe Updater Notifications Library   2.0.0.15 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   2.0.0.15
       WRServices.dll   WRServices Thursday January 21 2010 12:13:3   Build 0.11423   0.11423
    Wtyczki wymagane:
       ADM 3.11x01
       Akcentowanie krawędzi 12.0
       Akwarele 12.0
       Auto-podział 11.0.0.0 (11.0 (20120922.r.32287))
       Blask neonu 12.0
       Błyszczące krawędzie 12.0
       BMP 12.0.2
       Bryły 3D 12.0.2
       Bryzganie 12.0
       Camera Raw 7.4
       Chmury 12.0.2
       Chmury różnicowe 12.0.2
       Chrom 12.0
       Ciemne kreski 12.0
       Cienkopis 12.0
       CompuServe GIF 12.0.2
       Dodanie tekstury 12.0
       Efekty świetlne 12.0.4 (12.0.4x001)
       Fala 12.0.2
       Falowanie 12.0.2
       Filtr do kadrowania i prostowania zdjęć 12.0.2
       Filtr Pakiet obrazów 12.0.4 (12.0.4x001)
       Flara obiektywu 12.0.2
       Foliowanie 12.0
       Fresk 12.0
       Gąbka 12.0
       Galeria filtrów 12.0
       Inteligentne rozmycie 12.0.2
       Kolorowanie kredkami 12.0
       Komiks NO VERSION
       Kontury tuszem 12.0
       Korekta zniekształceń aparatu 12.0.2
       Kreda i węgiel 12.0
       Kreskowanie 12.0
       Krystalizacja 12.0.2
       Kserokopia 12.0
       Maźnięcia farbą 12.0
       Mezzotinta 12.0.2
       Mokry papier 12.0
       Morskie fale 12.0
       Napylone linie 12.0
       Obsługa skryptów 12.0.4
       Obsługa WIA 12.0.4 (12.0.4x001)
       Obsługa wieloprocesorowa 12.0.4 (12.0.4x001)
       Odczyt znaku wodnego 4.0
       Ołówek Conté 12.0
       OnEdge 1, 0, 0, 1
       Operacja Matlab 12.0.4 (12.0.4x001)
       Papier listowy 12.0
       Pastele 12.0
       Patchwork 12.0
       Pióro i tusz...  NO VERSION
       Pixar 12.0.4 (12.0.4x001)
       Płytki 12.0.2
       Płytki mozaiki 12.0
       PNG 12.0.2
       Pociągnięcia pod kątem 12.0
       Podkład 12.0
       Posteryzacja krawędzi 12.0
       Poszarpane krawędzie 12.0
       Powieść graficzna NO VERSION
       Przemieszczanie 12.0.2
       Punktylizacja 12.0.2
       Rastrowanie koloru 12.0.2
       Relief 12.0
       Rozmycie promieniste 12.0.2
       Rozmycie soczewkowe 12.0
       Ścinanie 12.0.2
       Ściśnięcie 12.0.2
       Sferyzacja 12.0.2
       Siatka pęknięć na filmie 12.0
       Skraplanie 12.0.1
       Smużenie 12.0
       Solaryzacja 12.0.2
       Spękalina 12.0
       Średnia 12.0.2
       Stempel 12.0
       Suchy pędzel 12.0
       Sumi-e 12.0
       Szkło 12.0
       Szpachla malarska 12.0
       Sztukateria 12.0
       TextureSelect 12.0.4 (12.0.4x001)
       Układy FastCore 12.0.4 (12.0.4x001)
       Układy MMXCore 12.0.4 (12.0.4x001)
       Wariacje koloru 12.0.4 (12.0.4x001)
       Węgiel drzewny 12.0
       Wiatr 12.0.2
       Wirówka 12.0.2
       Witraż 12.0
       Włókna 12.0.2
       Współrzędne biegunowe 12.0.2
       Współrzędne biegunowe 12.0.4 (12.0.4x001)
       Wycinanka 12.0
       Wypełnienie teksturą 12.0.4 (12.0.4x001)
       Wyprostuj i wykadruj obraz 12.0.4 (12.0.4x001)
       Wyprostuj obraz 12.0.4 (12.0.4x001)
       Wzór rastra 12.0
       Zapisz dla Internetu i urządzeń 12.0
       Ziarno 12.0
       Ziarno błony fotograficznej 12.0
       Zmiękczona poświata 12.0
       Zygzak 12.0.2
    Wtyczki opcjonalne i wtyczki innych firm:
       Klatka z wideo 6.0
       Moduł wyodrębniający 12.0.4 (12.0.4x001)
       PhotomergeUI 12.0.4 (12.0.4x001)
    Wtyczki, których wczytanie nie powiodło się: BRAK
    Zainstalowane urządzenia TWAIN: BRAK

  • Problems with Photoshop CS6 Recognizing Multiple Graphics Cards

    Hi,
    I have a quad monitor setup with two graphics cards with the latest drivers downloaded today and installed directly off of the manufacturer's websites:
    1) AMD Radeon R9 200 Series 4GB GDDR5
    2) NVIDIA GeForce GTX 460 1GB GDDR5
    I have Photoshop CS6 64-bit (along with the rest of the Adobe Design and Web Premium) installed on my computer - which I uninstalled and reinstalled today also - and it's claiming that it has detected an error with my display driver. The Graphics Processor Settings box in Preferences is greyed out, and I've used the shift+ctrl+alt to reset preferences and check again to no avail. I've also set both of my graphics cards to turn on OpenGL Triple Buffering and to let the 3D application decide the image settings. Here's my system info, where you can see that the GPU sniffer crashed and that no video card is detected:
    Adobe Photoshop Version: 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00) x64
    Operating System: Windows NT
    Version: 6.2
    System architecture: AMD CPU Family:15, Model:2, Stepping:0 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 4018 MHz
    Built-in memory: 16349 MB
    Free memory: 12120 MB
    Memory available to Photoshop: 14671 MB
    Memory used by Photoshop: 70 %
    Image tile size: 132K
    Image cache levels: 4
    Photoshop crashed on 12/5/2014 at 9:37:01 PM (GetImageViewResourceSharingGLContext)
    The GPU Sniffer crashed on 12/5/2014 at 10:47:20 PM
    Display: 4
    Display Bounds:=  top: 0, left: 1920, bottom: 1080, right: 3840
    Display: 3
    Display Bounds:=  top: -1080, left: 0, bottom: 0, right: 1920
    Display: 2
    Display Bounds:=  top: 0, left: 0, bottom: 1080, right: 1920
    Display: 1
    Display Bounds:=  top: -1080, left: 1920, bottom: 0, right: 3840
    No video card detected
    Serial number: 90148051671449209572
    Application folder: E:\Program Files (x86)\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\April\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Startup, 111.7G, 8.82G free
    Required Plug-ins folder: E:\Program Files (x86)\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\
    Primary Plug-ins folder: E:\Program Files (x86)\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2012/01/18-15:07:40   66.492997   66.492997
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOwl.dll   Adobe Owl 2012/02/09-16:00:02   4.0.93   66.496052
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1654  
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   6,0,29,0  
       AGM.dll   AGM 2012/01/18-15:07:40   66.492997   66.492997
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib (64 Bit)   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/01/18-15:07:40   66.492997   66.492997
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/01/18-15:07:40   66.492997   66.492997
       BIBUtils.dll   BIBUtils 2012/01/18-15:07:40   66.492997   66.492997
       boost_date_time.dll   DVA Product   6.0.0  
       boost_signals.dll   DVA Product   6.0.0  
       boost_system.dll   DVA Product   6.0.0  
       boost_threads.dll   DVA Product   6.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/01/18-15:07:40   66.492997   66.492997
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0  
       dvacore.dll   DVA Product   6.0.0  
       dvamarshal.dll   DVA Product   6.0.0  
       dvamediatypes.dll   DVA Product   6.0.0  
       dvaplayer.dll   DVA Product   6.0.0  
       dvatransport.dll   DVA Product   6.0.0  
       dvaunittesting.dll   DVA Product   6.0.0  
       dynamiclink.dll   DVA Product   6.0.0  
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2.1.2.1640  
       mediacoreif.dll   DVA Product   6.0.0  
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.8428  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.8428  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.8428  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS6   CS6  
       Plugin.dll   Adobe Photoshop CS6   CS6  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   3.0.0.383  
       PSArt.dll   Adobe Photoshop CS6   CS6  
       PSViews.dll   Adobe Photoshop CS6   CS6  
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
       wu3d.dll   U3D Writer   9.3.0.113  
    Required plug-ins:
       3D Studio 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       ADM 3.11x01
       Angled Strokes 13.0
       Average 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Bas Relief 13.0
       BMP 13.0
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Clouds 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Collada 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Dicom 13.0
       Difference Clouds 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Embed Watermark 4.0
       Entropy 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Extrude 13.0
       FastCore Routines 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Flash 3D 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Google Earth 4 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Kurtosis 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Maximum 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Mean 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Measurement Core 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Median 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Mezzotint 13.0
       Minimum 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       MMXCore Routines 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Photocopy 13.0
       Photoshop 3D Engine 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Picture Package Filter 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Pinch 13.0
       Pixar 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Range 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.0
       Shear 13.0
       Skewness 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Standard Deviation 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Sumi-e 13.0
       Summation 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Torn Edges 13.0
       Twirl 13.0
       U3D 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Underpainting 13.0
       Vanishing Point 13.0
       Variance 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Variations 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       Wavefront|OBJ 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       WIA Support 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Wind 13.0
       Wireless Bitmap 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       ZigZag 13.0
    Optional and third party plug-ins:
       Camera Raw 7.0
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE
    Please help!

    Yes Adobe states if you use more then one GPU adapter they should be the same else Photoshop may have problems. Photoshop CC and CC 2014 GPU FAQ
    Are you using more than one video card?
    Multiple video adapters can cause problems with GPU-accelerated or enabled features in Photoshop. It's best to connect two (or more) monitors into one video adapter. If you have to use more than one video adapter, make sure that they are the same make and model.
    Otherwise, crashes and other problems can occur in Photoshop.
    Note: Using more than one video adapter does not enhance Photoshop's performance.

  • Photoshop CS5.1 Crashes Upon Opening: "Photoshop has encountered a problem with the display driver-"

    Every time I try to open photoshop I get a window that pops up and says:
    "Photoshop has encountered a problem with the display driver, and has temporarily disabled GPU enhancements.  Check the video card manufacturer's website for the latest software.
    GPU enhancements can be enable in the Performance panel of Preferences."
    Then windows shuts the program down.  The details of the problem are:
    "Files that help describe the problem:
      C:\Users\Owner\AppData\Local\Temp\WER70AD.tmp.WERInternalMetadata.xml
      C:\Users\Owner\AppData\Local\Temp\WER9389.tmp.appcompat.txt
      C:\Users\Owner\AppData\Local\Temp\WER9407.tmp.hdmp"
    I'm on a custom Asus
    I'm using Win7 Home Premium 64-bit
    16GB RAM
    Nvidia Geforce GTX 560 2GB video card
    Intel i7 core 2.2 GHz
    12 GB of memory
    The error happens so quickly that I don't have time to do anything.  Please help.  >.<  I've been on hold for *checks phone* 2 hours exactly.  Wow.  It is a legit copy and was working last month with no trouble.  I've updated the drivers and tried a few solutions that have worked for other people that I found on Google (such as disabling CUDA and setting my "power management mode" to "prefer maximum performance" on my video card) but so far nothing has worked.
    Thanks in advance!

    It has stopped crashing because somehow it turned off "Enable GL Drawing" on its own because I could never even get a menu open.  Not sure how it did that but I am grateful.  I still get the error when I open Photoshop up but at least it hasn't crashed yet.  At the time when it was crashing I never would have been able to get you the system info due to the speed that it was crashing upon just opening the program.  In case you still need it:
    Adobe Photoshop Version: 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch]) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:10, Stepping:7 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2
    Physical processor count: 8
    Processor speed: 2394 MHz
    Built-in memory: 16361 MB
    Free memory: 13322 MB
    Memory available to Photoshop: 14694 MB
    Memory used by Photoshop: 60 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Disabled.
    OpenGL Drawing Mode: Basic
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: False.
    OpenGL Crash File: Detected.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: GeForce GTX 560M/PCIe/SSE2
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 1080, right: 1920
    Video Card Number: 1
    Video Card: NVIDIA GeForce GTX 560M
    Driver Version: 9.18.13.697
    Driver Date: 20121002000000.000000-000
    Video Card Driver: nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Video Mode: 1920 x 1080 x 4294967296 colors
    Video Card Caption: NVIDIA GeForce GTX 560M
    Video Card Memory: -2047 MB
    Serial number: 92628077745082451425
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS5.1 (64 Bit)\
    Temporary file path: C:\Users\Owner\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 931.4G, 511.4G free
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS5.1 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2010/12/13-23:37:10   64.449933   64.449933
       adbeape.dll   Adobe APE 2011/01/17-12:03:36   64.452786   64.452786
       AdobeLinguistic.dll   Adobe Linguisitc Library   5.0.0  
       AdobeOwl.dll   Adobe Owl 2010/06/03-13:43:23   3.0.93   61.433187
       AdobeOwlCanvas.dll   Adobe Owl Canvas   3.0.68   61.2954
       AdobePDFL.dll   PDFL 2010/12/13-23:37:10   64.341419   64.341419
       AdobePIP.dll   Adobe Product Improvement Program   5.5.0.1265  
       AdobeXMP.dll   Adobe XMP Core   5.0   64.140949
       AdobeXMPFiles.dll   Adobe XMP Files   5.0   64.140949
       AdobeXMPScript.dll   Adobe XMP Script   5.0   64.140949
       adobe_caps.dll   Adobe CAPS   4,0,42,0  
       adobe_OOBE_Launcher.dll   Adobe OOBE Launcher   2.0.0.36 (BuildVersion: 2.0; BuildDate: Mon Jan 24 2011 21:49:00)   1.000000
       AFlame.dll   AFlame 2011/01/10-23:33:35   64.444140   64.444140
       AFlamingo.dll   AFlamingo 2011/01/10-23:33:35   64.436825   64.436825
       AGM.dll   AGM 2010/12/13-23:37:10   64.449933   64.449933
       ahclient.dll    AdobeHelp Dynamic Link Library   1,6,0,20  
       aif_core.dll   AIF   2.0   53.422628
       aif_ogl.dll   AIF   2.0   53.422628
       amtlib.dll   AMTLib (64 Bit)   4.0.0.21 (BuildVersion: 4.0; BuildDate: Mon Jan 24 2011 21:49:00)   1.000000
       amtservices.dll   AMTServices (64 Bit)   4.0.0.21 (BuildVersion: 4.0; BuildDate: Mon Jan 24 2011 21:49:00)   1.000000
       ARE.dll   ARE 2010/12/13-23:37:10   64.449933   64.449933
       asneu.dll    AsnEndUser Dynamic Link Library   1, 7, 0, 1  
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/01/10-23:33:35   64.436825   64.436825
       AXEDOMCore.dll   AXEDOMCore 2011/01/10-23:33:35   64.436825   64.436825
       Bib.dll   BIB 2010/12/13-23:37:10   64.449933   64.449933
       BIBUtils.dll   BIBUtils 2010/12/13-23:37:10   64.449933   64.449933
       boost_threads.dll   DVA Product   5.0.0  
       cg.dll   NVIDIA Cg Runtime   2.0.0015  
       cgGL.dll   NVIDIA Cg Runtime   2.0.0015  
       CoolType.dll   CoolType 2010/12/13-23:37:10   64.449933   64.449933
       data_flow.dll   AIF   2.0   53.422628
       dvaadameve.dll   DVA Product   5.0.0  
       dvacore.dll   DVA Product   5.0.0  
       dvaui.dll   DVA Product   5.0.0  
       ExtendScript.dll   ExtendScript 2011/01/17-17:14:10   61.452840   61.452840
       FileInfo.dll   Adobe XMP FileInfo   5.0   64.140949
       icucnv36.dll   International Components for Unicode 2009/06/17-13:21:03    Build gtlib_main.9896  
       icudt36.dll   International Components for Unicode 2009/06/17-13:21:03    Build gtlib_main.9896  
       image_flow.dll   AIF   2.0   53.422628
       image_runtime.dll   AIF   2.0   53.422628
       JP2KLib.dll   JP2KLib 2010/12/13-23:37:10   64.181312   64.181312
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2.1.2.1263  
       MPS.dll   MPS 2010/12/13-23:37:10   64.450375   64.450375
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.4940  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.4940  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.4940  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS5.1   CS5.1  
       Plugin.dll   Adobe Photoshop CS5   CS5  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   2.5.0.232  
       PSArt.dll   Adobe Photoshop CS5.1   CS5.1  
       PSViews.dll   Adobe Photoshop CS5.1   CS5.1  
       SCCore.dll   ScCore 2011/01/17-17:14:10   61.452840   61.452840
       tbb.dll   Threading Building Blocks   2, 1, 2009, 0201  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   2.0.0.15 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   2.0.0.15
       WRServices.dll   WRServices Thursday January 21 2010 12:13:3   Build 0.11423   0.11423
       wu3d.dll   U3D Writer   9.3.0.113  
    Installed plug-ins:
       3D Studio 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Accented Edges 12.0
       ADM 3.11x01
       Angled Strokes 12.0
       Average 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Bas Relief 12.0
       BMP 12.0.2
       Camera Raw 6.7
       Chalk & Charcoal 12.0
       Charcoal 12.0
       Chrome 12.0
       Cineon 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Clouds 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Collada 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Color Halftone 12.0.2
       Colored Pencil 12.0
       CompuServe GIF 12.0.2
       Conté Crayon 12.0
       Craquelure 12.0
       Crop and Straighten Photos 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Crop and Straighten Photos Filter 12.0.2
       Crosshatch 12.0
       Crystallize 12.0.2
       Cutout 12.0
       Dark Strokes 12.0
       De-Interlace 12.0.2
       Dicom 12.0
       Difference Clouds 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Diffuse Glow 12.0
       Displace 12.0.2
       Dry Brush 12.0
       Eazel Acquire 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Embed Watermark 4.0
       Entropy 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Extrude 12.0.2
       FastCore Routines 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Fibers 12.0.2
       Film Grain 12.0
       Filter Gallery 12.0
       Fresco 12.0
       Glass 12.0
       Glowing Edges 12.0
       Google Earth 4 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Grain 12.0
       Graphic Pen 12.0
       Halftone Pattern 12.0
       HDRMergeUI 12.0
       IFF Format 12.0.2
       Ink Outlines 12.0
       JPEG 2000 2.0
       Kurtosis 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Lens Blur 12.0
       Lens Correction 12.0.2
       Lens Flare 12.0.2
       Lighting Effects 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Liquify 12.0.1
       Matlab Operation 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Maximum 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Mean 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Measurement Core 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Median 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Mezzotint 12.0.2
       Minimum 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       MMXCore Routines 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Mosaic Tiles 12.0
       Multiprocessor Support 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Neon Glow 12.0
       Note Paper 12.0
       NTSC Colors 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Ocean Ripple 12.0
       OpenEXR 12.0.2
       Paint Daubs 12.0
       Palette Knife 12.0
       Patchwork 12.0
       Paths to Illustrator 12.0.2
       PCX 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Photocopy 12.0
       Photoshop 3D Engine 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Picture Package Filter 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Pinch 12.0.2
       Pixar 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Plaster 12.0
       Plastic Wrap 12.0
       PNG 12.0.2
       Pointillize 12.0.2
       Polar Coordinates 12.0.2
       Portable Bit Map 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Poster Edges 12.0
       Radial Blur 12.0.2
       Radiance 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Range 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Read Watermark 4.0
       Reticulation 12.0
       Ripple 12.0.2
       Rough Pastels 12.0
       Save for Web & Devices 12.0
       ScriptingSupport 12.1
       Shear 12.0.2
       Skewness 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Smart Blur 12.0.2
       Smudge Stick 12.0
       Solarize 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Spatter 12.0
       Spherize 12.0.2
       Sponge 12.0
       Sprayed Strokes 12.0
       Stained Glass 12.0
       Stamp 12.0
       Standard Deviation 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Sumi-e 12.0
       Summation 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Targa 12.0.2
       Texturizer 12.0
       Tiles 12.0.2
       Torn Edges 12.0
       Twirl 12.0.2
       U3D 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Underpainting 12.0
       Vanishing Point 12.0
       Variance 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Variations 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Water Paper 12.0
       Watercolor 12.0
       Wave 12.0.2
       Wavefront|OBJ 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       WIA Support 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Wind 12.0.2
       Wireless Bitmap 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       ZigZag 12.0.2
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
       Access CS Live
       CS Review
    Installed TWAIN devices: NONE

  • Problem with a particular site

    Why won't this thing (Jetpack 5510L) get into this site?
    http://www.prepar3d.com/forum-5
    This is the Lockheed Martin flight simulator site, it just takes forever to resolve the connection (if it ever does at all) and it's like molasses in January loading the pages once it does. Why? I don't have this problem with other sites?
    Thanks,
    Jim

    I appreciate your replies guys. I tried the network-tools site and it blew right in instantly with a tracert of 9 hops. I then popped open a command window and ran a tracert from my own machine through the hotspot and it took 19 hops. What I noticed is that all the IPs are different when I run the tracert from the hotspot, look here:
    Tracert run from network-tools site:
    74.208.153.51 is from United States(US) in region North America
    TraceRoute from Network-Tools.com to 74.208.153.51 [www.prepar3d.com]
    Hop    (ms)    (ms)    (ms)            IP Address    Host name
    1      0      0      0          206.123.64.46      -
    2      1      0      0          173.219.246.92    173-219-246-92-link.sta.suddenlink.net
    3      0      1      2          173.219.230.155    173-219-230-155-link.sta.suddenlink.net
    4      0      0      0          206.223.118.141    eqix-da1.1and1internet.com
    5      11      12      11          74.208.1.77    te-4-4.bb-c.ms.mkc.us.oneandone.net
    6      13      12      12          74.208.6.106    ae-10.bb-c.slr.lxa.us.oneandone.net
    7      12      12      12          74.208.1.117    ae-11.gw-distp-a.slr.lxa.us.oneandone.net
    8      12      12      12          74.208.1.176    ae-1.gw-prtr-r4-1a.slr.lxa.us.oneandone.net
    9      12      12      12          74.208.153.51    prepar3d.com
    Trace complete
    Tracert run from my machine:
    Tracing route to www.prepar3d.com [2607:f1c0:83f:4500::1d:e9eb]
    over a maximum of 30 hops:
      1    4 ms    3 ms    1 ms  2600:100f:b115:c160:8940:ac96:b405:1e55
      2    83 ms    81 ms    81 ms  2600:100f:b115:c160:0:3a:3bd2:6140
      3    81 ms    81 ms  109 ms  2600:100f:b115:c160:528:200::
      4    90 ms    79 ms    81 ms  2600:100f:b115:c160:528:200::
      5    *        *        *    Request timed out.
      6    85 ms  105 ms    92 ms  2001:4888:52:2010:528:2a1:0:1
      7    89 ms    97 ms    88 ms  2001:4888:52:200e:528:25::
      8    82 ms    85 ms    83 ms  2001:4888:52:2000:528:2a1::
      9  115 ms    86 ms    88 ms  2001:4888:52:2005:528:1::
    10    98 ms    83 ms    95 ms  2001:4888:52:2005:528:1::
    11    83 ms    86 ms    85 ms  2001:4888:52:1001:528:24::
    12    87 ms    88 ms    81 ms  2600:808:42f::1
    13    88 ms    89 ms  104 ms  2600:808::e
    14  101 ms    99 ms    97 ms  2001:450:2008:100::101
    15  155 ms  134 ms  139 ms  2001:450:2002:c6::2
    16  149 ms  144 ms  144 ms  ae-10.bb-c.slr.lxa.us.oneandone.net [2607:f1c0:0:2::1d]
    17  146 ms  148 ms  141 ms  ae-11.gw-distp-a.slr.lxa.us.oneandone.net [2607:f1c0:0:5::d]
    18  142 ms  139 ms  139 ms  ae-1.gw-prtr-r4-1a.slr.lxa.us.oneandone.net [2607:f1c0:0:10::86:a]
    19  156 ms  151 ms  154 ms  2607:f1c0:83f:4500::1d:e9eb
    Trace complete.
    ...so then I did a tracert from my machine on another site I visit often and typically don't have issues with, notice the IPs look normal:
    Tracing route to fsdeveloper.com [185.24.223.227]
    over a maximum of 30 hops:
      1    *        2 ms    1 ms  my.jetpack [192.168.1.1]
      2  429 ms    78 ms    88 ms  196.sub-66-174-25.myvzw.com [66.174.25.196]
      3    80 ms    80 ms    80 ms  66.sub-69-83-159.myvzw.com [69.83.159.66]
      4    81 ms    98 ms  100 ms  113.sub-69-83-158.myvzw.com [69.83.158.113]
      5    84 ms    86 ms  101 ms  49.sub-69-83-158.myvzw.com [69.83.158.49]
      6    89 ms    86 ms    86 ms  34.sub-69-83-159.myvzw.com [69.83.159.34]
      7    92 ms  101 ms    87 ms  4.sub-69-83-144.myvzw.com [69.83.144.4]
      8    *        *        *    Request timed out.
      9    88 ms    80 ms    94 ms  129.sub-66-174-24.myvzw.com [66.174.24.129]
    10    88 ms    87 ms    87 ms  TenGigE0-0-1-0.GW4.POR3.ALTER.NET [157.130.183.193]
    11    86 ms    88 ms    85 ms  0.ge-4-1-0.XL4.SEA1.ALTER.NET [140.222.228.147]
    12    89 ms    88 ms    96 ms  0.xe-11-2-0.GW2.SEA1.ALTER.NET [152.63.105.202]
    13  101 ms  121 ms    97 ms  teliasonera-gw.customer.alter.net [157.130.180.62]
    14  132 ms  137 ms  136 ms  chi-bb1-link.telia.net [62.115.137.84]
    15  170 ms  171 ms  172 ms  nyk-bb2-link.telia.net [213.155.131.242]
    16  230 ms  229 ms  229 ms  ldn-bb2-link.telia.net [213.155.135.70]
    17  249 ms  244 ms  244 ms  adm-bb4-link.telia.net [213.155.136.79]
    18  262 ms  236 ms  236 ms  adm-b3-link.telia.net [213.155.135.35]
    19  232 ms  232 ms  234 ms  hlm1-bfr1-as1299.tilaa.net [62.115.42.158]
    20  238 ms  238 ms  236 ms  hlm1-cr1-v1032.tilaa.net [164.138.24.33]
    21  218 ms  233 ms  239 ms  hlm1-pod9-vc9-v1054.tilaa.net [164.138.24.55]
    22  251 ms  342 ms  241 ms  vps-8048-2348.cloud.tilaa.com [185.24.223.227]
    Trace complete.
    So I'm assuming the difference in those IPs are the problem, what is that about and why does the hotspot mask the IPs like that where the network-tools site doesn't? I guess given that Lockheed Martin is the world's largest defense contractor and it's probably vital to national security that their site be secure it would stand to reason that they might be using security techniques that most sites don't use. I spend a lot of time on flight simulator forums (I am an FS developer and also on the beta team for the Prepar3D sim) and someone usually throws up a post about it somewhere whenever there's a problem with one of the major FS sites. Avsim.net for example is always flakey and there are usually 2 or 3 threads a month on the various forums where someone is complaining about it. I can't remember ever seeing a thread about the Prepar3D site so I can only assume I'm the only one who has problems with it. Further it seems like once I finally get in I can usually surf around the forum without much trouble, it's like once the initial connection has finally broken through then data is allowed to flow almost normally.
    I tried disabling IPv6 although I'm not sure if I did it right, I found it under Settings > LAN in the jetpack admin page. Is that the right setting? It rebooted the hotspot when I unticked the box but it didn't seem to change anything with regard to getting into the Prepar3D site so I put it back. Maybe I changed the wrong setting?
    BTW I usually run the hotspot in "EDVO only" mode since it just seems to work better than "Automatic (4G LTE, CDMA) which was the default. Where I live I've seen 4G service only two or three times in the 3 years I've been on Verizon, those were all back when I was using the Samsung SCH-LC11 hotspot, I've never seen 4G (here) with this MiFi unit. I don't really have a problem with that as it's not advertised as a 4G service area according to the coverage map and in general the MiFi device has been quite a bit more reliable than the Samsung was. I have had the MiFi connected to my sister's laptop in town 5 blocks from the cell tower and seen 4G downloads at 3 MB/sec.
    Thanks again for your replies.
    Jim

  • [SOLVED] kde 4.6 and Udisks mounting problems with Dolphin

    Hello,
    I have a problem with Dolphin in KDE 4.6 where it displays my non-Arch partitions (a / and /home used for Opensuse) as well as a CD-Rom or usb if inserted, but registers an error when I click on the device/partition icon. Specifically, I get the following error displayed at the bottom of Dolphin:
    An error occurred while accessing Hard Drive, the system responded: org.freedesktop.UDisks.Error.Failed: Error creating mount point: No such file or directory.
    Because of this error, I am unable to mount usb pendrives, access CDs, or access the non-Arch partitions. I'm not sure if this is a KDE error or if it related to Arch as I never encountered this error running KDE 4.6 in Opensuse.
    My daemons running in /etc/rc.conf
    DAEMONS=(syslog-ng dbus networkmanager netfs crond alsa kdm)
    My /etc/fstab
    #/dev/cdrom             /media/cd   auto    ro,user,noauto,unhide   0      0
    #/dev/dvd               /media/dvd  auto    ro,user,noauto,unhide   0      0
    #/dev/fd0               /media/fl   auto    user,noauto             0      0
    /dev/sda1 / ext4 defaults,noatime 0 1
    /dev/sda5 swap swap defaults 0 0
    /dev/sda6 /home ext4 defaults,noatime 0 1
    tmpfs   /tmp            tmpfs defaults,nodev,nosuid,mode=1777                   0 0
    tmpfs   /var/lock       tmpfs defaults,nodev,nosuid,noexec,mode=1777,size=10M   0 0
    tmpfs   /var/run        tmpfs defaults,nodev,nosuid,noexec,mode=0755,size=10M   0 0
    Now, I don't have hal running as a daemon as I have read that it is no longer needed in KDE 4.6. Similarly, I don't have my CD-Rom drive mounted as I read in the udev wiki that Udisks automatically mounts devices and partitions. The wiki also indicates that Udisks is supposed to require little configuration.
    I've searched the forum and Google, and I have not been able to find any information documenting a Dolphin and UDisks mounting error in KDE 4.6.
    I installed KDE through the # pacman -S kde    command, but is there some other package that I need to install in order to get Udisks working properly?
    Thanks.
    Last edited by Bordee (2011-03-24 16:09:25)

    When I enter   $ groups in a terminal I get the following
    sys adm disk lp wheel games video audio optical storage power users
    So I'm definitely part of the storage group.
    I think I found a solution. I created a /data mountpoint in fstab and a /data folder in my root directory. Now, I'm able to mount and access the contents of the /home partition from Opensuse. The reason I wanted to do this was to access music and photos and transfer them onto my Arch /home partition.
    I uncommented the cdrom, dvd, and fd0 devices in fstab and I created /media/cd, /media/dvd, and /media/fl. After inputting a # mount -a, my CDROM drive reads properly as does my USB.
    So once again, thank, you for pointing me in the right direction.
    One final thought. I was under the impression from reading the UDisks information that it automatically detected and mounted other partitions and devices without them being explicitly mounted in fstab. Was the assumption wrong? In other words, for UDisks and Dolphin to work together properly in KDE 4.6, do all of the devices that appear have to first be mounted in fstab?

  • Problem with starting JSPM

    Hi all,
    I have a problem with starting JSPM. We have just upgraded to SAP NWS 2004s SP11 SR2. We are in AIX server. So to execute JSPM, I log on to AIX server using PUTTy with <SID>adm. I go to /usr/sap/<SID>/DVEBMGS00/j2ee/JSPM and i execute the "go" program. But I have the following thing :
    Current log directory is /usr/sap/OWA/DVEBMGS00/j2ee/JSPM/log/log_2007_04_25_14_54_53.
    Waiting for SDTServer to connect on hostname froafbwod1/10.8.134.129 socket 6240 ...
    So what happend, I don't understand anything...Pls, someone can help me?
    Thanks for your reply...

    Hi,
    Hope this helps you - http://help.sap.com/saphelp_nw04s/helpdata/en/42/e7e7cb64ac3ee4e10000000a1553f7/content.htm
    JSPM: Better Know It Now Than Later
    JSPM does not start
    JSPM DIR_EPS_ROOT error during the execution of the JSPM_PROCESS phase
    Bye...

  • Problem with Color conversion ADM_Color to  AI_Color

    Hello friends,
    I think this is going to be the first post in this "Illustrator SDK Forum".
    I am having problem with 'Setting Art Work Colors'.
    I am trying to get the color value from the user through a ADM dialogue window, using the function
    sADMBasic->ChooseColor();
    The function is returning color in
    ADMRGBColor structure, whose members (
    red, green, blue) are of the type
    'short'.
    Now, I want to print a rectangular box art filled with that 'user selected color'.
    But the color I have with me is in the
    ADMRGBColor(each member of type 'short') and to draw that on a illustrator file, I need the type
    'AIThreeColrStyle'(each member is of the type AIReal).
    I had no idea how to convert
    ADMRGBColor to
    AIThreeColorStyle, but after lots of 'trial and errors', I arrived at this 'crude' solution.
    ADMRGBColor value was in the range
    0-65535 and
    AIThreeColorStyle was in the range
    0-1
    aiPathStyle.fill.color.c.rgb.red = ((float)admColor.red)/65535;
    This conversion was working fine on Windows, but on Mac its giving weird results. Can some one tell me the proper solution for this conversion problem?
    Thanking you,
    Vijoy~
    And thank you Adobe for givig us this "Illustrator SDK Forum".
    Forums Operations "Why there is no SDK forum for Illustrator?" 12/13/04 4:21pm

    The code above seems to work for me. I get the proper values in the rgb fields of the AIPathStyle struct. Are you sure you are filling in the remaining values in the struct (like fillPaint, overprint, etc.) with appropriate values?
    Hope that helps,
    -Frank

  • I am using Adobe Suite CS4 and have had no problems with it until today. InDesign, Photoshop and Illustrator keep crashing!! I've uninstalled and reinstalled to no avail. I've also cleared the cache. Help!

    I am using Adobe Suite CS4 and have had no problems with it until today. InDesign, Photoshop and Illustrator keep crashing!! I've uninstalled and reinstalled to no avail. I've also cleared the cache. Help!

    Ok, thanks for your help. I believe I pasted all the info from your answer. Since Photoshop and inDesign are crashing as well, will you need that too?
    May  8 16:04:41 iMac com.apple.launchd.peruser.501[126] ([0x0-0x4d04d].com.adobe.illustrator[493]): Job appears to have crashed: Segmentation fault: 11
    May  8 16:04:42 iMac ReportCrash[496]: Saved crash report for Adobe Illustrator[493] version 367 (14.0.0) to /Users//Library/Logs/DiagnosticReports/Adobe Illustrator_2014-05-08-160442_-iMac.crash
    May  8 16:04:42 -iMac ReportCrash[496]: Removing excessive log: file://localhost/Users/xxxxxx/Library/Logs/DiagnosticReports/Adobe%20Illustrato r_2014-05-06-152657_-iMac.crash
    Process:         Adobe Illustrator [273]
    Path:            /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier:      com.adobe.illustrator
    Version:         367 (14.0.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [131]
    Date/Time:       2014-05-06 15:29:44.038 -0700
    OS Version:      Mac OS X 10.7.5 (11G63b)
    Report Version:  9
    Interval Since Last Report:          353 sec
    Crashes Since Last Report:           6
    Per-App Interval Since Last Report:  11182846 sec
    Per-App Crashes Since Last Report:   7
    Anonymous UUID:                     
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000ffffff5a
    VM Regions Near 0xffffff5a:
    --> shared memory          00000000ffff0000-00000000ffff2000 [    8K] r-x/r-x SM=SHM 
    Application Specific Information:
    objc[273]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   AdobePDFL                               0x024104cd ASrealloc + 737
    1   AdobePDFL                               0x0236f588 CosDocEnumEOFs + 27326
    2   AdobePDFL                               0x0236d907 CosDocEnumEOFs + 20029
    3   AdobePDFL                               0x0236fd46 CosDocEnumEOFs + 29308
    4   AdobePDFL                               0x0227d782 ASTextIsEmpty + 1146
    5   AdobePDFL                               0x0212779f PDFontPSFlushIncrGlyphList + 65853
    6   AdobePDFL                               0x02127966 PDFontPSFlushIncrGlyphList + 66308
    7   AdobePDFL                               0x02129f93 PDFontPSFlushIncrGlyphList + 76081
    8   AdobePDFL                               0x0212cae6 PDFontPSFlushIncrGlyphList + 87172
    9   AdobePDFL                               0x02111b26 PDFLPrintDoc + 6322
    10  AdobePDFL                               0x021dccac PDSetHostEncoding + 2412
    11  AdobePDFL                               0x021dce02 PDSetHostEncoding + 2754
    12  AdobePDFL                               0x02114eba PDFLInitFriends + 2122
    13  AdobePDFL                               0x021149c8 PDFLInitFriends + 856
    14  com.adobe.illustrator.plugins.PDF Suite          0x16884096 PluginMain + 163654
    15  com.adobe.illustrator.plugins.PDF Suite          0x16883b61 PluginMain + 162321
    16  com.adobe.illustrator.plugins.PDF Suite          0x168840f2 PluginMain + 163746
    17  com.adobe.illustrator.plugins.PDF Suite          0x16862872 PluginMain + 26402
    18  com.adobe.illustrator.plugins.PDF Suite          0x16862c7b PluginMain + 27435
    19  com.adobe.illustrator.plugins.PDF Suite          0x1685c1f3 PluginMain + 163
    20  com.adobe.illustrator                   0x006a93ff 0x1000 + 6980607
    21  com.adobe.illustrator                   0x006a89c6 0x1000 + 6977990
    22  com.adobe.illustrator                   0x00586d75 0x1000 + 5791093
    23  com.adobe.illustrator                   0x00586e2d 0x1000 + 5791277
    24  com.adobe.illustrator                   0x0052f513 0x1000 + 5432595
    25  com.adobe.illustrator                   0x00539777 0x1000 + 5474167
    26  com.adobe.illustrator                   0x0053d599 0x1000 + 5490073
    27  com.adobe.illustrator                   0x00515187 0x1000 + 5325191
    28  com.adobe.illustrator                   0x00b0517a AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 524022
    29  com.adobe.illustrator                   0x00a181df AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 43387
    30  com.adobe.illustrator                   0x0004210a 0x1000 + 266506
    31  com.adobe.illustrator                   0x0053c893 0x1000 + 5486739
    32  com.adobe.illustrator                   0x0053a574 0x1000 + 5477748
    33  com.adobe.illustrator                   0x00b03d77 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 518899
    34  com.adobe.illustrator.plugins.PDF Format          0x10122118 0x1010f000 + 78104
    35  com.adobe.coretech.adm                  0x0dd83d85 0xdd7b000 + 36229
    36  com.adobe.coretech.adm                  0x0dd8c62f 0xdd7b000 + 71215
    37  com.adobe.coretech.adm                  0x0dd8d7fb 0xdd7b000 + 75771
    38  com.adobe.coretech.adm                  0x0ddd5871 0xdd7b000 + 370801
    39  com.adobe.coretech.adm                  0x0dd93c53 0xdd7b000 + 101459
    40  com.adobe.illustrator.plugins.PDF Format          0x101200bd 0x1010f000 + 69821
    41  com.adobe.illustrator.plugins.PDF Format          0x1011a56a 0x1010f000 + 46442
    42  com.adobe.illustrator.plugins.PDF Format          0x101442e7 PluginMain + 2927
    43  com.adobe.illustrator.plugins.PDF Format          0x1014391e PluginMain + 422
    44  com.adobe.illustrator                   0x006a93ff 0x1000 + 6980607
    45  com.adobe.illustrator                   0x006a89c6 0x1000 + 6977990
    46  com.adobe.illustrator                   0x00586d75 0x1000 + 5791093
    47  com.adobe.illustrator                   0x0047021d 0x1000 + 4649501
    48  com.adobe.illustrator                   0x00473190 0x1000 + 4661648
    49  com.adobe.illustrator                   0x0027b1dc 0x1000 + 2597340
    50  com.adobe.illustrator                   0x0027bb3b 0x1000 + 2599739
    51  com.adobe.illustrator                   0x0027bf0d 0x1000 + 2600717
    52  com.adobe.illustrator                   0x000a2ad9 0x1000 + 662233
    53  com.adobe.illustrator                   0x000a24ea 0x1000 + 660714
    54  com.adobe.illustrator                   0x000a263a 0x1000 + 661050
    55  com.apple.AE                            0x91fb8e0b InvokeAEEventHandlerUPP + 29
    56  com.adobe.illustrator.plugins.Scripting Support          0x0e3794e6 0xe359000 + 132326
    57  com.adobe.illustrator.plugins.Scripting Support          0x0e3f4dcb PluginMain + 605
    58  com.apple.AE                            0x91fa3045 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 202
    59  com.apple.AE                            0x91f8cb67 _ZL25dispatchEventAndSendReplyPK6AEDescPS_ + 43
    60  com.apple.AE                            0x91f8ca54 aeProcessAppleEvent + 253
    61  com.apple.HIToolbox                     0x93410a86 AEProcessAppleEvent + 103
    62  com.apple.HIToolbox                     0x9359ead1 AEProcessEvent + 162
    63  com.apple.HIToolbox                     0x9349752f HIStdAppHandler::HandleEvent(OpaqueEventHandlerCallRef*, TCarbonEvent&) + 181
    64  com.apple.HIToolbox                     0x934984ce TEventHandler::EventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 58
    65  com.apple.HIToolbox                     0x9358bc0c _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    66  com.apple.HIToolbox                     0x93407313 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1602
    67  com.apple.HIToolbox                     0x93406790 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    68  com.apple.HIToolbox                     0x934065a8 SendEventToEventTargetWithOptions + 75
    69  com.apple.HIToolbox                     0x9341c1c6 _ZL29ToolboxEventDispatcherHandlerP25OpaqueEventHandlerCallRefP14OpaqueEventRef Pv + 3152
    70  com.apple.HIToolbox                     0x934077ce _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 2813
    71  com.apple.HIToolbox                     0x93406790 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    72  com.apple.HIToolbox                     0x9341b571 SendEventToEventTarget + 76
    73  com.adobe.illustrator                   0x00080d3e 0x1000 + 523582
    74  com.apple.HIToolbox                     0x9358bc0c _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    75  com.apple.HIToolbox                     0x93407313 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1602
    76  com.apple.HIToolbox                     0x93406790 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    77  com.apple.HIToolbox                     0x934065a8 SendEventToEventTargetWithOptions + 75
    78  com.apple.HIToolbox                     0x9341c1c6 _ZL29ToolboxEventDispatcherHandlerP25OpaqueEventHandlerCallRefP14OpaqueEventRef Pv + 3152
    79  com.apple.HIToolbox                     0x934077ce _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 2813
    80  com.apple.HIToolbox                     0x93406790 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    81  com.apple.HIToolbox                     0x9341b571 SendEventToEventTarget + 76
    82  com.apple.HIToolbox                     0x9358ba58 ToolboxEventDispatcher + 82
    83  com.apple.HIToolbox                     0x9358bb87 RunApplicationEventLoop + 236
    84  com.adobe.illustrator                   0x00080f83 0x1000 + 524163
    85  com.adobe.illustrator                   0x000d84ab 0x1000 + 881835
    86  com.adobe.illustrator                   0x000a2cd2 0x1000 + 662738
    87  com.adobe.illustrator                   0x00003672 0x1000 + 9842
    88  com.adobe.illustrator                   0x00003599 0x1000 + 9625
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x95f0a90a kevent + 10
    1   libdispatch.dylib                       0x96fb6e04 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x96fb5853 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x95f0a02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x95542ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x955446fe start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x95f0a02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x95542ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x955446fe start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x954ec82a pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x047c9552 AMTConditionLock::LockWhenCondition(int) + 46
    4   com.adobe.amt.services                  0x047c4995 _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 115
    5   com.adobe.amt.services                  0x047c95b0 AMTThread::Worker(void*) + 20
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x95544f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x9ad0f3a7 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x9ad0f11d TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore          0x9ad0ef2e TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore          0x9ad84398 TimerThread + 292
    7   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x954f542c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9ad9de62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x9ad0f37d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9ad7167f MPWaitOnQueue + 200
    6   AdobeACE                                0x0130a38d 0x12d9000 + 201613
    7   AdobeACE                                0x01309d85 0x12d9000 + 200069
    8   com.apple.CoreServices.CarbonCore          0x9ad725e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x954f542c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9ad9de62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x9ad0f37d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9ad7167f MPWaitOnQueue + 200
    6   AdobeACE                                0x0130a38d 0x12d9000 + 201613
    7   AdobeACE                                0x01309d85 0x12d9000 + 200069
    8   com.apple.CoreServices.CarbonCore          0x9ad725e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x954f542c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9ad9de62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x9ad0f37d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9ad7167f MPWaitOnQueue + 200
    6   AdobeACE                                0x0130a38d 0x12d9000 + 201613
    7   AdobeACE                                0x01309d85 0x12d9000 + 200069
    8   com.apple.CoreServices.CarbonCore          0x9ad725e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x95f07c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x95f071f6 mach_msg + 70
    2   com.macromedia.Flash Player.authplaylib          0x1390763e ExternalPlayer_Initialize + 1865604
    3   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x954ec82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib          0x13733ba6 0x1344c000 + 3046310
    4   com.macromedia.Flash Player.authplaylib          0x13755f81 ExternalPlayer_Initialize + 90311
    5   com.macromedia.Flash Player.authplaylib          0x13733f98 0x1344c000 + 3047320
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x954ec82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib          0x13733ba6 0x1344c000 + 3046310
    4   com.macromedia.Flash Player.authplaylib          0x13755f81 ExternalPlayer_Initialize + 90311
    5   com.macromedia.Flash Player.authplaylib          0x13733f98 0x1344c000 + 3047320
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x954ec82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib          0x13733ba6 0x1344c000 + 3046310
    4   com.macromedia.Flash Player.authplaylib          0x13755f81 ExternalPlayer_Initialize + 90311
    5   com.macromedia.Flash Player.authplaylib          0x13733f98 0x1344c000 + 3047320
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x954ec82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib          0x13733ba6 0x1344c000 + 3046310
    4   com.macromedia.Flash Player.authplaylib          0x13755f81 ExternalPlayer_Initialize + 90311
    5   com.macromedia.Flash Player.authplaylib          0x13733f98 0x1344c000 + 3047320
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x95f07d36 mach_wait_until + 10
    1   libsystem_c.dylib                       0x954ee439 nanosleep + 388
    2   com.adobe.illustrator.plugins.Scripting Support          0x0e46489d PluginMain + 458031
    3   com.adobe.illustrator.plugins.Scripting Support          0x0e4648fd PluginMain + 458127
    4   com.adobe.illustrator.plugins.Scripting Support          0x0e468402 PluginMain + 473236
    5   com.adobe.illustrator.plugins.Scripting Support          0x0e464bbf PluginMain + 458833
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0xffffff4a  ebx: 0x0236f46a  ecx: 0x0000000f  edx: 0xbfff75ae
      edi: 0xffffff4a  esi: 0x00000642  ebp: 0xbfff7558  esp: 0xbfff7540
       ss: 0x00000023  efl: 0x00010282  eip: 0x024104cd   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0xffffff5a
    Logical CPU: 0
    Binary Images:
        0x1000 -   0xe8eff3 +com.adobe.illustrator (367 - 14.0.0) <F586A10F-F480-4783-A20B-C006B6321F47> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    0x1190000 -  0x11a0fff  com.apple.carbonframeworktemplate (1.0 - 1.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/Alcid.framework/Versions/A/Alcid
    0x11a7000 -  0x11c2ff9 +AdobePDFSettings (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/Adobe PDFSettings
    0x11dc000 -  0x122cfff +com.adobe.illustrator.aiport (AIPort version 1.0 - 1.0) <F625B836-9616-46B7-B681-F9AC11D0DA71> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AIPort.framework/Versions/A/AIPort
    0x12c5000 -  0x12c6027 +SPBasic (??? - ???) <B1DC5A08-15C4-49F9-9DF1-6A94E0AD3448> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
    0x12ca000 -  0x12d0ff7 +com.adobe.coretech.adobesplashkit (AdobeSplashKit version 1.0 - 1.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSp lashKit
    0x12d9000 -  0x13e6fff +AdobeACE (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x1404000 -  0x191bfef +AdobeAGM (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x1a94000 -  0x1ad4fef +AdobeARE (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x1ade000 -  0x1b02ff6 +AdobeAXE8SharedExpat (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/A dobeAXE8SharedExpat
    0x1b15000 -  0x1b2ffff +AdobeBIB (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x1b3a000 -  0x1b5bff7 +AdobeBIBUtils (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIB Utils
    0x1b68000 -  0x1e04fef +AdobeCoolType (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoo lType
    0x1e8f000 -  0x1f5dfff +AdobeExtendScript (3.7.0 - compatibility 3.7.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/Adob eExtendScript
    0x1fd4000 -  0x20bcfdf +AdobePDFPort (??? - ???) <F54A25D1-5E7A-472E-83D1-10D187434C85> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFP ort
    0x2101000 -  0x26f9fdf +AdobePDFL (??? - ???) <8EC2ABBA-52D2-4230-B327-A6827FB2D33A> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
    0x283d000 -  0x28defd7 +AdobeScCore (3.7.0 - compatibility 3.7.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCor e
    0x293a000 -  0x29e8fd7 +AdobeSVGExport (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSV GExport
    0x2a1a000 -  0x2cc3fe2 +AdobeSVGRE (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGRE.framework/Versions/A/AdobeSVGRE
    0x2dad000 -  0x2e0dfc7 +AdobeXMP (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x2e1c000 -  0x2ef1fdd +FileInfo (??? - ???) <F0932F89-FC98-4BA9-B4F2-C58D0E71D3C1> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x2f22000 -  0x2fa4fd7 +AdobeXMPFiles (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMP Files
    0x2fbb000 -  0x308a23b +libicui18n.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/ICUInternationalization.framework/Versions/ 3.6/libicui18n.dylib.36.0
    0x3133000 -  0x3207db7 +libicuuc.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc. dylib.36.0
    0x3268000 -  0x3c1857f +libicudata.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.d ylib.36.0
    0x3c1b000 -  0x3fe5fef +AdobeMPS (??? - ???) <277E01A3-CAC3-4FA9-A591-4BC0A5BC125A> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x4074000 -  0x422aff4 +com.adobe.amtlib (amtlib 2.0.1.10077 - 2.0.1.10077) <CB2EC3BF-6771-4DAB-BF29-6775FB6F9608> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x4261000 -  0x42ee2cb +libicucnv.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/ICUConverter.framework/Versions/3.6/libicuc nv.dylib.36.0
    0x431b000 -  0x46f501f +com.adobe.linguistic.LinguisticManager (4.0.0 - 7863) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeL inguistic
    0x47a9000 -  0x484afc3 +com.adobe.amt.services (AMTServices 2.0.1.10077 [BuildVersion: 53.352460; BuildDate: Tue Jul 29 2008 16:31:09] - 2 . 0) <31E82904-C3C2-424E-A1AE-A5EFADBB19B8> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservice s
    0x4928000 -  0x4e26fc3 +AdobeOwlCanvas (??? - ???) <DC1EE447-FCDB-43C8-B6D2-A5454291C85D> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOw lCanvas
    0x4f6f000 -  0x4ffffc3 +WRServices (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x5181000 -  0x5185ffc +com.adobe.AdobeCrashReporter (2.5 - 3.0.20080806) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/Ado beCrashReporter
    0x518b000 -  0x51a7fd7 +com.adobe.LogTransport (1.0 - 1.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/LogTransport.framework/Versions/A/LogTransp ort
    0x51b2000 -  0x51e1ff7 +com.adobe.headlights.LogSessionFramework (??? - 2.0.0.06112008) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x5209000 -  0x521affb +LogTransport2 (??? - ???) <835B7B84-5A67-370B-AB39-8E448AA81FA0> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/LogTransport2.framework/Versions/A/LogTrans port2
    0x5224000 -  0x522afff +com.adobe.pip (??? - 1.0.0.220) <2CA89939-DFA7-4686-8536-8A1F1107CAF1> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobePIP.framework/Versions/A/AdobePIP
    0x5230000 -  0x525bfff  com.apple.GSS (2.2 - 2.0) <1CB56119-09C5-38FD-8FDC-064E3CC5068B> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x5271000 -  0x546bfcf +AdobeOwl (??? - ???) <F209A9B2-9606-4182-93D8-84B349CFBE48> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x54e6000 -  0x5523fff  com.apple.vmutils (4.2.1 - 107) <43B3BFA5-8362-3EBD-B44B-32DCE9885082> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x553d000 -  0x55eaff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
    0x6794000 -  0x67dbfc7 +com.adobe.adobe_caps (adobe_caps 2.0.99.0 - 2.0.99.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x67eb000 -  0x67ebfff  libmx.A.dylib (2026.0.0 - compatibility 1.0.0) <859B5BCC-B5D9-370F-8B6C-1E2B242D5DCD> /usr/lib/libmx.A.dylib
    0x7fa5000 -  0x7fb2ff7 +com.adobe.asneu.framework (asneu version 1.6.2f01 - 1.6.2) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0xbbe9000 -  0xbbfbfff  libTraditionalChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <F7D2A96C-D03F-3C0B-83FC-1016BB787B59> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0xcdf4000 -  0xce02ffb  libSimplifiedChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <4378B89F-0BDA-3072-9C67-DE1A371DD816> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0xce1d000 -  0xce1effc  ATSHI.dylib (??? - ???) <0B0F21B6-C254-34AE-8128-F3FBC80C68E6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0xce42000 -  0xce42fff +com.adobe.illustrator.plugins.PlugInRes (Localizer version 14.0.0 - 14.0.0) <CFE61490-698E-4FAE-988C-C238AC6CAAF8> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Resources/en_US/PluginRes.aip/Contents/MacOS/PlugInRes
    0xcf1b000 -  0xcf6afe6 +com.adobe.illustrator.plugins.Photoshop Adapter (Photoshop Adapter version 14.0.0 - 14.0.0) <897C80A3-5E5D-4156-8C80-38FE67F5F275> /Applications/Adobe Illustrator CS4/*/Photoshop Adapter
    0xcf91000 -  0xcf92fff +com.adobe.illustrator.plugins.ASLib (ASLib version 14.0.0 - 14.0.0) <F08F7B7D-86A2-462E-AB7B-B706FEE4B955> /Applications/Adobe Illustrator CS4/*/ASLib
    0xd0e4000 -  0xd0ebfff +com.adobe.illustrator.plugins.Action (Action version 14.0.0 - 14.0.0) <C884784D-9646-47C7-917D-2F6B65521B57> /Applications/Adobe Illustrator CS4/*/Action
    0xd0ef000 -  0xd0f8fff +com.adobe.illustrator.plugins.FrameworkServer (Framework Server version 14.0.0 - 14.0.0) <04B2DA5B-B84C-487C-A70E-76163D14D08F> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/FrameworkServer.aip/Contents/MacOS/FrameworkS erver
    0xd2d3000 -  0xd2ecfcb +com.adobe.illustrator.plugins.AssetMgmt (Asset Management version 14.0.0 - 14.0.0) <27CE4290-30DD-477C-9DD4-D46D6022D8D5> /Applications/Adobe Illustrator CS4/*/AssetMgmt
    0xd2f5000 -  0xd326fe3 +com.adobe.amt.registration (AMTRegistration 2.0.1.10077 [BuildVersion: 53.352460; BuildDate: Tue Jul 29 2008 16:31:09] - 2 . 0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/registration.framework/Versions/A/registrat ion
    0xdd7b000 -  0xde4efef +com.adobe.coretech.adm (3.10x04 - 3.1) <369EAA04-C054-40EB-AC03-92CE99C7260C> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0xe0cf000 -  0xe0d5ff7 +com.adobe.illustrator.plugins.ArtConverters ( ArtConverters version 14.0.0 - 14.0.0) <0EA7F2D8-904D-4AFC-A177-8569F3E2286A> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/ArtConverters.aip/Contents/MacOS/ArtConverter s
    0xe0d9000 -  0xe102fff +com.adobe.illustrator.plugins.BRSPencilTool ( Pencil Tool version 14.0.0 - 14.0.0) <EF43DD3A-A797-450D-9FF7-4EFD246811A5> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/BRSPencilTool.aip/Contents/MacOS/BRSPencilToo l
    0xe108000 -  0xe117fd3 +com.adobe.illustrator.plugins.Flatten Transparency ( Flatten Transparency version 14.0.0 - 14.0.0) <66929E97-D63A-46F2-9ADC-F8C10995DFC3> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/Flatten Transparency.aip/Contents/MacOS/Flatten Transparency
    0xe11e000 -  0xe146fcb +com.adobe.illustrator.plugins.FOConversionSuite (FOConversionSuite version 14.0.0 - 14.0.0) <D2E6328E-B072-4F58-A8F4-191C1E7A3111> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/FOConversionSuite.aip/Contents/MacOS/FOConver sionSuite
    0xe156000 -  0xe16bfef +com.adobe.illustrator.plugins.Rasterize (Rasterize version 14.0.0 - 14.0.0) <20A55512-33F0-4669-BE49-F3ED9E2C1CC5> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/Rasterize.aip/Contents/MacOS/Rasterize
    0xe16f000 -  0xe1a3fc3 +com.adobe.illustrator.plugins.BrushManager (Brush Manager version 14.0.0 - 14.0.0) <45B1E4C5-0AEC-4C31-BF6E-ECC0888F9386> /Applications/Adobe Illustrator CS4/*/BrushManager
    0xe1ac000 -  0xe25afc8 +com.adobe.illustrator.plugins.ColorHarmony (ColorHarmony version 14.0.0 - 14.0.0) <11C2EC2C-29D3-462D-B3A2-771D85D66917> /Applications/Adobe Illustrator CS4/*/ColorHarmony
    0xe278000 -  0xe28dff0 +com.adobe.illustrator.plugins.ControlPalette (ControlPalette version 14.0.0 - 14.0.0) <65ADF72A-2398-43F7-9B05-52D7D592BA0E> /Applications/Adobe Illustrator CS4/*/ControlPalette
    0xe299000 -  0xe2c4ff0 +com.adobe.illustrator.plugins.KinsokuDlg ( KinsokuDlg version 14.0.0 - 14.0.0) <0B0B227F-AA5B-46FB-A6B6-60AE2BFAD347> /Applications/Adobe Illustrator CS4/*/KinsokuDlg
    0xe2d5000 -  0xe34dfdb +com.adobe.illustrator.plugins.PaintStyle (Paint Style Palettes version 14.0.0 - 14.0.0) <FDFCF271-25E0-46B9-812C-EFB4E49B61A8> /Applications/Adobe Illustrator CS4/*/PaintStyle
    0xe359000 -  0xe607fe7 +com.adobe.illustrator.plugins.Scripting Support (Scripting Support version 14.0.0 - 14.0.0) <00ED474E-DA84-421D-A0BA-AC17357B1FED> /Applications/Adobe Illustrator CS4/*/Scripting Support
    0xe8c0000 -  0xe8c3ffb +com.divx.divxtoolkit (1.0 - 1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0xe9cd000 -  0xea48fde +com.adobe.illustrator.plugins.SwatchLibraries (Swatch Libraries version 14.0.0 - 14.0.0) <CB45F4C6-5333-417D-8997-C124973041FE> /Applications/Adobe Illustrator CS4/*/SwatchLibraries
    0xea59000 -  0xea87068 +com.adobe.illustrator.plugins.SymbolPalette (Symbol Palette version 14.0.0 - 14.0.0) <DD7DBC72-EF5E-4F52-A102-794BF21F2498> /Applications/Adobe Illustrator CS4/*/SymbolPalette
    0xea90000 -  0xea94feb +com.adobe.illustrator.plugins.ToolSelector (Tool Selector version 14.0.0 - 14.0.0) <72429655-649D-4EFF-A0AF-DE2BE54FFDC6> /Applications/Adobe Illustrator CS4/*/ToolSelector
    0xea98000 -  0xeab1fef +com.adobe.illustrator.plugins.Workspaces (Workspaces version 14.0.0 - 14.0.0) <E065EBE1-AEF1-47B8-9933-EEB543767C5C> /Applications/Adobe Illustrator CS4/*/Workspaces
    0xeab8000 -  0xeacb04f +com.adobe.illustrator.plugins.Mojikumi ( MojiKumiUI version 14.0.0 - 14.0.0) <E32A6710-064A-4731-8844-E63F5DC4094F> /Applications/Adobe Illustrator CS4/*/Mojikumi
    0xead2000 -  0xead5fff +com.adobe.illustrator.plugins.GeometryS ( Geometry Suite version 14.0.0 - 14.0.0) <B30D9BE4-9735-4704-AD8A-467E7C25B9A9> /Applications/Adobe Illustrator CS4/*/GeometryS
    0xead9000 -  0xeb00fe8 +com.adobe.illustrator.plugins.slicingAttributes (Slicing version 14.0.0 - 14.0.0) <3A3FCCB7-D888-4949-94FB-74EA1892F2DE> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/sliceAttributes.aip/Contents/MacOS/slicingAtt ributes
    0xeb08000 -  0xeb0dfef +com.adobe.illustrator.plugins.ShapeS (Shape Construction Suite version 14.0.0 - 14.0.0) <A8E06D3D-22EB-4391-A488-39435E80F204> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/ShapeS.aip/Contents/MacOS/ShapeS
    0xeb11000 -  0xeb3dfff +com.adobe.illustrator.plugins.PathfinderS (Pathfinder Suite version 14.0.0 - 14.0.0) <D0D9CCD1-0AEC-4C46-9AA3-F7F97ACCDEF1> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/PathFinderS.aip/Contents/MacOS/PathfinderS
    0xeb46000 -  0xeb4dff3 +com.adobe.illustrator.plugins.ExpandS (Expand Suite version 14.0.0 - 14.0.0) <29196393-E41C-43EA-8C0C-6260FD7F61FC> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/ExpandS.aip/Contents/MacOS/ExpandS
    0xeb51000 -  0xeb61fff +com.adobe.illustrator.plugins.DocInfo (Document Info version 14.0.0 - 14.0.0) <4314802B-CE2E-4AF5-9460-5809DEFF7360> /Applications/Adobe Illustrator CS4/*/DocInfo
    0xeb68000 -  0xeba0fef +com.adobe.illustrator.plugins.Snap (Snap version 14.0.0 - 14.0.0) <29FC35B5-A5D5-4F0C-B721-49E267315B13> /Applications/Adobe Illustrator CS4/*/Snap
    0xebb0000 -  0xebc0ff2 +com.adobe.illustrator.plugins.DropShadow (Drop Shadow version 14.0.0 - 14.0.0) <50DC2482-540D-4817-8D0E-158E626298DA> /Applications/Adobe Illustrator CS4/*/DropShadow
    0xebc6000 -  0xebcdfc0 +com.adobe.illustrator.plugins.ADMTP (Tool Palette version 14.0.0 - 14.0.0) <7E1766B5-2D51-4E83-B515-6F5149B134B2> /Applications/Adobe Illustrator CS4/*/ADMTP
    0xebd1000 -  0xebe0ff3 +com.adobe.illustrator.plugins.Segment Tools (Segment Tools version 14.0.0 - 14.0.0) <5ADD1377-AC2A-43E7-A418-FA83F4E7DF2F> /Applications/Adobe Illustrator CS4/*/Segment Tools
    0xebe5000 -  0xec02fda +com.adobe.illustrator.plugins.ScatterBrushTool (Adobe Scatter Brush Tool version 14.0.0 - 14.0.0) <8BEBD742-F42F-49C5-A3F0-FA1C5285A7DA> /Applications/Adobe Illustrator CS4/*/ScatterBrushTool
    0xec09000 -  0xec0dfef +com.adobe.illustrator.plugins.GlobalAdjust (Reshape Tool version 14.0.0 - 14.0.0) <D6B5A699-E443-4D3A-87AA-FC7D8E2CB319> /Applications/Adobe Illustrator CS4/*/GlobalAdjust
    0xec11000 -  0xec30fcb +com.adobe.illustrator.plugins.ParticlePaint (Symbolism version 14.0.0 - 14.0.0) <4A4D97AA-0B5C-4311-83FE-288839029DA7> /Applications/Adobe Illustrator CS4/*/ParticlePaint
    0xec39000 -  0xec42fe7 +com.adobe.illustrator.plugins.Magic Wand (Magic Wand version 14.0.0 - 14.0.0) <93E02FBC-89CC-4486-B643-7F7B01E3C149> /Applications/Adobe Illustrator CS4/*/Magic Wand
    0xec46000 -  0xec5dff3 +com.adobe.illustrator.plugins.Liquify (Liquify version 14.0.0 - 14.0.0) <C16C9B41-5869-4A14-A5B7-8AC978B5FDFD> /Applications/Adobe Illustrator CS4/*/Liquify
    0xec61000 -  0xec68feb +com.adobe.illustrator.plugins.Lasso (Lasso version 14.0.0 - 14.0.0) <7C893464-927E-4EFC-B6FB-2F3E10F9A199> /Applications/Adobe Illustrator CS4/*/Lasso
    0xec6d000 -  0xec70fef +com.adobe.illustrator.plugins.KnifeTool (Knife Tool version 14.0.0 - 14.0.0) <79C5F1A2-6CF0-4A1D-9B50-7BE467DD80A6> /Applications/Adobe Illustrator CS4/*/KnifeTool
    0xec74000 -  0xeca8fdf +com.adobe.illustrator.plugins.EraserTool (EraserTool version 14.0.0 - 14.0.0) <1744EECA-69F1-4C93-AA06-B89075F3EEBE> /Applications/Adobe Illustrator CS4/*/EraserTool
    0xecb0000 -  0xecd8fec +com.adobe.illustrator.plugins.CalligBrushTool (Calligraphic Brush Tool version 14.0.0 - 14.0.0) <FA25241B-421C-49D6-BE9D-8BC1430E9828> /Applications/Adobe Illustrator CS4/*/CalligBrushTool
    0xecdf000 -  0xecf2ff7 +com.adobe.illustrator.plugins.BoundingBox (BoundingBox version 14.0.0 - 14.0.0) <D05C0C30-D456-4E98-9BC4-92C2294FB49F> /Applications/Adobe Illustrator CS4/*/BoundingBox
    0xecf6000 -  0xed21fd6 +com.adobe.illustrator.plugins.ArtBrushTool (Art Brush Tool version 14.0.0 - 14.0.0) <89FE2B11-D5DD-4DEA-966C-E1A85FB4CBAC> /Applications/Adobe Illustrator CS4/*/ArtBrushTool
    0xed28000 -  0xed87fcf +com.adobe.illustrator.plugins.PhotoshopImport (Photoshop Import version 14.0.0 - 14.0.0) <861DD58E-6EA7-4715-B877-5C75B596C85A> /Applications/Adobe Illustrator CS4/*/PhotoshopImport
    0xed9e000 -  0xfad0fff +com.adobe.psl (AdobePSL 11.0.0.1724 - 11.0.0.1724) <6BE27A60-E0F9-4483-8E57-2A7A5227D878> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0xfe04000 -  0xfe05ff1  com.apple.textencoding.unicode (2.4 - 2.4) <4E55D4B9-4E67-3FC9-9407-3E99D1D50F15> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0xfe0a000 -  0xfe36fff +com.adobe.illustrator.plugins.ExpressView Support (OS Express Views version 14.0.0 - 14.0.0) <4D362918-5276-46B4-9825-5CAE899E9EE5> /Applications/Adobe Illustrator CS4/*/ExpressView Support
    0xfe41000 -  0xfe8aff4 +com.adobe.illustrator.plugins.MPSParser (MPSParser version 14.0.0 - 14.0.0) <67607461-914F-440E-8624-381CC2A0079E> /Applications/Adobe Illustrator CS4/*/MPSParser
    0xfea0000 -  0xfed0fcc +com.adobe.illustrator.plugins.MPSExport (MPSExport version 14.0.0 - 14.0.0) <DD69AB2F-78AB-4225-9DCE-2141648F6E1E> /Applications/Adobe Illustrator CS4/*/MPSExport
    0xfee0000 -  0xfee1fff +com.adobe.illustrator.plugins.MPSCommon (MPSCommon version 14.0.0 - 14.0.0) <4CBB7829-A13E-41B3-9273-2223506DE716> /Applications/Adobe Illustrator CS4/*/MPSCommon
    0xfee5000 -  0xff03ff4 +com.adobe.illustrator.plugins.Scribble (Scribble version 14.0.0 - 14.0.0) <66F69AF3-2A26-4B2A-88E8-64568F71EA80> /Applications/Adobe Illustrator CS4/*/Scribble
    0xff0a000 -  0xff16ff3 +com.adobe.illustrator.plugins.Pathfinder (Pathfinder Plugin version 14.0.0 - 14.0.0) <7288F843-177B-43CE-9876-AB66A84A2F69> /Applications/Adobe Illustrator CS4/*/Pathfinder
    0xff1a000 -  0xff2ffc4 +com.adobe.illustrator.plugins.WelcomeScreen (WelcomeScreenn version 14.0.0 - 14.0.0) <780173AB-6EAA-4EF6-9D79-99CE78F0BF06> /Applications/Adobe Illustrator CS4/*/WelcomeScreen
    0xff35000 -  0xff48fd7 +com.adobe.illustrator.plugins.TransparencyPalette (Transparency Palette version 14.0.0 - 14.0.0) <2FC5A6F7-E157-4BE3-9490-657B1198825D> /Applications/Adobe Illustrator CS4/*/TransparencyPalette
    0xff4c000 -  0xff5dff6 +com.adobe.illustrator.plugins.SeparationPreview (Separation Preview version 14.0.0 - 14.0.0) <F0B42349-86B6-489E-A1ED-62DAB50BB12F> /Applications/Adobe Illustrator CS4/*/SeparationPreview
    0xff64000 -  0xff69fff +com.adobe.illustrator.plugins.PathSuite (PathConstruction Suite version 14.0.0 - 14.0.0) <667209A1-821D-468E-B3F5-67ADCC0A5B59> /Applications/Adobe Illustrator CS4/*/PathSuite
    0xff6d000 -  0xff93fdf +com.adobe.illustrator.plugins.LiveBlends (Live Blends version 14.0.0 - 14.0.0) <5949CA4F-0265-4001-827A-FDF67CE6E1C4> /Applications/Adobe Illustrator CS4/*/LiveBlends
    0xff98000 -  0xffc6fcf +com.adobe.illustrator.plugins.Layers (Layers Palette version 14.0.0 - 14.0.0) <F13985B8-7110-4AC4-A93B-30A650274B81> /Applications/Adobe Illustrator CS4/*/Layers
    0xffce000 -  0xffe4fef +com.adobe.illustrator.plugins.KBSCPlugin (Keyboard Shortcuts version 14.0.0 - 14.0.0) <8BA6912E-AC74-4FCE-97FF-02BF2F81958D> /Applications/Adobe Illustrator CS4/*/KBSCPlugin
    0xffeb000 -  0xffecfff +com.adobe.illustrator.plugins.FlattenS (Flatten Suite version 14.0.0 - 14.0.0) <34B0A010-1099-474C-9B2B-4D923FB10287> /Applications/Adobe Illustrator CS4/*/FlattenS
    0xfff0000 -  0xfff6feb +com.adobe.illustrator.plugins.FileClipboardPref (FileClipboardPref version 14.0.0 - 14.0.0) <A968F7DC-F8B2-46A3-8C78-1D129B37588E> /Applications/Adobe Illustrator CS4/*/FileClipboardPref
    0xfffa000 - 0x10056fd2 +com.adobe.illustrator.plugins.ArtStyle (Art Style version 14.0.0 - 14.0.0) <DAA8C2E9-65A7-40ED-B8D5-FF78F297EDA6> /Applications/Adobe Illustrator CS4/*/ArtStyle
    0x10062000 - 0x10071ff3 +com.adobe.illustrator.plugins.AppBarControlsPlugin (NewPlugin version 14.0.0 - 14.0.0) <C50066DB-5E97-4C95-AECB-BD0A1BBD2769> /Applications/Adobe Illustrator CS4/*/AppBarControlsPlugin
    0x10077000 - 0x100a7ffb +com.adobe.illustrator.plugins.AltGlyphPal (AdobeAltGlyphPalette version 14.0.0 - 14.0.0) <FC1467B2-2A62-408E-A38D-A1F8EC209A52> /Applications/Adobe Illustrator CS4/*/AltGlyphPal
    0x100b8000 - 0x100c9ff6 +com.adobe.illustrator.plugins.Align (AdobeAlignObjects version 14.0.0 - 14.0.0) <1E8046C8-EAE8-445B-83F3-B2AF0F4D3452> /Applications/Adobe Illustrator CS4/*/Align
    0x100ce000 - 0x10105fff +com.adobe.illustrator.plugins.ActionPalette ( Action Palette version 14.0.0 - 14.0.0) <49FF537C-26F4-450A-B7DE-59859F5A6DC0> /Applications/Adobe Illustrator CS4/*/ActionPalette
    0x1010f000 - 0x101a4fc1 +com.adobe.illustrator.plugins.PDF Format (PDF Format version 14.0.0 - 14.0.0) <C88425A7-C3DA-493B-AC3E-48AB988A3CD4> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/PDF Format.aip/Contents/MacOS/PDF Format
    0x101c2000 - 0x10211ff3 +FilterPort (??? - ???) <7CF9F9BD-8C11-4F4C-A56F-D02923DA26C4> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/FilterPort.framework/Versions/A/FilterPort
    0x102b0000 - 0x102f3fef +ADMEveParserCarbon (??? - ???) <E2B97059-2ECE-46E3-B0FA-E99EA7035CEC> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/ADMEveParserCarbon.bundle/Contents/MacOS/ADME veParserCarbon
    0x1030d000 - 0x10315feb +com.adobe.illustrator.plugins.TextWrapDlg (TextWrapDlg version 14.0.0 - 14.0.0) <98A0EA55-C4D8-4204-9573-61592D2660A1> /Applications/Adobe Illustrator CS4/*/TextWrapDlg
    0x10319000 - 0x10326fff +com.adobe.illustrator.plugins.Advanced Select (Advanced Select version 14.0.0 - 14.0.0) <C0673233-D6ED-4333-B8DC-1EDB6B9436B0> /Applications/Adobe Illustrator CS4/*/Advanced Select
    0x1033b000 - 0x1033ffff +com.adobe.illustrator.plugins.TypeCase (Change Case version 14.0.0 - 14.0.0) <7DF88FF2-4C03-499F-A390-0C4D9C17B27D> /Applications/Adobe Illustrator CS4/*/TypeCase
    0x1344c000 - 0x13aeefef +com.macromedia.Flash Player.authplaylib (10.0.2.31 - 1.0.1d333) <E0851D48-16C9-4BDC-B3A7-7BAC9E7638F5> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Resources/AuthPlayLib.bu ndle/Contents/MacOS/AuthPlayLib
    0x13c37000 - 0x13c63ff3  com.apple.audio.CoreAudioKit (1.6.3 - 1.6.3) <7D47B1D3-4410-3524-BC47-FCDF49E48DB5> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x14d0c000 - 0x14d64fff +com.DivXInc.DivXDecoder (6.8.4.3 - 6.8.4) <26A406B3-E4BC-C6FF-8F28-A99FFEB5CF2D> /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x15c2e000 - 0x15c8aff2 +AdobeUpdater (??? - ???) <064CFAA4-1CAF-46E3-BEBF-04948641C927> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeUpdater.framework/Versions/A/AdobeUpda ter
    0x15f00000 - 0x16382fe3 +AdobeLM_libFNP.dylib (??? - ???) <02E9AC76-9CC6-4974-AF05-48E737C2CC20> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/AdobeLM_libFNP. dylib
    0x16600000 - 0x16707fcf +com.adobe.versioncue (??? - 4.0.1.095) /Library/Application Support/Adobe/*/VersionCue.framework/VersionCue
    0x16853000 - 0x168aefe7 +com.adobe.illustrator.plugins.PDF Suite (PDF Suite version 14.0.0 - 14.0.0) <586E2428-342D-4C78-89F0-56A0FD10246A> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/PDF Suite.aip/Contents/MacOS/PDF Suite
    0x40000000 - 0x400ae030 +AdobeJP2K (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x8fe8e000 - 0x8fec0aa7  dyld (195.6 - ???) <3A866A34-4CDD-35A4-B26E-F145B05F3644> /usr/lib/dyld
    0x90005000 - 0x90021ff5  com.apple.GenerationalStorage (1.0 - 126.1) <E622F823-7D98-3D13-9C3D-7EA482567394> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x9007e000 - 0x9014effb  com.apple.ImageIO.framework (3.1.2 - 588) <1AA18570-B5F8-3B1E-9D0A-0EDD866E5131> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x90151000 - 0x9016efff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <2870320A-28DA-3B44-9D82-D56E0036F6BB> /usr/lib/libresolv.9.dylib
    0x9016f000 - 0x9019eff7  libsystem_info.dylib (??? - ???) <37640811-445B-3BB7-9934-A7C99848250D> /usr/lib/system/libsystem_info.dylib
    0x9019f000 - 0x90200ffb  com.apple.audio.CoreAudio (4.0.3 - 4.0.3) <7A14BE52-6789-3CE3-9AE9-B733F4903EB1> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x90210000 - 0x90210fff  com.apple.audio.units.AudioUnit (1.7.3 - 1.7.3) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90238000 - 0x902a7fff  com.apple.Heimdal (2.2 - 2.0) <8ACC5067-441D-31C2-ACBD-4527C1AD73EF> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x902a8000 - 0x902b1ff3  com.apple.CommonAuth (2.2 - 2.0) <6F207851-084B-3354-A1B2-63065BC584F6> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x90587000 - 0x90c13ff5  com.apple.CoreAUC (6.16.12 - 6.16.12) <9D51400F-B827-3BA7-87F5-954A1CDDAEA9> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x90c14000 - 0x90c1afff  libGFXShared.dylib (??? - ???) <9C9834EB-B794-38C8-9B90-31D8CB234F86> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x90c1b000 - 0x90c1bfff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <22997C20-BEB7-301D-86C5-5BFB3B06D212> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x90c1c000 - 0x90c39ff3  com.apple.openscripting (1.3.3 - ???) <0579A4CB-FD6F-3D7F-A17B-AC0F2CF11FC7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x90c3a000 - 0x90c48ff7  libxar-nossl.dylib (??? - ???) <5BF4DA8E-C319-354A-967E-A0C725DC8BA3> /usr/lib/libxar-nossl.dylib
    0x90e4d000 - 0x90e51ff3  libsystem_network.dylib (??? - ???) <62EBADDA-FC72-3275-AAB3-5EDD949FEFAF> /usr/lib/system/libsystem_network.dylib
    0x90ea5000 - 0x90eadfff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90ef0000 - 0x90ef3ff9  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <16DCE20A-9790-369A-94C1-B7954B418C77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x90ef4000 - 0x90f81ff7  com.apple.CoreText (220.22.0 - ???) <EA7210A7-DECC-3F76-8A66-D4E41859B3C6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90f82000 - 0x91a17ff6  com.apple.AppKit (6.7.5 - 1138.51) <B9D3DCA0-9765-354E-9730-75A45A97DDFD> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91a18000 - 0x91a80fff  libc++.1.dylib (28.4.0 - compatibility 1.0.0) <B24814AB-CA77-3B9D-8FAB-58C9B4FD3A16> /usr/lib/libc++.1.dylib
    0x91c89000 - 0x91c94ff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <D6E17FD4-ECA0-3EEE-BFC5-F6A42A21AB5D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91c95000 - 0x91cbaff9  libJPEG.dylib (??? - ???) <0E0B7B77-582B-3D85-9CCA-ACFBCF196C98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91cbb000 - 0x91d5ffff  com.apple.QD (3.40.1 - ???) <B5650C5E-AB41-3758-84A1-5A97EDCD8EFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91d60000 - 0x91dfcfff  com.apple.ink.framework (10.7.5 - 113) <05CAFB64-D3B8-3973-87EA-CB8BBE580F6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x91f45000 - 0x91f47ff9  com.apple.securityhi (4.0 - 1) <39157216-5E43-392A-AE3F-716726D8C8BF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91f48000 - 0x91f49ff7  libsystem_sandbox.dylib (??? - ???) <036370E2-9D3E-38B8-B3A5-9056C57E780E> /usr/lib/system/libsystem_sandbox.dylib
    0x91f81000 - 0x91f81fff  libOpenScriptingUtil.dylib (??? - ???) <E4C22B65-9493-31D5-9D46-19BD70975587> /usr/lib/libOpenScriptingUtil.dylib
    0x91f82000 - 0x91f83ff7  libquarantine.dylib (36.7.0 - compatibility 1.0.0) <46980EC2-149D-3CF7-B29A-401FB89C275D> /usr/lib/system/libquarantine.dylib
    0x91f84000 - 0x91f88ffd  IOSurface (??? - ???) <EDDBEE65-1EB8-33A7-9972-E361A3508234> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x91f89000 - 0x91fbfff7  com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9232f000 - 0x92344ff7  com.apple.ImageCapture (7.1.0 - 7.1.0) <E5FCA336-7E47-343E-A82D-CCCA5BCD5929> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92345000 - 0x923ccfff  com.apple.print.framework.PrintCore (7.1 - 366.3) <EEC03CAB-7F79-3931-87FE-4DF0B767BF47> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x923cd000 - 0x9245afe7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <F2A8BBA3-6431-3CED-8CD3-0953410B6F96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9245d000 - 0x924c1fff  com.apple.framework.IOKit (2.0 - ???) <94827954-5906-36C4-819B-24CDAFD85C72> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x924c2000 - 0x924e4ff8  com.apple.PerformanceAnalysis (1.11 - 11) <453463FF-7C42-3526-8C96-A9971EE07154> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x924e5000 - 0x9250fff1  com.apple.CoreServicesInternal (113.20 - 113.20) <13FA1378-67CB-3579-BF83-D11E9425799F> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x9256d000 - 0x92765ff7  com.apple.CoreData (104.1 - 358.14) <C1730963-F75D-3338-B65F-D50235538B28> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x92766000 - 0x9276eff3  liblaunch.dylib (392.39.0 - compatibility 1.0.0) <9E6135FF-C2B1-3BC9-A160-B32D71BFA77C> /usr/lib/system/liblaunch.dylib
    0x927a3000 - 0x927b1fff  com.apple.opengl (1.8.1 - 1.8.1) <766AFB12-A2CB-3A55-B662-FC9FFCAE0008> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x927b2000 - 0x927b6fff  libGIF.dylib (??? - ???) <2ADFED97-2228-343D-9A53-207CBFDE7984> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x927b7000 - 0x927ccfff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x927cd000 - 0x927cdff0  com.apple.ApplicationServices (41 - 41) <C48EF6B2-ABF9-35BD-A07A-A38EC0008294> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x927ce000 - 0x927e1ff8  com.apple.MultitouchSupport.framework (231.4 - 231.4) <083F7787-4C3B-31DA-B5BB-1993D9A9723D> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x92b0f000 - 0x92b13ffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <56256537-6538-3522-BCB6-2C79DA6AC8CD> /usr/lib/system/libcache.dylib
    0x92e5b000 - 0x92e5dffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x92e5e000 - 0x92e68ff2  com.apple.audio.SoundManager (3.9.4.1 - 3.9.4.1) <2A089CE8-9760-3F0F-B77D-29A78940EA17> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92ee8000 - 0x92ee9ff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <2F4B35B2-706C-3383-AA86-DABA409FAE45> /usr/lib/system/libunc.dylib
    0x92eea000 - 0x92eeafff  com.apple.vecLib (3.7 - vecLib 3.7) <8CC

  • Problems with Crash!

    I'm having a problem with Leopard.
    i have a plugin for Photoshop that i was using for mounths now. suddenly it stoped working! I'me tried to make a fresh and clean install leopard instal, just installing the Photoshop and the plugin, and it still crashes!!
    i'm posting the crash log, to see if someone could helpme on this problem!
    Thanks!
    Process: Adobe Photoshop CS4 [5072]
    Path: /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4
    Identifier: com.adobe.Photoshop
    Version: 11.0 (11.0x20080919 [20080919.r.488 2008/09/19:02:00:00 cutoff; r branch]) (11.0)
    Code Type: X86 (Native)
    Parent Process: launchd [107]
    Date/Time: 2008-05-01 12:15:48.538 -0300
    OS Version: Mac OS X 10.5.5 (9F33)
    Report Version: 6
    Exception Type: EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread: 0
    Application Specific Information:
    * Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: aString != nil'
    Thread 0 Crashed:
    0 com.apple.CoreFoundation 0x92126ff4 __TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION__ + 4
    1 libobjc.A.dylib 0x92ce3e3b objcexceptionthrow + 40
    2 com.apple.CoreFoundation 0x92126f2b +[NSException raise:format:arguments:] + 155
    3 com.apple.Foundation 0x94e5fa54 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 116
    4 com.apple.AppKit 0x9145ea24 -[NSMenuItem initWithTitle:action:keyEquivalent:] + 182
    5 com.apple.AppKit 0x9145e933 -[NSMenu insertItemWithTitle:action:keyEquivalent:atIndex:] + 277
    6 com.apple.AppKit 0x9155f86a -[NSPopUpButtonCell insertItemWithTitle:atIndex:] + 216
    7 com.apple.AppKit 0x9159fa29 -[NSPopUpButtonCell addItemWithTitle:] + 68
    8 com.ononesoftware.phototools 0x20218c53 -[BatchResizeView awakeFromNib] + 595
    9 com.apple.AppKit 0x9143ab1a -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1613
    10 com.apple.AppKit 0x91430cf6 loadNib + 264
    11 com.apple.AppKit 0x91430658 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 946
    12 com.apple.AppKit 0x9143029b +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 171
    13 com.apple.AppKit 0x914301d9 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 391
    14 com.ononesoftware.phototools 0x2021502a -[BatchResizeView initWithResizeOptions:] + 104
    15 com.ononesoftware.phototools 0x20218751 -[BatchDialogMac awakeFromNib] + 457
    16 com.apple.AppKit 0x9143ab1a -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1613
    17 com.apple.AppKit 0x91430cf6 loadNib + 264
    18 com.apple.AppKit 0x91430658 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 946
    19 com.apple.AppKit 0x9143029b +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 171
    20 com.apple.AppKit 0x914301d9 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 391
    21 com.ononesoftware.phototools 0x20213b28 -[BatchDialogMac initWithBatchSettings:andEffectStack:] + 212
    22 com.ononesoftware.phototools 0x20218d20 DoBatch(EffectStack const*) + 156
    23 com.ononesoftware.phototools 0x20242984 DoBatchDialog() + 18
    24 com.ononesoftware.phototools 0x201ec318 BatchPluginMain + 344
    25 ...nesoftware.phototools.batch 0x1c249da0 CallMainPlugin(char const*, char const*, void*) + 130
    26 com.adobe.Photoshop 0x006c0931 0x1000 + 7076145
    27 com.adobe.Photoshop 0x00250a73 0x1000 + 2423411
    28 com.adobe.Photoshop 0x00250c38 0x1000 + 2423864
    29 com.adobe.Photoshop 0x0006bdcd 0x1000 + 437709
    30 com.adobe.Photoshop 0x0006ab7d 0x1000 + 433021
    31 com.adobe.Photoshop 0x00064145 0x1000 + 405829
    32 com.adobe.Photoshop 0x000642b3 0x1000 + 406195
    33 com.adobe.Photoshop 0x0006260f 0x1000 + 398863
    34 com.adobe.Photoshop 0x00220a8a 0x1000 + 2226826
    35 com.adobe.Photoshop 0x00220b16 0x1000 + 2226966
    36 com.adobe.Photoshop 0x00003cf2 0x1000 + 11506
    37 com.adobe.Photoshop 0x00003c19 0x1000 + 11289
    Thread 1:
    0 libSystem.B.dylib 0x96594f66 kevent + 10
    1 libSystem.B.dylib 0x965956f5 pthreadstart + 321
    2 libSystem.B.dylib 0x965955b2 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x965644ee semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x96596866 pthread_condwait + 1267
    2 libSystem.B.dylib 0x965dc371 pthreadcondwait + 48
    3 com.adobe.amt.services 0x04b83552 AMTConditionLock::LockWhenCondition(int) + 46
    4 com.adobe.amt.services 0x04b7e995 AMTThreadedPCDService::PCDThreadWorker(AMTThreadedPCDService*) + 115
    5 com.adobe.amt.services 0x04b835b0 AMTThread::Worker(void*) + 20
    6 libSystem.B.dylib 0x965956f5 pthreadstart + 321
    7 libSystem.B.dylib 0x965955b2 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x9656b68e _semwaitsignal + 10
    1 libSystem.B.dylib 0x9659636d pthreadcondwait$UNIX2003 + 73
    2 libGLProgrammability.dylib 0x9030eb32 glvmDoWork + 162
    3 libSystem.B.dylib 0x965956f5 pthreadstart + 321
    4 libSystem.B.dylib 0x965955b2 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x965644fa semaphoretimedwaittrap + 10
    1 ...ple.CoreServices.CarbonCore 0x960d581b MPWaitOnSemaphore + 125
    2 MultiProcessor Support 0x1d8d8eff 0x1d8a9000 + 196351
    3 ...ple.CoreServices.CarbonCore 0x960c2463 PrivateMPEntryPoint + 56
    4 libSystem.B.dylib 0x965956f5 pthreadstart + 321
    5 libSystem.B.dylib 0x965955b2 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x965644fa semaphoretimedwaittrap + 10
    1 ...ple.CoreServices.CarbonCore 0x960d581b MPWaitOnSemaphore + 125
    2 MultiProcessor Support 0x1d8d8eff 0x1d8a9000 + 196351
    3 ...ple.CoreServices.CarbonCore 0x960c2463 PrivateMPEntryPoint + 56
    4 libSystem.B.dylib 0x965956f5 pthreadstart + 321
    5 libSystem.B.dylib 0x965955b2 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x965644fa semaphoretimedwaittrap + 10
    1 ...ple.CoreServices.CarbonCore 0x960d581b MPWaitOnSemaphore + 125
    2 MultiProcessor Support 0x1d8d8eff 0x1d8a9000 + 196351
    3 ...ple.CoreServices.CarbonCore 0x960c2463 PrivateMPEntryPoint + 56
    4 libSystem.B.dylib 0x965956f5 pthreadstart + 321
    5 libSystem.B.dylib 0x965955b2 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x965644fa semaphoretimedwaittrap + 10
    1 ...ple.CoreServices.CarbonCore 0x960d581b MPWaitOnSemaphore + 125
    2 MultiProcessor Support 0x1d8d8eff 0x1d8a9000 + 196351
    3 ...ple.CoreServices.CarbonCore 0x960c2463 PrivateMPEntryPoint + 56
    4 libSystem.B.dylib 0x965956f5 pthreadstart + 321
    5 libSystem.B.dylib 0x965955b2 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x965644fa semaphoretimedwaittrap + 10
    1 ...ple.CoreServices.CarbonCore 0x960d581b MPWaitOnSemaphore + 125
    2 MultiProcessor Support 0x1d8d8eff 0x1d8a9000 + 196351
    3 ...ple.CoreServices.CarbonCore 0x960c2463 PrivateMPEntryPoint + 56
    4 libSystem.B.dylib 0x965956f5 pthreadstart + 321
    5 libSystem.B.dylib 0x965955b2 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x965644fa semaphoretimedwaittrap + 10
    1 ...ple.CoreServices.CarbonCore 0x960d581b MPWaitOnSemaphore + 125
    2 MultiProcessor Support 0x1d8d8eff 0x1d8a9000 + 196351
    3 ...ple.CoreServices.CarbonCore 0x960c2463 PrivateMPEntryPoint + 56
    4 libSystem.B.dylib 0x965956f5 pthreadstart + 321
    5 libSystem.B.dylib 0x965955b2 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x965644fa semaphoretimedwaittrap + 10
    1 ...ple.CoreServices.CarbonCore 0x960d581b MPWaitOnSemaphore + 125
    2 MultiProcessor Support 0x1d8d8eff 0x1d8a9000 + 196351
    3 ...ple.CoreServices.CarbonCore 0x960c2463 PrivateMPEntryPoint + 56
    4 libSystem.B.dylib 0x965956f5 pthreadstart + 321
    5 libSystem.B.dylib 0x965955b2 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x9656b68e _semwaitsignal + 10
    1 libSystem.B.dylib 0x9659636d pthreadcondwait$UNIX2003 + 73
    2 ...ple.CoreServices.CarbonCore 0x960c424f TSWaitOnCondition + 126
    3 ...ple.CoreServices.CarbonCore 0x960a318e TSWaitOnConditionTimedRelative + 202
    4 ...ple.CoreServices.CarbonCore 0x960c3ecc MPWaitOnQueue + 208
    5 AdobeACE 0x027c138d 0x2790000 + 201613
    6 AdobeACE 0x027c0d85 0x2790000 + 200069
    7 ...ple.CoreServices.CarbonCore 0x960c2463 PrivateMPEntryPoint + 56
    8 libSystem.B.dylib 0x965956f5 pthreadstart + 321
    9 libSystem.B.dylib 0x965955b2 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x9656b68e _semwaitsignal + 10
    1 libSystem.B.dylib 0x9659636d pthreadcondwait$UNIX2003 + 73
    2 ...ple.CoreServices.CarbonCore 0x960c424f TSWaitOnCondition + 126
    3 ...ple.CoreServices.CarbonCore 0x960a318e TSWaitOnConditionTimedRelative + 202
    4 ...ple.CoreServices.CarbonCore 0x960c3ecc MPWaitOnQueue + 208
    5 AdobeACE 0x027c138d 0x2790000 + 201613
    6 AdobeACE 0x027c0d85 0x2790000 + 200069
    7 ...ple.CoreServices.CarbonCore 0x960c2463 PrivateMPEntryPoint + 56
    8 libSystem.B.dylib 0x965956f5 pthreadstart + 321
    9 libSystem.B.dylib 0x965955b2 thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x9656b68e _semwaitsignal + 10
    1 libSystem.B.dylib 0x9659636d pthreadcondwait$UNIX2003 + 73
    2 ...ple.CoreServices.CarbonCore 0x960c424f TSWaitOnCondition + 126
    3 ...ple.CoreServices.CarbonCore 0x960a318e TSWaitOnConditionTimedRelative + 202
    4 ...ple.CoreServices.CarbonCore 0x960c3ecc MPWaitOnQueue + 208
    5 AdobeACE 0x027c138d 0x2790000 + 201613
    6 AdobeACE 0x027c0d85 0x2790000 + 200069
    7 ...ple.CoreServices.CarbonCore 0x960c2463 PrivateMPEntryPoint + 56
    8 libSystem.B.dylib 0x965956f5 pthreadstart + 321
    9 libSystem.B.dylib 0x965955b2 thread_start + 34
    Thread 14:
    0 libSystem.B.dylib 0x9656b68e _semwaitsignal + 10
    1 libSystem.B.dylib 0x9659636d pthreadcondwait$UNIX2003 + 73
    2 ...ple.CoreServices.CarbonCore 0x960c424f TSWaitOnCondition + 126
    3 ...ple.CoreServices.CarbonCore 0x960a318e TSWaitOnConditionTimedRelative + 202
    4 ...ple.CoreServices.CarbonCore 0x960c3ecc MPWaitOnQueue + 208
    5 AdobeACE 0x027c138d 0x2790000 + 201613
    6 AdobeACE 0x027c0d85 0x2790000 + 200069
    7 ...ple.CoreServices.CarbonCore 0x960c2463 PrivateMPEntryPoint + 56
    8 libSystem.B.dylib 0x965956f5 pthreadstart + 321
    9 libSystem.B.dylib 0x965955b2 thread_start + 34
    Thread 15:
    0 libSystem.B.dylib 0x9656b68e _semwaitsignal + 10
    1 libSystem.B.dylib 0x9659636d pthreadcondwait$UNIX2003 + 73
    2 ...ple.CoreServices.CarbonCore 0x960c424f TSWaitOnCondition + 126
    3 ...ple.CoreServices.CarbonCore 0x960a318e TSWaitOnConditionTimedRelative + 202
    4 ...ple.CoreServices.CarbonCore 0x960c3ecc MPWaitOnQueue + 208
    5 AdobeACE 0x027c138d 0x2790000 + 201613
    6 AdobeACE 0x027c0d85 0x2790000 + 200069
    7 ...ple.CoreServices.CarbonCore 0x960c2463 PrivateMPEntryPoint + 56
    8 libSystem.B.dylib 0x965956f5 pthreadstart + 321
    9 libSystem.B.dylib 0x965955b2 thread_start + 34
    Thread 16:
    0 libSystem.B.dylib 0x9656b68e _semwaitsignal + 10
    1 libSystem.B.dylib 0x9659636d pthreadcondwait$UNIX2003 + 73
    2 ...ple.CoreServices.CarbonCore 0x960c424f TSWaitOnCondition + 126
    3 ...ple.CoreServices.CarbonCore 0x960a318e TSWaitOnConditionTimedRelative + 202
    4 ...ple.CoreServices.CarbonCore 0x960c3ecc MPWaitOnQueue + 208
    5 AdobeACE 0x027c138d 0x2790000 + 201613
    6 AdobeACE 0x027c0d85 0x2790000 + 200069
    7 ...ple.CoreServices.CarbonCore 0x960c2463 PrivateMPEntryPoint + 56
    8 libSystem.B.dylib 0x965956f5 pthreadstart + 321
    9 libSystem.B.dylib 0x965955b2 thread_start + 34
    Thread 17:
    0 libSystem.B.dylib 0x9656b68e _semwaitsignal + 10
    1 libSystem.B.dylib 0x9659636d pthreadcondwait$UNIX2003 + 73
    2 ...ple.CoreServices.CarbonCore 0x960c424f TSWaitOnCondition + 126
    3 ...ple.CoreServices.CarbonCore 0x960a318e TSWaitOnConditionTimedRelative + 202
    4 ...ple.CoreServices.CarbonCore 0x960c3ecc MPWaitOnQueue + 208
    5 AdobeACE 0x027c138d 0x2790000 + 201613
    6 AdobeACE 0x027c0d85 0x2790000 + 200069
    7 ...ple.CoreServices.CarbonCore 0x960c2463 PrivateMPEntryPoint + 56
    8 libSystem.B.dylib 0x965956f5 pthreadstart + 321
    9 libSystem.B.dylib 0x965955b2 thread_start + 34
    Thread 18:
    0 libSystem.B.dylib 0x965645c6 machwaituntil + 10
    1 libSystem.B.dylib 0x965dc1e5 nanosleep + 314
    2 com.adobe.PSAutomate 0x20479755 ScObjects::Thread::sleep(unsigned int) + 143
    3 com.adobe.PSAutomate 0x204797b5 ScObjects::Thread::wait(unsigned int) + 23
    4 com.adobe.PSAutomate 0x2046a502 ScObjects::BridgeTalkThread::run() + 332
    5 com.adobe.PSAutomate 0x20479a77 ScObjects::Thread::go(void*) + 239
    6 libSystem.B.dylib 0x965956f5 pthreadstart + 321
    7 libSystem.B.dylib 0x965955b2 thread_start + 34
    Thread 19:
    0 libSystem.B.dylib 0x965b45e2 select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x965956f5 pthreadstart + 321
    2 libSystem.B.dylib 0x965955b2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0xa02880f0 ebx: 0x92ce3e1c ecx: 0xa02871a0 edx: 0x000000a3
    edi: 0x21aa3980 esi: 0xa018f184 ebp: 0xbfffe888 esp: 0xbfffe888
    ss: 0x0000001f efl: 0x00000282 eip: 0x92126ff4 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x21aa5000
    Binary Images:
    0x1000 - 0x19aefdf +com.adobe.Photoshop 11.0 (11.0x20080919 [20080919.r.488 2008/09/19:02:00:00 cutoff; r branch]) (11.0) <2bf522dfa6d6481998620425c31670c8> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4
    0x207f000 - 0x2084fff org.twain.dsm 1.9.3 (1.9.3) /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
    0x208d000 - 0x246701f +com.adobe.linguistic.LinguisticManager 4.0.0 (7863) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguisti c
    0x251b000 - 0x2715fcf +AdobeOwl ??? (???) <4cca2c7b48964ddaa14b725fb0c202b5> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x2790000 - 0x289dfff +AdobeACE ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x28bb000 - 0x2c85fef +AdobeMPS ??? (???) <277e01a3cac34fa9a5914bc0a5bc125a> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x2d14000 - 0x2d74fc7 +AdobeXMP ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x2d83000 - 0x307efff +AdobeAGM ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x313e000 - 0x33d1fc7 +AdobeCoolType ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x3455000 - 0x346efff +AdobeBIB ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x3478000 - 0x3499ff7 +AdobeBIBUtils ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x34a6000 - 0x34c1ff9 +AdobePDFSettings ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSetti ngs
    0x34db000 - 0x34ffff6 +AdobeAXE8SharedExpat ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8 SharedExpat
    0x3512000 - 0x359f2cb +libicucnv.dylib.36.0 ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/ICUConverter.framework/Versions/3.6/libicucnv.dylib .36.0
    0x35cc000 - 0x35e780f +libicudata.dylib.36.0 ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.dylib.36. 0
    0x35ea000 - 0x37a0ff4 +com.adobe.amtlib amtlib 2.0.1.10077 (2.0.1.10077) <cb2ec3bf67714dabbf296775fb6f9608> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x37d7000 - 0x3867fc3 +WRServices ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x39e9000 - 0x39edffc +com.adobe.AdobeCrashReporter 2.5 (3.0.20080806) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashR eporter
    0x39f3000 - 0x3a0ffd7 +com.adobe.LogTransport 1.0 (1.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/LogTransport.framework/Versions/A/LogTransport
    0x3a1a000 - 0x3aeffdd +FileInfo ??? (???) <f0932f89fc984ba9b4f2c58d0e71d3c1> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x3b20000 - 0x3b77fff +aif_core ??? (???) <b4dcb439e1eeabe3bd122c42e980366b> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/aifcore.framework/Versions/A/aifcore
    0x3b8f000 - 0x3bacffd +data_flow ??? (???) <8e452b6f803239d8eb5c49a4e31cb988> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/dataflow.framework/Versions/A/dataflow
    0x3bd8000 - 0x3c51fff +image_flow ??? (???) <498a857df8c6f9e0c92fbc3ec8680ed0> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/imageflow.framework/Versions/A/imageflow
    0x3cb7000 - 0x3cc7fff +image_runtime ??? (???) <f379a95229831e44676dbbd8259f131a> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/imageruntime.framework/Versions/A/imageruntime
    0x3cdc000 - 0x3e9bffe +aif_ogl ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/aifogl.framework/Versions/A/aifogl
    0x3f4c000 - 0x444afc3 +AdobeOwlCanvas ??? (???) <fcb2d1a31f6e41828e2cd0b23572d285> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
    0x4593000 - 0x4665fe7 +AdobeAXEDOMCore ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCor e
    0x4719000 - 0x477bfe7 +com.adobe.PlugPlug 1.0.0.73 (1.0.0.73) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
    0x47dc000 - 0x4823fc7 +com.adobe.adobe_caps adobe_caps 2.0.99.0 (2.0.99.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/adobecaps.framework/Versions/A/adobecaps
    0x4833000 - 0x4872fff com.apple.vmutils 4.1 (104) <2fcd53ce313bb6050bfaf0ac6c1b5ead> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x4b4f000 - 0x4b50fe1 com.apple.textencoding.unicode 2.2 (2.2) <542f2b8930d6bdf16c318ffea541acab> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x4b63000 - 0x4c04fc3 +com.adobe.amt.services AMTServices 2.0.1.10077 (BuildVersion: 53.352460; BuildDate: Tue Jul 29 2008 16:31:09) (2 . 0) <31e82904c3c2424ea1aea5efadbb19b8> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/amtservices.framework/Versions/a/amtservices
    0x4dc8000 - 0x4dd6feb libSimplifiedChineseConverter.dylib ??? (???) <1c60d5ddc447ced14b48d883ecfd2f81> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x4ddb000 - 0x4dedfff libTraditionalChineseConverter.dylib ??? (???) <c9672ad2aba7312af00ec6a4690bb89d> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x4df1000 - 0x4df2ff3 ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x4dfa000 - 0x4dfaffd libmx.A.dylib ??? (???) /usr/lib/libmx.A.dylib
    0x196d6000 - 0x196e3ff7 +com.adobe.asneu.framework asneu version 1.6.2f01 (1.6.2) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
    0x1bf44000 - 0x1bf48fff +com.ononesoftware.FocalPointmenu ??? (1.0) <b6b3408c944930e87f89339a6a73769f> /Applications/Adobe Photoshop CS4/Plug-ins/FocalPoint 1.0.plugin/FocalPoint.onli/Contents/MacOS/FocalPoint
    0x1bf50000 - 0x1bf51fff +com.ononesoftware.gfprint_promenu ??? (1.0) <503ed4d63448584df9e11aa4b8a1a3d1> /Applications/Adobe Photoshop CS4/Plug-ins/GenuineFractalsPrintPro.plugin/GFPrintProMenu.bundle/Contents/MacO S/GFPrintProMenu
    0x1bf55000 - 0x1bf56fff +com.ononesoftware.maskpromenu 4.1 (4.1) <9e6481bfd63774e967fd876086224fe5> /Applications/Adobe Photoshop CS4/Plug-ins/Mask Pro 4.1/Mask Pro Menu.onli/Contents/MacOS/Mask Pro Menu
    0x1bf5b000 - 0x1bf5eff2 +com.ononesoftware.photoframemenu.proed 4.0 (4.0) <36cb592a2b993b934c575ab843cb1d12> /Applications/Adobe Photoshop CS4/Plug-ins/PhotoFrame 4.0 Professional Edition.plugin/PhotoFrame Professional Edition.onli/Contents/MacOS/PhotoFrame Professional Edition
    0x1bf64000 - 0x1bf69fff +com.ononesoftware.phototoolsmenu ??? (1.0) <421e405be89241e961bc7cba1984a43c> /Applications/Adobe Photoshop CS4/Plug-ins/PhotoTools 1.0 Professional Edition/PhotoTools.onli/Contents/MacOS/PhotoTools
    0x1bf71000 - 0x1bf72fff +com.ononesoftware.phototune.menu 2.2 (2.2) <9bc0ee37b5e8e9f4869bbfcdac737d46> /Applications/Adobe Photoshop CS4/Plug-ins/PhotoTune 2/PhotoTune 2 Menu.onli/Contents/MacOS/PhotoTune 2 Menu
    0x1bf78000 - 0x1bf7affa +Adobe Unit Types a2.0.0 (2.0.0) /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types
    0x1c249000 - 0x1c249fff +com.ononesoftware.phototools.batch ??? (1.0.3) <91724e0e75f97c324185888f25f3569b> /Applications/Adobe Photoshop CS4/Plug-ins/PhotoTools 1.0 Professional Edition/PhotoTools Batch.plugin/Contents/MacOS/PhotoTools Batch
    0x1c2dc000 - 0x1c2ffff7 +CSI-Launcher.dylib ??? (???) /Library/Application Support/Adobe/CS4ServiceManager/CSI-Launcher.dylib
    0x1c31c000 - 0x1c49ffe3 GLEngine ??? (???) <53be12846de26d4d81d58a074b55c877> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1c4cd000 - 0x1c72afe9 com.apple.ATIRadeonX2000GLDriver 1.5.30 (5.3.0) <c8d191ddd6b0c9382827eacc8a007b21> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0x1c789000 - 0x1c7a5ff7 GLRendererFloat ??? (???) <c87cf601b3d09de41ec0e742e7afda79> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x1d863000 - 0x1d86efff +Enable Async IO ??? (???) <fd91e79fc4aa4ebcaf6d3e154f14878f> /Applications/Adobe Photoshop CS4/Plug-ins/Extensions/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
    0x1d873000 - 0x1d88102f +FastCore ??? (???) <f12878b7bee940ca9f0565cd0f5688e2> /Applications/Adobe Photoshop CS4/Plug-ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore
    0x1d887000 - 0x1d892ffb +PPCCore ??? (???) <ed521eb7681d45aa9ae36bf4663e4bd3> /Applications/Adobe Photoshop CS4/Plug-ins/Extensions/PPCCore.plugin/Contents/MacOS/PPCCore
    0x1d898000 - 0x1d8a3ffe +AltiVecCore ??? (???) <a967ae2af2ae4e12a7b668b981cbd906> /Applications/Adobe Photoshop CS4/Plug-ins/Extensions/AltiVecCore.plugin/Contents/MacOS/AltiVecCore
    0x1d8a9000 - 0x1d8f0ff7 +MultiProcessor Support ??? (???) <001a163b53144613a23af35b63065fd0> /Applications/Adobe Photoshop CS4/Plug-ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
    0x1da00000 - 0x1da65fe3 +MMXCore ??? (???) <e206c8dcaea849df8fbc8b447e3a59a1> /Applications/Adobe Photoshop CS4/Plug-ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore
    0x1db0f000 - 0x1dc61fc7 +com.adobe.coretech.adm 3.10x16 (3.1) /Applications/Adobe Photoshop CS4/Plug-ins/ADM/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0x1eb47000 - 0x1eb52fef +com.ononesoftware.extensislibrary 1.0 (2.0.0) <562852df098d3403b3b12f434ea59309> /Applications/Adobe Photoshop CS4/Plug-ins/onOne Library.8li/Contents/MacOS/onOne Library
    0x1eb65000 - 0x1eb6effd +com.ononesoftware.activationtoolbox ??? (1.0) <6278ebb79d9b1a51678ce3c9defa7c6e> /Library/Frameworks/onOneActivationToolbox.framework/Versions/A/onOneActivation Toolbox
    0x2004b000 - 0x200cdfea +com.ononesoftware.FocalPoint 1.0 (1.0.2) <6ee942ec06a48e56d6da576366054b5b> /Applications/Adobe Photoshop CS4/Plug-ins/FocalPoint 1.0.plugin/FocalPoint 1.0.plugin/Contents/MacOS/FocalPoint 1.0
    0x20147000 - 0x20198ffb +com.ononesoftware.photoframe.professional.auto 1.0.0 (4.0.1) <c1b572117ff519491395098e5a20f9ad> /Applications/Adobe Photoshop CS4/Plug-ins/PhotoFrame 4.0 Professional Edition.plugin/PhotoFrame Professional Edition Automation.plugin/Contents/MacOS/PhotoFrame ProEd Automation
    0x201ea000 - 0x202deff1 +com.ononesoftware.phototools 1.0.3 (1.0.3) <3405d85ed48e95cca4d7d441fd0b305a> /Applications/Adobe Photoshop CS4/Plug-ins/PhotoTools 1.0 Professional Edition/PhotoTools 1.0 Professional Edition.plugin/Contents/MacOS/PhotoTools 1.0 Professional Edition
    0x20345000 - 0x205a1fdf +com.adobe.PSAutomate 11.0 (11.0) /Applications/Adobe Photoshop CS4/Plug-ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
    0x20835000 - 0x20903fff +AdobeExtendScript ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendS cript
    0x2097a000 - 0x20a1bfd7 +AdobeScCore ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x20c00000 - 0x20de8fff com.apple.RawCamera.bundle 2.0.11 (410) <7704cc57f7daceb81672bfdc4434da40> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x21b00000 - 0x21f82fe3 +AdobeLM_libFNP.dylib ??? (???) <02e9ac769cc64974af0548e737c2cc20> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/amtlib.framework/Versions/a/AdobeLM_libFNP.dylib
    0x220ac000 - 0x22108ff2 +AdobeUpdater ??? (???) <064cfaa41caf46e3bebf04948641c927> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeUpdater.framework/Versions/a/AdobeUpdater
    0x3e000000 - 0x3e045fef com.apple.glut 3.4.0 (GLUT-3.4.0) <e8308e6cd0ebd636413bcf20a29b5866> /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
    0x40000000 - 0x400ae030 +AdobeJP2K ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x8fe00000 - 0x8fe2da53 dyld 96.2 (???) <c254337fa28c7eacb3d3e1d56aa141a4> /usr/lib/dyld
    0x90003000 - 0x9002bfff libcups.2.dylib ??? (???) <1031ca5b692b80a9568e57a342b60157> /usr/lib/libcups.2.dylib
    0x9007d000 - 0x900d9ff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x900da000 - 0x901a1ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x901b2000 - 0x901b9ff7 libCGATS.A.dylib ??? (???) <973c01cc14f3d673270e269ccfaec660> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x901ba000 - 0x9026cffb libcrypto.0.9.7.dylib ??? (???) <69bc2457aa23f12fa7d052601d48fa29> /usr/lib/libcrypto.0.9.7.dylib
    0x902aa000 - 0x902e1fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x902e2000 - 0x902e6fff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x902e7000 - 0x907b8f3e libGLProgrammability.dylib ??? (???) <fe1a33d4919c121aab831ad516da6a89> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x907b9000 - 0x907c0fe9 libgcc_s.1.dylib ??? (???) <a9ab135a5f81f6e345527df87f51bfc9> /usr/lib/libgcc_s.1.dylib
    0x90e12000 - 0x90e12ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x90e63000 - 0x90e6afff com.apple.agl 3.0.9 (AGL-3.0.9) <aeab67ef267f8295ae80fddc197b52a5> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x90fa4000 - 0x90fabffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x9104f000 - 0x91052fff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9105d000 - 0x91104feb com.apple.QD 3.11.54 (???) <b743398c24c38e581a86e91744a2ba6e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91134000 - 0x91134ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91135000 - 0x91135ff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91136000 - 0x91155ffa libJPEG.dylib ??? (???) <e7eb56555109e23144924cd64aa8daec> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91159000 - 0x911d3ff8 com.apple.print.framework.PrintCore 5.5.3 (245.3) <222dade7b33b99708b8c09d1303f93fc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x911d4000 - 0x911d8fff libGIF.dylib ??? (???) <572a32e46e33be1ec041c5ef5b0341ae> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x911d9000 - 0x9125dfe3 com.apple.CFNetwork 339.5 (339.5) <c6565c13b0356e1d4bb99a68398d558b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91293000 - 0x91378ff3 com.apple.CoreData 100.1 (186) <8e28162ef2288692615b52acc01f8b54> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x91379000 - 0x91389ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <8b7831b5f74a950a56cf2d22a2d436f6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9138a000 - 0x9138ffff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x91390000 - 0x91423ff3 com.apple.ApplicationServices.ATS 3.4 (???) <a96cd91dabc68545183c11de8f92c7e4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9142a000 - 0x91c27fef com.apple.AppKit 6.5.3 (949.34) <4c7af9b12c894d4a528fda29377f143b> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91c28000 - 0x91fc5fe7 com.apple.QuartzCore 1.5.5 (1.5.5) <82435993614a3fff1236be18f82188bf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x92030000 - 0x9203afeb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9203b000 - 0x9216dfff com.apple.CoreFoundation 6.5.4 (476.15) <e2869ad6dc1dd289f21b305b0bea9158> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9216e000 - 0x921eafeb com.apple.audio.CoreAudio 3.1.0 (3.1) <a8b4350bc44d83c1cc50f2e0ac02f506> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x921eb000 - 0x92203fff com.apple.openscripting 1.2.8 (???) <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92204000 - 0x92218ff3 com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92219000 - 0x92241ff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x92242000 - 0x92564fe2 com.apple.QuickTime 7.5.5 (995.22.3) <07ffd134d58fdbfe377ba9007f591289> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x92565000 - 0x92565ffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x92566000 - 0x92572ffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92573000 - 0x925a0feb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x925a1000 - 0x925d0fe3 com.apple.AE 402.2 (402.2) <e01596187e91af5d48653920017b8c8e> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x925d1000 - 0x92610fef libTIFF.dylib ??? (???) <3589442575ac77746ae99ecf724f5f87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9285e000 - 0x9286cffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x9286d000 - 0x9286dffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9289e000 - 0x92ba5fff com.apple.HIToolbox 1.5.4 (???) <5e2af960b53059c648af4adb99471032> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92ba6000 - 0x92be4fff libGLImage.dylib ??? (???) <f0fe2252f6b1ca341bc7837fe2dcf11a> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x92be5000 - 0x92cd9ff4 libiconv.2.dylib ??? (???) <c508c60fafca17824c0017b2e4369802> /usr/lib/libiconv.2.dylib
    0x92cda000 - 0x92dbafff libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
    0x92dd9000 - 0x92dfdfff libxslt.1.dylib ??? (???) <ea5c8d349a3934ecc2b936f9cdfaba04> /usr/lib/libxslt.1.dylib
    0x92e65000 - 0x92eeffe3 com.apple.DesktopServices 1.4.7 (1.4.7) <d16642ba22c32f67be793ebfbe67ca3a> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92ef0000 - 0x92efdfe7 com.apple.opengl 1.5.7 (1.5.7) <db835aeb1ffca9f5b5647dd0829a5b2c> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x92efe000 - 0x92f19ffb libPng.dylib ??? (???) <4780e979d35aa5ec2cea22678836cea5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x92f1a000 - 0x930e8fff com.apple.security 5.0.4 (34102) <3a178df3d2ee0bb65cdbfe570618acf4> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x930e9000 - 0x93221ff7 libicucore.A.dylib ??? (???) <3d8fdaf51c2664ab620f1688203caf26> /usr/lib/libicucore.A.dylib
    0x9326d000 - 0x93273fff com.apple.print.framework.Print 218.0.2 (220.1) <8bf7ef71216376d12fcd5ec17e43742c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93274000 - 0x93274ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x93275000 - 0x9332ffe3 com.apple.CoreServices.OSServices 226.5 (226.5) <2a135d4fb16f4954290f7b72b4111aa3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x93330000 - 0x936eefea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x93726000 - 0x93807ff7 libxml2.2.dylib ??? (???) <1baef3d4972ee789d8fa6c1fa44da45c> /usr/lib/libxml2.2.dylib
    0x949b1000 - 0x94a01ff7 com.apple.HIServices 1.7.0 (???) <f7e78891a6d08265c83dca8e378be1ea> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x94a02000 - 0x94a5cff7 com.apple.CoreText 2.0.3 (???) <1f1a97273753e6cfea86c810d6277680> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x94a5d000 - 0x94a5fff5 libRadiance.dylib ??? (???) <8a844202fcd65662bb9ab25f08c45a62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x94a60000 - 0x94a6bfe7 libCSync.A.dylib ??? (???) <86d2f2e167ba6f74f45a186f5c7f8980> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94a6c000 - 0x94ab5fef com.apple.Metadata 10.5.2 (398.22) <a6b676925dd832780daf991e79adfebd> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x94b8c000 - 0x94c3bffb com.apple.QTKit 7.5.5 (995.22.3) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x94caa000 - 0x94cc0fff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x94cc1000 - 0x94cc3fff com.apple.securityhi 3.0 (30817) <dbe328cd62d603a952a4226342711e8b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x94cc4000 - 0x94d41fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x94d42000 - 0x94fbdfe7 com.apple.Foundation 6.5.6 (677.21) <5cfa0aa8b9b43193955d601ba6c2591a> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9509f000 - 0x95126ff7 libsqlite3.0.dylib ??? (???) <6978bbcca4277d6ae9f042beff643f7d> /usr/lib/libsqlite3.0.dylib
    0x95127000 - 0x9513dfe7 com.apple.CoreVideo 1.5.1 (1.5.1) <80b173571cdb99a829e1b8ec0a677291> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x95144000 - 0x95144fff com.apple.Carbon 136 (136) <450e7e239de3f8e559c78f6473ec5149> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x951b8000 - 0x95854fff com.apple.CoreGraphics 1.351.33 (???) <481a77e81d9e53589a05e80cfa90bbb5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x95855000 - 0x9599bff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <6a6623d3d1a7292b5c3763dcd108b55f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x95aea000 - 0x95efafef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x95efb000 - 0x95f07ff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x95f3a000 - 0x95fc6ff7 com.apple.LaunchServices 290 (290) <61af37aac50984d220dd176f777e3b72> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9604d000 - 0x96078fe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x96079000 - 0x96353ff3 com.apple.CoreServices.CarbonCore 786.6 (786.6) <5682aae1e2cf5ae750d5a4dea98c084c> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x96354000 - 0x96354ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x96356000 - 0x9647afe3 com.apple.audio.toolbox.AudioToolbox 1.5.1 (1.5.1) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9647b000 - 0x9650efff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x96521000 - 0x96562fe7 libRIP.A.dylib ??? (???) <1f09316e876fe813271bdfb9eb5b229e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x96563000 - 0x966c3ff3 libSystem.B.dylib ??? (???) <3699b292cde73c2847f87c7e1510d87b> /usr/lib/libSystem.B.dylib
    0x966d0000 - 0x9674fff5 com.apple.SearchKit 1.2.1 (1.2.1) <3140a605db2abf56b237fa156a08b28b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x96750000 - 0x96759fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9675a000 - 0x9679cfef com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9679d000 - 0x96828fff com.apple.framework.IOKit 1.5.1 (???) <324526f69e1443f2f9fb722cc88a23ec> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9683d000 - 0x96845fff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x96846000 - 0x9689fff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x96a2d000 - 0x96a56fff com.apple.CoreMediaPrivate 13.0 (13.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x96a57000 - 0x96ab4ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x96ab5000 - 0x96b80fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x96dea000 - 0x96e29fff com.apple.CoreMediaIOServicesPrivate 13.0 (13.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x96e2a000 - 0x96e48fff libresolv.9.dylib ??? (???) <a8018c42930596593ddf27f7c20fe7af> /usr/lib/libresolv.9.dylib
    0x96f18000 - 0x96f52fe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x96f58000 - 0x96f68fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x96f69000 - 0x97019fff edu.mit.Kerberos 6.0.12 (6.0.12) <da7253e3fb7e47e46cb46d47ed320ffc> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9717c000 - 0x9717dffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x9717e000 - 0x9717eff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0xb0000000 - 0xb0006ff8 com.apple.carbonframeworktemplate 1.3 (1.3.12) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
    0xba900000 - 0xba916fff libJapaneseConverter.dylib ??? (???) <a684b28c60ef6369098bdb4b835dc22c> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe2 libKoreanConverter.dylib ??? (???) <6a5c5d6a0aa069ec3faa46bbca950340> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Welcome to Apple Discussions!
    What are you calling a clean install?
    http://discussions.apple.com/thread.jspa?messageID=607614
    The terminology may be different in Portuguese, though since I don't speak it, I wouldn't know.

  • Problems with Oil Paint Filter

    I'm having problems with the oil paint filter in CS6. It runs and looks fine while in the filter, but once I commit the changes and go back to Photoshop, there are one to three bright squares of fluorescent green (sometimes pink, I think) overlaying parts of my image. I have a Radeon 7450 graphics card and Windows 8. Have drawing mode set to basic because of the flickering issues.

    this is a new computer, so this is the only video card that has ever been in it that I am away of. 
    Here's the system info
    Adobe Photoshop Version: 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00) x64
    Operating System: Windows NT
    Version: 6.2
    System architecture: AMD CPU Family:15, Model:1, Stepping:2 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2
    Physical processor count: 3
    Logical processor count: 6
    Processor speed: 3491 MHz
    Built-in memory: 10029 MB
    Free memory: 7515 MB
    Memory available to Photoshop: 8907 MB
    Memory used by Photoshop: 60 %
    Image tile size: 132K
    Image cache levels: 4
    Liquify crashed on 6/27/2013 at 4:01:22 PM (Evaluating GPU Capabilities)
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Normal
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: AMD Radeon HD 7450
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 1080, right: 1920
    Video Card Number: 1
    Video Card: AMD Radeon HD 7450
    OpenCL Unavailable
    Driver Version: 8.981.0.0
    Driver Date: 20120704000000.000000-000
    Video Card Driver: aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.d ll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
    Video Mode: 1920 x 1080 x 4294967296 colors
    Video Card Caption: AMD Radeon HD 7450
    Video Card Memory: 1024 MB
    Video Rect Texture Size: 16384
    Serial number: Tryout Version
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\heather\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 910.3G, 387.0G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2012/01/18-15:07:40   66.492997   66.492997
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOwl.dll   Adobe Owl 2012/02/09-16:00:02   4.0.93   66.496052
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1654  
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   6,0,29,0  
       AGM.dll   AGM 2012/01/18-15:07:40   66.492997   66.492997
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib (64 Bit)   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/01/18-15:07:40   66.492997   66.492997
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/01/18-15:07:40   66.492997   66.492997
       BIBUtils.dll   BIBUtils 2012/01/18-15:07:40   66.492997   66.492997
       boost_date_time.dll   DVA Product   6.0.0  
       boost_signals.dll   DVA Product   6.0.0  
       boost_system.dll   DVA Product   6.0.0  
       boost_threads.dll   DVA Product   6.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/01/18-15:07:40   66.492997   66.492997
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0  
       dvacore.dll   DVA Product   6.0.0  
       dvamarshal.dll   DVA Product   6.0.0  
       dvamediatypes.dll   DVA Product   6.0.0  
       dvaplayer.dll   DVA Product   6.0.0  
       dvatransport.dll   DVA Product   6.0.0  
       dvaunittesting.dll   DVA Product   6.0.0  
       dynamiclink.dll   DVA Product   6.0.0  
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2.1.2.1640  
       mediacoreif.dll   DVA Product   6.0.0  
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS6   CS6  
       Plugin.dll   Adobe Photoshop CS6   CS6  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   3.0.0.383  
       PSArt.dll   Adobe Photoshop CS6   CS6  
       PSViews.dll   Adobe Photoshop CS6   CS6  
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
       wu3d.dll   U3D Writer   9.3.0.113  
    Required plug-ins:
       3D Studio 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       ADM 3.11x01
       Angled Strokes 13.0
       Average 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Bas Relief 13.0
       BMP 13.0
       Camera Raw 7.0
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Clouds 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Collada 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Dicom 13.0
       Difference Clouds 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Embed Watermark 4.0
       Entropy 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Extrude 13.0
       FastCore Routines 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Flash 3D 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Google Earth 4 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Kurtosis 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Maximum 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Mean 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Measurement Core 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Median 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Mezzotint 13.0
       Minimum 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       MMXCore Routines 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Photocopy 13.0
       Photoshop 3D Engine 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Picture Package Filter 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Pinch 13.0
       Pixar 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Range 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.0
       Shear 13.0
       Skewness 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Standard Deviation 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Sumi-e 13.0
       Summation 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Torn Edges 13.0
       Twirl 13.0
       U3D 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Underpainting 13.0
       Vanishing Point 13.0
       Variance 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Variations 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       Wavefront|OBJ 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       WIA Support 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Wind 13.0
       Wireless Bitmap 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       ZigZag 13.0
    Optional and third party plug-ins:
       Alien Skin Blow Up 3 3.0.0
       Blow Up 3.0.0
    Plug-ins that failed to load: NONE
    Flash:
       Gallery Wrapper
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE

Maybe you are looking for

  • Comparing Arraylist and String

    Plz can anyone help me to find that this what will be the behaviour of this code.I have an Enumeration and and ArrayList.I want to comapre each object of Enumeration with each object of ArrayList.The code is private boolean checkDeviceType(HttpServle

  • Problem printing thru network with new 8500A all-in-one

    I installed a new Officejet pro 8500a plus on my network.  I have 3 computers on the network set up this way:  DSL modum connected to Linksys router, all 3 computers connected to the router, PRINTER is connected to main COMPUTER and other 2 computers

  • File sharing with PC

    Hi, I'm new to the Mac experience and I'm trying to set-up file sharing with my MacBook and PC and I can't figure it out. I've tried entering the PC's IP address through the Finder - Connect to Server, but I can't get it working. I would appreciate a

  • Find My Friends (Just The Important ones)

    Hi,,, I would like to use "Find My Friends" app as both my wife and i have iPhones. Ive put the app on both phones ,,, We have one Apple ID for all our devices,,, It doesnt seem to work ??? I just want to to use to see our locations ,, not everybody

  • Keynote the new Hypercard?

    I just finally broke down and bought Keynote, and so far have been quite impressed. I hope at least a few people here are old enough to remember the Hypercard era. For the benefit of those too young, Hypercard was a Mac only application that allowed,