NullPointerException Thrown when loading images

Hey folks,
I've had a look in this forum for answers to this problem but they currently don't seem to be working for me.
I've migrated my java application to be a jnlp application.
I was loading the images for two buttons in the app as follows :-
backButton.setIcon(new ImageIcon("./resources/images/back.png"));
forwardButton.setIcon(new ImageIcon("./resources/images/forward.png"));
As per the instructions I found, I located the two png files within MyApp.jar.
The location of the images in the MyApp.jar is in the folder resources/images.
I changed the code loading the images to be
backButton.setIcon(new ImageIcon(this.getClass().getClassLoader().getResource("/resources/images/back.png")));
forwardButton.setIcon(new ImageIcon(this.getClass().getClassLoader().getResource("/resources/images/forward.png")));
i.e. I took out the leading dot '.' and replaced it with '/' as from what I understand this is the only way that the class package isn't prepended to the
resource name??
I've tried that and a couple of other combinations but to no avail. Would anyone have any indication as to how to load these images?
I haven't even been able to get to the real hard parts of the debug yet ;-)
Thanks,
Mark.

Have you tried?
backButton.setIcon(new ImageIcon(this.getClass().getClassLoader().getResource("resources/images/back.png")));
forwardButton.setIcon(new ImageIcon(this.getClass().getClassLoader().getResource("resources/images/forward.png")));
How does the exception log look like?
Rule: No file paths. You can't use absolute or relative file paths to locate your jars holding your resources (e.g. jar:file:///c:/java/jws/.cache/resources.jar). Absolute file paths won't work because you never know where Java Web Start will put your jar on the user's machine. Relative file paths won't work because Java Web Start mangles the names of your jars (e.g. venus.jar becomes RMvenus.jar) and every JNLP client implementation has the right to mangle your names in a different way and you, therefore, can't predict the name with which your jar will be rechristend and end up on the user's machine in the application cache.
http://rachel.sourceforge.net/

