Color management problem with calibrated monitor

I'm using a Samsung Syncmaster T220 LCD profiled and calibrated with a Spyder2Express. PC runs Vista 32 SP2, Photoshop CS4. Using Adobe RGB for workspace profile. System profile is set to the Spyder2Express profile.
Open up photo in Photoshop. Colors fine.
Resize for web, convert to sRGB, then check preview in "Save for web..."
Under preview, I preview the following:
-Monitor Color
-Windows (no color management)
-Macintosh (no color management)
-Document Profile
The Preview of Windows, Document Profile settings look exactly right, whereas the Monitor Color setting looks badly darkened. I preview with Firefox, save and view image using IrfanView and Firefox. It's badly darkened. I'm stumped. I don't know what I'm doing wrong. This is similar to another recent posting here, except that I am using a calibrated display with profile.
Anyone know what I'm missing?
Thanks, Luke

I'm a little confused. Previewing through "Monitor Color" and "Windows (no color management)" are both technically not color managed. Perhaps we should distinguish further between "colorspace aware" and "device profile aware". So I can understand when you say that Irfanview will do some color management, but does not use the monitor device profile. But I would have thought that Firefox in non managed-color config would still use the monitor device profile.
I would have thought (and I might turn out to be wrong) that previewing using "Windows (not color managed)" would be the standard for previewing images for stock browser configurations. What photoshop shows me is correct rendering of the image based on what I edited in this mode. But the browser shows me a version that looks like it is not device aware, counter to photoshop's prediction. What is going wrong here? Do none of these major window apps use device profiles? Why does photoshop think that they will?
Another thing that has been suggested is that my monitor is calibrated so far from the stock configuration that sRGB photos displayed on it without the benefit of device profiling will come out far off the mark. But I profiled the monitor in stock hardware configuration and made no adjustments, and don't think that the hardware config of the monitor has changed.
If this turns out to be just a practical issue, then it leaves a major question. What did I accomplish by calibration if my calibration doesn't look like anything I actually display with? I can guess that prepress work will be more accurate in most respects, or I hope so anyway. But how should I manage workflow for developing images for web content if I am unable to match up what I'm editing with what the end user will see?
Or maybe I'm just doing something wrong...or maybe photoshop is...or I don't know what. Where do I go from here? Is WCS implicated in this somewhere?
Luke

