Printer error ICC message what is wrong?

Printer error ICC comes up when I try to print. What is wrong?

I am having trouble printing the scrapbook pages that I have created. There is an error message that pops up saying that I need to install a printer before I can print! I have a printer installed! I went to Help, it suggested that I uninstall the printer, which I did twice! And I also, insalled the Photoshop onto another laptop, which also gives me a similar message!
Seems like a glitch or something! Any help you could give me will be most appreciated!

Similar Messages

  • I've installed itunes twice. It worked the first time but after I restarted my computer it kept giving me this message: Itunes was not correctly installed. Please reinstall itunes. Error 7 (Windows error 127). What's wrong?

    I've installed itunes twice. It worked the first time but after I restarted my computer it kept giving me this message: Itunes was not correctly installed. Please reinstall itunes. Error 7 (Windows error 127). What's wrong?

    See the second box in Troubleshooting issues with iTunes for Windows updates.
    tt2

  • General printer error 61000f6 message

    HP Office Jet 6500 Model E709a. Received "general printer error 61000f6" message which continued after I cleared paper jam. Printer will not operate.

    0070HMSS:
    Thanks so much for the response back, however, I have one additional problem to accomplish the solution to my problem and reset the product:  I can't remove the ink cartridges because the cartridge mechanism wants to go left to right, but does not. It makes a double clicking noise and then nothing.  I've also went through the steps to move the ink cartridge mechanism, left to right, to check for any paper jammed/stuck, there wasn't any and manually the cartridge does move with ease. I made sure to follow all the steps outlined on the HP help site to accomplish that.  One additional point:  when I did move the ink cartridge mechanism to the left, I noticed on the right side of the slide bar the ink cartridge mechanism slides on, there is a lot of ink that appears to have leaked out.  Could the connections be gunked up to the degree that the printer software is compromised?  This is what the readout says:
    General Printer Error (Not ink error)
    0x610000f6
    Refer to Printer Documentation
    Press OK to continue
    When I press OK the readout is "Now printing", it wants to go through the motions (ink cartridge mechanism sounds like it wants to go left to right), but nothing happens but the double clicking sound.  Then the screen goes back to General Error message.  Should I try reseting the printer as outlined on the page you gave but without removing the cartridges?
    Again, thank you so much!!

  • Errors dont know what is wrong!

    Errors dont know what is wrong!
    import java.awt.*;
    import javax.swing.*;
    import java.awt.geom.*;
    import java.awt.event.MouseListener;
    import java.awt.event.*;
    public class SquareShape extends Piece
    {private Rectangle2D.Double _square1, _square2, _square3, _square4;
    private int xLoc=80, yLoc=0, size=19, space=1;
    private smallPiece [][] rectangle;
    public SquareShape(smallPiece[][] rect)
    {super(Color.red);
    _square1 = new Rectangle2D.Double(xLoc,yLoc,size,size);
    _square2 = new Rectangle2D.Double(xLoc,yLoc+size+space,size,size);
    _square3 = new Rectangle2D.Double(xLoc+size+space,yLoc,size,size);
    _square4 = new Rectangle2D.Double(xLoc+size+space,yLoc+size+space,size,size);
    rectangle= rect;}
    public void setXLocation(int x)
    {_square1.setFrame(xLoc+x,yLoc,size,size);
    _square2.setFrame(xLoc+x,yLoc+size+space,size,size);
    _square3.setFrame(xLoc+size+space+x,yLoc,size,size);
    _square4.setFrame(xLoc+size+space+x,yLoc+size+space,size,size);
    xLoc=xLoc+x;}
    public void setYLocation(int y)
    {_square1.setFrame(xLoc,yLoc+y,size,size);
    _square2.setFrame(xLoc,yLoc+size+space+y,size,size);
    _square3.setFrame(xLoc+size+space,yLoc+y,size,size);
    _square4.setFrame(xLoc+size+space,yLoc+size+space+y,size,size);
    yLoc=yLoc+y;}
    public boolean moveOneStep()
    {if(_square2.getY()+size>=440||_square4.getY()>=440)
    return false;
    else
    if(rectangle[21-((int)(_square2.getY()+1))/20][9-((int)(_square2.getX()+1))/20]!=null || rectangle[21-((int)(_square4.getY()+1))/20][9-((int)(_square4.getX()+1))/20]!=null)
    {return false;}
    else
    {setYLocation(20);
    return true;}}
    public int[][] getLocs()
    {int[][] locs= new int[4][2];
    locs[0][0]= ((int)(_square1.getY()+1))/20;
    locs[0][1]= ((int)(_square1.getX()+1))/20;
    locs[1][0]= ((int)(_square2.getY()+1))/20;
    locs[1][1]= ((int)(_square2.getX()+1))/20;
    locs[2][0]= ((int)(_square3.getY()+1))/20;
    locs[2][1]= ((int)(_square3.getX()+1))/20;
    locs[3][0]= ((int)(_square4.getY()+1))/20;
    locs[3][1]= ((int)(_square4.getX()+1))/20;
    System.out.println(locs[0][0]+" "+locs[0][1]+" "+locs[1][0]+" "+locs[1][1]+" "+locs[2][0]+" "+locs[2][1]+ " "+locs[3][0]+" "+locs[3][1]);
    return locs;}
    public boolean contains(int x, int y)
    {if(_square3.contains(x,y)||_square4.contains(x,y))
    return true;
    else
    return false;}
    public void fill(Graphics2D g2)
    super.fill(g2);
    g2.fill(_square1);
    g2.fill(_square2);
    g2.fill(_square3);
    g2.fill(_square4);}
    import java.awt.geom.*;
    import java.awt.*;
    import javax.swing.JPanel;
    import javax.swing.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.KeyEvent;
    import java.awt.event.*;
    public class TetrisPanel extends JPanel
    {private Factory _pieceFact;
    private Piece currentPiece;
    private Timer _timer;
    private int Interval =500;
    private smallPiece [][] locationArray;
    public TetrisPanel()
    {setBackground(Color.white);
    locationArray = new smallPiece[22][10];
    _pieceFact = new Factory(locationArray);
    currentPiece = _pieceFact.newPiece();
    _timer = new Timer(Interval, new TimerListener());
    _timer.start();
    public void paintComponent(Graphics g)
    {super.paintComponent(g);
    Graphics2D g2 = (Graphics2D)g;
    currentPiece.fill(g2);
    for(int row =0; row<22; row++)
    for(int col =0; col<10; col++)
    if(locationArray[row][col]!=null)
    {locationArray[row][col].fill(g2);}}
    public void createPiece()
    {currentPiece =_pieceFact.newPiece();
    repaint();}
    public class TimerListener implements ActionListener{
    public void actionPerformed(ActionEvent e)
    if(currentPiece.moveOneStep()==true)
    {repaint();
    currentPiece.getLocs();}
    else
    {int[][]ar = currentPiece.getLocs();
    for(int rows=0; rows<ar.length; rows++)
    {locationArray[22-ar[rows][0]][10-ar[rows][1]] = new smallPiece(ar[rows][1]*20,ar[rows][0]*20, currentPiece.getColor());}
    createPiece();
    repaint();}
    }the error
    Exception in thread "AWT-EventQueue-0" java.lang.ArrayIndexOutOfBoundsException: 22
         at TetrisPanel$TimerListener.actionPerformed(TetrisPanel.java:51)
         at javax.swing.Timer.fireActionPerformed(Timer.java:271)
         at javax.swing.Timer$DoPostEvent.run(Timer.java:201)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Exception in thread "AWT-EventQueue-0" java.lang.ArrayIndexOutOfBoundsException: 22
         at SquareShape.moveOneStep(SquareShape.java:38)
         at TetrisPanel$TimerListener.actionPerformed(TetrisPanel.java:45)
         at javax.swing.Timer.fireActionPerformed(Timer.java:271)
         at javax.swing.Timer$DoPostEvent.run(Timer.java:201)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)

    Errors dont know what is wrong!You read the stack trace from the top down, looking out for the first line that refers to your code.
    java.lang.ArrayIndexOutOfBoundsException: 22This means that you are using something as an array index (some variable, perhaps) and it has a value of 22, but the array itself is not that big.
    at TetrisPanel$TimerListener.actionPerformed(TetrisPanel.java:51This tells you exactly where the bad array access is taking place. Only you know which line 51 is - and it's good form to tell the rest of us when you post - but, at a wild guess, I'd say it was that line within the for loop that assigns new values to the locationArray.
    Use System.out.println() to check the values of the variables (or expressions) you use to access the array. Also check the length of the various arrays involved.
    (If I were you, I'd consider using a bit more indentation in your code. Especially where constructs are nested.)

  • My Mac OS X 10.4.11 will not write DVDs and gets error code 0x80020022, what is wrong?

    My Mac OS X 10.4.11 will not write DVDs and gets error code 0x80020022, what is wrong?

    That code is not really useful since it just means it can't write DVD's (or probably CD's).  The only thing you can do is first to try a different brand of DVD's, higher quality.  You could also try burning at a slower speed.
    Based on the fact that you are using an OSX that's no long supported, there's probably not much you can do to correct this issue if it is software related.  You may also have a failing Super Drive, another consequence of an older Mac.

  • HT204406 I signed up for iTunes Match but I keep getting a msg that my request can't be completed - Error 4010. What's wrong?

    I signed up for iTunes Match but I keep getting a msg that my request can't be completed - Error 4010. What's wrong?

    From the  More Like This  on the right
    https://discussions.apple.com/thread/3992090?tstart=0

  • When I try to add music or audiobook to Ipod I get error code 0x8007045d- what's wrong?

    Error code 0x8007045D comes up when I try to add songs or audiobooks to my ipod- any suggestions as to what's wrong?

    The error message is " Attempting to copy to the disk 'Mike's IPOD' failed.  The disk could not be read from or written to."
    I am in "manually transfer music" mode on the IPOD.  Some mp3 music files can be copied to the ipod via iTunes. When I try to copy serverl files, it will copy 1 or more, then hang up on  a file.  Sometimes if I try with that file several times it will finally copy to the IPOD. 
    The error comes up while I am in iTunes-- I assume it is referring to the IPOD, but I am not sure.  I am running Windows 7.
    Thanks for your help.

  • TS3694 i am trying to restore my iphone4 but i keep getting an error 3194 message, what do i need to do?

    My phone crashed during a software update and when i try to restore it on the itunes site, i keep getting an error 3194 message. It is an iphone4, what can i do?

    This usually means you previously used an iPhone hacking utility such as tinyumbrella which altered your computer hosts file, blocking access to the Apple server, gs.apple.com:
    Error 1004, 1013, 1638, 3194: These errors may be the result of the connection to gs.apple.com being redirected or blocked. Follow these steps to resolve these errors:
    Install the latest version of iTunes.
    Check security software. Ensure that communication to gs.apple.com is allowed. Follow this article for assistance with security software. iTunes for Windows: Troubleshooting security software issues.
    Check the hosts file. The restore will fail if there is an active entry to redirect gs.apple.com. FollowiTunes: Advanced iTunes Store troubleshooting to edit the hosts file or revert to a default hosts file. See section "Blocked by configuration: (Mac OS X/Windows) > Rebuild network information".
    Try to restore from another known-good computer and network.
    If the errors persist on another computer, the device may need service.

  • Have a HP9040n Printer Now says 59.30 Error.Any ideas what is wrong? I have undertaken checks

    I have done following to no avail
    1. Turn the printer off, and then turn the printer on. 2. Check and reseat the fuser and toner cartridge to make sure they are not hindering gear movement in the drive train. 3. Check the main motor’s cable to ensure that it is seated properly. 4. If the error persists, replace the main motor (not done).
    Thanks
    Peter

    After installing Windows 8 (64-bit) then Visual Studio 2012 (or 2013) then the latest 64-bit iTunes app, I got the 0x80073715 error.
    What finally worked for me was:
    1) Get all the Windows updates and hotfixes - especially the ones for Visual Studio.
    2) Go to http://www.microsoft.com/en-us/download/details.aspx?id=14431 and download the "Microsoft Visual C++ 2005 Service Pack 1 Redistributable Package ATL Security Update"
    3) Only install vcredist_x64.exe.
    After running these steps, I was able to completely install iTunes on my Windows 8 64-bit instance. 
    Hope this helps.

  • HT201210 I am trying to install the iOS 6 but keep getting an error message what is wrong

    I'am trying to update my iPad with ios6 but it keeps showing an error message, how do
    I fix this problem?

    "The feature you are trying to use in on a network resource that is unavailable. Enter alternate path to a folder containing the installation package itunes64.msi".
    Download the Windows Installer CleanUp utility from the following page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    To install the utility, doubleclick the msicuu2.exe file you downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • Printing Error without message

    In trying to print a basic document, I'm getting an error message without any message:
    InDesign 5, OSX 10.6.x. Since there's no message, I'm not sure where to start
    thanks
    A

    Problem solved, it was a bad font, of all things.  I was using Gentium 1.02 in the document, and changing that for Geneva made the error go away.  I was able to download a newer version of Gentium and swap it in, and all continues to work.  It would have been nice to get a real error from ID but at least the problem is solved
    A

  • Printer error B200. What now? New printhead? I already cleaned it..

    Hello merileep!
    Welcome to the Canon Forums and thanks for your post!
    To have a better understanding of your issue, please let everyone know what model printer you are using (PIXMA MX922, MG6420, CP910, etc.), what operating system (Windows Vista/7/8 or Mac OS 10.X) you are using, and if you are connected via USB or WI-FI. That way, the community will be able to assist you with suggestions appropriate for your product.
    Any other details you'd like to give will only help the Community better understand your issue!
    If this is a time-sensitive matter, our US-based technical support team is standing by, ready to help 24/7 via Email at http://bit.ly/EmailCanon or by phone at 1-800-OK-CANON (1-800-652-2666) weekdays between 10 AM and 10 PM ET (7 AM to 7 PM PT).
    Thanks!

    I cleared that yesterday by doing a head clean from settings menu then placing a page of anything on the platen and pushing copy. It  was trying to print but ALL the ink was gone from all five tanks....I only print in black/white. Today I installed $49 worth of Canon brand ink and got error U052! Before you spend the money I would buy a new printer.

  • Just had problem with frozen up Mac computer corrected,now HP printer will not print.  Says printer not connected.  What is wrong?  Everyday a new problem., help.

    JJust had problem corrected due to frozen imac, now HP printer will not print.  Says it is not connected.  What do I do to fix it?

    To reset the printing system:
    Choose System Preferences from the Apple menu.
    Choose Print & Scan from the View menu.
    Hold down the Option key while clicking the "-" (Remove printer) button. If no printers are currently added, hold down the Control key while clicking in the box that appears above the "+" (Add printer) button, then choose Reset printing system… from the contextual menu.
    When you've done the above you'll need to re-add the printer by clicking the + (Add printer)

  • My phone is not notifying me of some text messages and phone keeps asking for apple id password when in messages, what's wrong with my phone?

    My phone sometimes does not alert me when I get messages from certain people, and is constantly asking me to put in my password for my apple ID. I have only done it once, but the prompt immediately popped up again, and is really just a major nusaince. I don't know what is going on with my phone because it also keeps freezing and won't even lock. It's just so frustrating at times.

    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Try each of these in order until the issue is resolved.

  • I have purchased three different audiobooks over the last two months and none will download. It keeps giving me error 3259. What is wrong?

    I have purchased three different audiobooks and none of them will download. It keeps giving me error 3259. It will let me download tv shows no problem. What is the problem?

    <after three tries, decided that it's just not worth responding to>

Maybe you are looking for