Cartridge carriage stalls after each page

I have a psc 1315 all-in-one printer that works perfectly to one exception. After finishing a page and before releasing it, the cartridge carriage starts making a clunking sound that makes the whole printer stagger. It then stops, lights up the "check paper" and "check print cartridge" lights, and an error box comes up saying "cartridge stalled". When I lower the print gate it releases the page and the "check paper" light comes off. When I lift the gate back up it makes some more clunking sounds and the "check print cartridge" light comes off. Then silence...  When I print a self test page this is what I get:
Extended Self-Test Report
hppsc 1310 series Model Number 1315
Serial # MY48PCD3CQ02Service ID # 15039
Device 0,152
Active 1/0: USBVertical Cartridge-to-Cartridge Alignment Setting: 0 0
Horizontal Cartridge-to-Cartridge Alignment Setting: 0 0
Black Bidirectional Printing Alignment Setting: 0 0 0 0
Color Bidirectional Printing Alignment Setting: 0 0
 Total Page Count: 1354Firmware Version: R0012xxNxFM1
USB VID: Ox3fO PID: Ox3fl1
t1TRA Ox6272
Pen Ambient Temp: 246
CBA TI 2.d
RIGHT: ID=Ox302392f STAT=OxO TSR=130 CAL TEMP=320 CAL ACC=3 TYPE=O LEFT: ID=Oxl0210S5 STAT=OxO TSR=99 CAL TEMP=320 CAL ACC=3 TYPE=1 Pen Region: Oxl
Last Assert Codes OxfOaf8004 Oxafe2le03 Oxafe21e03 Oxafe21e03 Oxafe21e03
Can anyone with service knowledge help me? Or at least direct me to where I can procure a service manual for this particular model? I will be deeply grateful for any direction or advice. 

