DefaultDesktopManager.activateFrame throws NPE on Mac OS X (Leopard)

We have a Swing app deployed via JNLP. The JNLP file specifies JRE 1.5+.
There is an error that occurs ONLY on Mac OSX desktops. When the user clicks in the open area of a frame, they get a NullPointerException. Stack looks like:
javax.swing.DefaultDesktopManager.activateFrame(DefaultDesktopManager.java:233)
apple.laf.CUIAquaInternalFramePane.mousePressed(CUIAquaInternalFramePane.java:203)
java.awt.Component.processMouseEvent(Component.java:5599)
javax.swing.JComponent.processMouseEvent(JComponent.java:3135)
java.awt.Component.processEvent(Component.java:5367)
java.awt.Container.processEvent(Container.java:2010)
java.awt.Component.dispatchEventImpl(Component.java:4068)
java.awt.Container.dispatchEventImpl(Container.java:2068)
java.awt.Component.dispatchEvent(Component.java:3903)
java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4256)
java.awt.LightweightDispatcher.processMouseEvent(Container.java:3933)
java.awt.LightweightDispatcher.dispatchEvent(Container.java:3866)
java.awt.Container.dispatchEventImpl(Container.java:2054)
java.awt.Window.dispatchEventImpl(Window.java:1791)
java.awt.Component.dispatchEvent(Component.java:3903)
java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:269)
java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:190)
java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:184)
java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:176)
java.awt.EventDispatchThread.run(EventDispatchThread.java:110)I've been able to gather very little from the web on this, other than a recognition of the bug, with a partially-described solution that I don't understand.
If anyone has seen this problem, or has any helpful information, it would be greatly appreciated.
Pete

If the exception is otherwise harmless, you could "mask" it by simply using a custom DesktopManager that usually simply delegates to the default one. Untested code:
// Make your desktop pane use your new DesktopManager
JDesktopPane dp = new JDesktopPane();
DesktopManager newManager = new MyDesktopManager(dp.getDesktopManager());
dp.setDesktopManager(newManager);
class MyDesktopManager implements DesktopManager {
   private DesktopManager delegate;
   public MyDesktopManager(DesktopManager delegate) {
      this.delegate = delegate;
   public void activateFrame(JInternalFrame f) {
      try {
         delegate.activateFrame(f);
      } catch (NullPointerException npe) {
         // Swallow, log, or whatever you want
   // All other methods, simply delegate
}

Similar Messages

  • AdvanceCache throwing NPE in headless mode

    Using jCharts (cross-posted there too), axisChart.render() is throwing this NullPointerException, but only some of the time. Looks like about half the time, the other half everything works great. I'm at a loss. It's a servlet that generates a JPEG chart, running in Caucho's Resin engine, 1.4 jdk running in headless mode, on a Linux box. Any ideas are appreciated...
    dataSeries.addIAxisChartDataSet( new AxisChartDataSet( data, legendLabels, paints, ChartType.BAR, barChartProperties ) );
    AxisChart axisChart= new AxisChart( dataSeries, chartProperties, axisProperties, legendProperties, width, height );
    BufferedImage awtImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
    axisChart.setGraphics2D(awtImage.createGraphics());
    axisChart.render();
    try {
    JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(response.getOutputStream());
    encoder.encode(awtImage);
    } catch (Exception e) {
    System.out.println(e);
    java.lang.NullPointerException
    at sun.awt.font.AdvanceCache.get(AdvanceCache.java:125)
    at java.awt.font.TextLayout$OptInfo.handleGetVisualBounds(TextLayout.java:280)
    at sun.awt.font.Decoration.getVisualBounds(Decoration.java:105)
    at java.awt.font.TextLayout$OptInfo.getVisualBounds(TextLayout.java:309)
    at java.awt.font.TextLayout.getBounds(TextLayout.java:1109)
    at org.jCharts.Chart.renderChartTitle(Unknown Source)
    at org.jCharts.axisChart.AxisChart.renderChart(Unknown Source)
    at org.jCharts.Chart.render(Unknown Source)
    at ChartGen.doGet(ChartGen.java:76)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:126)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:103)
    at com.caucho.server.http.FilterChainServlet.doFilter(FilterChainServlet.java:96)
    at com.caucho.server.http.Invocation.service(Invocation.java:311)
    at com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.java:342)
    at com.caucho.server.http.RunnerRequest.handleConnection(RunnerRequest.java:272)
    at com.caucho.server.TcpConnection.run(TcpConnection.java:137)
    at java.lang.Thread.run(Thread.java:536)