Similar Messages

  • Javax.servlet.jsp.JspException: ObjectPersisterException thrown when loading pipeline

    avax.servlet.jsp.JspException: ObjectPersisterException thrown when loading pipeline due to: An error occurred when attempting to read the object from the database due to: An error occured when attempting to read object from table 'PIPELINE_SESSION' with id 'e7436af5851b0b4b3214b5f26f762a19' due to: com.humana.rightsource.beans.order.StatusIcon
    This happened when trying to load https://www.rightsourcerx.com/. Support at ttps://www.rightsourcerx.com/ informed me that a change had been made to there web site to make access from smart phones easier.

    I can load the page https://www.rightsourcerx.com/
    I am not sure this is a question within the scope of this forum.
    If you have problems with a web page because of the page design or changes to the webpage it is normally up to the website to sort that out.
    You could consider posting on a mozillazine forum to see what they say if you think it is a website problem.
    * http://forums.mozillazine.org/viewforum.php?f=25
    If the problem is with Firefox but not with other browsers see
    * [[Firefox can't load websites but other browsers can]]

  • NullPointerException Error when loading a JPG file...

    I started a new job recently and have enherited some new JAVA code. I understand most of what is going on here (with the help of several good books). I can compile the code (with this code snippit) with no errors, but I get a NullPointerException during runtime. The error comes when I try to load "images/plasticslogo.jpg". The filename and path all appear to be correct. There is a Java Package created (called images) with the image in there. I have come to the end of my resources to resolve this problem. Can anyone help???
    ERROR MESSAGE:
    java.lang.NullPointerException
            at javax.swing.ImageIcon.<init>(ImageIcon.java:138)
            at lhp.LHPSplashScreen.initComponents(LHPSplashScreen.java:64)
            at lhp.LHPSplashScreen.<init>(LHPSplashScreen.java:11)
            at lhp.LHPEventViewer.main(LHPEventViewer.java:71)
    END ERROR MESSAGE
    private void initComponents() {
            pnlMain = new JPanel();
            lblTitle = new JLabel();
            lblVerLabel = new JLabel();
            lblVersion = new JLabel();
            lblAuthor = new JLabel();
            lblImage = new JLabel();
            getContentPane().setLayout(null);
            setBackground(java.awt.Color.white);
            addWindowListener(new java.awt.event.WindowAdapter() {
                public void windowClosing(java.awt.event.WindowEvent evt) {
                    exitForm(evt);
            pnlMain.setLayout(null);
            pnlMain.setBackground(new java.awt.Color(255, 255, 255));
            pnlMain.setBorder(new javax.swing.border.LineBorder(new java.awt.Color(0, 0, 0), 2));
            lblTitle.setFont(new java.awt.Font("Arial", 1, 18));
            lblTitle.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
            lblTitle.setText("Line Hour Productivity");
            pnlMain.add(lblTitle);
            lblTitle.setBounds(0, 70, 200, 22);
            lblVerLabel.setFont(new java.awt.Font("Arial", 0, 12));
            lblVerLabel.setText("Version:");
            pnlMain.add(lblVerLabel);
            lblVerLabel.setBounds(3, 87, 50, 20);
            lblVersion.setFont(new java.awt.Font("Arial", 0, 12));
            pnlMain.add(lblVersion);
            lblVersion.setBounds(50, 87, 50, 20);
            lblAuthor.setFont(new java.awt.Font("Tahoma", 0, 10));
            lblAuthor.setText("Written By: Granite Services, Inc.");
            pnlMain.add(lblAuthor);
            lblAuthor.setBounds(100, 87, 156, 20);
    lblImage.setIcon(new ImageIcon(getClass().getResource("images/plasticslogo.jpg")));       
            pnlMain.add(lblImage);
            lblImage.setBounds(2, 10, 198, 64);
            getContentPane().add(pnlMain);
            pnlMain.setBounds(0, 0, 256, 107);
        }

    Hiwa,
    Please note that the code usesClass.getResource().
    This 'small change' is not necessary for a simple
    resource stored in a subdirectory.Actually, if you dont add the '/' prefix, then the package name will the
    prepended. i.e it would search for the image file under abc.xyz. images
    package, where abc.xyz is the package name for the current class.
    Javadoc for Class.getStream..
    public URL getResource(String name)
    Finds a resource with a given name. This method returns null if no resource with this name is found. The rules for searching resources associated with a given class are implemented by the * defining class loader of the class.
    This method delegates the call to its class loader, after making these changes to the resource name: if the resource name starts with "/", it is unchanged; otherwise, the package name is prepended to the resource name after converting "." to "/". If this object was loaded by the bootstrap loader, the call is delegated to ClassLoader.getSystemResource.

  • Premiere Pro CS6 Quits unexpectedly when loading Images or Video into viewer.

    I have been using CS6 since May of 2013.  I currently operate on a Mac. I have never had any issues. I used it one day last week, then all of a sudden a few days ago is when the issues started. Premiere Pro will start normally (New or Exsisting Project), I can even import media. But I am not able to load Images or Videos into the viewer, nor am I able to just drag and drop on the timeline. Audio seems to drag onto the timeline just fine.
    I have tried many things to trouble shoot the issue such as:
    1. Starting a new Project. (Thought maybe something in the existing project was corrupt.)
    2. Opening an older project that I knew worked fine in the past. (Thinking new projects were also corrupt.)
    3. Transcoding the video Files. (Thinking the media was corrupt.)
    4. Restarting the computer.
    5. Holding "Shift" while starting Premiere Pro.
    I am not getting any error codes, just a Dialog box that says, "Sorry, a serious error has occurred that requires Adobe Premiere Pro to shut down. We will attempt to save your current project."
    Thanks for your help.

    Hi Luther,
    Welcome to Adobe Forums.
    Which version of Mac OS are you using?
    Try to repair the preferences by opening the finder window click on go and
    choose go to folder and type ~/library and press enter. Then go to Preferences>Adobe
    and rename the 6.0 folder to 6.0.old. If you are using Mavericks ( OS 10.9) try to give permissions to the
    Adobe folder as well.
    Please reply in case the issue persists.
    Thanks

  • Security Exception when loading image from other host

    Hi,
    I have a signed webstart application, with 'all-permissions' set, which displays HTML in an JEditorPane.
    The displayed HTML code contains an image tag which wants to load the image from another host. This results in a security exception.
    I thought 'all-permissions' allows everything. Is there a workaround?
    TIA
    Chris

    signing your app and specifying <all-permissions> in the security tag of the jnlp file will grant all permissions to all code loaded by the JNLPClassLoader.
    In some cases your app or an extension it includes contains it's own classloader which dosnt extend SecureClassLoader, and so code loaded by that classloader will not be run with all-permissions when a SecurityManager is installed by Java Web Start. If this is the case you can get around this by calling:
    Systerm.setSecurityManager(null).
    To see what the specific cause in this case, you would have to post the exception thrown.
    /Andy

  • CS4 Crashes when Loading Images in OSX Lion

    Hi,
    I'm having troubles with Photoshop since migrating to a new iMac with Lion and an SSD. Now when I attempt to load any file, PS crashes. I'll attach the errror report below as a seperate message.
    I have tried:
    * deleting com.apple.LaunchServices.plist as recommended somewhere else
    * I have also tried reinstalling the software from the original discs (without removing the old apps)
    I can't think of anything else to try and Google isn't being particularly helpful. Any assistance would be greatly appreciated.
    Kind thanks,
    Dan

    Crash Roport:
    Process:         Adobe Photoshop CS4 [1417]
    Path:            /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4
    Identifier:      com.adobe.Photoshop
    Version:         11.0.2 [11.0.2x20100519 [20100519.r.592 2010/05/19:02:00:00 cutoff; r branch]] (11.0.2)
    Code Type:       X86 (Native)
    Parent Process:  launchd [145]
    Date/Time:       2011-07-28 14:18:43.308 +1000
    OS Version:      Mac OS X 10.7 (11A511)
    Report Version:  9
    Interval Since Last Report:          68392 sec
    Crashes Since Last Report:           27
    Per-App Interval Since Last Report:  88 sec
    Per-App Crashes Since Last Report:   7
    Anonymous UUID:                      8A197F2A-B6CC-43AB-BFCA-72408970AAE6
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4
        __TEXT                 0000000000001000-00000000019af000 [ 25.7M] r-x/rwx SM=COW  /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4
    Application Specific Information:
    objc[1417]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   ???                           0000000000 0 + 0
    1   com.adobe.Photoshop           0x00ae6e23 0x1000 + 11427363
    2   com.adobe.Photoshop           0x001cff76 0x1000 + 1896310
    3   com.adobe.Photoshop           0x0029b1f9 0x1000 + 2728441
    4   com.adobe.Photoshop           0x00678a2e 0x1000 + 6781486
    5   com.adobe.Photoshop           0x00067fc8 0x1000 + 421832
    6   com.adobe.Photoshop           0x00068be8 0x1000 + 424936
    7   com.adobe.Photoshop           0x0006b8ed 0x1000 + 436461
    8   com.adobe.Photoshop           0x0006a69d 0x1000 + 431773
    9   com.adobe.Photoshop           0x00063c65 0x1000 + 404581
    10  com.adobe.Photoshop           0x00063dd3 0x1000 + 404947
    11  com.adobe.Photoshop           0x0006212f 0x1000 + 397615
    12  com.adobe.Photoshop           0x002205da 0x1000 + 2225626
    13  com.adobe.Photoshop           0x00220666 0x1000 + 2225766
    14  com.adobe.Photoshop           0x00003812 0x1000 + 10258
    15  com.adobe.Photoshop           0x00003739 0x1000 + 10041
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib        0x96bdc90a kevent + 10
    1   libdispatch.dylib             0x94a0fccc _dispatch_mgr_invoke + 969
    2   libdispatch.dylib             0x94a0e71b _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib        0x96bdc02e __workq_kernreturn + 10
    1   libsystem_c.dylib             0x99138ccf _pthread_wqthread + 773
    2   libsystem_c.dylib             0x9913a6fe start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib        0x96bdc02e __workq_kernreturn + 10
    1   libsystem_c.dylib             0x99138ccf _pthread_wqthread + 773
    2   libsystem_c.dylib             0x9913a6fe start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib        0x96bdb83e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x9913ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x990e282a pthread_cond_wait + 48
    3   com.adobe.amt.services        0x06e60552 AMTConditionLock::LockWhenCondition(int) + 46
    4   com.adobe.amt.services        0x06e5b995 _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 115
    5   com.adobe.amt.services        0x06e605b0 AMTThread::Worker(void*) + 20
    6   libsystem_c.dylib             0x99136ed9 _pthread_start + 335
    7   libsystem_c.dylib             0x9913a6de thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib        0x96bd9c76 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore 0x91cdbe40 MPWaitOnSemaphore + 104
    2   MultiProcessor Support        0x28700eff 0x286d1000 + 196351
    3   com.apple.CoreServices.CarbonCore 0x91cdc988 PrivateMPEntryPoint + 68
    4   libsystem_c.dylib             0x99136ed9 _pthread_start + 335
    5   libsystem_c.dylib             0x9913a6de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib        0x96bd9c76 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore 0x91cdbe40 MPWaitOnSemaphore + 104
    2   MultiProcessor Support        0x28700eff 0x286d1000 + 196351
    3   com.apple.CoreServices.CarbonCore 0x91cdc988 PrivateMPEntryPoint + 68
    4   libsystem_c.dylib             0x99136ed9 _pthread_start + 335
    5   libsystem_c.dylib             0x9913a6de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib        0x96bd9c76 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore 0x91cdbe40 MPWaitOnSemaphore + 104
    2   MultiProcessor Support        0x28700eff 0x286d1000 + 196351
    3   com.apple.CoreServices.CarbonCore 0x91cdc988 PrivateMPEntryPoint + 68
    4   libsystem_c.dylib             0x99136ed9 _pthread_start + 335
    5   libsystem_c.dylib             0x9913a6de thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib        0x96bd9c76 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore 0x91cdbe40 MPWaitOnSemaphore + 104
    2   MultiProcessor Support        0x28700eff 0x286d1000 + 196351
    3   com.apple.CoreServices.CarbonCore 0x91cdc988 PrivateMPEntryPoint + 68
    4   libsystem_c.dylib             0x99136ed9 _pthread_start + 335
    5   libsystem_c.dylib             0x9913a6de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib        0x96bd9c76 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore 0x91cdbe40 MPWaitOnSemaphore + 104
    2   MultiProcessor Support        0x28700eff 0x286d1000 + 196351
    3   com.apple.CoreServices.CarbonCore 0x91cdc988 PrivateMPEntryPoint + 68
    4   libsystem_c.dylib             0x99136ed9 _pthread_start + 335
    5   libsystem_c.dylib             0x9913a6de thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib        0x96bd9c76 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore 0x91cdbe40 MPWaitOnSemaphore + 104
    2   MultiProcessor Support        0x28700eff 0x286d1000 + 196351
    3   com.apple.CoreServices.CarbonCore 0x91cdc988 PrivateMPEntryPoint + 68
    4   libsystem_c.dylib             0x99136ed9 _pthread_start + 335
    5   libsystem_c.dylib             0x9913a6de thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib        0x96bd9c76 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore 0x91cdbe40 MPWaitOnSemaphore + 104
    2   MultiProcessor Support        0x28700eff 0x286d1000 + 196351
    3   com.apple.CoreServices.CarbonCore 0x91cdc988 PrivateMPEntryPoint + 68
    4   libsystem_c.dylib             0x99136ed9 _pthread_start + 335
    5   libsystem_c.dylib             0x9913a6de thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib        0x96bdb83e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x9913ae21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x990eb42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x91d0820a TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore 0x91c798d1 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore 0x91cdba29 MPWaitOnQueue + 200
    6   AdobeACE                      0x027c038d 0x278f000 + 201613
    7   AdobeACE                      0x027bfd85 0x278f000 + 200069
    8   com.apple.CoreServices.CarbonCore 0x91cdc988 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib             0x99136ed9 _pthread_start + 335
    10  libsystem_c.dylib             0x9913a6de thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib        0x96bdb83e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x9913ae21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x990eb42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x91d0820a TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore 0x91c798d1 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore 0x91cdba29 MPWaitOnQueue + 200
    6   AdobeACE                      0x027c038d 0x278f000 + 201613
    7   AdobeACE                      0x027bfd85 0x278f000 + 200069
    8   com.apple.CoreServices.CarbonCore 0x91cdc988 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib             0x99136ed9 _pthread_start + 335
    10  libsystem_c.dylib             0x9913a6de thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib        0x96bdb83e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x9913ae21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x990eb42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x91d0820a TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore 0x91c798d1 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore 0x91cdba29 MPWaitOnQueue + 200
    6   AdobeACE                      0x027c038d 0x278f000 + 201613
    7   AdobeACE                      0x027bfd85 0x278f000 + 200069
    8   com.apple.CoreServices.CarbonCore 0x91cdc988 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib             0x99136ed9 _pthread_start + 335
    10  libsystem_c.dylib             0x9913a6de thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib        0x96bdb83e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x9913ae21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x990eb42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x91d0820a TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore 0x91c798d1 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore 0x91cdba29 MPWaitOnQueue + 200
    6   AdobeACE                      0x027c038d 0x278f000 + 201613
    7   AdobeACE                      0x027bfd85 0x278f000 + 200069
    8   com.apple.CoreServices.CarbonCore 0x91cdc988 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib             0x99136ed9 _pthread_start + 335
    10  libsystem_c.dylib             0x9913a6de thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib        0x96bdb83e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x9913ae21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x990eb42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x91d0820a TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore 0x91c798d1 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore 0x91cdba29 MPWaitOnQueue + 200
    6   AdobeACE                      0x027c038d 0x278f000 + 201613
    7   AdobeACE                      0x027bfd85 0x278f000 + 200069
    8   com.apple.CoreServices.CarbonCore 0x91cdc988 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib             0x99136ed9 _pthread_start + 335
    10  libsystem_c.dylib             0x9913a6de thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib        0x96bdb83e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x9913ae21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x990eb42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x91d0820a TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore 0x91c798d1 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore 0x91cdba29 MPWaitOnQueue + 200
    6   AdobeACE                      0x027c038d 0x278f000 + 201613
    7   AdobeACE                      0x027bfd85 0x278f000 + 200069
    8   com.apple.CoreServices.CarbonCore 0x91cdc988 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib             0x99136ed9 _pthread_start + 335
    10  libsystem_c.dylib             0x9913a6de thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib        0x96bdb83e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x9913ae21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x990eb42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x91d0820a TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore 0x91c798d1 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore 0x91cdba29 MPWaitOnQueue + 200
    6   AdobeACE                      0x027c038d 0x278f000 + 201613
    7   AdobeACE                      0x027bfd85 0x278f000 + 200069
    8   com.apple.CoreServices.CarbonCore 0x91cdc988 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib             0x99136ed9 _pthread_start + 335
    10  libsystem_c.dylib             0x9913a6de thread_start + 34
    Thread 19:
    0   libsystem_kernel.dylib        0x96bd9d36 mach_wait_until + 10
    1   libsystem_c.dylib             0x990e4439 nanosleep + 388
    2   com.adobe.PSAutomate          0x2ad381b1 ScObjects::Thread::sleep(unsigned int) + 143
    3   com.adobe.PSAutomate          0x2ad38211 ScObjects::Thread::wait(unsigned int) + 23
    4   com.adobe.PSAutomate          0x2ad28dc6 ScObjects::BridgeTalkThread::run() + 332
    5   com.adobe.PSAutomate          0x2ad384d3 ScObjects::Thread::go(void*) + 239
    6   libsystem_c.dylib             0x99136ed9 _pthread_start + 335
    7   libsystem_c.dylib             0x9913a6de thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib        0x96bdc95e link + 10
    1   AdobeLM_libFNP.dylib          0x2f213413 TRR_Fixup + 573217
    2   AdobeLM_libFNP.dylib          0x2f216a03 TRR_Fixup + 587025
    3   AdobeLM_libFNP.dylib          0x2f285604 TRR_Fixup + 1040658
    4   AdobeLM_libFNP.dylib          0x2f233499 TRR_Fixup + 704423
    5   AdobeLM_libFNP.dylib          0x2f233713 TRR_Fixup + 705057
    6   AdobeLM_libFNP.dylib          0x2f3c099d 0x2f181000 + 2357661
    7   AdobeLM_libFNP.dylib          0x2f3c123c 0x2f181000 + 2359868
    8   AdobeLM_libFNP.dylib          0x2f1cd75c TRR_Fixup + 287338
    9   AdobeLM_libFNP.dylib          0x2f18fa46 TRR_Fixup + 34132
    10  AdobeLM_libFNP.dylib          0x2f34b103 0x2f181000 + 1876227
    11  AdobeLM_libFNP.dylib          0x2f34b641 0x2f181000 + 1877569
    12  AdobeLM_libFNP.dylib          0x2f2a5f75 0x2f181000 + 1199989
    13  AdobeLM_libFNP.dylib          0x2f2a6dc3 0x2f181000 + 1203651
    14  AdobeLM_libFNP.dylib          0x2f33dbae 0x2f181000 + 1821614
    15  com.adobe.amtlib              0x03643aaf AMT_IsFRU + 273293
    16  com.adobe.amtlib              0x03626113 AMT_IsFRU + 152049
    17  com.adobe.amtlib              0x036262e7 AMT_IsFRU + 152517
    18  com.adobe.amtlib              0x036135d1 AMT_IsFRU + 75439
    19  com.adobe.amtlib              0x03614a72 AMT_IsFRU + 80720
    20  com.adobe.amtlib              0x03618c60 AMT_IsFRU + 97598
    21  com.adobe.amtlib              0x03618ce2 AMT_IsFRU + 97728
    22  com.adobe.amtlib              0x03603422 AMT_IsFRU + 9472
    23  com.adobe.amtlib              0x03603a8e AMT_IsFRU + 11116
    24  com.adobe.amtlib              0x036052a1 AMT_IsFRU + 17279
    25  com.adobe.amtlib              0x0360034b AMTObtainProductLicense + 83501
    26  com.adobe.amtlib              0x035f6d85 AMTObtainProductLicense + 45159
    27  com.adobe.amtlib              0x035f7883 AMTObtainProductLicense + 47973
    28  com.adobe.amtlib              0x035f8509 AMTObtainProductLicense + 51179
    29  com.adobe.amtlib              0x035f88b0 AMTObtainProductLicense + 52114
    30  com.adobe.amtlib              0x035f8a28 AMTObtainProductLicense + 52490
    31  com.adobe.amtlib              0x036806a4 AMT_IsFRU + 522114
    32  libsystem_c.dylib             0x99136ed9 _pthread_start + 335
    33  libsystem_c.dylib             0x9913a6de thread_start + 34
    Thread 21:
    0   libsystem_kernel.dylib        0x96bdb83e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x9913ae21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x990eb42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x91d0820a TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore 0x91c798d1 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore 0x91cdba29 MPWaitOnQueue + 200
    6   com.adobe.CameraRaw           0x2fd271b1 0x2fb86000 + 1708465
    7   com.adobe.CameraRaw           0x2fd26b77 0x2fb86000 + 1706871
    8   com.apple.CoreServices.CarbonCore 0x91cdc988 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib             0x99136ed9 _pthread_start + 335
    10  libsystem_c.dylib             0x9913a6de thread_start + 34
    Thread 22:
    0   libsystem_kernel.dylib        0x96bdb83e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x9913ae21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x990eb42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x91d0820a TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore 0x91c798d1 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore 0x91cdba29 MPWaitOnQueue + 200
    6   com.adobe.CameraRaw           0x2fd271b1 0x2fb86000 + 1708465
    7   com.adobe.CameraRaw           0x2fd26b77 0x2fb86000 + 1706871
    8   com.apple.CoreServices.CarbonCore 0x91cdc988 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib             0x99136ed9 _pthread_start + 335
    10  libsystem_c.dylib             0x9913a6de thread_start + 34
    Thread 23:
    0   libsystem_kernel.dylib        0x96bdb83e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x9913ae21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x990eb42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x91d0820a TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore 0x91c798d1 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore 0x91cdba29 MPWaitOnQueue + 200
    6   com.adobe.CameraRaw           0x2fd271b1 0x2fb86000 + 1708465
    7   com.adobe.CameraRaw           0x2fd26b77 0x2fb86000 + 1706871
    8   com.apple.CoreServices.CarbonCore 0x91cdc988 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib             0x99136ed9 _pthread_start + 335
    10  libsystem_c.dylib             0x9913a6de thread_start + 34
    Thread 24:
    0   libsystem_kernel.dylib        0x96bdb83e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x9913ae21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x990eb42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x91d0820a TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore 0x91c798d1 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore 0x91cdba29 MPWaitOnQueue + 200
    6   com.adobe.CameraRaw           0x2fd271b1 0x2fb86000 + 1708465
    7   com.adobe.CameraRaw           0x2fd26b77 0x2fb86000 + 1706871
    8   com.apple.CoreServices.CarbonCore 0x91cdc988 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib             0x99136ed9 _pthread_start + 335
    10  libsystem_c.dylib             0x9913a6de thread_start + 34
    Thread 25:
    0   libsystem_kernel.dylib        0x96bdb83e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x9913ae21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x990eb42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x91d0820a TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore 0x91c798d1 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore 0x91cdba29 MPWaitOnQueue + 200
    6   com.adobe.CameraRaw           0x2fd271b1 0x2fb86000 + 1708465
    7   com.adobe.CameraRaw           0x2fd26b77 0x2fb86000 + 1706871
    8   com.apple.CoreServices.CarbonCore 0x91cdc988 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib             0x99136ed9 _pthread_start + 335
    10  libsystem_c.dylib             0x9913a6de thread_start + 34
    Thread 26:
    0   libsystem_kernel.dylib        0x96bdb83e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x9913ae21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x990eb42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x91d0820a TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore 0x91c798d1 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore 0x91cdba29 MPWaitOnQueue + 200
    6   com.adobe.CameraRaw           0x2fd271b1 0x2fb86000 + 1708465
    7   com.adobe.CameraRaw           0x2fd26b77 0x2fb86000 + 1706871
    8   com.apple.CoreServices.CarbonCore 0x91cdc988 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib             0x99136ed9 _pthread_start + 335
    10  libsystem_c.dylib             0x9913a6de thread_start + 34
    Thread 27:
    0   libsystem_kernel.dylib        0x96bdb83e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x9913ae21 _pthread_cond_wait + 827
    2   libsystem_c.dylib             0x990eb42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore 0x91d0820a TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore 0x91c798d1 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore 0x91cdba29 MPWaitOnQueue + 200
    6   com.adobe.CameraRaw           0x2fd271b1 0x2fb86000 + 1708465
    7   com.adobe.CameraRaw           0x2fd26b77 0x2fb86000 + 1706871
    8   com.apple.CoreServices.CarbonCore 0x91cdc988 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib             0x99136ed9 _pthread_start + 335
    10  libsystem_c.dylib             0x9913a6de thread_start + 34
    Thread 28:
    0   libsystem_kernel.dylib        0x96bdb83e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x9913ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x990e282a pthread_cond_wait + 48
    3   com.adobe.CameraRaw           0x2fbc64b9 0x2fb86000 + 263353
    4   com.adobe.CameraRaw           0x2fe4b97c EntryFM + 730746
    5   com.adobe.CameraRaw           0x2fc5790d 0x2fb86000 + 858381
    6   libsystem_c.dylib             0x99136ed9 _pthread_start + 335
    7   libsystem_c.dylib             0x9913a6de thread_start + 34
    Thread 29:
    0   libsystem_kernel.dylib        0x96bdb83e __psynch_cvwait + 10
    1   libsystem_c.dylib             0x9913ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib             0x990e282a pthread_cond_wait + 48
    3   com.adobe.CameraRaw           0x2fbc64b9 0x2fb86000 + 263353
    4   com.adobe.CameraRaw           0x300a40d3 0x2fb86000 + 5365971
    5   com.adobe.CameraRaw           0x2fc5790d 0x2fb86000 + 858381
    6   libsystem_c.dylib             0x99136ed9 _pthread_start + 335
    7   libsystem_c.dylib             0x9913a6de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x03457856  ebx: 0xbffff110  ecx: 0x00000001  edx: 0x00000000
      edi: 0x00000000  esi: 0x00678870  ebp: 0xbffff028  esp: 0xbffff00c
       ss: 0x00000023  efl: 0x00010202  eip: 0x00000000   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU: 4
    Binary Images:
        0x1000 -  0x19aefdf +com.adobe.Photoshop (11.0.2 [11.0.2x20100519 [20100519.r.592 2010/05/19:02:00:00 cutoff; r branch]] - 11.0.2) <40DBAC70-2688-44B1-A8CE-142BF8A18887> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4
    0x207f000 -  0x2085fff  org.twain.dsm (1.9.4 - 1.9.4) <C0CCCE50-2929-3853-BE08-0DAE14CA29B8> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
    0x208c000 -  0x246601f +com.adobe.linguistic.LinguisticManager (4.0.0 - 7863) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x251a000 -  0x2714fcf +AdobeOwl (??? - ???) <4CCA2C7B-4896-4DDA-A14B-725FB0C202B5> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x278f000 -  0x289cfff +AdobeACE (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x28ba000 -  0x2c84fef +AdobeMPS (??? - ???) <277E01A3-CAC3-4FA9-A591-4BC0A5BC125A> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x2d13000 -  0x2d73fc7 +AdobeXMP (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x2d82000 -  0x307dfff +AdobeAGM (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x313d000 -  0x33d0fe7 +AdobeCoolType (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x3454000 -  0x346dfff +AdobeBIB (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x3477000 -  0x3498ff7 +AdobeBIBUtils (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x34a5000 -  0x34c0ff9 +AdobePDFSettings (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSettings
    0x34da000 -  0x34feff6 +AdobeAXE8SharedExpat (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
    0x3511000 -  0x359e2cb +libicucnv.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/ICUConverter.framework/Versions/3.6/libicucnv.dylib.36.0
    0x35cb000 -  0x35e680f +libicudata.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.dylib.36.0
    0x35e9000 -  0x379fff4 +com.adobe.amtlib (amtlib 2.0.1.10077 - 2.0.1.10077) <CB2EC3BF-6771-4DAB-BF29-6775FB6F9608> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x37d6000 -  0x3866fc3 +WRServices (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x39e8000 -  0x39ecffc +com.adobe.AdobeCrashReporter (2.5 - 3.0.20080806) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x39f2000 -  0x3a0efd7 +com.adobe.LogTransport (1.0 - 1.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/LogTransport.framework/Versions/A/LogTransport
    0x3a19000 -  0x3aeefdd +FileInfo (??? - ???) <F0932F89-FC98-4BA9-B4F2-C58D0E71D3C1> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x3b1f000 -  0x3b76fff +aif_core (??? - ???) <B4DCB439-E1EE-ABE3-BD12-2C42E980366B> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
    0x3b8e000 -  0x3babffd +data_flow (??? - ???) <8E452B6F-8032-39D8-EB5C-49A4E31CB988> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
    0x3bd7000 -  0x3c50fff +image_flow (??? - ???) <498A857D-F8C6-F9E0-C92F-BC3EC8680ED0> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
    0x3cb6000 -  0x3cc6fff +image_runtime (??? - ???) <F379A952-2983-1E44-676D-BBD8259F131A> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
    0x3cdb000 -  0x3e9affe +aif_ogl (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
    0x3f4b000 -  0x4449fc3 +AdobeOwlCanvas (??? - ???) <FCB2D1A3-1F6E-4182-8E2C-D0B23572D285> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
    0x4592000 -  0x4664fe7 +AdobeAXEDOMCore (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
    0x4718000 -  0x477afe7 +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
    0x47db000 -  0x4822fc7 +com.adobe.adobe_caps (adobe_caps 2.0.99.0 - 2.0.99.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x4832000 -  0x486ffff  com.apple.vmutils (4.2 - 106) <E16C6BE7-C3B2-3836-85CF-989364FBE163> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x4fbf000 -  0x4fc0ff1  com.apple.textencoding.unicode (2.4 - 2.4) <4E55D4B9-4E67-3FC9-9407-3E99D1D50F15> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x6e40000 -  0x6ee1fc3 +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 Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/amtservices.framework/Versions/a/amtservices
    0x6fe7000 -  0x6ff5ffb  libSimplifiedChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <D3F1CC34-55EB-3D33-A7C2-025D5C8025D0> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x6ff9000 -  0x6ffaffc  ATSHI.dylib (??? - ???) <B244624E-E09E-34B2-A185-EB30AF08A95D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib
    0xb7b0000 -  0xb7c2fff  libTraditionalChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <ADEB72F9-0048-3C87-AD9B-71AA57D523E9> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0xb7c6000 -  0xb7d3ff7 +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
    0xb7e1000 -  0xb7e1fff  libmx.A.dylib (2026.0.0 - compatibility 1.0.0) <859B5BCC-B5D9-370F-8B6C-1E2B242D5DCD> /usr/lib/libmx.A.dylib
    0xd78a000 -  0xd78cffa +Adobe Unit Types (a2.0.0 - 2.0.0) /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types
    0x27f57000 - 0x280c4ff0  GLEngine (??? - ???) <3C6D5F72-9CDA-37E2-B085-7F38C99FE8C5> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x280f8000 - 0x281efffb  libGLProgrammability.dylib (??? - ???) <560A7F12-1AA6-35E1-A922-309016BF6D3C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0x28213000 - 0x284e2ffb  com.apple.ATIRadeonX3000GLDriver (7.2.9 - 7.0.2) <F4616DD7-FD38-3FE4-9545-CDD802105F8D> /System/Library/Extensions/ATIRadeonX3000GLDriver.bundle/Contents/MacOS/ATIRadeonX3000GLD river
    0x28513000 - 0x28540ff8  GLRendererFloat (??? - ???) <BBFAA220-4A07-3CDC-9A93-DF6A2220AE01> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
    0x28588000 - 0x28593fff +Enable Async IO (??? - ???) <FD91E79F-C4AA-4EBC-AF6D-3E154F14878F> /Applications/Adobe Photoshop CS4/*/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
    0x28598000 - 0x285a602f +FastCore (??? - ???) <F12878B7-BEE9-40CA-9F05-65CD0F5688E2> /Applications/Adobe Photoshop CS4/*/FastCore.plugin/Contents/MacOS/FastCore
    0x285ac000 - 0x285b7ffb +PPCCore (??? - ???) <ED521EB7-681D-45AA-9AE3-6BF4663E4BD3> /Applications/Adobe Photoshop CS4/*/PPCCore.plugin/Contents/MacOS/PPCCore
    0x285bd000 - 0x285c8ffe +AltiVecCore (??? - ???) <A967AE2A-F2AE-4E12-A7B6-68B981CBD906> /Applications/Adobe Photoshop CS4/*/AltiVecCore.plugin/Contents/MacOS/AltiVecCore
    0x285ce000 - 0x28633fe3 +MMXCore (??? - ???) <E206C8DC-AEA8-49DF-8FBC-8B447E3A59A1> /Applications/Adobe Photoshop CS4/*/MMXCore.plugin/Contents/MacOS/MMXCore
    0x286d1000 - 0x28718ff7 +MultiProcessor Support (??? - ???) <001A163B-5314-4613-A23A-F35B63065FD0> /Applications/Adobe Photoshop CS4/*/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
    0x28723000 - 0x28875fc7 +com.adobe.coretech.adm (3.10x16 - 3.1) /Applications/Adobe Photoshop CS4/*/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0x2ac00000 - 0x2ae5cfdf +com.adobe.PSAutomate (11.0.1 - 11.0.1) /Applications/Adobe Photoshop CS4/*/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
    0x2b0f0000 - 0x2b1befff +AdobeExtendScript (3.7.0 - compatibility 3.7.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
    0x2b235000 - 0x2b2d6fd7 +AdobeScCore (3.7.0 - compatibility 3.7.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x2db00000 - 0x2db70fe2 +com.satimage.Satimage (Satimage 3.2.0b - 3.2.0b) /Users/USER/Library/ScriptingAdditions/Satimage.osax/Contents/MacOS/Satimage
    0x2de00000 - 0x2de23ff7 +CSI-Launcher.dylib (??? - ???) /Library/Application Support/Adobe/*/CSI-Launcher.dylib
    0x2f181000 - 0x2f603fe3 +AdobeLM_libFNP.dylib (??? - ???) <02E9AC76-9CC6-4974-AF05-48E737C2CC20> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/amtlib.framework/Versions/a/AdobeLM_libFNP.dylib
    0x2fb86000 - 0x30264feb +com.adobe.CameraRaw (5.0 - 5.0.0f178) /Library/Application Support/Adobe/*/Camera Raw.plugin/Contents/MacOS/Camera Raw
    0x40000000 - 0x400ae030 +AdobeJP2K (??? - ???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x8fe64000 - 0x8fe969c7  dyld (195.5 - ???) <134323A7-49DC-3A9D-ACFD-32FAD0FD6BA2> /usr/lib/dyld
    0x90031000 - 0x900ccff3  com.apple.ink.framework (1.3.2 - 110) <9F6F37F9-999E-30C5-93D0-E48D4B5E20CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x900cd000 - 0x900cefff  libDiagnosticMessagesClient.dylib (??? - ???) <DB3889C2-2FC2-3087-A2A2-4C319455E35C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x90af2000 - 0x90b1aff0  com.apple.CoreServicesInternal (113.7 - 113.7) <F5724FAC-8BB8-3F0F-B8BC-36F2CA75A23D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x90b1b000 - 0x90b1fffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <98A82BC5-0DD9-3212-9CAE-35A77278EEB6> /usr/lib/system/libcache.dylib
    0x90b20000 - 0x90b42ffe  com.apple.framework.familycontrols (3.0 - 300) <AE51B604-D32D-32F7-AEDC-B1C4EB7191C6> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x90b43000 - 0x90b4cfff  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <FEB5330E-AD5D-37A0-8AB2-0820F311A2C8> /usr/lib/libc++abi.dylib
    0x911fe000 - 0x91201ff7  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
    0x91202000 - 0x91238fff  com.apple.DebugSymbols (2.1 - 85) <0F996A4A-16A7-3C90-8037-0E2958D1FB16> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x915bb000 - 0x915fbff7  libauto.dylib (??? - ???) <36E7FE7F-27DF-3301-80AA-DD61FBF722F4> /usr/lib/libauto.dylib
    0x9185c000 - 0x91860ffd  IOSurface (??? - ???) <97E875C2-9F1A-3FBA-B80C-594892A02621> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x91861000 - 0x91b12ff7  com.apple.security (7.0 - 55010) <28168576-1B8C-3FE8-9356-DE79390A480A> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91b13000 - 0x91b14fff  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <B04592B1-0924-3422-82FF-976B339DF567> /usr/lib/system/libsystem_blocks.dylib
    0x91b3f000 - 0x91b7dfff  com.apple.NavigationServices (3.6 - 192) <CB7AE807-9292-3EBA-A5F5-D7DCEE28A5B7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x91b7e000 - 0x91be0ff3  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
    0x91c3b000 - 0x91f3bfff  com.apple.CoreServices.CarbonCore (960.13 - 960.13) <E098AC3A-E795-3C28-BA92-EED51C461A6F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x91f4b000 - 0x91f60fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x92061000 - 0x9209dfff  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <8CB51735-ABE4-37AD-9019-845BB768955F> /usr/lib/libcups.2.dylib
    0x9209e000 - 0x9209fff5  libremovefile.dylib (21.0.0 - compatibility 1.0.0) <9A1E12B7-F822-3544-8E1D-A6DC81E1F2E6> /usr/lib/system/libremovefile.dylib
    0x920b0000 - 0x920eefff  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <0AE59D4F-FFA7-3539-8B86-AD8993894AA0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x921a5000 - 0x9220fff3  com.apple.CoreSymbolication (2.1 - 66) <B11C9057-1611-36A5-81F6-2C97A7047321> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x92360000 - 0x9238bfff  com.apple.GSS (2.1 - 2.0) <129F4AB0-41AC-3713-A7BC-921769B0E12D> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9238c000 - 0x9238dfff  com.apple.TrustEvaluationAgent (2.0 - 1) <EABDA7EE-A98F-35B8-9E3E-7075BA651C68> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x9238e000 - 0x92e13ffe  com.apple.AppKit (6.7 - 1138) <1CEDE402-32DD-3C10-B3B3-8C3DDBE8335D> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92e81000 - 0x92e81ffe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
    0x92e82000 - 0x92e8aff3  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <CD470A1E-0147-3CB1-B44D-0B61F9061826> /usr/lib/system/liblaunch.dylib
    0x92f42000 - 0x92f78ff7  com.apple.AE (527.6 - 527.6) <77999151-94E3-37CD-A49E-7A9F9084F886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x92fbc000 - 0x92ff8ffa  libGLImage.dylib (??? - ???) <7A150184-E3F7-3773-917A-A5E24B9241FA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x92ff9000 - 0x92ffcffc  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <6FFDBD60-5EC6-3EFA-996B-EE030443C16C> /usr/lib/libpam.2.dylib
    0x93000000 - 0x93005ff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <56A34E97-518E-307E-8218-C5D43A33EE34> /usr/lib/system/libmacho.dylib
    0x93006000 - 0x93034ffb  com.apple.DictionaryServices (1.2 - 158) <C614930F-520D-3F77-AD0D-0E16FBCB98CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x93321000 - 0x93321fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <CB952B04-595A-332B-992B-7671815750FD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x93322000 - 0x93325ff7  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
    0x93352000 - 0x9382eff6  libBLAS.dylib (??? - ???) <327C1517-2B63-3D8C-8D8E-CB4EBA2A9C36> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x93944000 - 0x93946ff9  com.apple.securityhi (4.0 - 1) <BD367302-73C3-32F4-8080-E389AE89E434> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x93947000 - 0x9394efff  com.apple.agl (3.1.4 - AGL-3.1.4) <CCCE2A89-026B-3185-ABEA-68D268353164> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x93999000 - 0x939a6fff  libGL.dylib (??? - ???) <C1C549FC-FF7F-3012-9DF5-5255217B4AEA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x939a7000 - 0x939baff9  com.apple.MultitouchSupport.framework (220.62 - 220.62) <5BD8730D-43A4-3040-9EA3-0BDA52A392A9> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x939bb000 - 0x93a5ffff  com.apple.QD (3.12 - ???) <68CBE425-43BA-3E6D-8668-A4A67396E20D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x93aef000 - 0x93b47fff  com.apple.HIServices (1.9 - ???) <058E00E0-F1B4-395F-813E-C49C0C5F3BA9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x94a01000 - 0x94a0cffc  com.apple.NetAuth (1.0 - 3.0) <C07853C0-AF32-3633-9CEF-2480860C12C5> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x94a0d000 - 0x94a1bfff  libdispatch.dylib (187.5.0 - compatibility 1.0.0) <1883C8E2-D180-3EA0-8BEF-325F2FEDACD1> /usr/lib/system/libdispatch.dylib
    0x94a1c000 - 0x94b3cfec  com.apple.vImage (5.0 - 5.0) <173F6343-07EE-39F7-A159-DD3837E473DE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x94b46000 - 0x94b96fff  libFontRegistry.dylib (??? - ???) <BC35B8F5-7CCA-3A04-A278-FA3306B2C4F8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x94b97000 - 0x94b9aff9  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <B9344DE6-B84D-352C-95AD-EF73A68B8A10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
    0x94b9b000 - 0x94b9bff0  com.apple.ApplicationServices (41 - 41) <BED33E1D-C95C-3654-9A3A-0CB3607F9F10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x94ef9000 - 0x94efaffd  libCVMSPluginSupport.dylib (??? - ???) <8057030D-B290-3A8B-9828-3A1BD123B124> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
    0x94f4d000 - 0x94f5efff  libbsm.0.dylib (??? - ???) <54ACF696-87C6-3652-808A-17BE7275C230> /usr/lib/libbsm.0.dylib
    0x94f5f000 - 0x94f67ff3  libunwind.dylib (30.0.0 - compatibility 1.0.0) <E8DA8CEC-12D6-3C8D-B2E2-5D567C8F3CB5> /usr/lib/system/libunwind.dylib
    0x94f68000 - 0x94f78ff7  libCRFSuite.dylib (??? - ???) <CE616EF3-756A-355A-95AD-3472A876BEB9> /usr/lib/libCRFSuite.dylib
    0x94f9f000 - 0x94fa5ffd  com.apple.CommerceCore (1.0 - 17) <71641C17-1CA7-3AC9-974E-AAC9EB641035> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x94fa6000 - 0x953a8ff6  libLAPACK.dylib (??? - ???) <00BE0221-8564-3F87-9F6B-8A910CF2F141> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x95776000 - 0x957f2fff  libType1Scaler.dylib (??? - ???) <DFBB3B4F-31F4-3ED0-B57C-713493CA2756> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libType1Scaler.dylib
    0x957f4000 - 0x957f4fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <881C1C85-2DEC-38DE-BC97-7804BC907282> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x959ee000 - 0x959f9ff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <11726E50-E6FC-3AB0-8750-DDDCCF2B8534> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
    0x95a9d000 - 0x95bacff7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <01987A45-9270-30FD-8A67-5E53DB637909> /usr/lib/libsqlite3.dylib
    0x95d9a000 - 0x95da0ffb  com.apple.print.framework.Print (7.0 - 247) <1140BB03-0720-308F-8D92-F71B347D63D6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x95da1000 - 0x95dd5ff3  libTrueTypeScaler.dylib (??? - ???) <FF162272-243C-321C-B152-AD81B3171C54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
    0x95dd6000 - 0x95dfbff9  libJPEG.dylib (??? - ???) <5872B388-D6CC-3DD4-A2F3-8BB464E83D14> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
    0x95e47000 - 0x95fe0ff7  com.apple.CoreData (103 - 358.4) <EB07F3A5-6301-3DA4-96FC-F8381D148C69> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x95fe1000 - 0x960d1ff1  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
    0x960d2000 - 0x963d5ff7  com.apple.Foundation (6.7 - 833.1) <94BFFEDD-0676-368D-B4C6-8784E1DA4306> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x96435000 - 0x964f5ff3  com.apple.ColorSync (4.7.0 - 4.7.0) <50767823-56BA-373D-BC5A-37B17B659838> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x965cd000 - 0x96648ffb  com.apple.ApplicationServices.ATS (5.0 - ???) <8DF22F1E-7600-3ADA-BFC1-F6FA79914171> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x96a54000 - 0x96a56ffb  libRadiance.dylib (??? - ???) <5112B7CE-BAAF-3E98-94E4-676BCB92867F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
    0x96bb5000 - 0x96bbcff5  libsystem_dnssd.dylib (??? - ???) <B3217FA8-A7D6-3C90-ABFC-2E54AEF33547> /usr/lib/system/libsystem_dnssd.dylib
    0x96bc3000 - 0x96be1ff7  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <D32C2E9C-8184-3FAF-8694-99FC619FC71B> /usr/lib/system/libsystem_kernel.dylib
    0x96c40000 - 0x972a565b  com.apple.CoreGraphics (1.600.0 - ???) <DD3B7ADA-0F19-371E-BB87-F3C08464134A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x972a6000 - 0x972d4fe7  libSystem.B.dylib (159.0.0 - compatibility 1.0.0) <FA9B75F7-B989-3DD3-97FD-373EB95C5BA8> /usr/lib/libSystem.B.dylib
    0x972d5000 - 0x97331ff3  com.apple.Symbolication (1.2 - 83.1) <E651A2F1-CC13-3DDD-9B0A-09180014966B> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x97332000 - 0x97342fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x973d4000 - 0x974fdff9  com.apple.CFNetwork (520.0.13 - 520.0.13) <B21DE9ED-1D99-39C0-9E24-77D2A48FBFEF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
    0x974fe000 - 0x97521fff  com.apple.CoreVideo (1.7 - 70.0) <0CBE6F3B-34C7-3C6B-9BB1-826F9905ECC1> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x97522000 - 0x97523ff7  libquarantine.dylib (36.0.0 - compatibility 1.0.0) <70782AEC-8933-3EB4-91CA-E44C0E768C90> /usr/lib/system/libquarantine.dylib
    0x9753e000 - 0x9753efff  com.apple.Cocoa (6.6 - ???) <650273EF-1ABC-334E-B745-B75AF028F9F4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x979ef000 - 0x979f4ffd  libGFXShared.dylib (??? - ???) <7C55BE22-CDB5-3192-B7F0-96EA754A20AC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x97b4d000 - 0x97b4dfff  com.apple.vecLib (3.7 - vecLib 3.7) <A01CD788-26FB-320F-8617-5A7DF0F9031E> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97b4e000 - 0x97b52ff7  com.apple.OpenDirectory (10.7 - 144) <A117580D-FD86-381E-82FD-B1A040045031> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x97b53000 - 0x97bdfff7  com.apple.CoreText (4.0.0 - ???) <2ADB0C1E-FE27-371C-8EC3-69D5CFEA2BE7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
    0x97be0000 - 0x97bf9fff  libPng.dylib (??? - ???) <2C47E152-240A-36A7-87A8-3856EDFF2FE8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
    0x97bfa000 - 0x97c41fff  com.apple.SystemConfiguration (1.11 - 1.11) <A7769080-2A4F-36AF-9484-08A936690307> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x97d42000 - 0x97e3aff7  libFontParser.dylib (??? - ???) <C428D41A-8635-3423-A2F0-8BA9819F212B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x97e47000 - 0x9801dfef  com.apple.CoreFoundation (6.7 - 635) <4EE0D62E-5342-3A9F-A740-DA1D5AEBB1B0> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9801e000 - 0x98083ff7  libvDSP.dylib (325.3.0 - compatibility 1.0.0) <1C4B66EB-3186-31BE-B93F-878E49334C49> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x98084000 - 0x980d4ff4  libTIFF.dylib (??? - ???) <25796A90-ABD2-3A3A-800C-1056D343A71F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
    0x980d5000 - 0x981a4ffb  com.apple.ImageIO.framework (3.1.0 - 3.1.0) <A482C10A-C474-39DC-AB3C-EADBCF3A433B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
    0x9827c000 - 0x98284ff5  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <A1BFC320-616A-30AA-A41E-29D7904FC4C7> /usr/lib/system/libcopyfile.dylib
    0x98287000 - 0x982caffd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <4BA1F5F1-F0A2-3FEB-BB62-F514DCBB3725> /usr/lib/system/libcommonCrypto.dylib
    0x98318000 - 0x9837affb  com.apple.datadetectorscore (3.0 - 179.3) <18117942-9D6F-3283-B8B0-03C7550CA2EB> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x9837b000 - 0x98390ff7  com.apple.ImageCapture (7.0 - 7.0) <116BC0CA-428E-396F-85DF-52793034D2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x983ab000 - 0x9850cffb  com.apple.QuartzCore (1.7 - 269.0) <221FF6A0-9C2C-3977-BC2A-A84C392BA49B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9850d000 - 0x9861eff7  libJP2.dylib (??? - ???) <E938C201-C508-3E3D-B9A9-81FE52349E1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJP2.dylib
    0x9861f000 - 0x98620fff  liblangid.dylib (??? - ???) <C8C204E9-1785-3785-BBD7-22D59493B98B> /usr/lib/liblangid.dylib
    0x98621000 - 0x98651ff7  libsystem_info.dylib (??? - ???) <C385F5A9-458A-3B49-9CC7-EA81DC5F9141> /usr/lib/system/libsystem_info.dylib
    0x9886d000 - 0x988d1fff  com.apple.framework.IOKit (2.0 - ???) <B5888D02-8C36-3404-A37E-7457D950D629> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x988d2000 - 0x98a24ffb  com.apple.audio.toolbox.AudioToolbox (1.7 - 1.7) <5767C518-343D-36DB-8D59-C72986161AEC> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x98a25000 - 0x98a2eff3  com.apple.CommonAuth (2.1 - 2.0) <94EA2555-212C-3704-8307-FCEE5D6D32C5> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x98a2f000 - 0x98a33fff  com.apple.CommonPanels (1.2.5 - 94) <3A988595-DE53-34ED-9367-C9A737E2AF38> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x98e28000 - 0x98e4aff1  com.apple.PerformanceAnalysis (1.10 - 10) <45B10D4C-9B3B-37A6-982D-687A6F9EEA28> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x98e4b000 - 0x98e61ffe  libxpc.dylib (77.16.0 - compatibility 1.0.0) <2EAF3E13-19FA-3EF2-88D6-64ACBC3A6ADB> /usr/lib/system/libxpc.dylib
    0x98e62000 - 0x98ebbff3  com.apple.coreui (0.3 - 162) <BD3FBC84-234A-38E0-AA29-DE0424D3FD16> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x98ebc000 - 0x98f23fff  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <3AFF3CE8-14AE-300F-8F63-8B7FB9D4DA96> /usr/lib/libc++.1.dylib
    0x98f24000 - 0x98f4dffe  com.apple.opencl (1.50.62 - 1.50.62) <52059AB5-8E0D-356E-98AA-71A4777CBE57> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x99092000 - 0x9909dfff  libkxld.dylib (??? - ???) <088640F2-429D-3368-AEDA-3C308C4EB80C> /usr/lib/system/libkxld.dylib
    0x9909e000 - 0x990a8ff2  com.apple.audio.SoundManager (3.9.4 - 3.9.4) <D23C4761-6492-3974-B4D2-495082B8B7A6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x990da000 - 0x991a5fff  libsystem_c.dylib (763.11.0 - compatibility 1.0.0) <44AA09FD-3A8F-3DCF-AD98-BC9071CA7376> /usr/lib/system/libsystem_c.dylib
    0x991a6000 - 0x9928efff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <ED3F5E83-8C76-3D46-B2FF-0D5BDF8970C5> /usr/

  • Error #2148 when loading image from ByteArray (not network or file)

    Hi!
    When I try to access bitmap data of Image loaded from ByteArray, I receive the following error:
    Error #2148: SWF file file:///C|/blablabla..../MyFlash.swf cannot access local resource file:///C|/blablabla..../MyFlash.swf/[[DYNAMIC]]/2. Only local-with-filesystem and trusted local SWF files may access local resources.
    I'm on Flash, not on AIR. And ByteArray contains PNG data which I prepare myself
    I tried to do it with Image.load and loader.loadBytes - the error is the same. I tried to use Flex SDK 3.4, 3.5 & 3.6 - nothing helps.
    When I add this image to my stage, it is displayed absolutely OK, but I still can't access bitmapData of this image - always got the same error.
    Flash Player 10
    Here are the samples of my code:
              public function onLoadComplete(event:Event):void
                var loader:LoaderInfo = event.target as LoaderInfo;
                var bmp:Bitmap = loader.loader.content as Bitmap; <-- here I received the error
                var bmpDat:BitmapData = bmp.bitmapData;
                this.bitmapData.copyPixels(bmpDat,new Rectangle(0,0,width,height), new Point(0,0));
                var loader:Loader = new Loader();
                loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoadComplete);
                loader.loadBytes(byteArray);
    And another try
           var image: Image = new Image()
           this.addChild(image);
           image.addEventListener(FlexEvent.UPDATE_COMPLETE, onCompleteLoad2 );
          image.load(byteArray);
          public function onCompleteLoad2 (e:flash.events.Event):void
                     var image:Image=e.target as Image;
                     var bitmapData:BitmapData;
                     bitmapData=new BitmapData(image.width,image.height,true,0);             
                     bitmapData.draw(image); <-- here I received the error, while image is correctly added to the stage and displayed
    What's wrong? It seems, the image loaded from byteArray is treated as local resource. How can I overcome it inside the code? Because this .swf is
    run on different computers and I can't just add a flash security exception on every of them....
    Please, help I spent, maybe 20 hours and still can't find the solution

    I had the same problem, except I was reading in the image from the local disk using FileReference.  Anyway, my issue was resolved by using the
    -use-network=false option on the command line of my compiler (I do all my development in the shell using 'vi' to edit and mxmlc to compile).
    Ttry "-use-network=false" and see if that helps...
    ...bob...

  • NullPointerException thrown when using get method in CMR relationship outsi

    We are using weblogic 9.1 CMP entity beans with BEA's XA oracle driver. We have a bean called User that has a many address beans. When calling the getAddresses method on a UserLocal a NullPointerException gets thrown if the stateless session bean method that is marked as @LocalMethod(transactionAttribute=Constants.TransactionAttribute.SUPPORTS). If we change it to REQUIRED the method returns addresses successfully. Does anyone have any ideas as to what could be causing this? Below is the stack trace.
    My best guess is that an exception is occurring and when weblogic tries to handle the exception EJBRuntimeUtils.throwEJBException encounters the NullPointerException.
    javax.ejb.EJBException: EJB Exception: : java.lang.NullPointerException
    at gov.nasa.echo.dataaccessobjects.user.echo_user_User_l47u68__WebLogic_CMP_RDBMS_addresses_Set.<init>(echo_user_User_l47u68__WebLogic_CMP_RDBMS_addresses_Set.java
    :93)
    at gov.nasa.echo.dataaccessobjects.user.echo_user_User_l47u68__WebLogic_CMP_RDBMS.getAddresses(echo_user_User_l47u68__WebLogic_CMP_RDBMS.java:1161)
    at gov.nasa.echo.dataaccessobjects.user.echo_user_User_l47u68_ELOImpl.getAddresses(echo_user_User_l47u68_ELOImpl.java:770)
    at gov.nasa.echo.subsystems.user.UserTypeMap.convertUser(UserTypeMap.java:66)
    at gov.nasa.echo.subsystems.user.UserSubsystem.getUserByUserId(UserSubsystem.java:321)
    at gov.nasa.echo.subsystems.user.UserSubsystem.getUsersByUserId(UserSubsystem.java:302)
    at gov.nasa.echo.services.authentication.AuthenticationServiceBean.login(AuthenticationServiceBean.java:442)
    at gov.nasa.echo.services.authentication.AuthenticationServiceBean_plcr77_ELOImpl.login(AuthenticationServiceBean_plcr77_ELOImpl.java:1001)
    at gov.nasa.echo.v8.AuthenticationServicePortImpl.login(AuthenticationServicePortImpl.java:105)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at weblogic.wsee.component.pojo.JavaClassComponent.invoke(JavaClassComponent.java:91)
    at weblogic.wsee.ws.dispatch.server.ComponentHandler.handleRequest(ComponentHandler.java:68)
    at weblogic.wsee.handler.HandlerIterator.handleRequest(HandlerIterator.java:127)
    at weblogic.wsee.ws.dispatch.server.ServerDispatcher.dispatch(ServerDispatcher.java:84)
    at weblogic.wsee.ws.WsSkel.invoke(WsSkel.java:60)
    at weblogic.wsee.server.servlet.SoapProcessor.handlePost(SoapProcessor.java:66)
    at weblogic.wsee.server.servlet.SoapProcessor.process(SoapProcessor.java:44)
    at weblogic.wsee.server.servlet.BaseWSServlet$AuthorizedInvoke.run(BaseWSServlet.java:124)
    at weblogic.wsee.server.servlet.BaseWSServlet.service(BaseWSServlet.java:53)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:225)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:127)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:272)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:165)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3153)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:1973)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1880)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1310)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:179)
    ; nested exception is: java.lang.NullPointerException
    at weblogic.ejb.container.internal.EJBRuntimeUtils.throwEJBException(EJBRuntimeUtils.java:141)
    at weblogic.ejb.container.internal.BaseLocalObject.handleSystemException(BaseLocalObject.java:643)
    at weblogic.ejb.container.internal.BaseLocalObject.handleSystemException(BaseLocalObject.java:604)
    at weblogic.ejb.container.internal.BaseLocalObject.postInvoke1(BaseLocalObject.java:347)
    at weblogic.ejb.container.internal.BaseLocalObject.postInvokeTxRetry(BaseLocalObject.java:286)
    Truncated. see log file for complete stacktrace

    Jason Gilman wrote:
    We are using weblogic 9.1 CMP entity beans with BEA's XA oracle driver. We have a bean called User that has a many address beans. When calling the getAddresses method on a UserLocal a NullPointerException gets thrown if the stateless session bean method that is marked as @LocalMethod(transactionAttribute=Constants.TransactionAttribute.SUPPORTS). If we change it to REQUIRED the method returns addresses successfully. Does anyone have any ideas as to what could be causing this? Below is the stack trace
    My best guess is that an exception is occurring and when weblogic tries to handle the exception EJBRuntimeUtils.throwEJBException encounters the NullPointerException.
    Open an official support case. This has nothing to do with jdbc.
    Joe
    >
    >
    javax.ejb.EJBException: EJB Exception: : java.lang.NullPointerException
    at gov.nasa.echo.dataaccessobjects.user.echo_user_User_l47u68__WebLogic_CMP_RDBMS_addresses_Set.<init>(echo_user_User_l47u68__WebLogic_CMP_RDBMS_addresses_Set.java
    :93)
    at gov.nasa.echo.dataaccessobjects.user.echo_user_User_l47u68__WebLogic_CMP_RDBMS.getAddresses(echo_user_User_l47u68__WebLogic_CMP_RDBMS.java:1161)
    at gov.nasa.echo.dataaccessobjects.user.echo_user_User_l47u68_ELOImpl.getAddresses(echo_user_User_l47u68_ELOImpl.java:770)
    at gov.nasa.echo.subsystems.user.UserTypeMap.convertUser(UserTypeMap.java:66)
    at gov.nasa.echo.subsystems.user.UserSubsystem.getUserByUserId(UserSubsystem.java:321)
    at gov.nasa.echo.subsystems.user.UserSubsystem.getUsersByUserId(UserSubsystem.java:302)
    at gov.nasa.echo.services.authentication.AuthenticationServiceBean.login(AuthenticationServiceBean.java:442)
    at gov.nasa.echo.services.authentication.AuthenticationServiceBean_plcr77_ELOImpl.login(AuthenticationServiceBean_plcr77_ELOImpl.java:1001)
    at gov.nasa.echo.v8.AuthenticationServicePortImpl.login(AuthenticationServicePortImpl.java:105)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at weblogic.wsee.component.pojo.JavaClassComponent.invoke(JavaClassComponent.java:91)
    at weblogic.wsee.ws.dispatch.server.ComponentHandler.handleRequest(ComponentHandler.java:68)
    at weblogic.wsee.handler.HandlerIterator.handleRequest(HandlerIterator.java:127)
    at weblogic.wsee.ws.dispatch.server.ServerDispatcher.dispatch(ServerDispatcher.java:84)
    at weblogic.wsee.ws.WsSkel.invoke(WsSkel.java:60)
    at weblogic.wsee.server.servlet.SoapProcessor.handlePost(SoapProcessor.java:66)
    at weblogic.wsee.server.servlet.SoapProcessor.process(SoapProcessor.java:44)
    at weblogic.wsee.server.servlet.BaseWSServlet$AuthorizedInvoke.run(BaseWSServlet.java:124)
    at weblogic.wsee.server.servlet.BaseWSServlet.service(BaseWSServlet.java:53)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:225)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:127)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:272)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:165)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3153)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:1973)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1880)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1310)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:179)
    ; nested exception is: java.lang.NullPointerException
    at weblogic.ejb.container.internal.EJBRuntimeUtils.throwEJBException(EJBRuntimeUtils.java:141)
    at weblogic.ejb.container.internal.BaseLocalObject.handleSystemException(BaseLocalObject.java:643)
    at weblogic.ejb.container.internal.BaseLocalObject.handleSystemException(BaseLocalObject.java:604)
    at weblogic.ejb.container.internal.BaseLocalObject.postInvoke1(BaseLocalObject.java:347)
    at weblogic.ejb.container.internal.BaseLocalObject.postInvokeTxRetry(BaseLocalObject.java:286)
    Truncated. see log file for complete stacktrace

  • Evolution : Segfault when loading images

    Hi,
    When I want to load embedded images in a mail, Evolution crashes with a segmentation fault:
    >ref_count > 0' failed
    Erreur de segmentation
    Does anyone have the same issue?

    I also have this problem and it seams to be resolve in 3.12.4 :
    https://bugzilla.gnome.org/show_bug.cgi?id=731770

  • How to get rid of flipping when loading image...

    Hi, everybody.
    I 've programed one applet loading and showing images.
    It has two part, one of both is large one, in which the picture will be shown larger.
    Another one is list of pictuers, so when I click one of them, it will be shown in large part.
    It looks like Thumbnail showing.
    The thing is when I click one image, then it is shown, but very fliped.
    In fact I didn't use bufferedImage for large picture due to out of memory.
    So, any suggestion? any help or advice?
    I'am expecting... thank you.
    genette.

    You installed the Conduit spyware. To remove it, select Go ▹ Go to Folder… from the Finder menu bar, then enter the following text in the box that opens:
    ~/Library/Application Support/Conduit
    Delete the selected item, if it exists.
    Now select Go to Folder… again and enter:
    /Library
    From the folder that opens, delete the following items, if they exist. You may be prompted for your login password.
    Application Support/Conduit
    InputManagers/CTLoader
    LaunchAgents/com.conduit.loader.agent.plist
    ScriptingAdditions/ct_scripting.osax
    Close the folder. Now press the key combination shift-command-A. The Applications folder will open. Delete this item from the folder:
    Toolbars
    Close the folder. Log out and log back in.

  • Security Exception when loading Image in the background?

    I've written a javafx app running in the browser. It loads a bunch of images in the background. It worked fine prior JRE 7 u11.
    However it is broken since JRE 7 u13. Images are not loaded correctly, failing with a SecurityException:
    java.security.AccessControlException: access denied ("java.lang.RuntimePermission" "modifyThreadGroup")
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:366)
         at java.security.AccessController.checkPermission(AccessController.java:560)
         at java.lang.SecurityManager.checkPermission(SecurityManager.java:549)
         at sun.plugin2.applet.SecurityManagerHelper.checkAccessHelper(Unknown Source)
         at sun.plugin2.applet.FXAppletSecurityManager.checkAccess(Unknown Source)
         at java.lang.ThreadGroup.checkAccess(ThreadGroup.java:315)
         at java.lang.Thread.init(Thread.java:376)
         at java.lang.Thread.<init>(Thread.java:446)
         at com.sun.javafx.runtime.async.BackgroundExecutor$1.newThread(BackgroundExecutor.java:52)
         at java.util.concurrent.ThreadPoolExecutor$Worker.<init>(ThreadPoolExecutor.java:610)
         at java.util.concurrent.ThreadPoolExecutor.addWorker(ThreadPoolExecutor.java:924)
         at java.util.concurrent.ThreadPoolExecutor.execute(ThreadPoolExecutor.java:1371)
         at com.sun.javafx.runtime.async.AbstractAsyncOperation.start(AbstractAsyncOperation.java:107)
         at javafx.scene.image.Image$ImageTask.start(Image.java:917)
         at javafx.scene.image.Image.cycleTasks(Image.java:798)
         at javafx.scene.image.Image.access$200(Image.java:107)
         at javafx.scene.image.Image$ImageTask.onCompletion(Image.java:903)
         at javafx.scene.image.Image$ImageTask.onCompletion(Image.java:879)
         at com.sun.javafx.runtime.async.AbstractAsyncOperation$2.run(AbstractAsyncOperation.java:70)
         at com.sun.javafx.application.PlatformImpl$4$1.run(PlatformImpl.java:179)
         at com.sun.javafx.application.PlatformImpl$4$1.run(PlatformImpl.java:176)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sun.javafx.application.PlatformImpl$4.run(PlatformImpl.java:176)
         at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:76)
         at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
         at com.sun.glass.ui.gtk.GtkApplication$3$1.run(GtkApplication.java:82)
         at java.lang.Thread.run(Thread.java:722)If I dont' load the Image in the background -> it's working. Is it a bug?

    It's probably worth filing a bug report on this.
    https://forums.oracle.com/forums/ann.jspa?annID=1713 "Announcement: How to file a bug or submit a feature request"

  • When loading images weird color flashes??

    When my Dreamweaver pages load red appears momentarily where
    my pictures are loading, even though I never set anything to be red
    - my background is blue - why is this happening??? Follow the link
    to see what I mean. Advice would be much appriciated. Thanks, M
    http://zachhorton.com/
    It also happens on this site: meganoconnor.org/ with
    blue.

    Could be a graphics subsystem issue, too - do you ever see
    this on other
    sites?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "crash" <[email protected]> wrote in message
    news:e4g2k0$8cq$[email protected]..
    > like i said, make sure you didn't set a default browser
    color - some
    > developers do to catch when they forget to define a page
    background.
    > "LAgirrl" <[email protected]> wrote in
    message
    > news:e4g29b$7t6$[email protected]..
    >> Well then maybe it is just my browser.... I guess
    that's it. I'm using
    >> Safari 2.0.3 ---thanks your time though!
    >>
    >> Megan
    >
    >

  • Color problems when loading images

    I load card from camera (Canon EOS 700D) and they show fine. But when I hit import the colors go bad and take on a greenish tint. If I hit reset in the develop mode the colors go back to normal. It's a windows 7 PC with Lightroom 5. Colors also show fine on camera LCD.

    Sounds like you are applying a Preset during Import.  Check your Import panel.

  • If I set Firefox to refrain from loading images automatically, how can I view a single image, or a single page's images, without having to enter the site in the Exceptions list, only to go back and remove it when I'm done?

    I was hoping for a hotkey option or button on the toolbar to load images for a single page for a single session at a time. Turning off images really saves bandwidth and speeds load time on websites, but sometimes I'd like to view the images on a page, but only for this session. Is that possible, or do I have to go to the Exceptions page and allow a specific domain or page to load images and then go back and remove that domain or page when I'm done?

    *Image Block: https://addons.mozilla.org/firefox/addon/image-block/

  • Jasper report on HTML when one image loaded from database and for the other

    How to generate jasper report on HTML when one image loaded from database and for the other we give a image path
    My code
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
              exporter = new JRHtmlExporter();
              exporter.setParameter(JRExporterParameter.JASPER_PRINT, print);
              exporter.setParameter(JRExporterParameter.OUTPUT_STREAM, baos);
              exporter.setParameter(JRHtmlExporterParameter.IMAGES_URI, strImageInputDirectory);
         exporter.setParameter(JRHtmlExporterParameter.IMAGES_DIR_NAME, strImageOutputPath == null ? "." : strImageOutputPath);
         exporter.setParameter(JRHtmlExporterParameter.IS_OUTPUT_IMAGES_TO_DIR, Boolean.TRUE);
         exporter.setParameter(JRHtmlExporterParameter.IS_USING_IMAGES_TO_ALIGN, Boolean.FALSE);
         exporter.setParameter(JRHtmlExporterParameter.IS_WHITE_PAGE_BACKGROUND, Boolean.FALSE);
              exporter.exportReport();
              byte[] bdata = ((ByteArrayOutputStream) baos).toByteArray();
    Can any one help pls
    Message was edited by:
    ameet.au

    hey sorry for posting it in this forum.
    but do u have sample code for making it work.. since i am able to do it on PDF format(image from Database and another stored in the webserver) using
    byte image[] =(byte[]) outData.get("image");
                        ByteArrayInputStream img = new ByteArrayInputStream(image);
                        hmimg.put("P_PARAMV3", img);
    print = JasperFillManager.fillReport(reportFileName, hmimg, jrxmlds);
    bdata= JasperExportManager.exportReportToPdf(print);

Maybe you are looking for

  • Text disappearing using Preview to edit PDF

    I had an attorney draw up a contract for my company a few years back and I would like to make some changes to the contract, all relatively minor.  When I open the file I am able to make changes to certain "cells" but other text boxes dissappear when

  • Ipad2 and no sim card

    after 4 visits to the Apple Store in one day, I am still stuck with the same problem.  My iPad 2 does not recognize the SIM card.  Even bought a new iPad 2, brought it home, same or problem.  Tried 3 separate SIM cards and was finally told it was pro

  • Create down payment request with reference to PO

    When we try to create the down payment request at F-47, can we copy the data from purchase order automatically instead of key in the items one by one?

  • URGENT:Migration of Forms5 to Forms6 & Reports3 to Reports6

    Hi, We are planning to migrate from forms5 to forms6 and reports3 to reports6. My question is how to migrate all the FMBs of Forms5.0 to Forms6.0 FMBs & also reports3.0 rdf to reports6.0 rdf in ONE GO. Thanks of the great help in advance.

  • I'm unable to open contact sheet II.

    Hi, The error message when I try to open contact sheet II is: 'the operation could not be completed.  The file or directory could not be found.  Could not complete the contact sheet II command because of a program error'. How do I rectify this please