Similar Messages

  • Fully Color Managed Application (using calibrated monitor profiles)

    Hi,
    I'm new to JAVA 2D so I may be missing something obvious - apologies if I am, but I've been trawling the API and web to try and solve this for many hours - so any help would be much appreciated!
    I'm trying to write an application to open a JPEG with an embedded colour profile (in this case AdobeRGB) and display it with correct colour on my monitor, for which I have an accurate custom hardware calibrated profile. In my efforts to do this several problems / queries have arisen.
    So, JAVA aside, the concept is simple:
    a) Open the image
    b) Transform the pixels from AdobeRGB->Monitor Profile (via a PCS such as CIEXYZ).
    c) Blit it out to the window.
    (a) is fine. I've used the following code snip, and can query the resulting BufferedImage and see it has correctly extracted the AdobeRGB profile. I can even display it (non-color corrected) using the Graphics2D.drawImage() function in my components paint() method.
    BufferedImage img = ImageIO.read(new File("my-adobe-rgb.jpg"));(b) Also seems OK (well at least no exceptions)...
    ICC_Profile monitorProfile = ICC_Profile.getInstance("Monitor_Calibrated.icm");
        ColorConvertOp convert = new ColorConvertOp(new ICC_ColorSpace(monitorProfile ),null);
        BufferedImage imgColorAdjusted = convert.filter(img,null);[I was feeling hopeful at this point!]
    QUESTION 1: Does this conversion go through the CIEXYZ (I hope) rather than sRGB, there seems to be no way to specify and the docs are not clear on this?
    (c) Here is the major problem...
    When I pass imgColorAdjusted to the Graphic2D.drawImage() in my components paint() method the JVM just hangs and consumes 100% CPU.
    QUESTION 2: Any ideas why it hangs?
    Pausing in the debugger I found the API was busy transforming by image to sRGB this leads to my third question...
    QUESTION 3: If I pass an image with a color model to drawImage() does drawImage do any color conversion, e.g will it transform my adobe image to sRGB (not what I want in this case!)?
    And if answer to Q3 is yes, which I suspect it is, then the next question is how to make the J2D understand that I have a calibrated monitor, and to tell it the profile, so that the Graphics2D it provides in paint() has the correct color model. Looking in the API I thought this was provided to J2D through the GraphicsEnviroment->GraphicsDevice->GraphicsConfiguration.getColorModel(). I tried looking at what these configurations were (code below). Result - 10 configurations, all with the JAVA 2D sRGB default, despite my monitor colour management (through the windows display properties dialog) being set to the calibrated profile.
    QUESTION 4: Am I just off track here - does Java 2D support monitor profiles other than sRGB? Is what I am trying possible?
    GraphicsConfiguration[] cfg = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice().getConfigurations();
        System.out.println(cfg.length);
        byte[] d;
        for (int j=0; j<cfg.length; j++) {
          System.out.println("CFG:"+j+cfg[j]);
          d = ((ICC_ColorSpace)cfg[j].getColorModel().getColorSpace()).getProfile().getData();
          for (int i=0; i<d.length && i<256; i++){
            if (d[i] != 10 && d[i] != 13){
              System.out.print((char)d);
    System.out.println();
    Any help much appreciated.
    Thanks.

    I have had some sucess with this, but it wasn't easy or obvious. The trick is converting the color to the monitor profile and then changing the color model to be sRGB without changing the pixel data. JAI's Format operation does this easily although I'm sure there are other ways to do it. The RGB data is then displayed without being converted to sRGB so that the monitor calibration is maintained. I will answer your questions since I had similar ones.
    Q1. Yes the conversion is done using XYZ as it should be.
    Q2. I believe paint is just very slow, not hanging. Any color model other than XYZ or sRGB requires conversion before it can be displayed (as sRGB). This is both slow and incorrect for a calibrated monitor.
    Q3. Yes that is what I have found, a conversion to sRGB will always happen, unless it appears to be already done as when the color model is sRGB (even though the pixel data is not!).
    Q4. It is possible but apparently only with this somewhat strange work around. If there is a way to change the Java display profile to be other than sRGB, I could not find it either. However, calibrated RGB display can be achieved.
    Since I have seen many other posts asking for an example of color management, here is some code. This JAI conversion works for many pairs of source and destination profiles including CMYK to RGB. It does require using ICC profiles in external files rather than embedded in the image.
    package calibratedrgb;
    import com.sun.media.jai.widget.DisplayJAI;
    import java.awt.*;
    import java.awt.color.*;
    import java.awt.image.*;
    import java.io.IOException;
    import javax.media.jai.*;
    import javax.swing.*;
    * @author keitht
    public class Main {
        public static void main(String[] args) throws IOException {
            String filename = args[0];
            PlanarImage pi = JAI.create("fileload", filename);
            // create a source color model from the image ICC profile
            ICC_Profile sourceProfile = ICC_Profile.getInstance("AdobeRGB1998.icc");
            ICC_ColorSpace sourceCS = new ICC_ColorSpace(sourceProfile);
            ColorModel sourceCM = RasterFactory.createComponentColorModel(
                    pi.getSampleModel().getDataType(), sourceCS, false, false,Transparency.OPAQUE);
            ImageLayout sourceIL = new ImageLayout();
            sourceIL.setColorModel(sourceCM);
            // tag the image with the source profile using format
            RenderingHints sourceHints = new RenderingHints(JAI.KEY_IMAGE_LAYOUT, sourceIL);
            ParameterBlockJAI ipb = new ParameterBlockJAI("format");
            ipb.addSource(pi);
            ipb.setParameter("datatype", pi.getSampleModel().getDataType());
            pi = JAI.create("format", ipb, sourceHints);
            // create a destination color model from the monitor ICC profile
            ICC_Profile destinationProfile = ICC_Profile.getInstance("Monitor Profile.icm");
            ICC_ColorSpace destinationCS = new ICC_ColorSpace(destinationProfile);
            ColorModel destinationCM = RasterFactory.createComponentColorModel(
                    pi.getSampleModel().getDataType(), destinationCS, false, false, Transparency.OPAQUE);
            ImageLayout destinationIL = new ImageLayout();
            destinationIL.setColorModel(destinationCM);
            // convert from source to destination profile
            RenderingHints destinationHints = new RenderingHints(JAI.KEY_IMAGE_LAYOUT, destinationIL);
            ParameterBlockJAI cpb = new ParameterBlockJAI("colorconvert");
            cpb.addSource(pi);
            cpb.setParameter("colormodel", destinationCM);
            pi = JAI.create("colorconvert", cpb, destinationHints);
            // image is now the calibrated monitor RGB data ready to display, but
            // an unwanted conversion to sRGB will occur without the following...
            // first, create an sRGB color model
            ColorSpace sRGB = ColorSpace.getInstance(ColorSpace.CS_sRGB);
            ColorModel sRGBcm = RasterFactory.createComponentColorModel(
                    pi.getSampleModel().getDataType(), sRGB, false, false, Transparency.OPAQUE);
            ImageLayout sRGBil = new ImageLayout();
            sRGBil.setColorModel(sRGBcm);
            // then avoid the incorrect conversion to sRGB on the way to the display
            // by using format to tag the image as sRGB without changing the data
            RenderingHints sRGBhints = new RenderingHints(JAI.KEY_IMAGE_LAYOUT, sRGBil);
            ParameterBlockJAI sRGBpb = new ParameterBlockJAI("format");
            sRGBpb.addSource(pi);
            sRGBpb.setParameter("datatype", pi.getSampleModel().getDataType());
            pi = JAI.create("format", sRGBpb, sRGBhints); // replace color model with sRGB
            // RGB numbers are unaffected and can now be sent without conversion to the display
            // disguised as sRGB data. The platform monitor calibration profile is bypassed
            // by the JRE because sRGB is the default graphics configuration color model profile
            JFrame frame = new JFrame();
            Container contentPane = frame.getContentPane();
            contentPane.setLayout(new BorderLayout());
            DisplayJAI d = new DisplayJAI(pi); // Graphics2D could be used here
            contentPane.add(new JScrollPane(d),BorderLayout.CENTER);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setSize(600,600);
            frame.setVisible(true);
    }

  • Dell XPS 15 Color Management Problem with "True Color"

    I recently purchased a Dell XPS 15 (6845slv).  Overall I have very happy with it...but have been getting frustrated with color management issues and was hoping to get some advice.
    Intermittently, the display had been changing the color scheme (to a suboptimal scheme).  It lasted for anywhere from a few seconds to a few minutes and then returned to the original (and more normal appearing) color settings.  It did not seem to happen while running any particular applications.  All drivers are up-to-date.
    I turned off the dell application "True Color" which I thought may have been making automatic adjustments to the color scheme and since turning it off the issue hasn't happened again.  However now I'm concerned that by inactivating that software, that I may not be maximizing the potential of the high quality HD display.  And now--though maybe it's in my head--the colors seem to be a little flatter since turning off True Color.
    Does anyone have any suggestions for getting the most out of the display? Has anyone had similar issues with True Color?  Any advice would be appreciated.
    Thanks for your help.

    I ended up fully uninstalling it from programs and features...I haven't had the problem since.  I've been happy with the display since making this change.

  • Color correction problems with multiple monitors

    I just upgraded my Win 7 from RC to RTM.  I then updated my color correction using Gretag Macbeth i1 for both adapters. My system has 2 video cards and 3 monitors.  Monitor 1 runs off adapter 1, monitors 2 & 3 run off adapter 2.  Both video cards and all 3 monitors are of the same model.  I set adapter/monitor 1 to the ICC profile 1, and adapter 2/monitor 2&3 to ICC profile 2 from Gretag.  Not running LR, everything looks as expected.
    When I run LR on the primary monitor green leaves turn orange, if I had to guess I would say I'm loosing the green information.  If I move LR to display 2 or 3 the colors are as they should be.
    I ran into this once before and it was something simple to fix this, but I can't seem to find it now.   BTW, this worked just fine before the upgrade from RC to RTM.

    At first I thought a reboot cured the problem, but apparently not.

  • CS2 Color viewing problem with new monitor

       I just changed my monitor on an IBM thinkpad running Windows 2000 pro (corporate built) I have CS2. There used to be an error popping out about my profile and analog/digital question. Unfortunately I clicked on ok and the error message is gone but the colors on my screen are all weird, such as white showing as a ligh beige. Is there such a thing as a Photoshop CS2 profile that can be modified to fix this?
    Please let me know if you have any ideas.
    Thanks
    M.

    If you are using Extended Desktop mode, only one of your displays contains each of Expose's active corners.
    Suppose your external display is on the left side of your built-in display. In that arrangement, the lower right and upper right corners of the extended desktop are on the built-in display, and the lower left and upper left corners are on the external display. The left corners of the built-in display and the right corners of the external display are not, in this configuration, corners at all: they're in the middle of the extended desktop area.
    If you put the external display into mirrored mode, then all of its corners will count as corners. But then you won't have the advantages of Extended Desktop mode.

  • Color Management Problem

    I just installed Photoshop CS3 on my home PC, and seem to be having a problem with color management. When opening photos taken with my Canon G9, or even pictures downloaded off the web, in Photoshop they appear badly posterized. Viewing the same photos in the Canon ZoomBrowser, or with the standard Windows XP tools, they appear correct.
    Obviously, my color management is not properly configured. I am using the standard North American defaults with sRGB for my RGB working space, and I've tried every RGB color management policy. My monitor is an older Dell 24" LCD (I don't have the model number in front of me right now). My monitor is not calibrated, but that would not account for the dramatic difference I see in Photoshop vs. other viewing applications.
    The best I can achieve is by switching the RGB working space to Monitor RGB (or proofing with that configuration), and discarding the embedded color profile (sRGB in my Canon images). And yes, Photoshop does list the specific color space profile for my Dell monitor. This still results in a different color rendition from that which I see when viewing the same photo in other applications, with blues shifted slightly toward purple.
    I have several other Mac and PC based Photoshop systems in my office, but I haven't had the chance to see how the same pictures look on those. It seems to me that this is something particular to the color space of my Dell monitor, but I'm not sure of the appropriate way to correct it.

    Your prints are too dark. So you need to either make your monitor darker,
    or your prints lighter. Given that you are probably fairly happy with your
    monitor for cruising the web, etc, let's focus on your printer.
    If it's like my HP, there is a brightness adjustment in the printer driver
    under Start>Settings>Printers and Faxes><"printer name">. Adjust it until
    the overall brightness of the print matches, as closely as possible, the
    appearance of your screen.
    To save paper and ink, I recommend that you print a thin strip at the top
    of the page, and snip off the strip after each test.
    Here is a test strip that you can use, with a variety of blurred skin tones
    as well as a gray test strip. The procedure is documented here:
    http://curvemeister.com/downloads/TestStrip/digital_test_strip.htm
    As a final check, download images from any well-known web gallery and print
    them, or use one of the calibration images from www.drycreekphoto.com . If
    they are too dark or too light, you may want to revisit the brightness of
    your monitor.
    Trust your vision, and treat this as a learning experience. With a little
    patience, and a systematic procedure, you can get good results without a
    calibration device.
    Monitor calibration devices are a valuable tool in a professional or high
    end amateur setting. No one is saying they are a complete solution to
    matching display to printer, and some final tweaking may be necessary for
    matching print and display.

  • Lightroom (ACR 4) color management problems

    Lightroom (or ACR 4) has some color management problems. When I develop a DNG into Photoshop (sRGB) everything looks great. Then I proof colors for the web (monitor RGB) the reds become oversaturated. I don't see this problem when I develop the same DNG using Bridge (ACR 3).
    Any picture that I develop using LR that looks great in Photoshop, becomes way too red when published on the web.
    Whats going on here?

    I have confirmed this finding using Photoshop CS3 beta - same problem in converting to the web - too red!

  • I have a color management problem.  I have OS X v 10.5, Adobe Photoshop Elements 6, and an Epson Stylus Photo R800.  I want to print images I have scanned on a Epson Perfection 1660 Photo and corrected in Photoshop and get the colors accurate.

    i have a color management problem.  I have OS X v 10.5, Adobe Photoshop Elements 6, and an Epson Stylus Photo R800.  I want to print images I have scanned on a Epson Perfection 1660 Photo and corrected in Photoshop and get the colors accurate.

    I used the ColorSync utility to verify, and it came back with this report:
    /Library/Printers/EPSON/InkjetPrinter/PrintingModule/SPR800_Core.plugin/Contents /Resources/ICCProfiles/SPR800 Standard.icc
       Tag 'dmnd': Tag size is not correct.
    /Library/Application Support/Adobe/Color/Profiles/Recommended/CoatedFOGRA27.icc
       Tag 'desc': Tag size is not correct.
    /Library/Printers/EPSON/InkjetPrinter/ICCProfiles/Standard.profiles/Contents/Res ources/Epson IJ Printer.icc
       Tag 'dmnd': Tag size is not correct.
    /Library/Printers/EPSON/InkjetPrinter/PrintingModule/SPR800_Core.plugin/Contents /Resources/
    I did not know what to do next.  At the bottom of the window it said to go to www.apple.com/colorsync to find a tutorial.  I got a message saying that link does not work.  Tried to find the tutorial by searching at apple.com, but could not seem to locate it.  Does anyone know what the report above means and what I should do about it?  
    Also, how to find that tutorial?
    Re Using RGB all the way through, When I print from Photoshop Elements, I select Adobe RGB, Photoshop Manages under "Color Handling", Relative Colometric  under "Intent" and "ColorSync" i the Epson printer box.  Do you mean to do something different in this sequence?

  • Print Color Management Problem ?

    I have a print color management problem I cannot solve. It reminds me of the print color management problem I had over a year ago when the compatibility conflict between LR and MAC Leopard produced horrible prints. I have Snow Leopard now and been out of the country for some months and yesterday when I tried to make some prints the same problem reemerged. So I downloaded current drivers (and ICCsfor Premium Luster) from Epson and LR 2.6 and spent a good part of the day with Martin Evening's book. I followed (I think) his instructions to make the basic print step by step but the prints still were terrible. My problem is with the color management pop up in the print settings dialog -- it says "color matching" not color management and I cannot check either "no color management " if I want LR to control the process (Kelby)  or check "color sync" if I want my Epson R800 take over. I have no idea where the "color management" pop up went. I'm clueless as usual and probably omitting a step because of frustration or brain numbness. Any help would be appreciated. WJS

    The settings in Lightroom are simple. and contain in the Print Job panel in the Print module. You either select manage in printer (and then select the profile in the printer drivers) or select the profile here and then turn of all colour management in the printer drivers. The second option will usually produce the best results. What you don't want is to have the profile selected in both LR and the printer drivers, so if the driver doesn't have an option to turn of colour management then you may be forced down the first route. However it would be an unusual decision for a printer manufacturer to make drivers that can't turn off colour management, so you may wish to ask how to do it to your printer manufacturer or check the printers handbook.

  • Problem with two monitors while using Photoshop, windows move from 2nd screen to 1st screen.

    Problem with two monitors while using Photoshop, windows move from 2nd screen to 1st screen.
    I saved a new workspace and it did not help.
    No problem before I went to Maverick.

    I found the fix, go to System Preferences and open Mission Control and uncheck the box to keep monitors as they were (When switching to an application...........)

  • Premiere Pro CS4 - Problem with the monitor program.

    Hi. I'm not able solving problems with the monitor using PremiereProCS4. When I drag a photo (also only one photo) in the timeline and play it in the monitor program, vision in the monitor program doesn't run:black monitor or a little part of the photo appear... sometimes distort colours. Asus P5QPRO, Intel 9550 and Sparkle Nvidia GeForce 9800 GTX+ 1024 DDR3; last gpu driver and directX are installed. Different configuration of stratch disks were tested. Where am I wrong?

    Dear Bill,
    thanks for your answer and your article. I tried with your NTSC 4:3 720x480 PAR 0.9 and, "magically", no more problem!!! I used the script pocedure in Photoshop CS4 to resize my images. Now, before starting my workflow and hoping not to overuse your patience, I would like to indicate you my equipment and my target: I use a Canon Eos 7D (generally for still images, 90% are vertical, and just some videos) and I use Premiere Pro CS4 to burn a dvd (normal, 4.7 Gb or double side, more than 8 Gb) with a 16.9 lcd tv (I'm Italian); my camera save as .jpg and .raw (but why use heavy .raw files if I've to redute to 720x480?!??).
    So, according to your "everyone wants the highest quality that they can obtain when doing theri videos..." and "your video project may vary, so you will need to plug in the dimensions for YOUR video project in that case", I've a question: which is the best for me?
    And then:
    1 - Premiere Pro CS4 havn't a batch or a script procedure for still image like PS (only for videos)!?!
    2 - Premiere does'nt allow you to import images like 4.181 Kb (a too large dimension file error appears)!
    3 - In the timeline of Premiere, after you dragged images, you can select them and right click to perform "resize to frame size": it seems to run good without problem, but what appen to the photo? Which is it's pixel?
    4 - In the general preferences of Premiere you can to optimize rendering for "memory" or not: which is the best for you?
    5 - I attached file with a screen of something strange in Premiere: dragging an image (the first of the project) in the timeline, the timeline appears distort (you can see the part in the yellow square): then, when I render the project and play in the monitor program, it becames normal.
    Thanks!

  • Is someone with iMac 2010 users  have problems with the monitor. I mean horizontal  stripes and dark screen ?

    Is someone with iMac 2010 users  have problems with the monitor. I mean horizontal  stripes and dark screen ?

    Mine's a late '09, but there have been display issues with iMacs.
    Contact Apple Service, iMac Service or Apple's Express Lane. Do note that if you have AppleCare's protection plan and you're within 50 miles (80 KM) of an Apple repair station, you're eligible for onsite repair since yours is a desktop machine.

  • My new macbook air and new thunderbolt monitor will not work together. the keyboard will not engage and the monitor screen keeps going black. is it a problem with the monitor, connection, laptop?

    my new macbook air and new thunderbolt monitor will not work together. the keyboard will not engage and the monitor screen keeps going black. is it a problem with the monitor, connection, laptop?

    A new Mac comes with 90 days of free tech support from AppleCare.
    AppleCare: 1-800-275-2273
    Call AppleCare. They will help you.
    Best.

  • Potential problem with my monitor, please help.

    Hello
    I recently upgraded my OSX to Mavericks and I've been having problems with my monitor, I've attached a screenshot of what is happening because I didn't know how to explain it and I'm unsure if its the OSX upgrade causing the issue or not, however I'm really worried about my monitor on my macbook pro.
    The model I have is the 15" mid 2010 2.4Ghz Intel core i5 with 4GB RAM.

    Still having this issue with my macbook pro monitor... There was no updates available and I followed every other possible solution, sometimes my monotor looks perfect like there was never any problem and other times my entire screen is just covered with this stuff you've seen in the above image.
    I really have no idea what the exact issue is and how to solve it.
    This macbook was given to me for university by the government as I have a form of dyslexia and because I've just finished my degree the insurance has ended... is there anyway I can still buy applecare insurance for my machine?! I got this MBP in 2010 so I've had it for three years now.
    I'm just worried that one day I'll turn on my machine and the monitor won't work whatsoever.. and I thought apple was suppossed to be good and last a long time.
    Hope somebody can help me further.
    Thanks.

  • Annoying problem with LCD monitor and noise!!

    I have MSI 6330 with 1.2 GHz Athlon (it has a built-in sound card), 384 RAM memory.
    I just bought a new Cornea 17" LCD monitor with built in speakers.
    When I connect the speakers to the sound card, there is an annoying static-like noise coming from the speakers, like an electric transformation sometimes causes. However, this sound is not "broadcasted" to the speakers, because even if I mute the speakers, the noise is still there, as long as there is a picture on the screen. When the monitor is turned off or shows black screen (such as during start up, or when in power-save mode) the noise disappear. The only way to eliminate this noise is buy reducing (almost to zero) the speakers volume, but then you can cannot hear anything at all, not even sound.
    I got a new sound card (I thought it was the sound card problem) - same thing. I connected the monitor to a different computer and the problem is gone, which means - it is something with the computer, mobo, different device....something, I don't know what.
    Any one have an idea what this could be?
    Thank you.

    Hi!
    It could be that you have some problem with the monitor.
    I have - so far - not encountered a monitor with built in speakers which gave acceptable sound anyway, the easiest solution might be that you will not use the speakers in the monitor (even the cheapest stand alone speakers will most likely produce better sound quality).
    Hans

Maybe you are looking for

  • ITunes is breaking my music collection one album at a time

    Hi, I have been having serious problems with iTunes for the last few months and I really need help! I have a collection of almost 10,000 songs, but recently iTunes seems to have decided that some of my albums won't work. Every now and again, I will s

  • Hp LaserJet 1200 won't print all pages

    My hp laserjet 1200 has started acting strangely (or Mac OS) in that it sometimes, not always, fails to print the last page of a job, regardless of what program it is from. If it is a 6-page docuement, it only prints 5 pages, or 1 out of 2, etc. Anyo

  • Eight-Class Model QoS for voice and video

    One of the QoS recomendation in the SRND "Enterprise QoS" is to create a Eight-Class QoS Model utilizing a seperate priority queue for voice and video. It says that even though you have only one physical priority queue, that LLQ has an implicit polic

  • Any way to export from iPhoto and have the file date be the photo date?

    I can't deal with iPhoto any longer. I just imported photos from the last few days and they ended up being associated with some "Event" from Jul 19, 2007. So now I have an event that spans Jul 19, 2007 to Feb 21, 2009!!! I'd like to just display, sor

  • Running a procedure asynchronously

    Hi Wonder if any one could help please? I have a database procedure, called from a form button, that has a dbms_job.submit command followed by a commit (to enter it into the job queue). The job action is to call an additional stored procedure that ca