    I'm also running into this. It seems after having Tomcat running for a while (days) it suddenly starts happening. It's as if it caches something that is then forgotten (or closed), and when called, it throws NPE. I'd love to know if this turns out to be a JDK bug or if there's a logical explanation.

  • ResultSetMetaData.getColumnType() throws NPE

    Following is a trace that I got when I executed when a simple java class accessed
    result set meta data from within a JSP on WLS 8.1 Sp1 using oracle oci driver.
    java.lang.NullPointerException
         at weblogic.jdbc.oci.ResultSetMetaData.getColumnType(ResultSetMetaData.java:172)
         at weblogic.jdbc.wrapper.ResultSetMetaData_weblogic_jdbc_oci_ResultSetMetaData.getColumnType(Unknown
    Source)
         at com.abc.impl.vm.data.CommonResultSetProcessor.process(CommonResultSetProcessor.java:44)
         at com.abc.impl.vm.data.DefaultTranslator.translate(DefaultTranslator.java:77)
         at unittest.TestDefaultTranslator.main(TestDefaultTranslator.java:53)
         at jsp_servlet.__testdefaulttranslator._jspService(__testdefaulttranslator.java:126)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:33)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1053)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:387)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:431)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:305)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6310)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3622)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2569)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    It looks for some reason the wrapper class does not have a reference to the wrapped
    ResultSetMetaData instance and when the getColumnType() is invoked it throws NPE.
    Any help would be appreciated.
    Thanks,
    Parag

    Changing the index from 0 to 1 did solve my problem. I realised looking at the
    "0" in the exception trace after attaching the jar file you gave.
    Although the mistake was on my part and I would like a descriptive message in
    the exception.
    Sorry for the trouble.
    Thanks.
    Parag
    Joe Weinstein <[email protected]> wrote:
    >
    >
    Parag wrote:
    I think I know what the problem is and is my mistake. The ResultSetMetaDatais
    indexed from 1 and not 0.
    Let me try that and I will let you know whether that solves my problem.
    ThanksSure thing. Glad to help. We should fix our driver to
    check the column value and throw a descriptive exception
    if it's out of range.
    Joe
    Parag
    "Parag" <[email protected]> wrote:
    After attaching the jar that you provided in the beginning of the classpath,
    I
    get following exception
    java.sql.SQLException: getColumn() for column number 0 gives null!
         at weblogic.jdbc.oci.ResultSetMetaData.getColumnType(ResultSetMetaData.java:177)
         at weblogic.jdbc.wrapper.ResultSetMetaData_weblogic_jdbc_oci_ResultSetMetaData.getColumnType(Unknown
    Source)
         at com.abc.impl.vm.data.CommonResultSetProcessor.process(CommonResultSetProcessor.java:44)
         at com.abc.impl.vm.data.DefaultTranslator.translate(DefaultTranslator.java:77)
         at unittest.TestDefaultTranslator.main(TestDefaultTranslator.java:53)
         at jsp_servlet.__testdefaulttranslator._jspService(__testdefaulttranslator.java:126)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:33)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1053)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:387)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:431)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:305)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6310)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCont<Dec
    24, 2003 9:02:35 AM EST> <Error> <HTTP> <BEA-101017> <[ServletContext(id=2220309,name=test,context-path=/test)]
    Root cause ext.java:3622)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2569)of
    ServletException.
    com.abc.vm.TranslationProcessException: java.sql.SQLException: getColumn()
    for
    column number 0 gives
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:17null!
         at com.abc.impl.vm.data.DefaultTranslator.translate(DefaultTranslator.java:83)
         at unittest.TestDefaultTranslator.0)
    main(TestDefaultTranslator.java:53)
         at jsp_servlet.__testdefaulttranslator._jspService(__testdefaulttranslator.java:126)
    Parag
    Joe Weinstein <[email protected]> wrote:
    Parag wrote:
    Following is a trace that I got when I executed when a simple javaclass accessed
    result set meta data from within a JSP on WLS 8.1 Sp1 using oracleoci driver.
    java.lang.NullPointerException
         at weblogic.jdbc.oci.ResultSetMetaData.getColumnType(ResultSetMetaData.java:172)
         at weblogic.jdbc.wrapper.ResultSetMetaData_weblogic_jdbc_oci_ResultSetMetaData.getColumnType(Unknown
    Source)Hi. This looks like a driver bug in the oci driver.
    Would you please put the small attached jar file at the
    front of the classpath formed for the server by the startup
    script, and then boot the server and repeat the code that
    showed the problem? The problem may occur, but will show a more helpfu;
    exception for me to debug.
    thanks,
    Joe
         at com.abc.impl.vm.data.CommonResultSetProcessor.process(CommonResultSetProcessor.java:44)
         at com.abc.impl.vm.data.DefaultTranslator.translate(DefaultTranslator.java:77)
         at unittest.TestDefaultTranslator.main(TestDefaultTranslator.java:53)
         at jsp_servlet.__testdefaulttranslator._jspService(__testdefaulttranslator.java:126)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:33)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1053)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:387)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:431)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:305)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6310)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3622)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2569)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    It looks for some reason the wrapper class does not have a referenceto the wrapped
    ResultSetMetaData instance and when the getColumnType() is invokedit throws NPE.
    Any help would be appreciated.
    Thanks,
    Parag

  • JDeveloper throws NPE

    I have recently installed jdeveloper 11.1.1.3 on my machine running windows xp - 32. I am getting o.jdev.pathconfiguration errors while I am trying to edit method action or add new method action in page definition. It striaght away popups with the jdeveloper error window saying exit, continue. I have done exit and save, problem not resolved. If I continue the operation, it throws NPE exception.
    I have tested the same application on different machines, it runs well with no error messages. Most weired thing is it does work sometimes on my machine.

    Hi,
    I looked up the bug database for similar issues and found one fixed in 11.1.1.2. However, your may be different. Maybe if you compare your install directory structure with the ones on machines that don't have the issue, it will give you a hint
    Frank

  • I am unable to login from my login page after I restarted my mini mac running snow leopard 10.6 server. I am a new user. Need help

    I am unable to login from my login page after I restarted my mini mac running snow leopard 10.6 server. I am a new user. Need help

    Try clearing your cache, [https://support.mozilla.org/en-US/kb/How to clear the cache Instructions here]. Then, try going to [https://accounts.google.com Google Accounts]. If there is currently an account singed in, sign out, then back in. After that, try going to Google Adwords.

  • I transferred files from a NAS server to the Mac Mini Snow Leopard Server and now some of the files have Custom Access and can't  be opened by some users.  How do I fix this?

    We're setting up our Mac Mini Snow Leopard Server, and in the process transferred files that had been stored and accessed from our Blackarmor NAS server over to the Mac.  These files were all created on PC's and are Office Excel files, WordPerfect files or PDF's.  When you look at the files on the Mac from the Mac and bring up Get Info for the affected file, it says that the file has Custom Access.  The files that work properly don't have that configuration.  I can access and open the files on some computers, but some users can't open the files from their computer even though they can see it.  We're all using PC's and they get the Error:  Access Denied-Contact your administrator--or something similar.  I've seen on the web similar issues and it may have something to do with ACL permissions.  I don't know enough about Mac OS to understand this, but what is baffling is that they can be opened from some PC's but not others, and all of the Users have the same accessibility to the files.  Thanks for a solution!!

    Oh, on the losing Internet, try this...
    Make a New Location, Using network locations in Mac OS X ...
    http://support.apple.com/kb/HT2712
    10.7 & 10.8…
    System Preferences>Network, top of window>Locations>Edit Locations, little plus icon, give it a name.
    10.5.x/10.6.x/10.7.x instructions...
    System Preferences>Network, click on the little gear at the bottom next to the + & - icons, (unlock lock first if locked), choose Set Service Order.
    The interface that connects to the Internet should be dragged to the top of the list.
    Instead of joining your Network from the list, click the WiFi icon at the top, and click join other network. Fill in everything as needed.
    For 10.5/10.6, System Preferences>Network, unlock the lock if need be, highlight the Interface you use to connect to Internet, click on the advanced button, click on the DNS tab, click on the little plus icon, then add these numbers...
    208.67.222.222
    208.67.220.220
    Click OK.
    PS. Your English is quite good & completely understandable.

  • HT1338 Purchased a used macbook pro with Mountain Lion. My old Mac runs Snow Leopard is backed up to Time machine. How do I register the operating system to me and how do I use Time Machine to move my files to the new used computer?

    Purchased a used macbook pro with Mountain Lion. My old Mac runs Snow Leopard is backed up to Time machine. How do I register the operating system to me and how do I use Time Machine to move my files to the new used computer?

    If you look at the User Tips tab, you will find a write up on just this subject:
    https://discussions.apple.com/docs/DOC-4053
    The subject of buying/selling a Mac is quite complicated.  Here is a guide to the steps involved. It is from the Seller's point of view, but easily read the other way too:
    SELLING A MAC A
    Internet Recovery, and Transferability of OS & iLife Apps
    Selling an Old Mac:
    • When selling an old Mac, the only OS that is legally transferable is the one that came preinstalled when the Mac was new. Selling a Mac with an upgraded OS isn't doing the new owner any favors. Attempting to do so will only result in headaches since the upgraded OS can't be registered by the new owner. If a clean install becomes necessary, they won't be able to do so and will be forced to install the original OS via Internet Recovery. Best to simply erase the drive and revert back to the original OS prior to selling any Mac.
    • Additionally, upgrading the OS on a Mac you intend to sell means that you are leaving personally identifiable information on the Mac since the only way to upgrade the OS involves using your own AppleID to download the upgrade from the App Store. So there will be traces of your info and user account left behind. Again, best to erase the drive and revert to the original OS via Internet Recovery.
    Internet Recovery:
    • In the event that the OS has been upgraded to a newer version (i.e. Lion to Mountain Lion), Internet Recovery will offer the version of the OS that originally came with the Mac. So while booting to the Recovery Disk will show Mountain Lion as available for reinstall since that is the current version running, Internet Recovery, on the other hand, will only show Lion available since that was the OS shipped with that particular Mac.
    • Though the Mac came with a particular version of Mac OS X, it appears that, when Internet Recovery is invoked, the most recent update of that version may be applied. (i.e. if the Mac originally came with 10.7.3, Internet Recovery may install a more recent update like 10.7.5)
    iLife Apps:
    • When the App Store is launched for the first time it will report that the iLife apps are available for the user to Accept under the Purchases section. The user will be required to enter their AppleID during the Acceptance process. From that point on the iLife apps will be tied to the AppleID used to Accept them. The user will be allowed to download the apps to other Macs they own if they wish using the same AppleID used to Accept them.
    • Once Accepted on the new Mac, the iLife apps can not be transferred to any future owner when the Mac is sold. Attempting to use an AppleID after the apps have already been accepted using a different AppleID will result in the App Store reporting "These apps were already assigned to another Apple ID".
    • It appears, however, that the iLife Apps do not automatically go to the first owner of the Mac. It's quite possible that the original owner, either by choice or neglect, never Accepted the iLife apps in the App Store. As a result, a future owner of the Mac may be able to successfully Accept the apps and retain them for themselves using their own AppleID. Bottom Line: Whoever Accepts the iLife apps first gets to keep them.
    SELLING A MAC B
    Follow these instructions step by step to prepare a Mac for sale:
    Step One - Back up your data:
    A. If you have any Virtual PCs shut them down. They cannot be in their "fast saved" state. They must be shut down from inside Windows.
    B. Clone to an external drive using using Carbon Copy Cloner.
    1. Open Carbon Copy Cloner.
    2. Select the Source volume from the Select a source drop down menu on the left side.
    3. Select the Destination volume from the Select a destination drop down menu on the right
    side.
    4. Click on the Clone button. If you are prompted about creating a clone of the Recovery HD be
    sure to opt for that.
    Destination means a freshly erased external backup drive. Source means the internal
    startup drive. 
    Step Two - Prepare the machine for the new buyer:
    1. De-authorize the computer in iTunes! De-authorize both iTunes and Audible accounts.
    2, Remove any Open Firmware passwords or Firmware passwords.
    3. Turn the brightness full up and volume nearly so.
    4. Turn off File Vault, if enabled.
    5. Disable iCloud, if enabled: See.What to do with iCloud before selling your computer
    Step Three - Install a fresh OS:
    A. Snow Leopard and earlier versions of OS X
    1. Insert the original OS X install CD/DVD that came with your computer.
    2. Restart the computer while holding down the C key to boot from the CD/DVD.
    3. Select Disk Utility from the Utilities menu; repartition and reformat the internal hard drive.
    Optionally, click on the Security button and set the Zero Data option to one-pass.
    4. Install OS X.
    5. Upon completion DO NOT restart the computer.
    6. Shutdown the computer.
    B. Lion and Mountain Lion (if pre-installed on the computer at purchase*)
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because
    it is three times faster than wireless.
    1. Restart the computer while holding down the COMMAND and R keys until the Mac OS X
    Utilities window appears.
    2. Select Disk Utility from the Mac OS X Utilities window and click on the Continue button. 
    3. After DU loads select your startup volume (usually Macintosh HD) from the left side list. Click
    on the Erase tab in the DU main window.
    4. Set the format type to Mac OS Extended (Journaled.) Optionally, click on the Security button
    and set the Zero Data option to one-pass.
    5. Click on the Erase button and wait until the process has completed.
    6. Quit DU and return to the Mac OS X Utilities window.
    7. Select Reinstall Lion/Mountain Lion and click on the Install button.
    8. Upon completion shutdown the computer.
    *If your computer came with Lion or Mountain Lion pre-installed then you are entitled to transfer your license once. If you purchased Lion or Mountain Lion from the App Store then you cannot transfer your license to another party. In the case of the latter you should install the original version of OS X that came with your computer. You need to repartition the hard drive as well as reformat it; this will assure that the Recovery HD partition is removed. See Step Three above. You may verify these requirements by reviewing your OS X Software License.

  • I lost my ability to use Microsoft Offic for Mac, when I upgraded my MAC from Snow Leopard to Mountain Lion! HELP!

    HELP !
    After I upgraded my operating system on my mac, (from  Snow Leopard (10.6 ? ) to Mountain Lion (10.8.2), virtually ALL of my documents (recipes, update logs, information of untold things), have been denied to me with my Microsoft Word for Mac (which I have used since I purchased my mac in Aug.2008).
          I now get a window that tells me "You can't open the application "Microsoft Word" because PowerPC applications are no longer supported." (Needless to say, I cannot use Excel or anything else, either!)
          Yet, I can still access them, fully (read and even print fro them), individually, by dragging a file into my PREVIEW program!
          What gives?
          I am not a savvy programmer, nor do I confess to somehow being warned that this might happen when I upgraded my operating system.
         Is there any reasonable (easier?) way to continue the use of these (to me) very important files? I only upgraded because I upgraded my iPhone to a 4S and wanted everything to conform to  siimilar circumstances!
         What can I DO?

    You need to upgrade your copy of MS Office. You're using a version that is 8 years old (at least). You can buy Office 2011, which will work. You could also get a copy of Pages from the App Store, which is cheaper and will open Word files (though not perfectly). Or you could get a free Office clone, like OpenOffice or LibreOffice.

  • HT1338 I installed Mac OSX Snow Leopard 10.6.3 And now my Java is not working, what can I do to fix's this?

    I installed Mac OSX Snow Leopard 10.6.3 And now my Java is not working,what can I do to fix's this?

    Run Software Update to get to 10.6.8 and update Java.

  • Can't print from Intel Mac w/Snow Leopard to HP 2600

    Can't print from Intel Mac w/Snow Leopard to HP 2600.  Upgraded from OS 10.4 and printer showed on printer list along with an Epson scanner. but continually shows printer as offline.  I finally deleted the HP Color Laserjet 2600n from the printer list.  When I attempted to re-install it, it doesn't find the printer at all.  I haven't attempted to use the scanner.  I also went to HP and downloaded the driver, no luck.  I've restarted the computer multiple times, tried it with the printer on, and printer off, as well as pulled the usb cable in and out both ends.  No error message on the printer display and it gpes through normal warmup until it shows the green light.  I run software update and it shows no updates needed.  Help!

    Go down a few more posts to the question about the C7180. Answer:
    "Re: iPhoto 08 + HP Photosmart C7180
    Posted: Aug 19, 2007 1:26 PM in response to: Daniel_D
    When you press print the first window is pretty basic.
    When you select print on that the next window should have an advanced option.
    Click that and see if any of the options in the 3rd dropdown box allow you to specify the 'paper tray'.
    AC "
    In this new windaow, click "advanced", go to "paper type/quality" and choose " best" and a photo paper. Then you will be able to choose a paper source (photo tray).
    Once you have these settings, under presets do "save as", and you can choose the preset instead of going to advanced.
    If you have the latest software and drivers downloaded from HP, this will work.
    Scott

  • Pdf printing problem Mac OSX Snow Leopard Canon MP620 Pixma printer

    After upgrading Adobe Reader version 9.3 to version 10 I cannot print pdf documents using Canon MP620 Pixma printer. Mac OSX Snow Leopard operating system. All other prining works OK. Never had problem before Error message "pstopdffilter/ pstocupsraster failed with err no. 13" comes up. What has happened and how do I put it right?

    See this link for a solution:
    http://forums.adobe.com/message/3476912#3476912

  • How do I install OS 10.7 NOT 10.7.5 on a mac running Snow Leopard 6.8  i.e. where can I find the original install app for Lion OS 10.7.0?

    I'm running 10.6.8 Snow Leopard fine on my MacPro1,1, Dual-Core Intel Xeon, 2.66 GHz  Mac, but I need to install Lion 10.7.0 to run a program I need.How do I install OS 10.7 NOT 10.7.5, because I get this message when I try to install 10.7.5, which I've downloaded:"This update requires Mac OS X version 10.7." on a mac running Snow Leopard 10.6.8, So i need to install the original 10.7.0 over the 10.6.8  i.e. where can I find the original install app for Lion OS 10.7.0? The original Lion 10.7. is not avaialable for purchase from the App store or anywhere,  even C-Net . Where can I find it to purchase?
    Also it seems I cannot install Mountain Lion over 10.6.8 as advertised. When I go to purchase I get this message: "We could not complete your purchase. OS X Mountain Lion is not compatible with this computer."   I think my computer can handle it (specs above) Are there any workarounds to this?

    If you're getting a "This update requires Mac OS X version 10.7" message, than you have the updater and not the full installer. Go to your Purchases section of the Mac App Store and you should see the full version there. But it may be 10.7.5, though in my system is shows as being from 2011 which would appear to be the original version.
    As to Mountain Lion, that's supported only on the Early 2008 Mac Pro or newer.
    Regards.

  • MAC OSX SNOW LEOPARD 10.6.3 current version INTEL(R) CORE(TM)2 DUO 2.4 GHZ ,4GB RAM, 250 GB HDD compatible OS Version Clarification

    Hi Friends,
                     I have Macbook Pro 14 Inch INTEL(R) CORE(TM)2 DUO 2.4 GHZ ,4GB RAM, 250 GB HDD, unable to login into MAC OSX Snow Leopard 10.6.3 Version but with Boot Camp i can login into Windows 7 Home Premium, so i would like to clean the HDD and install NEW Version MACINTOSH OS, Which of the Latest OS perfectly workout to install in my MACBOOK PRO, I didnot have LAPTOP Backup disc......

    Check that your computer is compatible with Mountain Lion/Mavericks.
    To check the model number hold down the option/alt key, go to the Apple menu and select System Information.
    MacBook Pro (Mid/Late 2007 or newer) model number 3,1 or higher
    our Mac needs:
    OS X v10.6.8 or OS X Lion already installed
    2 GB or more of memory (More is better - 4 GB minimum seems to be the consensus)
    8 GB or more of available space
    If your computer isn’t compatible, you might be able to upgrade to Lion.      
    Computer Compatibility - Lion                       Lion
    Check to make sure your applications are compatible. PowerPC applications are no longer supported after 10.6.      
    Application Compatibility
    Applications Compatibility (2)

  • I am trying to do a migration transfer from an older Mac Pro, running Leopard, to a newer Mac Pro, running Lion.  There is a step that asks for a "passcode" to proceed.  I have no idea what that passcode is.  It seems to want a numeric code.

    I am trying to do a migration transfer from an older Mac Pro, running Leopard, to a newer Mac Pro, running Lion.  There is a step that asks for a "passcode" to proceed.  I have no idea what that passcode is.  It seems to want a numeric code.  Has anyone had this experience?

    This general-purpose article gives detailed step-by-step instructions for using Migration assistant, Setup Assistant, and other mehtods, and discusses the Pros and cons of each mtheod. It is very approachable and easy to understand. Wriiten by Pondini, the resident Time Machine guru.
    Setting-up a new Mac from an old one, its backups, or a PC

  • When I am re-installing the Mac OSX snow leopard onto an older Mac I run into the window that says select the disk where you want to install Mac OSX but nothing is there to select

    I am trying to re-install the Mac OSX snow leopard onto an older I mac with a new hard drive.  I run into the "select the disk "where you want to install Mac OSX but there is nothing in the window to select. Any advice?

    After you install a new hard drive, you need to boot to another drive to initialize it to MAC OS Extended (journaled) format and create the partition(s) on the drive. You do this using Disk Utility. Otherwise, the mac operating install process doesn't see a formatted disk to install to.

Maybe you are looking for

  • J2esdk installation problem on fedora 2

    Hello All I am tring to install the j2eesdk-1_4_01-linux.bin on my newly intalled redhat fedora system while running on command prompt as $./j2eesdk-1_4_01-linux.bin it gives error message like ./j2eesdk-1_4_01-linux.bin: error while loading shared l

  • How do you create two apple ids for one email address.

    I bought two i pads for my kids. Since we have just one email address, everytime I try to create a new apple id it says I already have one. They need separate ids so their friends can facetime with one and not the other. Can't figure out how to creat

  • Adobe AIR for Android update FAILS

    The most recent update for Adobe AIR for Android is failing on multiple users. Reading the reviews, I am having the same problem with running the update. Update runs, then stops and won't update? Why bother coming out with an update THAT WON'T LET YO

  • All browser run can access javascript objects in iframe but in firfox you can not do that after first refresh

    1- I have a DIV tag in html page 2- Load dynamically an IFrame into that DIV 3- suppose that I have a JS function in that IFrame with name "func". 4- after first loading IFrame in DIV I can access "func" 5- but after reloading another IFrame into DIV

  • Thunderbolt display update 1.2 causes unresponsive display

    After running the thunderbolt display update 1.2 my display now displays the very thing the update was designed was supposed to correct - a black unresponsive screen (which I have ironically never suffered fro at all ever - grrrr). I cannot get the t