HP says there is no way to turn the message off.  ( BAD HP!!)
However, since I want to only print in black, I may have found a workaround. 
Win XP -- Control panel--Printers and Faxes -- Print Preferences -- Advanced -- Print in Greyscale -- select "Black ink only"
No message and the installed trial color cartridge still shows full after several days of printing.
( Sadly this does not seem to work on my wife's HP printer/scanner )

Similar Messages

  • Psc 1315 Cartridge stalls after each page

    I have a psc 1315 all-in-one printer that works perfectly to one exception. After finishing a page and before releasing it, the cartridge carriage starts making a clunking sound that makes the whole printer stagger. It then stops, lights up the "check paper" and "check print cartridge" lights, and an error box comes up saying "cartridge stalled". When I lower the print gate it releases the page and the "check paper" light comes off. When I lift the gate back up it makes some more clunking sounds and the "check print cartridge" light comes off. Then silence...  When I print a self test page this is what I get:
    Extended Self-Test Report
    hp psc 1310 series Model Number 1315
    Serial # MY48PCD3CQ02Service ID # 15039
    Device 0,152
    Active 1/0: USBVertical Cartridge-to-Cartridge Alignment Setting: 0 0
    Horizontal Cartridge-to-Cartridge Alignment Setting: 0 0
    Black Bidirectional Printing Alignment Setting: 0 0 0 0
    Color Bidirectional Printing Alignment Setting: 0 0
    Total Page Count: 1354Firmware Version: R0012xxNxFM1
    USB VID: Ox3fO PID: Ox3fl1
    t1TRA Ox6272
    Pen Ambient Temp: 246
    CBA TI 2.d
    RIGHT: ID=Ox302392f STAT=OxO TSR=130 CAL TEMP=320 CAL ACC=3 TYPE=O LEFT: ID=Oxl0210S5 STAT=OxO TSR=99 CAL TEMP=320 CAL ACC=3 TYPE=1 Pen Region: Oxl
    Last Assert Codes OxfOaf8004 Oxafe2le03 Oxafe21e03 Oxafe21e03 Oxafe21e03
    Can anyone with service knowledge help me? Or at least direct me to where I can procure a service manual for this particular model? I will be deeply grateful for any direction or advice.

    HP says there is no way to turn the message off.  ( BAD HP!!)
    However, since I want to only print in black, I may have found a workaround. 
    Win XP -- Control panel--Printers and Faxes -- Print Preferences -- Advanced -- Print in Greyscale -- select "Black ink only"
    No message and the installed trial color cartridge still shows full after several days of printing.
    ( Sadly this does not seem to work on my wife's HP printer/scanner )

  • Using a Macro to add a Carriage Return after each data entry within all cells of an imported range of cells

    I have a macro that copies data from a Target workbook then pastes the data into a destination workbook.  I then wish to use lookups in the destination workbook to view specific data from the pasted range of data on a separate sheet. 
    The problem is, the cells that contain numbers from the pasted data have the green dogeared error flags associated with the cell. The only way I can make a lookup function work, is to go to each cell and manually enter a carriage return after each entry. 
    The code for the macro is given below.  What can be done so that the pasted data contains no errors associated with the number cells?  Or can a second macro be written to clean the data.  If so can you help me out?  Thanks in advance.
    Kindest Regards
    Sub ImportData()
     ' ImportData Macro allows user to select an Excel workbook (i.e. Orchestrate Excel Output),
     ' then copy & paste it into the MediaSpreadsheet.
        Dim wbk As Workbook
        Set wbk = Application.Run("MediaSpreadsheet_1.0.xlsm!OpenFile")
        If wbk Is Nothing Then
            Beep
            Exit Sub
        End If
        Set wbk = ActiveWorkbook
        Range("A9:S116").Copy
        Workbooks("MediaSpreadsheet_1.0.xlsm").Activate
        Sheets("OrchestrateData").Select
        Range("A1").Select
        ActiveSheet.Paste
        With Selection.Font
            .ColorIndex = xlAutomatic
            .TintAndShade = 0
        End With
        With Selection.Interior
            .Pattern = xlNone
            .TintAndShade = 0
            .PatternTintAndShade = 0
        End With
        Selection.Borders(xlDiagonalDown).LineStyle = xlNone
        Selection.Borders(xlDiagonalUp).LineStyle = xlNone
        Selection.Borders(xlEdgeLeft).LineStyle = xlNone
        Selection.Borders(xlEdgeTop).LineStyle = xlNone
        Selection.Borders(xlEdgeBottom).LineStyle = xlNone
        Selection.Borders(xlEdgeRight).LineStyle = xlNone
        Selection.Borders(xlInsideVertical).LineStyle = xlNone
        Selection.Borders(xlInsideHorizontal).LineStyle = xlNone
        wbk.Close
        Sheets("MediaSchedule").Select
    End Sub
    DAPulliam64

    Hi DAPAugust64,
    The green "dogeared error flags" of the cells means that you paste numbers in these cells, but they're formated as Text.
    So you need to change the cells back to the correct format so that the lookup function works fine. You can simply call this method after pasting:
    ActiveSheet.Cells(1, 1).NumberFormat = "General"
    ActiveSheet.Cells(1, 1) = ActiveSheet.Cells(1, 1).Text
    Or use PasteSpecial method to paste the numbers as well as it's format:
    https://msdn.microsoft.com/en-us/library/office/ff837425.aspx
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Printer making a terrible grinding noise after each page printed

    My new HP Officejet 4620 is making a grinding sound after each page printed.  I have checked to make sure all packaging material have been removed.  Anyone else having this issue?

    Could still have something stuck in the printer, I would follow the steps in the link below, and if that doesn't work - call HP as the printer is so new.
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03136324&tmp_task=solveCategory&cc=us&dlc=en&lc...
    http://welcome.hp.com/country/w1/en/support.html
    *** If my reply was helpful, please click on the "Kudos Thumbs-Up" on the right, as a way to say "Thanks!".
    If this reply also fixed your issue - please click the "Accept as Solution" button, so that others can find the same answer. ***

  • 'Ink Cartridge Carriage Stalled' - Repeated Error Message

    DeskJet 2050 All-In-One J510C. Serial CN07N2B3CF. FPU CH350 or 355,  -64001 Having just run HP Print & Scan Doctor!I still keep getting this message.It must be erroneous, because when I click "OK" it rattles and whirrs and then carries on as normal, with a quality print. BTW:- searched Support numerous times with NO RELEVANT results, hence this post. How do I resolve "Ink Cartridge Carriage Stalled" ?  (Previously, downloading & updating software chased it away. So I did that yesterday, again!) Please advise your correction to this irritation.Thanx.

    NEW info! 
    computer still says yellow ink is out...print with Black only option and I'm able to print regularly from another computer tied to the same printer. 
    But just now I attempted to print a picture.  The screen said the yellow ink was out and would I like to print using Black only?  I clicked Black (just to get something) and the device printed a color picture.  Thanks but what's up?  

  • How do I get read out loud to continue after each page?

    Read out loud stops at end of each page, eventhough I select read to end of document.

    Nevermind.  It is working after updating.

  • Why does my CP1525nw clean after each page? (using Laserjet1525nw; WIN 7 32bit)

    From what I can find the issue is due to custom size paper. I am printing 6.7 X 6.7 envelopes for my daughters wedding and had no problem until I had printed about 50 of the envelopes (one at a time). I am using a template for printing the addresses so I do not print as an envelope format but as a custom size document. I have set the size to a custom size and it was printing beautifully. Then it seemed to freeze and after that it started cleaning after each sheet(envelope). I don't know what happened to change it since I had changed no settings after the initial setup. I have tried restarting the printer. I have exited WORD and restarted (after checking to see if the size was set to the custom size). In addition to  the cleanings adding time to my project I am worried that it might be harmful to my printer since it cleans each time. I am only 1/3 complete on my envelopes and hope to resolve this before I continue. . I googled this issue and found that it has happened to others but I have not found a solution. Any suggestions would be greatly appreciated!

    I just got this printer the other week and it's doing the same thing.  I didn't try changing the paper to custom, just left it at 8.5x11.  I tried manually feeding one a time through tray 1 but nothing has fixed it.  I am too worried it'll damage my printer and it's adding SO much time to my project.  I am considering calling support. 

  • Pdfs created on my iMac add hidden carriage returns after each word

    Hello Community,
    This problem exists on my iMac but not my wife's Powerbook.
    Whenever I created a pdf from Preview by printing and then selecting "save as pdf" I got a lovely looking pdf which I could send to anyone and they could view just fine.  However, if I or anyone else selected text from that pdf and pasted it into any other program, it came out with an exclamation point instead of the space between words which is, needless to say, quite undesirable.  Searching around, one thing that was suggested was clearing the font cache so I did this (several times).  It did indeed make a difference:  now instead of exclamation points a carriage return appears after every word!  Once again the pdf looks just fine, but when you copy and paste text from the pdf into any other text program this happens.
    So then I downloaded Adobe Acrobat (the one month fully functional trial program) and made pdfs with this program to see if that was the problem but, no, the same thing occurs.  So it really seems to be a strange glitch in my iMac and my system?
    Any advice would be greatly appreciated.
    Best regards,
    ---Norm

    There is no Flash player version 15... as in your code:
    <param name="swfversion" value="15.0.0.0" />
    For some reason Adobe thought it would be a good idea to target a Flash player version (15) as default.....which may be out a couple years in the future. Go figure!!!
    If you don't like player version 9, change to 10 or 11.... just not 15 (yet).
    Best wishes,
    Adninjastrator

  • C310 photosmart cartridges showing empty after 300 pages printed

    The c310a has been going through cartidges like crazy with hardly any pages printed.  I call tech support which informed me that it was a sensor defect(hardware problem).  The tech then continued to tell me that for $168.00 I could buy another model which uses the same cartidges, 564#.  I did not pay that much for the c310a.  I own three HP laptops and a destop.  I will not buy any more HP products if they continue to use "made in china" products with no support.  I guess it is time to look at other brands since they cannot fix a printer to get more than 300 pages of mostly text.

    Hi,
    300 pages. Congratulations. You are the first person who gets the quoted numbers. Many people don't even get close to 250 pages. Please check the following site:
        http://www.hp.com/pageyield/au/en/PSC5300/index.html
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Slideshow music stalls after each image

    hello
    using idvd 08 and have slideshow of 130 images on dvd..plays ok on mac, but terrible on tv...colours fade in and out, music skips at each slide...
    im burning using pro quality, should i select something else?
    and any way to make the images full screen??
    im even thinking that maybe its like the old PC's days that you ant do anything else on the computer as the disc is being made....
    nightmare.....should i maybe even try making the dvd on my mac pro....but im told my mac book pro is all sining and dancing....
    thanks for any advice

    PFChi:
    Welcome to the Apple Discussions. There's a little dimple in the horizontal bar below the window with the iTunes library icon. Click and drag down to reveal the playlists and individual tracks.

  • How do I split each page into a PDF and name them after a line of text on the split page?

    All,
    I am running a report that is creating hundreds of letters to be sent to customers.  When I run the report it creates one large PDF (one letter = one page).  To help with a specific business solution I need to split each page into an individual PDF.  I know I can extract the pages using the extraction tool.  I have also been able to duplicate this from the Javascript console, but only with generic names.  The problem is that I need each PDF named after the customer's account number.  The account number is listed on the page that I am extracting, but I am having a hard time parsining the text on the pages to find it.
    I need to be able to turn each page into a seperate PDF and then rename that PDF to match the account number list on the page.
    The account number, is of course, different for every customer and has varied prefixes.  The line of text that I need to read starts like this:
    Account Number#: NJA00001
    I need to just pull the NJA00001.
    I would really love to automate this process.
    Can you help me with this?  Thanks in advance.
    PS: I am a little rusty on my Javascript, its been a couple years.

    This can probably be achieved with a custom-made script, but it's not possible to know for sure before seeing some sample files.

  • Pivot Table, "Insert Page Break After Each Item" Setting Only Works for the First Item Change

    I have a flattened pivot table generated from Powerpivot and I would like to insert a page break for each change in the row item.
    When I use the pivot table Field Settings>Insert Page Break After Each Item, Excel inserts the first page break then returns to normal pagination for the rest of the output.
    Is there another setting required to maintain the page breaks after the item change?
    Thanks.

    We are experiencing the same problem. Did you ever find a solution?

  • Yahoo is my home page and News, Sports, Business links now shows a few sentences after each main URL link. How do I put it back to show just the URL links?

    Yahoo is my home page and News, Sports, Business categories/links changed and now shows a few sentences after each main URL link/topic. How do I put it back to show just the URL links/topics without having to scroll down and down the page. All the extra sentences after the links causes too much scrolling to view the topics.

    Those steps did not solve my problem. Here is an example of what I see although it's not exact copy/paste. All I want to see are the links but I get all the verbiage after the links
    Firefox 17.0.1 version
    ''' '''Ask Stacy: How Can I Rebuild My Credit?''''''
    Here’s a question familiar to millions of Americans… Stacy, My wife and I recently filed for bankruptcy due to high medical bills we were unable to pay. We purposefully didn’t add our Wells Fargo credit ...
    Money Talks News
    '''Analysis: High stakes for Cuba in Chavez's cancer battle'''
    HAVANA (Reuters) - As Venezuelan President Hugo Chavez recovers in Havana from his fourth cancer operation, Cubans face renewed worries about their economic future if the country's top ally dies or has to step down from office. Cuba has staked its economic well-being on the success - and generosity…
    41 mins agoReuters
    [$$] Playing FICC or Treat With Bank Investors
    '''Playing FICC or Treat With Bank Investors'''
    The Wall Street Journal
    AdChoices
    '''Cybergeddon
    A digital crime thriller from Anthony E. Zuicker, the creator of CSI. Only on Yahoo!
    And here is what Internet Explore shows: All LINKS below
    '''Molten gold signals mining's return to Calif.'s Mother Lode'''
    '''Century-old fight for Budweiser name hits new snag'''
    '''NRA goes silent after Connecticut school shooting'''
    '''.Authorities: Kansas man who killed 2 cops dies'''

  • PSC 1315 "The print cartridge carriage is stalled."

    I have been using this printer for a couple years. Last week everything was fine but now when I try to print, I get this error message: "The print cartridge carriage is stalled."  I have not changed the ink cartridge, I have not moved the printer, nothing on my computer changed, I use XP and have since I bought the computer. But all of a sudden I now get this message. It wont let me print, if I try to reset the printer, it goes back to this message. I then bought all new ink cartridges (HP brand) and get the same message.
    Any suggestions?

    Try this support document;
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01577214&cc=uk&lc=en&dlc=en&product=374568
    Greetings,
    Bart

  • Pages is sending my documents in docx format, but windows unable to open them. They arrive blank or can only be read as a single line at a time. When view prior to sending the document is divided with black lines after each sentence.

    Pages is sending my documents in docx format, but windows unable to open them. They arrive blank or can only be read as a single line at a time. When viewed prior to sending, the document is divided with black lines after each sentence.

    Windows will only be able to open these if you have Word 2007+. Older versions of Word, for example Word 2003 would require a compatibility pack.
    Perhaps you can try 'Saving As' a different file type instead?
    Regards,
    Steve

Maybe you are looking for

  • BSP-MVC download to excel

    Hello experts, I know there are many threads on this topic in the forum. I tried using method cl_bsp_utility=>download but nothing happens. Here is the scenario - 1. I have BSP 2. From Do_handle_event in controller class I am calling model method whi

  • Adobe Premiere Pro CC constantly crashes when rendering. Please Help!

    Hello everybody and thank you for reading! My problem is whenever I use adobe premiere and decide to render my video my computer crashes and always gives me a different error report. Here are a list of all of the error codes I have received: SYSTEM_S

  • Viewing the output from XI outbound adapter

    Hi, I am running a HTTP outbound adapter. When the message fails I am able to see the payload in SXMB_MONI but when its successful the payload is not visible.Is there a way to look out for the payload after it leaves the outbound adapter? We have som

  • Comments Enable for Commenting and Analysis in Adobe Reader...

    How to run the "Comments >> Enable for Commenting and Analysis in Adobe Reader..." through Javascript or Plugin... Thankzzzzz

  • [svn] 3791: Fix bug when resetting stylesheet on FxApplication

    Revision: 3791 Author: [email protected] Date: 2008-10-21 13:23:09 -0700 (Tue, 21 Oct 2008) Log Message: Fix bug when resetting stylesheet on FxApplication SDK-17691 RTE loading styles When the FxApplication replaces its style sheet, it unloads the p