SpryMenuBarVertical IE and Design Problems

hey guys
Ich muss ne Homepage für nen Wettbewerb machen und hab ein vorgegebens Design usw... nun sind die Probleme aufgetaucht:
Internet Explorer kann die Submenus nicht nach rechts sondern nur am jehweiligen Haubtthema nach unden anzeigen.
Der top und bottom muss einen Rand haben nur is leider so dass die Submenus einen halb so dicken Rand beim ersten und letzten Llinks haben o.O
Ich sollte den Text mit nem hover versehen und zwar blau wenn man drüberfähr und schwarz was aktiv angeklickt is geht aber irgendwie net da das Submenu gleich wider zurückgeht
Danke fürs Lesen fals noch fragen sind wegen den Fehlern Problemen sagt mir bescheid
Hoffe das wer helfen kann

It would be better to show your markup, preferably via an online URL. That way we can get a better understanding of what it is that you want.
Also, your questions will be better attended to if you go to the Spry Forum here http://forums.adobe.com/community/labs/spry

Similar Messages

  • Proccessing Annotations and design problem

    Hi Experts,
    I have a problem in designing an Api
    I define a bunch of annotations for my value objects at runtime, currently I have a AnnotationUtil class in which read all fields of the given classes and put the field name and its annotation in a Map structure so whenever I need to know the annotation for a field I obtain it through that Map
    but I think this is not a good design and it's really simple and if I add or make any change in my annotation the util class should be revised
    I want to know if there is any design pattern to process annotations,
    I want to know how Apis like hibernate will handle their annotations
    any suggestion or comment would be of great help
    thank you very much in advance

    Hello, you can see this article
    http://www.fusionsoft-online.com/articles-java-annotations.php
    and get annotations for classes or methods using code like:
    AnnotatedClass annotatedClass =
                   AnnotationManager.getAnnotatedClass(Derived.class);
    annotatedClass.getAnnotation(A.class);
    AnnotatedMethod annotatedMethod = annotatedClass
              .getAnnotatedMethod("method1", new Class[0]);
    annotatedMethod.getAnnotation(B.class);
    as well as
    get all annotated methods of the class (empty if none)
    getAnnotatedMethods()
    and get all the inherited or declared annotations
    getAllAnnotations()
    Regards, Michael.

  • Design problem/Ex​ercise Book

    Hi Everyone,
                       I am new to Labview. I just started with Labview 2011 student edition and I am following Bishop's book. But I also want a tutorial book with lots of design problems and exercises to get my skills. I am a postdoc in purdue and I started learning LabViews just because I want to learn (I am facinated by the G programming. I use it in my instrument but the departmental engineers wrote it and I want to have the same type of skills. I am also intending to become CLD). Can anyone suggest me any book or any website where I can find exercises and design problem? Thank you everyone.
    Cheers!
    Solved!
    Go to Solution.

    Ekram wrote:
    Hi Everyone,
                       I am ...Can anyone suggest me any book or any website where I can find exercises and design problem? Thank you everyone.
    Cheers!
    You found it!
    Get involved answering questions (gird up your loins) and let others hammer you into submision. Don't fall into the trap of writing code and posting VIs on demand, but rather post images of how you want to solve the posted question and let others feedback.
    Have fun!
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Problems Installing Web and Design Premium Suite

    Hi:
    I need help. I purchased a student and teacher's verision of Web and Design Suite and was given a download link with 4 files- 3 exe files and 1 file (7z)- which is listed under file listing as a ZIP file. I have successfully downloaded all files. 2 of the 4 files open okay. These are the Illustrator and In Design font files. My default saving location is my desktop so both these folders appear there.
    The problem is the Web and Design. exe file and the 4.5gb Web and Design 7z file. when clicked the exe file says- A problem occured while extracting some files, check available space on your computer and write privilleges on the destination folders. I tried changing the destination folders - not using my desktop as the final destination but this does not work. The file space on my computer is more than sufficient. For the 7s file when I click on it, it activiates Winzip but says it cannot open, does not seem to be a vaild archive.
    I really need help urgent and need this programme to begin a course
    Alfie Yee

    I almost forgot  I use Windows Vista on my computer. Need help urgent

  • Problem with code and design view

    When I try to have both the code and design view
    side by side in Dreamweaver CS4 on a PC -- I get the html code in both sections.
    How  do I see the layout while looking at the code?
    Thanks for help.
    Library Friend

    You've probably got View > Split Code checked.
    Click View > Code and Design

  • Design problem with Swing

    Hi all. I've run into some design problems when trying to create a Swing app.
    I've got a non-graphical class that emulates a power supply unit. Let's call it PSUnit. I have to create a GUI for PSUnit.
    Every class designed to build a full GUI app uses PSUnit in some way (changes its voltage, displays voltage, turns it on, turns it off, etc.)
    Here's the catch. Suppose I've got a class:
    public class BuildingBlock extends JPanel {
         // code includes a JTextBox displaying
         // the current PSUnit voltage.
    }another class is created for setting the voltage:
    public class AnotherBlock extends JPanel {
         // this class contains a JSpinner and
         // a button that retrieves the JSpinner value
         // and sets it as the current voltage of
         // PSUnit
    }When the button in AnotherBlock is clicked, I must notify the BuildingBlock class that a PSUnit has changed its state so it can update it's values and display the correct data.
    I've tried to do this a few times but failed miserably, so I'm hoping you guys could help me out.
    Please note that both of the above classes have some additional code and it's not very pleasant to make one class an inner class of another. I should be able to create a "standalone" classes which, combined together, form a GUI for PSUnit.
    Thanks.

    Yes this is a common problem that many of us have when building UIs
    Here's the question: In this instance, are these two classes really independant? Could they stand alone? Often when building a GUI, it's not even that easy to answer that question, but these leads to the two ways you can solve this
    #1. Make them independent, and use listeners either using Observable / Observer or creating your own custom listeners. The advantage of this is smaller classes and more independence. The disadvantage is it's generally more complicated, especially at the design stage
    #2 (what I'd probably recommend). Make 1 GUI class "MyPSFrame", then declare your panel classes as inner classes within that class. This way, everything goes into one spot, and everything is shareable. This also makes sense if you can't have 1 of the panels without the other.

  • Design problem about repreatable entity relationships

    Hi all!
    As I design the data model (let's name it the ERD, no matter the name is quite unfashonable), I have found almost identical structures of entities and relationships between them, but playing completely different roles in the semantics of the model.
    It obviously makes no sense to implement all such entities separately as the Entity EJB as they are to share most of the fields and methods, but I found no "handsome" solution when trying to implement them as sets of classes and interfaces forming "the abstract EJBs", and then by putting the conrete classes and complementary interfaces at the final packages to create "concrete EJBs". The problem was about types returned by the createXXX and findXXX methods, because they had to return the "abstract" EJBs but the EJB programming contract forces them to return the "concrete" ones, that are unknown to me when defining the "abstract ones". So it cancels the sense for creating them this way. It was also unclear how to operate the relationships in such model.
    The idea was:
    1. I define BaseSthLocalHome extends EJBLocalHome
    2. I define BaseSthLocal extends EJBLocalObject
    3. I define BaseSthBean implements EntityBean
    ... this way I have the "abstract bean", and then I can create many:
    SthOneLocalHome extends BaseSthLocalHome,
    SthOneLocal extends BaseSthLocal,
    SthOneBean extends BaseSthBean ... to have the first "concrete" EJB,
    SthTwoLocalHome extends BaseSthLocalHome... and so on to create the second, third and all the next "concrete" EJBs.
    Anyway, it did not work fine as I defined createXXX and findXXX methods at the BaseSthLocalHome interface - it made sense, because those methods did not depend on the other entities.
    Has anyone some idea of how to solve the design problem? Currently we are at very beginning of the project, so we have some "case study" time, and I would appreciate any solution: redesign of the data model, extraction of new EJB modules or any use of the objective inheritance.
    Thanks in advance!
    Marcin Gawlik

    Again me - I now it is a bad idea to reply for own messages, but I have just checked a new idea:
    The problem was about re-using the same components in different roles. I tried to do that by creating subclasses of the EJB classes, but it did not work. So I tried to define multiple entity EJBs that have the same class.
    Considering the given example, it would look:
    1. public interface BaseSthLocalHome extends EJBLocalHome
    2. public interface BaseSthLocal extends EJBLocalObject
    3. public abstract class BaseSthBean implements EntityBean
    ... then I created the deployment descriptor that deploys this pack of class and interfaces as three separate CMP Entity Beans:
    1. deploy BaseSthBean as the SthOne CMP entity EJB
    2. deploy BaseSthBean as the SthTwo CMP entity EJB
    3. ... and so one
    The question is: IS THERE ANY CONTRA FOR THIS WAY OF DEPLOYING EJBS? Is there any reason for not to use the same class and its complementary interfaces many times to create many separate enity EJBs working within the same EJB module?
    Thanks in advance!
    Gaw

  • Design problem: Central MessagePool in WebDynpro App.

    Hi people,
    I have a design problem in my webdynpro application:
    I'm designing an application with different DC's. The architecture of the application is similar to the architecture described in the document "Web Dynpro Component
    Interface Defintions in Practice SAP NetWeaver ’04s": One root DC which manages the differnt child DC's, which contain the application content.
    Now I want to have a central MessagePool. Certain Messages in the child DCs are the same, and I don't want to have multiple MessagePool-entries for the same Message (each child DC has to define its own messages).  I can't  use the root DC as central MessagePool, because the Child DCs havn't access to the root-DC.
    Any idea, how to define and use a central MessagePool?
    Regards,
    Thomas

    Hi Thomas,
    Instead of the architecture what you are thinking try the architecture explained in the following link:
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f4d79e59-0601-0010-0689-89670315bc6b">link</a>
    Dont forget to award points on helping answers
    Regards
    sid

  • Design problem: RS232 communication

    Hi,
    I have a design problem for communication with a device via RS232. Since I'm normally a C++ programmer I might just look at the problem from a wrong angle and hope for some hints how to do it in LabVIEW.
    The scenario:
    A device is communicating with the PC via RS232. The device permanently sends data packets. At the same time, commands can be sent to the device and it returns replies. Data packets and reply packets are arbitrarily mixed, i.e. after sending a command there could be a couple of date packets before the reply comes back but the packets can be distinguished by an identifier.
    At least one, ideally several VIs should communicate with the device. Commands should be sent by pressing buttons and the incoming data should be parsed (the packets contain mutliple data streams) and shown on graphs or saved to files.
    My initial idea:
    Coming from C++ I wanted to build a class for the communication that permanently reads the incoming data and splits it to reply and data packets. This class would then have a function to send out a command and would return the reply or a timeout and it would be possible to register and unregister listeners (I wanted to use queues for this) for the various data streams.
    The problems I ran into:
    There were a couple but the two most pressing problems were: how could I communicate with the constantly running sample VI (e.g. to stop sampling) and how could I propagate changes to the class to it (e.g. new listeners). Since it is not returning I don't see a good way to implement it as in instance funcion (i.e. pass it the object). I could probably not let the sample function run continously but call it periodically from outside. However I planned to implement the class as a singleton, so it could be used parallely from different VIs.
    Is there a best practice for a case like this?
    I'm glad about any hints or ideas.
    Thanks,
    Tobias

    tfritz wrote:
    Hi,
    thanks. Since almost the same thing was suggested to me in a German forum I guess this is really common practice (using one VI with different methods controlled by a queue). It still seems a little "unnatural" for me but my biggest concern (bad interface description) was shattered by the suggestion in the link you sent me to wrap these functions with wrapper VIs, thus caller VIs won't have to deal with the call-by-queue-mechanism. This might also be easier to port to a different implementation later. However I still see the danger that the continously running VI could easily become bloated. 
    It also requires me to change the way I have looked at VIs until now. In our course they told us that VIs are basically functions. Using this design patterns, the VI becomes more of a module, really (Like a C module implemented in a C-Source file). But I will try it. It sounds as if it could work.
    I will still look into the OOP solutions a little more, though. Do I understand you correctly that you wouldn't recommend using LVOOP because it's still buggy? What about dqGOOP for example? This sounds like it could do what I need (however it doesn't seem to implement things like polymorphism, late binding and inheritance so I don't quite see what's so OOP about it. It seems more like programming with structures in C.)
    I don't know if LVOOP is buggy or not.  I think early on it was buggy and things have improved in recent versions. I have read that it doesn't have all the features that you would have in OOP like C.  I wouldn't recommend it only because I'm not familiar with it at all.  I can't recommend something that I'm not comfortable with.  If you go that route, plan on spending time in these forums and in LAVA to reading up on what others have done.  I haven't hard of dqGOOP.
    But back to your suggestion. I still have a couple of questions:
    - How do you return values from the module? Would you use a queue for that as well?
    - Where would the parameter queue be held (created and passed to the VI)
     I would store all of these in a functional global variable.  This is the VI that stores data in shift registers.  Ben's action engine nugget is an advancement on that.  This allows for both the calling VI and the parallel running subVI to get and set the data as needed.  It runs quickly so neither process should be forced to wait while the other  VI is doing its thing.
    - My VI has to be constantly sampling and this shouldn't be interrupted too long by other functions as adding a listener. However both functionalities have to access the same kind of data. Is there an easy way to parallelize this? Would the sampling be a case in the case diagram that's always used if no command was sent to the VI or would it somehow run parallely?   Yes.  There are a couple of ways of doing this.  One would be for the dequeue to have a timeout function.  In the event the dequeue times out, you run the code that is doing the acquisition.  I think a better method is that the code that does the acquisition enqueues its own command again to the end of the queue.  Let's say that is command A.  So when case A finishes, it enqueues A, which seeds itself to run again.  So if nothing else comes into the queue, it just executes A , A, A, A.  But let's say another section of code needs to do something such as command B.  It will slip B into the queue while A is executing.  So you would A, B, then A again, because A would get slipped back into the queue when the first A finishes, but B has already been put in while the first A was running.
    - Would it be possible to make the VI reentrant and in this way use it simultaneously on different COM ports (using different parameter queues as well)? I'm not sure if I will need this but it would be neat if it could work.
    I think you could do this.  It may be a case where the VI is saved as a template  (.vit) and you initiate it multiple times.  I haven't needed to do this before, so I'm afraid I can't provide any details or useful tips. 
    Well, I will fool around some more. Thanks so much for your help. This is kind of exciting since the concepts are quite new for me. Btw, is there something like an academic theory (computer science) for LabVIEW? I came across functional languages in university but data flow languages are still a new concept for me.
    Tobias
    tfritz wrote:
    Another question about the "dynamically starting" of the VI:
    How is the path handled? Is it guaranteed that it always takes the VI from the project or does it just search for the first VI by that name it finds in the file structure? Does this still work when building an .exe from the project? What happens if the VI is already running? Can you test for this?
    While I'm at it: is there a way to stop LabVIEW from searching for subVIs it can't find when openin a VI? This resulted in very unexpected behaviour sometimes where it would find the VI somewhere else (with the same name but maybe an older version).
    In my case, I just had the path hardcoded.  It is my only instance, I'm not planning on moving the VI's.  If you don't have the path, it will take a VI by that name if it's in memory.  If it isn't in memory, it starts searching relative to the calling VI's path.  One thing I know, if you are dealing with relative paths, a subVI has a different relative path in an .exe as opposed to the development environment.  The name of the .exe becomes a folder.  So in development, if your sub VI is mySubVI.vi.  In an executable, its path is MyExe.exe\MySubVI.vi
    For all of this, I recommend searching the forums to get more details.
    If it is searching for a VI, you can hit ignore.  But of course you'd have to do it before it finds it.  When you are dealing with versioning issues, I recommend making a backup copy of the entire directory structure elsewhere.  Some location where it shouldn't stumble across it.

  • On trying to launch CS5 Photoshop: An unexpected and unrecoverable problem has occurred. Photoshop w

    I have an iMac 27" with 2.8 GHz Intel Core 17. 4 GB RAM. It's running OS X 10.6.8 Snow Leopard.
    Last week I had the computer's hard drive replaced after the old one had gone bad. All the data was transferred fine to the new hard drive.
    Since then my CS5 Photoshop comes up with this error message at each launch attempt:
    "An unexpected and unrecoverable problem has occurred. Photoshop will now exit."
    I took the computer back to the repair shop. They said they got CS5 Photoshop working on my computer so I brought it home and -- this is totally inexplicable -- I STILL get the error message.
    Subsequently I've trashed CS5 Photoshop and reinstalled from the original Adobe Design Premium CS5 suite .dmg but I continue to get the same message. I've also trashed the preferences several times and the message still occurs. Creating a new user account for my computer and trying to open CS5 Photoshop there didn't help. I had no problems with fonts and Photoshop CS5 before the hard drive was changed.
    I have no idea what else to do. Any help will be greatly appreciated. Thanks!
    Here is the Photoshop Problem Report:
    Process:         Adobe Photoshop CS5 [426]
    Path:            /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    Identifier:      com.adobe.Photoshop
    Version:         12.0 (12.0x20100407.r.1103) (12.0)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [96]
    Date/Time:       2013-01-20 10:08:41.018 -0600
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          28237 sec
    Crashes Since Last Report:           7
    Per-App Interval Since Last Report:  2014 sec
    Per-App Crashes Since Last Report:   7
    Anonymous UUID:                      399C19BD-C233-4F20-9385-CBEADC8E2EA4
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    abort() called
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                 0x00007fff878340b6 __kill + 10
    1   libSystem.B.dylib                 0x00007fff878d49f6 abort + 83
    2   com.adobe.Photoshop               0x0000000100237b1b 0x100000000 + 2325275
    3   libstdc++.6.dylib                 0x00007fff810d6ae1 __cxxabiv1::__terminate(void (*)()) + 11
    4   libstdc++.6.dylib                 0x00007fff810d5e9c __cxa_call_terminate + 46
    5   libstdc++.6.dylib                 0x00007fff810d69fc __gxx_personality_v0 + 1011
    6   libSystem.B.dylib                 0x00007fff8784aeb1 unwind_phase2 + 145
    7   libSystem.B.dylib                 0x00007fff878547eb _Unwind_Resume + 91
    8   com.adobe.ape                     0x00000001222d2a61 APEStreamWrite + 10193
    9   com.adobe.ape                     0x00000001222d56bf APEStreamWrite + 21551
    10  com.adobe.ape                     0x00000001222d75dc APEStreamWrite + 29516
    11  com.adobe.PSAutomate              0x0000000121dab869 -[ScriptUIAPEStage initWithFrame:stageArgs:] + 121
    12  com.adobe.PSAutomate              0x0000000121daa8ed ScriptUI::APE_Player::apOSCreateStage(Opaque_APEPlayer*, long, NSView*, NSWindow*, ScCore::Rect const&, bool, bool, NSView*&) + 189
    13  com.adobe.PSAutomate              0x0000000121da8a32 ScriptUI::APE_Player::apCreateStage(Opaque_APEPlayer*, long, NSView*, NSWindow*, ScCore::Rect const&, bool, bool, NSView*&) + 66
    14  com.adobe.PSAutomate              0x0000000121da833c ScriptUI::APE_Player::apInitialize(NSView*, NSWindow*, long, bool, bool) + 172
    15  com.adobe.PSAutomate              0x0000000121d9e8f6 ScriptUI::FlexServer::createServerPlayer(bool, bool) + 198
    16  com.adobe.PSAutomate              0x0000000121d9458e ScriptUI::Flex_ScriptUI::start(ScCore::Error*) + 3806
    17  com.adobe.PSAutomate              0x0000000121c6ab2e JavaScriptUI::IJavaScriptUI() + 544
    18  com.adobe.PSAutomate              0x0000000121c6bbb0 InitJavaScriptUI() + 106
    19  com.adobe.PSAutomate              0x0000000121c6be7c CScriptPs::DoLateInitialize() + 622
    20  com.adobe.PSAutomate              0x0000000121c6cc20 CScriptPs::DoExecute(PIActionParameters*) + 630
    21  com.adobe.PSAutomate              0x0000000121c6d0fe PluginMain + 110
    22  com.adobe.Photoshop               0x00000001006fe2c3 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4331399
    23  com.adobe.Photoshop               0x0000000100278000 0x100000000 + 2588672
    24  com.adobe.Photoshop               0x000000010027817d 0x100000000 + 2589053
    25  com.adobe.Photoshop               0x0000000100071d74 0x100000000 + 466292
    26  com.adobe.Photoshop               0x000000010006716f 0x100000000 + 422255
    27  com.adobe.Photoshop               0x0000000100067232 0x100000000 + 422450
    28  com.adobe.Photoshop               0x000000010024fb1b 0x100000000 + 2423579
    29  com.adobe.Photoshop               0x000000010027910b 0x100000000 + 2593035
    30  com.adobe.PSAutomate              0x0000000121c6c4e3 PSEventIdle(unsigned int, _ADsc*, int, void*) + 107
    31  com.adobe.Photoshop               0x000000010024b057 0x100000000 + 2404439
    32  com.adobe.Photoshop               0x0000000100071d74 0x100000000 + 466292
    33  com.adobe.Photoshop               0x000000010006716f 0x100000000 + 422255
    34  com.adobe.Photoshop               0x0000000100067232 0x100000000 + 422450
    35  com.adobe.Photoshop               0x00000001012f0007 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16856267
    36  com.apple.AppKit                  0x00007fff841f06de -[NSApplication run] + 474
    37  com.adobe.Photoshop               0x00000001012ee19c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16848480
    38  com.adobe.Photoshop               0x00000001012ef3c7 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16853131
    39  com.adobe.Photoshop               0x0000000100068e82 0x100000000 + 429698
    40  com.adobe.Photoshop               0x0000000100238308 0x100000000 + 2327304
    41  com.adobe.Photoshop               0x00000001002383a7 0x100000000 + 2327463
    42  com.adobe.Photoshop               0x0000000100002ea4 0x100000000 + 11940
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                 0x00007fff877fec0a kevent + 10
    1   libSystem.B.dylib                 0x00007fff87800add _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                 0x00007fff878007b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                 0x00007fff878002de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                 0x00007fff877ffc08 _pthread_wqthread + 353
    5   libSystem.B.dylib                 0x00007fff877ffaa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                 0x00007fff877ffa2a __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x00007fff877ffe3c _pthread_wqthread + 917
    2   libSystem.B.dylib                 0x00007fff877ffaa5 start_wqthread + 13
    Thread 3:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   com.adobe.amt.services            0x0000000108523c53 AMTConditionLock::LockWhenCondition(int) + 37
    3   com.adobe.amt.services            0x000000010851ccce _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 92
    4   com.adobe.amt.services            0x0000000108523cbe AMTThread::Worker(void*) + 28
    5   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                 0x00007fff877ffa2a __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x00007fff877ffe3c _pthread_wqthread + 917
    2   libSystem.B.dylib                 0x00007fff877ffaa5 start_wqthread + 13
    Thread 5:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 15:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 16:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 17:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 18:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 19:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff878208f9 nanosleep + 148
    2   com.adobe.PSAutomate              0x0000000121dea0fb ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate              0x0000000121dcc033 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate              0x0000000121dea1f6 ScObjects::Thread::go(void*) + 166
    5   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 20:
    0   libSystem.B.dylib                 0x00007fff877ffa2a __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x00007fff877ffe3c _pthread_wqthread + 917
    2   libSystem.B.dylib                 0x00007fff877ffaa5 start_wqthread + 13
    Thread 21:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff878208f9 nanosleep + 148
    2   libSystem.B.dylib                 0x00007fff87820863 usleep + 57
    3   com.apple.AppKit                  0x00007fff843763a1 -[NSUIHeartBeat _heartBeatThread:] + 1540
    4   com.apple.Foundation              0x00007fff82401114 __NSThread__main__ + 1429
    5   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00000001233c9a20  rcx: 0x00007fff5fbfd808  rdx: 0x0000000000000000
      rdi: 0x00000000000001aa  rsi: 0x0000000000000006  rbp: 0x00007fff5fbfd820  rsp: 0x00007fff5fbfd808
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x00007fff878300fa  r11: 0x0000000000000202
      r12: 0x00007fff5fbfd830  r13: 0x00007fff5fbfdde0  r14: 0x00007fff5fbfde28  r15: 0x000000012339e3f0
      rip: 0x00007fff878340b6  rfl: 0x0000000000000202  cr2: 0x000000011a1ce044
    Binary Images:
           0x100000000 -        0x1026b5fff +com.adobe.Photoshop 12.0 (12.0x20100407.r.1103) (12.0) <B69D89E5-01DD-C220-48B1-E129D0574536> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
           0x103295000 -        0x10330dfef +com.adobe.adobe_caps adobe_caps 3.0.116.0 (3.0.116.0) <4A355686-1451-B19A-0C55-DFE49FD2539E> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x103323000 -        0x10332afff  org.twain.dsm 1.9.4 (1.9.4) <D32C2B79-7DE8-1609-6BD4-FB55215BD75B> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
           0x103332000 -        0x103342ff8 +com.adobe.ahclientframework 1.5.0.30 (1.5.0.30) <5D6FFC4E-7B81-3E8C-F0D4-66A3FA94A837> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x10334d000 -        0x103353ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <E5986961-7A1E-C304-9BF4-431A32EF1DC2> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x10335a000 -        0x103560fef +com.adobe.linguistic.LinguisticManager 5.0.0 (11696) <499B4E7A-08BB-80FC-C220-D57D45CA424F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x1035f3000 -        0x1037a1fef +com.adobe.owl AdobeOwl version 3.0.91 (3.0.91) <C36CA603-EFFB-2EED-6CEE-0B532CE052D2> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x103843000 -        0x103c73fef +AdobeMPS ??? (???) <FA334142-5343-8808-7760-4318EB62AD51> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x103dcd000 -        0x1040f8ff7 +AdobeAGM ??? (???) <52E17D56-6E7A-A635-82ED-5DE1F3E5045D> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x1041c5000 -        0x1044edfe7 +AdobeCoolType ??? (???) <9E03F47A-06A3-F1F4-AC4C-76F12FACC294> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x104585000 -        0x1045a6ff7 +AdobeBIBUtils ??? (???) <F7150688-2C15-0F0C-AF24-93ED82FC321A> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x1045b3000 -        0x1045deff6 +AdobeAXE8SharedExpat ??? (???) <7E809606-BF97-DB3A-E465-156446E56D00> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
           0x1045f0000 -        0x104734fef +WRServices ??? (???) <76354373-F0BD-0BAF-6FC0-B96DBB371755> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x10477b000 -        0x1047e0fff +aif_core ??? (???) <12FA670E-05A8-1FCB-A7A2-AAE68728EA30> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
           0x1047fc000 -        0x104812fff +data_flow ??? (???) <9C5D39A6-D2A2-9B6A-8B64-D1B59396C112> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
           0x10482a000 -        0x1048c0fff +image_flow ??? (???) <B72AA922-0D68-D57E-96B1-2E009B0AD4AE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
           0x104937000 -        0x104955fff +image_runtime ??? (???) <32786637-C9BF-4CB6-2DF9-5D99220E00BE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
           0x104972000 -        0x104ba1fff +aif_ogl ??? (???) <615E7DF6-09B1-857A-74AC-E224A636BEE1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
           0x104c80000 -        0x104d13fff +AdobeOwlCanvas ??? (???) <EC667F6D-0BB6-03EA-41E8-624425B2BF4B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
           0x104d33000 -        0x10507cfef +com.adobe.dvaui.framework dvaui version 5.0.0 (5.0.0.0) <023E0760-0223-AB5D-758C-2C5A052F6AF4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x10520c000 -        0x10538efe7 +com.adobe.dvacore.framework dvacore version 5.0.0 (5.0.0.0) <42077295-9026-D519-C057-35E07029D97B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x105430000 -        0x1057a8fff +com.adobe.dvaadameve.framework dvaadameve version 5.0.0 (5.0.0.0) <0E95A0DF-038A-CFF2-EC7B-BDB905CDF5C5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x1058f2000 -        0x105a06fff +AdobeACE ??? (???) <E359887D-1E7F-5E62-CB8D-37CE4DBFB4D8> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x105a2b000 -        0x105a47fff +AdobeBIB ??? (???) <7A792F27-42CC-2DCA-D5DF-88A2CE6C2626> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x105a51000 -        0x105abbff7 +com.adobe.amtlib amtlib 3.0.0.64 (3.0.0.64) <6B2F73C2-10AB-08B3-4AB0-A31C83D1E5E0> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x105aee000 -        0x105bc1ffb +AdobeJP2K ??? (???) <465D1693-BE79-590E-E1AA-BAA8061B4746> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x105be1000 -        0x105be5ff8 +com.adobe.ape.shim adbeape version 3.1.65.7508 (3.1.65.7508) <0C380604-C686-C2E4-0535-C1FAB230187E> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x105be9000 -        0x105c60fff +FileInfo ??? (???) <6D5235B9-0EB6-17CA-6457-A2507A87EA8F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x105c81000 -        0x105cdfffd +AdobeXMP ??? (???) <561026BB-C6EA-29CE-4790-CABCB81E8884> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x105ced000 -        0x106188fff +com.nvidia.cg 2.2.0006 (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/Cg.framework/Cg
           0x10670e000 -        0x106764feb +com.adobe.headlights.LogSessionFramework ??? (2.0.1.011) <03B80698-2C3B-A232-F15F-8F08F8963A19> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x1067a9000 -        0x1067ceffe +adobepdfsettings ??? (???) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
           0x106808000 -        0x10680dffd +com.adobe.AdobeCrashReporter 3.0 (3.0.20100302) <DFFB9A08-8369-D65F-161F-7C61D562E307> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x106812000 -        0x1069adfff +com.adobe.PlugPlug 2.0.0.746 (2.0.0.746) <CB23C5AA-0E4B-182B-CB88-57DD32893F92> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
           0x106a55000 -        0x106a6efeb +libtbb.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbb.dylib
           0x106a7f000 -        0x106a85feb +libtbbmalloc.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbbmalloc.dylib
           0x106a8c000 -        0x106a8cff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <B146C134-CE18-EC95-12F8-E5C2BCB43A6B> /usr/lib/libmx.A.dylib
           0x106a8f000 -        0x106a97ff3 +com.adobe.boost_threads.framework boost_threads version 5.0.0 (5.0.0.0) <6858DF5A-F020-22A7-B945-14EC277724D4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x106a9e000 -        0x106b84fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <2D39CB30-54D9-B03E-5FCF-E53122F87484> /usr/lib/libcrypto.0.9.7.dylib
           0x106f78000 -        0x106f7afef  com.apple.textencoding.unicode 2.3 (2.3) <B254327D-2C4A-3296-5812-6F74C7FFECD9> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x106ff9000 -        0x106ffafff  libCyrillicConverter.dylib 49.0.0 (compatibility 1.0.0) <84C660E9-8370-79D1-2FC0-6C21C3079C17> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x108500000 -        0x108570ff6 +com.adobe.amt.services AMTServices 3.0.0.64 (BuildVersion: 3.0; BuildDate: Mon Jan 26 2010 21:49:00) (3.0.0.64) <52FF1F9B-9991-ECE2-C7E3-09DA1B368CBE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtservices.framework/Versions/a/amtservices
           0x1086cd000 -        0x1086e4fe7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <1A440248-D188-CA5D-8C20-5FA33647DE93> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x1086e8000 -        0x108709fef  libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <76503A7B-58B6-64B9-1207-0C273AF47C1C> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
           0x10870d000 -        0x10871cfe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <1718111B-FC8D-6C8C-09A7-6CEEB0826A66> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
           0x108720000 -        0x108732fff  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <00E29B30-3877-C559-85B3-66BAACBE005B> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
           0x108737000 -        0x10873ffff +com.adobe.asneu.framework asneu version 1.7.0.1 (1.7.0.1) <3D59CB21-F5C7-4232-AB00-DFEB04206024> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
           0x1087d2000 -        0x1087f8fff  GLRendererFloat ??? (???) <38621D22-8F49-F937-851B-E21BD49A8A88> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
           0x11a6de000 -        0x11a6e5fff +Enable Async IO ??? (???) <9C98DC9E-5974-FE5D-75C3-16BC4738DCC8> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
           0x11aedb000 -        0x11aee4fff +FastCore ??? (???) <F1D1C94D-4FE1-F969-6FC2-8D81837CA5E1> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore
           0x11c840000 -        0x11c9d3fe7  GLEngine ??? (???) <BCE83654-81EC-D231-ED6E-1DD449B891F2> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x11ca04000 -        0x11ce20fff  com.apple.ATIRadeonX2000GLDriver 1.6.36 (6.3.6) <EBE273B9-6BF7-32B1-C5A2-2B3C85D776AA> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRadeonX2000GLD river
           0x11d100000 -        0x11d163ff3 +MMXCore ??? (???) <2DB6FA8E-4373-9823-C4F5-A9F5F8F80717> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore
           0x11d1e9000 -        0x11d254ff0 +MultiProcessor Support ??? (???) <1334B570-C713-3767-225F-3C1CBA1BF37C> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
           0x121c68000 -        0x121ec4fef +com.adobe.PSAutomate 12.0 (12.0) <35AEF3A8-2E64-71D1-39ED-A34760CAAC29> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
           0x1220da000 -        0x12217effb +com.adobe.AdobeExtendScript ExtendScript 4.1.23 (4.1.23.7573) <332E7D8D-BF42-3177-9BC5-033942DE35E0> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
           0x1221e0000 -        0x122280fef +com.adobe.AdobeScCore ScCore 4.1.23 (4.1.23.7573) <53DD7281-5B59-7FF5-DB57-C9FD60E524C7> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x1222c6000 -        0x1222e6ffb +com.adobe.ape adbeapecore version 3.1.70.10055 (3.1.70.10055) <66373ADB-0865-ECDB-D3D0-B3373FC43919> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/adbeapecore
           0x123500000 -        0x12351cff7 +MeasurementCore ??? (???) <0E3BE9B3-FF3D-78A6-38EC-5CB0828B80EB> /Applications/Adobe Photoshop CS5/Plug-ins/Measurements/MeasurementCore.plugin/Contents/MacOS/MeasurementCore
        0x7fff5fc00000 -     0x7fff5fc3be0f  dyld 132.1 (???) <29DECB19-0193-2575-D838-CF743F0400B2> /usr/lib/dyld
        0x7fff80003000 -     0x7fff800e0fff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
        0x7fff800e1000 -     0x7fff80104fff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff80105000 -     0x7fff8014dff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
        0x7fff8014e000 -     0x7fff801a1ff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
        0x7fff801b5000 -     0x7fff801c9fff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff801f4000 -     0x7fff809fefe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
        0x7fff80b28000 -     0x7fff80ba7fe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff80ba8000 -     0x7fff80bf4fff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff8108c000 -     0x7fff81109fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff81116000 -     0x7fff8112dfff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
        0x7fff814ad000 -     0x7fff8166bfff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib
        0x7fff8166c000 -     0x7fff81670ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff81671000 -     0x7fff81671ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff81a26000 -     0x7fff81a90fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
        0x7fff81ac1000 -     0x7fff81ad0fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff81ad1000 -     0x7fff81ad1ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
        0x7fff81ad2000 -     0x7fff81e6ffe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff81e70000 -     0x7fff81eb9fef  libGLU.dylib ??? (???) <B0F4CA55-445F-E901-0FCF-47B3B4BAE6E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff81eba000 -     0x7fff81ebffff  libGIF.dylib ??? (???) <5B2AF093-1E28-F0CF-2C13-BA9AB4E2E177> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
        0x7fff81ec0000 -     0x7fff81efafff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <7982734A-B66B-44AA-DEEC-364D2C10009B> /usr/lib/libcups.2.dylib
        0x7fff81efb000 -     0x7fff8222ffef  com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
        0x7fff82230000 -     0x7fff823effff  com.apple.ImageIO.framework 3.0.6 (3.0.6) <2C39859A-043D-0EB0-D412-EC2B5714B869> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
        0x7fff823f0000 -     0x7fff82672fff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff82673000 -     0x7fff8273efff  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <86982FBB-B224-CBDA-A9AD-8EE97BDB8681> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/V ersions/A/Resources/ColorSyncDeprecated.dylib
        0x7fff8273f000 -     0x7fff8275ffff  com.apple.DirectoryService.Framework 3.6 (621.15) <9AD2A133-4275-5666-CE69-98FDF9A38B7A> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
        0x7fff82760000 -     0x7fff8276eff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
        0x7fff8279f000 -     0x7fff827d0fff  libGLImage.dylib ??? (???) <562565E1-AA65-FE96-13FF-437410C886D0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
        0x7fff8283a000 -     0x7fff8283dfff  com.apple.help 1.3.2 (41.1) <BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
        0x7fff82842000 -     0x7fff8285bfff  com.apple.CFOpenDirectory 10.6 (10.6) <401557B1-C6D1-7E1A-0D7E-941715C37BFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
        0x7fff82912000 -     0x7fff82a2cfff  libGLProgrammability.dylib ??? (???) <D1650AED-02EF-EFB3-100E-064C7F018745> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
        0x7fff82a71000 -     0x7fff82a73fff  libRadiance.dylib ??? (???) <61631C08-60CC-D122-4832-EA59824E0025> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
        0x7fff82a74000 -     0x7fff82a7aff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff82a7b000 -     0x7fff82d04ff7  com.apple.security 6.1.2 (55002) <4419AFFC-DAE7-873E-6A7D-5C9A5A4497A6> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff82d59000 -     0x7fff831a0fef  com.apple.RawCamera.bundle 3.7.1 (570) <5AFA87CA-DC3D-F84E-7EA1-6EABA8807766> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff831a1000 -     0x7fff831b7fef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff831ef000 -     0x7fff83210fff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <9F322F47-0584-CB7D-5B73-9EBD670851CD> /usr/lib/libresolv.9.dylib
        0x7fff8361c000 -     0x7fff836a8fef  SecurityFoundation ??? (???) <3F1F2727-C508-3630-E2C1-38361841FCE4> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
        0x7fff83733000 -     0x7fff83744ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
        0x7fff83745000 -     0x7fff8382afef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
        0x7fff8382b000 -     0x7fff83923ff7  libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <44AADE50-15BC-BC6B-BEF0-5029A30766AC> /usr/lib/libiconv.2.dylib
        0x7fff83924000 -     0x7fff839e1fff  com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
        0x7fff83a17000 -     0x7fff83a32ff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
        0x7fff83e3e000 -     0x7fff83ef3fe7  com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
        0x7fff83ef4000 -     0x7fff83ef9fff  libGFXShared.dylib ??? (???) <6BBC351E-40B3-F4EB-2F35-05BDE52AF87E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
        0x7fff83efa000 -     0x7fff83f37ff7  libFontRegistry.dylib ??? (???) <4C3293E2-851B-55CE-3BE3-29C425DD5DFF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
        0x7fff83faa000 -     0x7fff8404afff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
        0x7fff8404b000 -     0x7fff8404bff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8404c000 -     0x7fff84102ff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff84186000 -     0x7fff841e6fe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff841e7000 -     0x7fff84be1ff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff84c9b000 -     0x7fff84cdeff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff84f1a000 -     0x7fff84fd3fff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff84fd4000 -     0x7fff85112fff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8511f000 -     0x7fff85140fe7  libPng.dylib ??? (???) <14F055F9-D7B2-27B2-E2CF-F0A222BFF14D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
        0x7fff8530f000 -     0x7fff8542efe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff85498000 -     0x7fff854adff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
        0x7fff854be000 -     0x7fff8556efff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff855d8000 -     0x7fff855fdff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff85622000 -     0x7fff85622ff7  com.apple.Carbon 150 (152) <FA427C37-CF97-6773-775D-4F752ED68581> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8564b000 -     0x7fff8568cfff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
        0x7fff8571b000 -     0x7fff857a0ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
        0x7fff857a1000 -     0x7fff857c9fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
        0x7fff85933000 -     0x7fff85a4afef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
        0x7fff85a7b000 -     0x7fff85a7eff7  com.apple.securityhi 4.0 (36638) <AEF55AF1-54D3-DB8D-27A7-E16192E0045A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
        0x7fff85a7f000 -     0x7fff85b0ffff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
        0x7fff86bcf000 -     0x7fff872cbff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
        0x7fff872cc000 -     0x7fff872cefff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
        0x7fff872cf000 -     0x7fff872faff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <8AB4CA9E-435A-33DA-7041-904BA7FA11D5> /usr/lib/libxslt.1.dylib
        0x7fff87309000 -     0x7fff87344fff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
        0x7fff87345000 -     0x7fff8735bfe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
        0x7fff8735c000 -     0x7fff8741dfff  libFontParser.dylib ??? (???) <A00BB0A7-E46C-1D07-1391-194745566C7E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
        0x7fff8741e000 -     0x7fff874dffef  com.apple.ColorSync 4.6.8 (4.6.8) <7DF1D175-6451-51A2-DBBF-40FCA78C0D2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
        0x7fff874ea000 -     0x7fff874f0ff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
        0x7fff8750d000 -     0x7fff8758bff7  com.apple.CoreText 151.13 (???) <5C6214AD-D683-80A8-86EB-328C99B75322> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
        0x7fff877df000 -     0x7fff877e4ff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
        0x7fff877e5000 -     0x7fff879a6fef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff87a8b000 -     0x7fff87a98fe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff87ad8000 -     0x7fff87c0dfff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <F4814A13-E557-59AF-30FF-E62929367933> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff87c0e000 -     0x7fff87c55ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff87c68000 -     0x7fff87cb7ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <0731C40D-71EF-B417-C83B-54C3527A36EA> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
        0x7fff87cc4000 -     0x7fff87e3bfe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff87e3c000 -     0x7fff87e4efe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff87e58000 -     0x7fff87e63ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
        0x7fff87ef4000 -     0x7fff87f8efe7  com.apple.ApplicationServices.ATS 275.16 (???) <4B70A2FC-1902-5F27-5C3B-5C78C283C6EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
        0x7fff87fa8000 -     0x7fff87facff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff87fad000 -     0x7fff87fadff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
        0x7fff880bf000 -     0x7fff88193fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
        0x7fff88419000 -     0x7fff88419ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8842e000 -     0x7fff88431ff7  libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
        0x7fff88455000 -     0x7fff88456ff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
        0x7fff88463000 -     0x7fff88464fff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff88477000 -     0x7fff88477ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff88478000 -     0x7fff884c2ff7  com.apple.Metadata 10.6.3 (507.15) <2EF19055-D7AE-4D77-E589-7B71B0BC1E59> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
        0x7fff884c3000 -     0x7fff884c4ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <49B723D1-85F8-F86C-2331-F586C56D68AF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff884c5000 -     0x7fff884ecff7  libJPEG.dylib ??? (???) <472D4A31-C1F3-57FD-6453-6621C48B95BF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
        0x7fff8856a000 -     0x7fff88868fff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
        0x7fff88869000 -     0x7fff8886fff7  IOSurface ??? (???) <8E302BB2-0704-C6AB-BD2F-C2A6C6A2E2C3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff88870000 -     0x7fff888c6fe7  libTIFF.dylib ??? (???) <9BC0CAD5-47F2-9B4F-0C10-D50A7A27F461> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
        0x7fff8973b000 -     0x7fff8976eff7  libTrueTypeScaler.dylib ??? (???) <69D4A213-45D2-196D-7FF8-B52A31DFD329> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff8976f000 -     0x7fff897c4ff7  com.apple.framework.familycontrols 2.0.2 (2020) <8807EB96-D12D-8601-2E74-25784A0DE4FF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
        0x7fff897e1000 -     0x7fff897e8fff  com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff897e9000 -     0x7fff897fdff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
        0x7fff897fe000 -     0x7fff8980dfef  com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff898aa000 -     0x7fff898ebfef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
        0x7fff89902000 -     0x7fff89d45fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
    Model: iMac11,1, BootROM IM111.0034.B02, 4 processors, Intel Core i7, 2.8 GHz, 4 GB, SMC 1.54f36
    Graphics: ATI Radeon HD 4850, ATI Radeon HD 4850, PCIe, 512 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 2.1.14.6
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST31000528AS, 931.51 GB
    Serial ATA Device: OPTIARC DVD RW AD-5680H
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: My Book 1140, 0x1058  (Western Digital Technologies, Inc.), 0x1140, 0xfa140000 / 6
    USB Device: My Book 1140, 0x1058  (Western Digital Technologies, Inc.), 0x1140, 0xfa130000 / 5
    USB Device: Intern

    Last week I had the computer's hard drive replaced after the old one had gone bad. All the data was transferred fine to the new hard drive
    It depends on how the program was transfered.  If direct file copy it probably will not work, as all the files are not in one directory.  It is usually safest to reinstall from a disk or download.  You might want to unistall the programs and run Adobe Script Cleaner and then reinstall.

  • HT4623 Sound and other problems with Ipad 3 after ios 6.1.3 update

    I purchased Ipad 3 last year and got problem of losing sound when I restored the Ipad throgh itunes. The sound came back automatically after I charged the device to 100%. Recently I got the same problem when the operating system was Ios 6.1.2 and then i got updated it to ios 6.1.3. The problem has not been solved while has been added up. Now the Ipad operation is slow, its either freezes and crashes frequently. Once it gets in sleep mode then it does not come back untill i press power button and home button togehter for sometime. I have checked all settings like mute and have restored the ios multiple times on two separate PCs but the problem is still there. Please help me what i need to do next.

    Try a reboot of your ipad. Hold the Sleep/Wake button and Home button simulataneously. Keep holding, ignoring the red slider, until the Apple logo appears. Release the buttons and let the ipad restart. A reboot often fixes numerous problems.
    Also are you aware that by suncing with a different computer it is likely the personal stuff you had on your ipad from your imac will be removed?
    The ipad is designed to sync with only one device.

  • Can Power Users or Mgt Create and Design Reports Through Query Designer ?

    Dear BI consultants,
    Iam new to BI.
    My management has requested me to Train Power users from All Modules(FICO,HR,QM,PP,SD,MM) to Create Queries and Design Through Query Designer.
    My question is are we suppose to Give query Designer Access to Power users or Mgt so that they can create Queries and reports by themselves.Please Suggest me wht is the Best Practices.
    is it feasable to train power users and Mgt as to how 2 create queries. will there be any side effect on the System or our end.
    Plz suggest.
    wht are the advantages and disadvantages of this.
    If I train the Power users then is there any risk of my Job.
    since they will be creating all reports by themselves.
    wht else can a BI consultant do since iam in a support project.
    how do i convince my Mgt?
    Plz Suggest.
    Thanks Awaiting

    This is common procedure maintained in most of the company's for end users.
    There is no issue if you train the power users.you will be the first point of contact if they have any doubts.and more over you are supporting for your client right? this can't be handed over to power user or end user. data is imp for the client so there will not be any problem for you, if any issue comes while loading you need to take care of the errors and fix the.
    power users or end user will be familiar with Business requirement not with the Query building logic's not with the BW procedure so no worries for you.
    as vineeth said its better to keep control regarding the global and key things at your end so that you will not loose contol on the reports.

  • I have a 17" Macbook pro with flickering red and cyan(blue) lines across the screen. The issue disappears temporarily when I tap on the computer, and the problem does not occur when I use external display or try to screen capture the problem.

    I purchased my Macbook (17") through a certified apple tecnition in August 2012, it was refurbished and the motherboard was completely replaced. I do a lot of photo editing, but I have been unable to do so because of the red vibrating lines that interrupt my screen. The issue disappears temporarily when I tap on the computer, and the problem does not occur when I use external display or try to screen capture the problem. I brought the computer back to the technition I purchased it from and he said that it was a problem with my fan, so I have two new fans but the issue is still occuring. He says he doesnt know whats wrong. Does anyone have any information on this issue?
    Here is an image of the issue
    http://www.flickr.com/photos/67839707@N08/8884847081/

    I recommend having your Mac serviced by someone competent. A force sufficient to "blow apart" the fans was clearly excessive and may have damaged the display cable, as well as any number of other problems.
    Dust is properly cleaned with a vacuum, preferably one designed for computer service, and they are not cheap.
    Compressed air should never be used. It just blows dust everywhere, often into places where it can no longer be removed.

  • Performance and Contention problem with the database ?

    Hello!
    I am having one database which is used by around 95 thousand
    users.Database contain about 4 lakh records. The database is
    going smooth and perfect.
    The problem(perfomance is slow and there is contension too) came
    when i made 4 web applications which contain atleast 1000 hits
    (1000 records are inserted in the database ) per day.
    Now the db is not going so smooth(contention and performance
    problem).
    I think this is happening becuase of those 4 web applications.
    So should i make new database for that 4 applications or i need
    to get the new system for it or there is another way through i
    can tune my running database.
    Any help will be appreciated.
    Regards
    Seemab

    Hi,
    If i well understand, u have one database and u insert 4000 rows
    per day and u have performance problem ?
    I think u have a big problem cause it's not really a big
    intensity on a base. So u should have big problems on ur
    database design such as undersized memory area, bad disk
    repartition, bad types of indexes or something like that.
    To decrease the contention, u should separate ur data and index
    datafiles over differents disks and specialize tablespace by the
    granularity of the table.
    But u r not enough precise to expect a precise answer; could u
    be more precise ? as the server u have, data volumes, a select *
    from v$system_event, etc...
    Good Luck,
    Fred DENIS

  • IMac vs. Macbook Pro for Art and Design Student

    Hello,
    first off, I'm sorry if this is in the wrong section of the forums - it seemed like the best place, but I wasn't entirely sure.
    Secondly, I can imagine you guys get asked this question a lot, so i guess I'm sorry for that!
    Here's the situation - I'm going to College in England this September. I need a computer to accompany me with my course, and what I'll be doing with it. I'm studying Art and Design, but I already have a strong interest and a lot of experience in graphic design, vector illustration and web design - so it needs to fit my personal use as well.
    I knew instantly that I not only wanted but needed an iMac. I saved up, compared the models and then, rather unfortunately, came to a stop.
    Here's the problem - I need the processing power to handle the full Adobe CS5 suite, some 3D modelling and rendering and plenty of photos and music. However, Portability would be nice... although my college has 3 Mac suites, I think that being able to carry my work around and edit on the go will be an obvious plus. If I do go for the iMac, do you recommend me getting the 21.5" or the 27"? I (just) have money for either so that isn't really a problem, but is it worth the extra money for a larger screen and better graphics? Is the Macbook Pro powerful enough? The way I see it, I'm spending £2000+ To only get near the power of the iMac...
    I hope you guys can help me out here, and thank-you in advance!
    (And sorry for the long post...!)
    Message was edited by: ubermatik

    Hi Bee!
    Thanks very much for your advice!
    However, why do you suggest the 21.5" over the 27"? Do you think it is worth the extra screen size, because I can afford either?
    It seemed to me that the iMac was the best option also - I'm in need of the power, but I'm still deliberating over size.
    Also, on a side note, do you know of any iPhone apps that can help me with transferring files from home to college I'm getting an iPod Touch as part of the new deal Apple are running and I just wondered if there were any apps that I would find handy for transporting files etc.?
    Thanks again!

Maybe you are looking for

  • How to display the "display values" in READ Only mode for a SHUTTLE

    Hi, I have a form item of type *'Shuttle'* and using the following LOV.    select DEPTNAME d, DEPTNO r     from  DEPTIn normal mode..it displays the department name and internally store the Deptno.. Now I converted this item to Read Only mode using R

  • How to render HTML tags in FDF file?

    We're creating PDF files using FDF format. Unfortunately, when it comes to displaying characters like © (©),  ® (®); and ™ (™) they are simply rendering as © rather than the proper symbol they represent. Is there a way to tell the FDF to render this

  • Hardware Reserved RAM

    I have 8GB of RAM installed on my motherboard and Windows shows that half of it is "hardware reserved." My BIOS (Click 4) only reads half of the installed RAM amount. I have tried adding my friend's RAM to the system and the same thing happened again

  • To add the object link at a time more than 13 line items

    Dear All, Can you help me regarding the below statment. In object link in cv01n and cv02n t-code have limitation to add the object at a time 13 line items. If you add the more than 13 line items it takes  time. If there is any provision to add the mo

  • Transfer site from another mac

    how can I transfer into iWeb a site that was designed with iWeb on another Mac? thx