HP 2800 - usb timeout and wrong colors

Hi,
since we updated our macs from 10.2.7 to 10.3.9 and a mini with 10.4.7 our hp 2800 ink printer is not working properly anymore. I have asked hp and all these problems are known, but in summary they do not help us:
1. Print jobs are just stopped or simply disappear after 2 minutes. hp says, this is because of a "usb timeout under 10.3 and 10.4". We should buy a network interface for the printer instead of using usb (sic!!).
Is this timeout usb problem known? How can we fix that?
2. The colors are dull and strange now. Under 10.2.7 they have been just perfect. hp says, this could happen, when the driver has been installed doubled. but this is not the case with our macs. Callibrating doesn't help, because the colors are too odd.
Both problems appear with a G5 with 10.3.9 and with intel macs under 10.4.7, no matter if direct usb or shared. Replacing the driver with a new one did not help.
Me and my colleages are pretty frustrated, has anyone a good idea?
Thanks,
Markus

The document here may help resolve issues with your Photosmart 6520 printing incorrect colors.  Be sure to check the vents are cleared.
Bob Headrick,  HP Expert
I am not an employee of HP, I am a volunteer posting here on my own time.
If your problem is solved please click the "Accept as Solution" button ------------V
If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

Similar Messages

  • Wrong version of Flash player and wrong colors

    Video playing in Flash has color shifted vertically, leaving a green stripe at the bottom, and grey areas in the video. I wanted to install the latest version again in case mine was corrupted. The Adobe site has the latest version as 3.300.268, yet I had 270 on my PC. The install would not work, saying I had a later version. Uninstalled my flash player, and tried to install 268, but it still says I have a newer version, even though no player shows up in Control Panel, or in the Internet Explorer plug-ins. What do I do now? I cannot install Flash player, nor can I play any videos at all.

    Turn off hardware acceleration in the Flash Player settings and read this:
    Flash Player Help | Installation problems | Flash Player | Windows
    Mylenium

  • I got a new Ipad 2 and I am trying to get it work in vain. I have downloaded the iTunes on my PC, but even after executing the program nothing happens to the IPAD. I still get the image of the USB cable and the iTunes logo. What am I doing wrong?

    I got a new Ipad 2 and I am trying to get it work in vain. I have downloaded the iTunes on my PC, but even after executing the program nothing happens to the IPAD. I still get the image of the USB cable and the iTunes logo. What am I doing wrong?

    You know that you have to connect the iPad to your PC with the cable that came with it -  and then iTunes should start automatically and it will guide you through the set up process?
    If you have already tried to connect the iPad - and you have launched iTunes - and you still have no luck - reboot your PC and then begin the process again.

  • ImageIO: scaling and then saving to JPEG yields wrong colors

    Hi,
    when saving a scaled image to JPEG the colors are wrong (not just inverted) when viewing the file in an external viewer (e.g. Windows Image Viewer or The GIMP). Here's the example code:
    public class Main {
         public static void main(String[] args) {
              if (args.length < 2) {
                   System.out.println("Usage: app [input] [output]");
                   return;
              try {
                   BufferedImage image = ImageIO.read (new File(args[0]));
                   AffineTransform xform = new AffineTransform();
                   xform.scale(0.5, 0.5);
                   AffineTransformOp op = new AffineTransformOp (xform, AffineTransformOp.TYPE_BILINEAR);
                   BufferedImage out = op.filter(image,null);
                   ImageIO.write(out, "jpg", new File(args[1]));
    /* The following ImageViewer is a JComponent displaying
    the buffered image - commented out for simplicity */
                   ImageViewer imageViewer = new ImageViewer();
                   imageViewer.setImage (ImageIO.read (new File(args[1])));
                   imageViewer.setVisible (true);
              catch (Exception ex) {
                   ex.printStackTrace();
    Observations:
    * viewing this JPEG in an external viewer displays the colors wrong, blue becomes reddish, skin color becomes brown, blue becomes greenish etc.
    * when I skip the transformation and simply write the input 'image' instead the colors look perfect in an external viewer!
    BufferedImage image = ImageIO.read (new File(args[0]));
    ImageIO.write (image, "jpg", new File(args[1]));
    * when I do the scale transformation but store as PNG instead the image looks perfect in external viewers!
    BufferedImage out = op.filter(image,null);
    ImageIO.write(out, "png", new File(args[1]));
    * viewing the scaled JPEG image with The GIMP produces "more intense" (but still wrong) colors than when viewing with the Windows Image Viewer - I suspect that the JPEG doesn't produce plain RGB values when decompressed (another color space used then sRGB? double instead of int values?)
    * Loading the saved image and display it in a JComponent shows the image fine:
    class ViewComponent extends JComponent
         private Image image;
         protected void paintComponent( Graphics g )
              if ( image != null )
    // image looks okay!
                   g.drawImage( image, 0, 0, this );
         public void setImage( BufferedImage newImage )
              image = newImage;
              if ( image != null )
                   repaint();
    * Note that I've tried several input image formats (PNG, JPEG) and made sure that they were stored as RGB (not CMYK or the like).
    * Someone else already mentioned that the RGB values as read from an JPG image are wrong, but no answer in this thread - might be connected with this problem: http://forum.java.sun.com/thread.jspa?forumID=20&threadID=612542
    * I tried the jdk1.5.0_01 and jdk1.5.0_04 on Windows XP.
    Any suggestions? Is this a bug in the ImageIO jpeg plugin? What am I doing wrong? Better try something like JAI or JIMI? I'd rather not...
    Thanks a lot! Oliver
    p.s. also posted to comp.lang.java.programmers today...

    Try using TYPE_NEAREST_NEIGHBOR
    rather than
    TYPE_BILINEARI was a bit quick with saying that this doesn't work - I had extended my example code which made it fail (see later), but here's a working version first (note: I use the identity transform only for simplicity and to show that it really doesn't matter whether I scale, rotate or shear)):
    // works, but only for TYPE_NEAREST_NEIGHBOR interpolation
    Image image = ImageIO.read (new File(args[0]));
    AffineTransform xform = new AffineTransform();
    AffineTransformOp op = new AffineTransformOp (xform, AffineTransformOp.TYPE_NEAREST_NEIGHBOR);
    BufferedImage out = op.filter(image, null);
    ImageIO.write(out, "jpg", new File(args[1]));The problem: we restrict ourselves to nearest neighbor interpolation, which is especially visible when scaling up (or rotate, shear).
    Now when I change the following, it doesn't work anymore, the stored image has type=0 instead of 5 then (which obviously doens't work with external viewers):
    // doesn't work, since an extra alpha value is introduced, even
    // for TYPE_NEAREST_NEIGHBOR
    BufferedImage out = op.filter(image, op.createCompatibleDestImage(image, ColorModel.getRGBdefault()));Intuitively I would say that's exactly what I want, and RGB image with data type int (according to JavaDocs). That it has an alpha channel is a plus - or is it?
    I think this extra alpha value is the root of all evil: JPEG doesn't support alpha, but I guess ImageIO still mixes this alpha value somehow into the JPEG data stream - for ImageIO that's not a problem, the JPEG data is decompressed correctly (even though the alpha values have become meaningless then, haven't checked that), but other JPEG viewers can't manage this ARGB format.
    This also explains why writing to PNG worked, since PNG supports alpha channels.
    And obviously an AffineTransformOp silently changes the image format from RGB to ARGB, but only for TYPE_BILINEAR and TYPE_CUBIC, not for TYPE_NEAREST_NEIGHBOR! Even though I can imagine why this is done like this (it's more efficient to calculate with 32 bit ints than with 24 bit packed values, hence the extra alpha byte...) I would at least expect the JPEG writer to ignore this extra alpha value - at least with the default settings and unless otherwise told with extra parameters! Now my code gets unnecessary complicated.
    So how do I scale an image using bilinear (or even bicubic) interpolation, so that it get's displayed properly with external viewers? I found the following code working:
    // works, but I need an extra buffer and draw operation - UGLY
    // and UNNECESSARILY COMPLICATED (in my view)
    BufferedImage image = ImageIO.read (new File(args[0]));
    AffineTransform xform = new AffineTransform();
    AffineTransformOp op = new AffineTransformOp (xform, AffineTransformOp.TYPE_BILINEAR);
    BufferedImage out = op.filter(image, null);
    // create yet another buffer with the proper RGB pixel structure
    // (no alpha), draw transformed image 'out' into this buffer 'out2'          
    BufferedImage out2 = new BufferedImage (out.getWidth(), out.getHeight(),
                                                             BufferedImage.TYPE_INT_RGB);
    Graphics2D g = out2.createGraphics();
    g.drawRenderedImage(out, null);
    ImageIO.write(out2, "jpg", args[1]);This is already way more complicated than the initial code - left alone that I need to create an extra image buffer, just to get rid of the alpha channel and do an extra drawing.
    I've also tried to supply a BufferedImage as 2nd argument to the filter op to avoid the above:
    ICC_ColorSpace (iccColorSpace = new ICC_ColorSpace (ICC_Profile.getInstance(ColorSpace.CS_sRGB)
    BufferedImage out = op.filter(image, op.createCompatibleDestImage(image, new DirectColorModel (iccColorSpace), 24, 0xff0000, 0x00ff00, 0x0000ff, 0x000000, false, DataBuffer.TYPE_INT)));  But then the filter operation failed ("Unable to transform src image") and I was beaten by the sheer possibilities of color spaces, ICC profiles, so I quickly gave up... and hey, I "just" want to load, scale and save to JPG!
    The last option was getting a JPEG writer and its ImageWriteParam, trying to set the output image type:
    iwparam.setDestinationType(ImageTypeSpecifier.createFromBufferedImageType(BufferedImage.TYPE_INT_RGB));But again I failed, the resulting image type was still type=0 (and not 5). So I gave up, realising that the Java API is still overly complex and "too design-patterned" for simple tasks :(
    If anyone has still a good idea how to get rid of the alpha channel when writing to JPEG in a simple way (apart from creating an extra buffer as above, which works for me now...)... you're very welcome to enlighten me ;)
    Cheers, Oliver
    p.s. Jim, I will assign you the "DukeDollars", since your hint was somewhat correct :)

  • HT4623 By updating to IOS 6.1 something went wrong. The rsult is that I have picture of USB cable and Itunes on my Iphone and the PC does not recognize it.  What can I do ? Please Help.  My Iphone is dead !

    By updating to IOS 6.1 something went wrong. The rsult is that I have picture of USB cable and Itunes on my Iphone and the PC does not recognize it.  What can I do ? Pøease Help.  My Iphone is dead !

    you may have to do this a couple of times http://support.apple.com/kb/HT1808

  • Upgraded to Tiger OS and now color prints all wrong

    I recently replaced my HD and upgraded to Tiger OS. Since then, my color prints have been horrible. My printer/copier is an Epson CX4800 and the color copies it produces are still OK. Trying to print a color print produces a pic with bands of color at the top and bottom borders, incorrect colors in the picture, and a weird type of "halo" effect around the objects within the picture. I have downloaded the newest updates/drivers for my particular printer. I have tried printing different types of files (JPEG, GIF) and get the same results. The printer/copier itself checks out OK (nozzle check, head alignment, etc). Any ideas??
    thanks,
    theresa
    iMac G5   Mac OS X (10.3.9)  

    Theresa, my old Epson 740 did exactly the same thing as you described after updating toTiger 10.4.8. I just chalked it up to the printer being so ancient. Like you I went through all the cleaning rituals. However, I also have an Epson Stylus Photo R220 which survived the update.
    Did you by any chance repair permissions after you updated? (Apparently, this did not work for my ancient Epson.)
    http://docs.info.apple.com/article.html?artnum=25751 About Disk Utility's Repair Disk Permissions feature
    If by chance you did repair permissions, maybe you should contact Epson and/or check out their support site to see if there is some sort an issue w/your model printer & the latest Tiger update.

  • Wrong color matching between Acrobat and ID, PS, Ai

    using the new CC I have this problem: in acrobat pdf + colors are darker than the same files open with PS-ID or AI.
    In BR I set and synchronized color settings for all software but is this difference of color that repeat in acrobat + is dark. Has anyone had the same problem?
    Thnks

    Acrobat doesn't use the global CS color settings. You have to set them manually in the Acrobat prefs.
    Mylenium

  • I have a m-audio producer usb microphone and since the update on Dec. 22, 2013 Logic hasn't been allowing me to record with it. Logic is reading the microphone as the input but the audio tracks don't have the record enable button. What's wrong?

    I have a m-audio producer usb microphone and since the update on Dec. 22, 2013 Logic hasn't been allowing me to record with it. Logic is reading the microphone as the input but the audio tracks don't have the record enable button and won't let me select an input for the audio track on the inspector panel. What are some possible solutions.

    Certain M-Audio USB devices (along with some other USB2 class compliant devices that don't use drivers) no longer work with Logic Pro X 10.0.5
    At this time it is unknown as to why this has happened. Nor is it known if Apple will need to fix it or if it is up to the Developers of said USB2 devices  to remedy the problem.
    In the mean time, assuming you made/could make backups prior to updating to 10.0.5.... the solution is to roll back to LPX 10.0.4...

  • How can I do live streaming with a Mac Book Pro 2011, using a new model of Sony HD camcorder which does not have firewire out/input? it comes only with a component video output, USB, HDMI and composite RCA output?

    I need to do live streaming with a Mac Book Pro 2011, using a new model of Sony HD camcorder (http://store.sony.co...ber=HDRAX2000/H) ..this camcorder model does not have firewire out/input ..it comes only with a component video output, USB, HDMI and composite A/V video output..
    I wonder how can I plug this camcorder to the firewire port of my laptop? Browsing on internet I found that Grass Valley Company produces this converter http://www.amazon.co...=A17MC6HOH9AVE6 ..but I am not sure -not even after checking the amazon reviews- if this device will send the video signal through firewire to my laptop, in order to live streaming properly? ..anyone in this forum could help me please?
    Thanx

    I can't broadcast with the built in iSight webcam... how would I zoom in or zoom out? or how would I pan? I've seem people doing it walking with their laptops but that's not an option for me... there's nothing wrong with my USB ports but that's neither an option to stream video because as far as I know through USB you can't connect video in apple operating systems ..you can for sure plug any video cam or photo camera through usb but as a drive to transfer data not as a live video camera...  is by firewire an old interface developed by apple that you can connect all sorts of cameras to apple computers... unfortunately my new sony HDR-AX2000 camcorder doesn't have firewire output...
    thanx

  • Eyedropper in PS CS6 picking wrong color

    My eyedropper started picking the wrong color!  I ahve reset and reinstalled PS - and still have this problem.  No matter what color I click the eyedropper on, it picks a shade darker than what I want.  Anyone have any ideas?  Like I said, I am running PS CS6 on OS Mountain Lion.

    hanci wrote:
    I also have problems with the eyedropper in RGB mode. I have a blue background color and when selecting it with the eyedropper I get #244f69 when I'm in RGB mode. And if I use that color in CSS on a website, the color gets darger than the original color in Photoshop. But if I change to CMYK mode and use the eyedropper again, then i get this code on the same background #00516a. And with that code I get the color I want on the website.
    Adobe Photoshop Version: 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00) x64
    Am I doing something wrong?
    Apart from your Photoshop needing updated to at least 13.0.1, the problem may be that your RGB document, which you're sampling in Photoshop, does not have sRGB profile and/or your Web browser is not colour managed and/or your computer is not using a correctly calibrated monitor profile and/or something else.

  • Im having problems with my iPod Touch 2nd gen. It's disabled and tells me to connect to iTunes. But when I do that, iTunes wont detect the iPod.I have put the iPod in USB- mode, and by that I mean I have tried connecting with holding the home button Help?

    It's disabled and tells me to connect to iTunes. But when I do that, iTunes wont detect the iPod.I have put the iPod in USB- mode, and by that I mean I have tried connecting with holding the home button when connecting the USB. Help?

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: Back up and restore your iOS device with iCloud or iTunes       
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        
    If problem what happens or does not happen and when in the instructions? When you successfully get the iPod in recovery mode and connect to computer iTunes should say it found an iPod in recovery mode.

  • Wrong colors when printing to HP Colorlaser Jet 4550 PCL 5c

    I just upgraded from Labview 5.1.1 to Labview 6.1 on a Windows 95 Compaq Notebook. All the plot colors in 8 plot XY Graph indicator printed correctly on our network HP Colorlaser Jet 4550 PCL 5c using Labview 5.1.1. When I print the graph in Labview 6.1, sometimes some of the plot colors in the graph are wrong. In fact one of the plot switches color about 2/3 of the way across the X-axis. What is really weird is that the plot colors always print correctly in the legend. The VI prints the graph programically, but I also get the same inconsistent results when I copy the XY Graph to a new VI and use the print window comand in the file menu.
    In my Labview preferences I use standard printing with colors and di
    thering is turn on. The colors are correct when I programically save the front panel to either bmp, jpeg, or png files.
    What causing this strange behavior?

    Greg,
    Thanks for your suggestion; however, it did not solve the problem. I set the line thickest to the maximum. Then I tried with and without dithering. The results were still inconsistent. Sometimes I got the correct colors; othertimes, some plots had the wrong colors. I attached two gif files as examples. The first shows the correct colors. The second shows that the 1st plot is yellow instead of blue. Also the 4th plot is green instead of red for the 1st 80% of the plot. Then it switches to the correct color, red. I have other graphs with different plots with the wrong colors. Notice that the colors in the legend are always correct.
    Attachments:
    Good.gif ‏105 KB
    Bad.gif ‏108 KB

  • IMac not recognizing bluetooth nor USB mouse and keyboard

    The iMac I use has suffered a pretty annoying problem. I typically use a wireless keyboard and magic mouse with the iMac (I could be wrong, but I believe these both use Bluetooth technology). First, the iMac stopped recognizing these. They kept losing connection last Friday and then suddenly stopped recognizing them at all. Yes, they both have full batteries and blink to show me they are on and searching for the iMac.
    Second, I tried using a USB mouse and a USB keyboard to get into the iMac and fix the problem. But neither are recognized by the iMac as well. The mouse is a Dell model that has a red light on the bottom, and it glows red for less than a second when I plug it into the USB port before going dark again and not working. So, I can't get into the iMac to fix the problem.
    I've read a few other things on the community boards. I restarted the iMac. I unplugged it completely for several minutes and held down the power button for fifteen seconds while the power was unplugged. I've tried multiple mice and keyboards, all to no effect.
    Is the iMac not recognizing the USB keyboard/mouse because it's still searching for the bluetooth versions that it will no longer recognize? Is there a way to fix this without setting up an appointment with the geniuses?
    Thanks!

    I'm having the same problem. It started happening on my Late 2012 model iMac 21.5" after applying the latest update.
    What I found was that nothing seemed to work connected directly to the iMac. However, if you attach an externally powered USB hub, then all devices attached to the hub will work. It seems as if the USB ports are still working, but without power.
    After I was able to get my USB keyboard to work, I was able to zap the PRAM (hold command-option-P-R while powering on) and then magically everything was back to working again. Unfortunately, this was short lived as the problem has resufaced again for me today, but you could give it a try anyway.

  • Printing in Lightroom Produces Wrong Colors

    I have searched these forums and found a couple of topics that have to do with incorrect or wrong colors being printed by Lightroom but none of the suggestions proposed seemed to help. So, I think that I have something else going on that is causing me problems.
    The vital statistics: I am using Lightroom 1.4.1 on Vista Home Premium with an HP C7280 All-in-One printer. The pictures I am trying to print are DNGs converted by Lightroom. When printing in Lightroom, I select the option to have the color managed by the printer.
    Basically, any picture that I print from Lightroom looks darker than the original. So, I tried a couple of different tests to try to find out what is going on. I exported a picture to a jpeg and printed that with the Microsoft Office Picture Manager and it printed fine.
    I was curious what would happen if the photo was printed from Photpshop CS3. So, I created a copy of the DNG file from Lightroom and edited it in Photoshop. I printed the picture from Photoshop with the color set to be managed by the printer, and Photoshop also printed the photo with a dark look. I then changed the Color Handling to "Photoshop Manages Color" and the Printer Profile to sRGB, and the picture printed perfectly.
    In addition, I tried printing jpgs from Lightroom, and I got the same dark results. Any suggestions as to what is going on will be very much appreciated. Thank you in advance!
    Michael

    Unfortunately, Lightroom cannot print to this specific printer without tricks. The reason is that HP does not provide color management in the driver (which is why you have to use sRGB in Photoshop - shudder!) and does not provide icc profiles for it. This is HP not providing good drivers for their consumer-oriented printers, and Lightroom expecting at least reasonably modern printer drivers. Photoshop will print to anything by using the working space fall back that really is a hack. Unfortunately, Lightroom does not provide the same hack. In your case, there is a trick you can use, which is to find the "HP color Laserjet RGB" icc profile that HP ships with their laserprinter drivers. It is just an sRGB profile masquerading as a printer profile. If you use that in the profile field in Lightroom, it
    should work.

  • JPG and TIFF colors in Bridge CS5 way off, but fine in Photoshop

    Just started happening, but not sure if it was after updating to Bridge 4.0.3 or Camera RAW 6.2.  The colors for RAW and PSD files are fine in Bridge, but all JPGs and TIFFs colors are blown out and way off.  Opening the JPG or TIFF in Photoshop looks fine though.  Anyone else having this issue, or know how to fix it?
    Update:  If I set the "Develop Settings" in Bridge CS5 to "Camera Raw Defaults" for the JPGs/TIFFs that are displaying improperly, the colors and tones go back to normal, but if I "Clear Settings" everything turns to crap again.

    PLEASE  help save my sanity and my reputation!  --I have spent the last five days exhausting every possible solution to this debilitating issue. I have spent countless hours perusing the web for a solution, spent 4 hours yesterday with Adobe customer support and yet, there is no solution to be found. My issue is that the color (in every file format NEF, JPEG, PSD) completely changes color and desaturates in every one of the adobe products: Photoshop CS5, Camera RAW 6.2, Lightroom 3.2. -
    Everything was working fine, and then out of no where my productivity has come to a crashing halt. This is the steps I have taken to this point:
    -Uninstalling/re-installing all of the software
    -Purging anything that can be purged.
    -Changing color profiles
    -Resetting defaults
    -Resetting preferences
    -Installing updated drivers for monitor, video cards
    -rollling back drivers for monitor, video cards
    -monitor recalibration
    **and finally, today...I set the monitor up on another computer, OS windows xp, and to my complete surprise, the issue persists even on another pc with completely different hardware.
    -I am at my wits end with this. I have clients ringing my phone off the hook. This is crazy!
    -I have sent out for another monitor as a last ditch effort to see if something is wrong with the monitor.
    PLEASE, if anyone has a solution please let me know. Apparently, the folks at Adobe are just as perplexed by these issues as we are, as I have found numerous posts on forums throughout the Internet with this same issue---and yet none of the post every found a solution.
    Primary System
    Windows7 64-bit
    Nvidia fx 580 video card
    Dell U2410 Ultra Sharp Monitor
    Abobe CS5 Photoshop -64-bit
    Lightroom 3.2
    Camera Raw 6.2
    Secondary
    Windows XP
    Nvidia GeForce 8400gs
    Same software, just in a 32-bit

Maybe you are looking for

  • Account determination error during service entry for service PO

    Dear Experts, This about service PO. I created PO # 4501517101 & wanted to perform service entry via t/code ML81N. But I'm getting error "147 Account determination for entry OP01 FR1 OP01 not possible" Appreciate if could anyone assist me on this iss

  • Sequence Order on time line

    I noticed on the newest version of Adobe Premiere 2014, the sequence order keeps getting messed up with ever-time I open it. I exit out of it with sequences in a specific order on timeline. Next time I go in Adobe the sequences there are out of order

  • JPanel

    I have a JFrame, in which im adding a JPanel, frame.getContentPane().add(panel1); Now what i want is that if i add another panel to the frame, frame.getContentPane().add(panel2); where panel1 and panel2 are to be placed at the same location, when pan

  • Slide order in slideshows

    How do I get IDVD to keep my slides in order by filename? If I drag them as a group it puts them in random order. The only way I was able to get them in numerical order by frame number is put all 420 slides in one by one!

  • Java heap size....

    Hi guys, i need absolutely your help!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! I use Exadel Studio with Eclipse and Server Tomcat 5.0 embedded. I need to enlarge Tomcat heap size. Can you help me? I've read many posts but i'm a bit confused. Does exists a gr