Print Comments and Page Only

Hi all
I used to be able to print my comments on the same page with lines showing where those comments on the page, but only have those pages with comments be the ones that printed.
Now when I try that feature, it prints out not only the pages with the comments, but all other pages as well which say "there are no comments on this page"
I've tried all of the various options (print on separate pages, print comments only, etc.).
Any thoughts?
Thanks
Gordo

Hi oldstrings,
You can change the print setting to print in grayscale(using black ink only).
I have extracted out the printer setting tips for both windows and mac.
Alternatively, you may refer to the below user guide reference link.
http://h10032.www1.hp.com/ctg/Manual/c04204791.pdf
Cheers,
Bryan
*I am an HP employee*
** Please click "Accept as Solution" if it solved your problem, so others can find it **
***Give Kudos to say "Thanks" by clicking on the thumbs up button under my name***

Similar Messages

  • Printing does not print the web page only the http info at top of page and dated and time at bottom of page, nothing in between. help! Thanks.

    Printing a web page works fine from the microsoft windows browser but fire fox browser will not print a web page only the heading at the top and the date and time at the bottom.

    Does that happen on all pages or only on some?
    You can try to reset the print prefs on the about:config page.<br />
    * http://kb.mozillazine.org/Problems_printing_web_pages
    You can open about: pages via the location bar like you open a website.

  • How do you print comments in pages under mavericks?

    How do you print comments in pages under mavericks? Earlier if show comments was checked, all the comments were visible and could be easily printed. Now only those comments are visible on which the cursor is pointed but even those do not get printed! 

    Thanks to all for to the 'older Pages' suggestion. I don't have the last Pages on my mac anymore (although this is probably just me being really, really dumb), but the suggestion inspired me to try another very similar work around - which was also successful. Just in case anyone's in the same situation as me, am sharing it here!
    For absurd reasons I won't bother to explain, I've also got a version of Word for Mac. I prefer writing on Pages, though, so all my documents (and their comments...) are Pages files. In the really unlikely event that you've also ended up with both Pages and Word (I know...) just export to a .docx file, open it with Word, and print from there. It retains all comments, track chages, etc. This seems really obvious, but I hadn't thought of it...
    This can also be a work around for the lack of 'Compare Documents' and/or 'Merge Documents'.
    Of course this would all be much better if it were actually just in Pages...I hope this helps, and thanks!

  • Print, Export and Page Navigation Buttons in the Report

    When I view a report through CR4E, the generated report has 3 buttons namely Print, Export and Page Navigation buttons. But when I click on either of the buttons I get a &#39;null pointer exception&#39;. This is a critical error as I am unable to navigate past the first page. Do I have to add code to these buttons? If not, why am I getting an error? Kindly solve my problem as soon as possible.

    <p>Looking at your code it appears that you are storing the ReportSource in session prior to passing in the ResultSet. This will create a problem when a postback is made on  the viewer page (which all of the viewer actions do). If you look at the sample code which is generated when you use the JSP Page Wizard you will notice that the ResultSet is passed to the ReportClientDocument object prior to it being stored in session. Then, when the page is called again this object is retrieved and the ReportSource is used by the viewer. You can quickly run the test using one of our sample reports to see what I am talking about. The code below was generated using the Consolidated Balance Sheet.rpt and did not experience any problems doing any of the viewer actions.</p><%@page import="com.businessobjects.samples.JRCHelperSample,<br />com.crystaldecisions.report.web.viewer.CrystalReportViewer,<br />com.crystaldecisions.reports.sdk.ReportClientDocument,<br />com.crystaldecisions.sdk.occa.report.application.OpenReportOptions,<br />com.crystaldecisions.sdk.occa.report.lib.ReportSDKExceptionBase,<br />com.crystaldecisions.sdk.occa.report.reportsource.IReportSource,<br />java.sql.Connection,<br />java.sql.DriverManager,<br />java.sql.ResultSet,<br />java.sql.SQLException,<br />java.sql.Statement"%><%<br /><br /><br />    try {<br /><br />        String reportName = "Sample Reports/Consolidated Balance Sheet.rpt";<br />        ReportClientDocument clientDoc = (ReportClientDocument) session.getAttribute(reportName);<br /><br />        if (clientDoc == null) {<br /><br />            clientDoc = new ReportClientDocument();<br />            <br />            // Open report<br />            clientDoc.open(reportName, OpenReportOptions._openAsReadOnly);<br /><br />  <br />            {<br />                // **** POPULATE MAIN REPORT ****<br />                {<br />                     // Connection Info for fetching the resultSet<br />                    String connectStr = "jdbc:derby:classpath:/Xtreme";<br />                    String driverName = "org.apache.derby.jdbc.EmbeddedDriver";<br />                    String userName = "dbuser";        // TODO: Fill in database user<br />                    String password = "dbpassword";    // TODO: Fill in valid password<br /><br />                    String query = "SELECT CUSTOMER_NAME FROM APP.CUSTOMER WHERE COUNTRY = &#39;Australia&#39;";<br /><br />                    <br />                    String tableAlias = "FINANCIALS";        // TODO: Change to correct table alias<br /><br />                     <br />                    JRCHelperSample.passResultSet(clientDoc, fetchResultSet(driverName, connectStr, userName, password, query),<br />                        tableAlias, "");<br />                }<br /><br /><br />            }<br />        <br />            // Store the report document in session<br />            session.setAttribute(reportName, clientDoc);<br /><br />        }<br /><br /><br />            {<br />                // Create the CrystalReportViewer object<br />                CrystalReportViewer crystalReportPageViewer = new CrystalReportViewer();<br /><br />                //    set the reportsource property of the viewer<br />                IReportSource reportSource = clientDoc.getReportSource();                <br />                crystalReportPageViewer.setReportSource(reportSource);<br /><br />                // set viewer attributes<br />                crystalReportPageViewer.setOwnPage(true);<br />                crystalReportPageViewer.setOwnForm(true);<br /><br />                // Process the report<br />                crystalReportPageViewer.processHttpRequest(request, response, application, null); <br /><br />            }<br />            <br /><br />    } catch (ReportSDKExceptionBase e) {<br />        out.println(e);<br />    } <br />    <br />%><%!<br />// Simple utility function for obtaining result sets that will be pushed into the report.  <br />// This is just standard querying of a Java result set and does NOT involve any <br />// Crystal JRC SDK functions. <br /><br />    private static ResultSet fetchResultSet(String driverName,<br />            String connectStr, String userName, String password, String query) throws SQLException, ClassNotFoundException {<br /><br />        //Load JDBC driver for the database that will be queried    <br />        Class.forName(driverName);<br /><br />        Connection connection = DriverManager.getConnection(connectStr, userName, password);<br />        Statement statement = connection.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);<br /><br />        //Execute query and return result sets<br />        return statement.executeQuery(query);<br /><br />}%><p>Try using the code generated from the wizard to see if it works for you as well. </p><p>Regards,<br />Sean Johnson (CR4E Product Manager) </p>

  • How to print comments in Pages 5.0

    Is it still impossible to print comments in pages?

    When you installed Pages v5, it automatically moved the older Pages ’09 v4.3 into /Applications/iWork '09 folder. If you want normal comment interoperability, you are advised to resume using the older version of Pages. Newer, is certainly not better with Pages v5.

  • I have just establishes my airprint but am unable to instruct the printer to print black and white only.How to proceed please

    i am unable to instruct my printer on airprint to print black and white only. The only option appears to be the no of copies.Any help please

    Both the drivers
    Canon SELPHY CP series Printer Driver 6.2 for Mac OS X 10.8       and the Apple Canon drivers
    may be needed together.  Not sure which will have to be installed before the other.   As for your iPhone, you'll have to enquire on the iPhone forum how to make it work.

  • CP1518ni - not printing black and white only

    I only print black and recently the magenta cartridge started making sounds as a defective cartridge. Since I only have black cartridges on hand so I replaced it with a black one, but it says that the magenta is in the wrong spot. The overide out is on and I don't know how to override this error. Help please. 
    http://h30434.www3.hp.com/t5/Printing-Issues-Troubleshooting/CP1518ni-not-printing-black-and-white-only/td-p/1494733

    Hi , I read your post and see that the magenta cartridge started making sounds as a defective cartridge,  you replaced it with the black cartridge and it was rejected. You are using over ride and still can't print. I would like to help you.
    You have to replace the cartridges for the marked cartridges in the printer.Over ride will allow you to continue printing until one of the toners are completely empty & then will have to be replaced to continue printing. Basically this setting is for you to finish the print job. You will have to replace the magenta cartridge in order to resume printing. If you appreciate my efforts, please click the 'Thumbs up' button below. Thank You.

  • Print black and white only, on Hp photosmart 5514.

    Hi,
    I dont like it at all that i have to contact support forums for something like this.
    it use to be so easy to choose color or black and white printing.
    Why have you made it so difficult ? Totally pisses me off but i leave that for the feedback section.
    I have seen others with the same problem so it is not only me. now it has taken more than 20 minutes and i have to get to work soon.
    So, how do I print black and white (or greyscale) using my newly bought hp photosmart 5514 ? ( is it smart ???)
    I have been wasting a lot of ink now, very unsmooth not having it available in the ordinary printing window.
    Like it matters, i use win 7 blablabla

    I also hate that there is NO WHERE to find a simple answer.  I have a "HUGE" XL cartridge of black only.  Then I have to buy all the stupid little tiny color cartridges AND another little black cartridge.
    Here I suppose: when I print in color, I use the color + small black cartridge.
    When I want to print BLACK ONLY or GRAYSCALE, I choose that and it only prints using the XL big black cartridge.
    WRONG.  And no one can seem to answer this correctly, t but I know it does not work.
    Remove 1 empty color cartridge whole printer won't work, even if I want black print only.
    If all the small "color" cartridges + small blk cartridge is low but the BIG BLACK cartridge is showing full, still won't print BLACK ONLY.
    I cannot PRINT with this stupid printer unless all cartridges have ink and are inserted.  STUPID
    I am now late to work simply because I cannot print a document PERIOD unless I have full color sitting there.
    I just tried it multiple ways, grayscale, black only blah blah and it ALWAYS came out too- light, ie the sm blk cartridge was being used and it is admittedly LOW ON INK.  WHAT is the big black cartridge doing there, saying it is full and not printing "black only" or "grayscale"? 
    The only article I could find that halfway enlioghtened me to the problem was HP page stating that "black"  is never really black, to improve quality (thanks for making the decision for me) HP adds just a bit of color here and there to make black really black for paper quality paper.
    SO SNARLING.  Going to *bay to get refilled cartridges so I can print in a week.  SNARL

  • Printing Black and White ONLY ~ hp deskjet 940c

    I want color!! My color ink ran out & I couldn't afford to get new for a few months. I bought new color (78) and black (15). I replaced the old with the new but it wouldn't print in color as shown on my screen only black and white. The old cartrages had worked really great. What happened?
    I've taken the cartrage out and placed it back in. I've run the test. I've checked my cords and all those things are OK. My computer is an HP Pavilion with WIN XP (pack 2)
    Please help...

    Hi,
    You need to make sure you use genuine HP print cartridges to ensure good quality. HP cannot guarantee the quality of remanufactured or refilled print cartridges.
    To diagnose this issue we need print a standalone test page using button combination on the printer to check whether it is software related issue or cartridge problem. 
    Make sure that protective tape has been removed from the color cartridge.
     Try to Printing a sample page
    1)  Turn the printer on.
    2)  Press and hold the RESUME button until the printer starts printing.
    3)  Release the RESUME button.
    Please refer the link below : To check how the sample page look
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=bpd08785&cc=us&lc=en&dlc=en&product=59129
    If still not printing in color in standalone, Please refer the link blow to fix .
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=bud09657&lc=en&dlc=en&cc=us&lang=en&rule=4014&pr...
    If standalone test page is printing with color, but not printing from pc : Please refer the link below  to fix
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=bud09113&lc=en&dlc=en&cc=us&product=59129&lang=e...
     Hope this should help.

  • Saving comments and markups only

    I have been working with construction blueprints an make comments and markings on teh PDF files.  Of course when a new revision of plans comes out One would have to paste the comments back on the revised plan.  Any way of doing a kind of overlay so all the old comments could be pasted on the new set of plans.   I understand that this would be done a page at a time and not for all 200 pages.
    Working with Acrobat 4 and Adobe 8 Standard.
    Thanks

    Ok, some background.
    Comments and markups are an extra layer on top of PDF. Many PDF tools don't consider them a proper part of the page and ignore them.
    So the first question is: what are the PDF tools here?
    You probably assume that placing PDF as graphics into Word is the most usual thing in the world. In fact, it only works in Mac OS, and with certain versions of Word. (Acrobat isn't involved in any way).
    It works because Mac OS X has support for reading PDF files built into it. Macintosh Word just uses this to allow the PDF to be treated as if it is a graphic file. Clearly, Mac OS doesn't consider the annotations part of the page, and ignores them when it lets you treat them as a graphic.
    Your solution, apart from accepting this as the order of the day, is to "flatten" the comments and markup so they are part of the page. I will leave it to others to suggest the best way to do that.

  • I can not print black and white only documents and I have a full black ink cartridge

    I have been an loyal HP customer since the orginal laserjet in the early 90s and then many inkjets from HP after that.  
    I bought an HP 6600 All in one for the house and have only ever printed in black and white. 
    For some reason one of the color ink carts is empty after a few months of black and white only printing.   No problem - I only print in black and white - or so I thought. 
    Nothing I have been able to do (aside from buying a color cart I don't need) is able to tell the printer to not worry about color and only use the black and white cart.  Past inkjets from HP didn't have a problem with this.
    Please tell me HP didn't do this on purpose and is going to trying and justify the need for me to buy any color carts if I never print in color.  HP - if you did and you are going to try and tell me you neeeded to do this for any reason then someone please sign me up for the class action lawsuit if you are an attorney looking for plaintiffs.  
    However, I am sure I am overlooking some simple setting on the 6600 to move past this annoyance. 
    Thanks!

    Hi Atlanta90210,
    We appreciate your brand loyalty, and I'm very sorry for the frustration this has caused.
    There is a lot of good information in Cannot Print When One of the HP Ink Cartridges is Empty. It explains how your printer works and how it is designed. Another good resource is posted here.
    In the first link I mentioned, there are steps to print with black ink only. I have a similar printer to this at home (with the same print mech), and I have found that the steps to print with black ink only have saved me lots of ink.
    There needs to be ink in all the cartridges for this printer to continue printing (after the cartridge's reserve mode is depleted). Once you have replaced the empty cartridges, you can change the print settings to print with only black ink so the printer doesn't use color ink. Until then, there is not a way to bypass this.
    I know this is not the answer you were hoping to receive, but I do hope it was helpful.
    I'd be happy to help you with any other questions or concerns. 
    -- ReverseTalk
    I work on behalf of HP.
    Click the thumbs up + button if I have helped you. Mark Accepted Solution if I solved your inquiry.

  • My photosmart C7250 all-in-one used to allow me to print black and white only, now it won't

    My photosmart c7250 all-in-one used to allow me to print in black and white only if I changed properties to print in grayscale, black and white only.  Now it says it won't print until I replace one of the empty color cartridges.  I do no understand why the color cartridges are running out when I only use my black cartridge. 

    I still don't understand the difference between what I used to be allowed that I'm not allowed now.  I was able to bypass the empty color cartridges by changing my print property to "grayscale" and "black only".  Now I'm not allowed to bypass???

  • Printing black and white only

    My printer keeps printing out in color. It seems to have noted I have some links on my invoice which is an email and web address.
    Is there a way to print my invoices in black and white only?

    As far as I know, every printer driver give the ability to print in Black and White only.
    It just require a choice in the print dialog.
    Yvan KOENIG (VALLAURIS, France) lundi 25 avril 2011 11:56:17

  • Printing an ALV Report: Header to be printed on first page only

    Hi All,
    I was just wondering if there's a way such that the header of an ALV report appears on the first page only when the report is printed out?
    Thanks for your replies.
    Edited by: Chris Estanislao on Sep 21, 2010 4:22 AM

    Hi Chris,
    Which ALV technique will you use to print out?? (LIST, GRID or something else...).
    Please give us more information.
    Thanks,

  • HP 1050A J410g wont print black and white only colour

    Hello,
    My HP1050A J410g - 14 months old hardly ever used stopped printing black and white.
    Colour will print.
    No error message
    Test page prints blank
    Cartridges are new and not empty.
    Paper feeds through but prints blank.
    Please help.
    Thanks

    Good day and welcome to the forums londonsw,
    I saw your post about your HP Deskjet 1050A no longer printing in black. I would like to offer my suggestion to you that might help.
    Please click the guide and follow the steps: Fixing Ink Streaks, Faded Prints, and Other Common Print Quality Problems
    If the troubleshooting does not help resolve your issue, I would then suggest calling HP's Technical Support to see about further options for you. If you are calling within North America, the number is 1-800-474-6836 and for all other regions: click here.
    Have a wonderful Monday
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

Maybe you are looking for

  • Media Encoder encodes same AE composition no matter what.

    I'm using Media Encoder CC to encode an AE composition. I open AME and select "Add After Effects Composition", select H.264 in an .mp4 wrapper and let it encode. Great results for a client draft. The issue I'm having is that if I make changes to the

  • Put VHS onto DVD

    Our last module at uni is a documentary and we need some old footage but it is on a VHS tape. This, I believe could be done at uni but I have a VHS player and the cables to go from the VHS player to USB. The question is can I use FCP 7 to tranfer the

  • Score() operator fails in dynamic SQL

    When I try to use the score() operater in dynamic SQL statement, I get "ORA-01858: a non-numeric character was found where a numeric was expected". When the same statement is executed directly (in a cursor or from SQLPlus) it works fine. I suspect th

  • Delete a number range Group in internal order

    Dear experts! Now, I'm getting some issue about maintain number range group in internal order. So I defined a number range group, after that I want to delete the number range group. How do I have to do? Best regards, Huy

  • Where to buy german keyboard in Beijing?

    I'm the whole next time in China and I need a german wireless keyboard for my MacBook. 1. When I go to the Apple-Store, I get the answer they don't have it and I need to order over my german Online-Store. 2. When I like to order over my german Online