How to view non-printing marks

In FrameMaker 10 , can you view non-printig marks?  In MS Word, you can show all paragraph marks and it will show the little dots between words, for exapmle.  Does FrameMaker have this?  (all I found was View Text Symbols, but that does not show the spacing marks).
Thanks.

With TextSymbols ON you will see tabs, NL and ¶ as well as others - but there is no way to make spaces more visible than they are ...
Since all other "white space characters" than blank are made visible by a special font, you are certain that blanks are just that.
HTH Klaus Daube

Similar Messages

  • How to view Smartform Print Preview

    Hi,
    I have a Sales Order, Print output   is issued which has smart form  &  Print Program. Can you explain me how to view the print preview again for the Sale Order for which ouptut has been issued in ECC 5.0.
    Many Thanks
    Lakshmi

    Hi Atish,
    I did tried by going VA03 Screen & then Selected
    Extras- Output - Header - Print Preview from Menubar
    but no luck I cannot see  Print Preview of the output.
    Thanks
    Lakshmi

  • How to view and print pdf files

    how to view and print pdf files

    Download and install Adobe Reader: Adobe Reader Install for all versions
    Open the PDF file using it. If security restrictions don't prevent it you could also print it.

  • How to view my printer history?

    For some reason when i went to my mothers for the summer my dad decided to use up all of my ink.  When i left i had only used the printer at the most 10 times for school, but when i got back i went to copy my school schedule and it said that the ink level was really low.  I asked my dad how much he used my printer and he said that he only used it to print "a couple of pages".  I told him that he had to have used it more than that and that he has to get me more ink now. He then said that he did print many pages and that he wasn't getting me any ink.  I don't care what he printed i just want to show him that it was a little more than a "few pages" and that he needs to pay for the next thing of ink.  My printer is a Photostat 5510d B111h and I think that when i first got it i somehow saw the print history but am not sure so if someone could please tell me how to view it if i can because I have an 2 english reports, a drivers ed paper, and a spanish essay due from 3 days to 1 week.
    This question was solved.
    View Solution.

    The test page printed in Solution Six on this document has information on how many pages have been printed.
    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

  • How to view the print dialog

    Hello,
    Does anyone know how I can view the print dialog on the client's screen instead of the server screen. I use java.awt.print classes.
    Frame f = new Frame("test");
    f.pack();
    PrintJob pj = f.getToolkit().getPrintJob(f,"PRINTING NCN", new Properties());
    Paper paper = new Paper();
    paper.setImageableArea(0,10,74,105);
    PageFormat pageFormat = new PageFormat();
    pageFormat.setPaper(paper);
    if (pj != null) {
         Graphics g = pj.getGraphics();
    Thx.

    if what you want, it is to print what it is seen in the server in the client, you must follow these steps:
    1. server: make an screen capture in a JSP page and send the image to the client in jpg format
    2. client: show the jpg image in a hidden frame or window and use javascript to show the print dialog
    3. client: the javascript code is parent.print();
    This works. I sure.
    Good luck.

  • How to view and print xps documents with Safari

    Is there a way to view and print Microsoft *.xps using Safari?

    xps is a Microsoft Proprietary format. There is a third-party viewer app, but I don't know how well it works or if it is compatible with Lion: http://www.nixps.com/index.html

  • How to view (or print) all the links (URL's) of a webpage?

    Years ago, when I was a Windows user, I recall my browser (IE or Firefox, can't recall which) having an option where I could print *all* the weblinks (URL's) at the end of the article.  I don't see this option anywhere in Safari.
    I'd not only like to print them, but even more-so, to *view* the URL's, so I can copy/paste them into a TextEdit file.
    Are any of these features possible in Safari 7.0.6 ?
    Thanks!

    Don't know much about SOA Composer (sorry - you've hit the BPM forum), but you should be able to see the business rules from the Oracle BPM Composer. If you've installed BPM, go to http://xx:####/bpm/composer and you'll see business rules after poking around a little. Let me know if you need more help finding them.
    Dan

  • How to view non-retina PSD?

    I'm trying to work on a web design layout PSD that was created on a non-retina mac. When I open it in Photoshop CC on my new retina mac, the file is tiny and is impossible to work on. How do I remedy this?

    Hi Turtleduvet,
    The retina display should not affect the size of your file, it only changes how sharp your computer display is. That said using a non-retina display Mac and a retina display Mac should not affect your actual files. With that said, here is a link to our Photoshop Saving Images help page, this should help you learn about the different file formats and how to save large files.
    Hope it helps!
    Clarice

  • Please help with newline non-printing character in JTextPane.

    Hi.
    I need to implement "View non-printing characters" feature in my JTextPane.
    So when this feature is toggled, the newline character is displayed at the end of every line like in Microsot Word editor.
    I been digging around for few hours now and I cant find a solution for this.
    Please help me with any tips guys.

    StanislavL:
    ok i digged around and i found code example... i got my code to show "X" at the end of every line as a newline character. here is code I used:
    import javax.swing.text.StyledEditorKit;
    import javax.swing.text.ViewFactory;
    import javax.swing.text.Element;
    import javax.swing.text.View;
    import javax.swing.text.AbstractDocument;
    import javax.swing.text.LabelView;
    import javax.swing.text.IconView;
    import javax.swing.text.StyleConstants;
    import javax.swing.text.ComponentView;
    import javax.swing.text.BoxView;
    import java.awt.Graphics;
    import java.awt.Shape;
    import java.awt.Rectangle;
    class MyEditorKit extends StyledEditorKit
         public ViewFactory getViewFactory()
              return new MyRTFViewFactory();
    class MyRTFViewFactory implements ViewFactory
         public View create(Element elem)
              String kind = elem.getName();
              if (kind != null)
                   if (kind.equals(AbstractDocument.ContentElementName)) {
              return new LabelView(elem);
                   } else if (kind.equals(AbstractDocument.ParagraphElementName)) {
    //              return new ParagraphView(elem);
                        return new MyParagraphView(elem);
                   } else if (kind.equals(AbstractDocument.SectionElementName)) {
    //              return new BoxView(elem, View.Y_AXIS);
                        return new MySectionView(elem, View.Y_AXIS);
                   } else if (kind.equals(StyleConstants.ComponentElementName)) {
                        return new ComponentView(elem);
                   } else if (kind.equals(StyleConstants.IconElementName)) {
                        return new IconView(elem);
                   // default to text display
                   return new LabelView(elem);
    class MySectionView extends BoxView {
         public MySectionView(Element e, int axis)
              super(e,axis);
         public void paintChild(Graphics g,Rectangle r,int n) {
              if (n>0) {
                   MyParagraphView child=(MyParagraphView)this.getView(n-1);
                   int shift=child.shift+child.childCount;
                   MyParagraphView current=(MyParagraphView)this.getView(n);
                   current.shift=shift;
              super.paintChild(g,r,n);
    class MyParagraphView extends javax.swing.text.ParagraphView
         public int childCount;
         public int shift=0;
         public MyParagraphView(Element e)
              super(e);
              short top=0;
              short left=20;
              short bottom=0;
              short right=0;
              this.setInsets(top,left,bottom,right);
         public void paint(Graphics g, Shape a)
              childCount=this.getViewCount();
              super.paint (g,a);
              int rowCountInThisParagraph=this.getViewCount(); //<----- YOU HAVE REAL ROW COUNT FOR ONE PARAGRAPH}
              System.err.println(rowCountInThisParagraph);
         public void paintChild(Graphics g,Rectangle r,int n) {
              super.paintChild(g,r,n);
              //g.drawString(Integer.toString(shift+n+1),r.x-20,r.y+r.height-3); // line number
              g.drawString("X",r.x+r.width,r.y+r.height-3);
    }this line here draws "X":
    g.drawString("X",r.x+r.width,r.y+r.height-3);How would I modify this to draw a small picture there?
    Thanx a lot.

  • Removing printer marks

    how do you remove printer marks from your PDF
    document?

    ChrisMercianLabels wrote:
    In case it helps find the solution, the issue can be re-created by:
    1) Create a new Illustrator document with 1 artboard (number not important) and add some random shapes to it.
    2) Save the document as a PDF and under the Marks and Bleeds section tick the "All Printer's Marks".
    3) Create a new Illustrator document (again the number of artboards is not important).
    4) Place your previously created PDF in step 2 into your new document.
    5) Embed the PDF.
    Okay, all is normal up to this point.
    6) By either using the Direct Selection Tool and clicking down into the grouped image, delete the printer marks so you are just left with the random shapes created in step 1.
    This is where the discrepancy must creep in. The placed PDF with printer's marks comes in as a "clipping group" contained in a rectangle the size of its original artboard + printer's marks. It's possible the printer's marks themselves bring along some nested clipping paths too. How certain are you that you are deleting everything but the "random shapes created in step 1"? If you are not releasing the clipping path(s) and/or un-grouping anything, it's very possible you're leaving frames which have no stroke and no fill.
    7) Now try centring the artwork to the artboard and depending on which alignment option you choose the artwork will shift to the right or down.
    Do you work with "edges" or "bounding box" visible? When you select the artwork to align, does the bounding box tightly surround the objects, or is it still the size of the original placed PDF?

  • In VIEWING (to print) my iTunes music (in finder), how can i view subfolders without clicking on the  triangle of each main folder?

    In VIEWING (to print) my iTunes music (in finder), how can i view subfolders without clicking on the  triangle of each main folder?
    I am trying to print a list of all my music. For example, main folder is BEATLES.  Subfolders are Magical Mystery Tour, Yellow Submarine, Abbey Road, etc...
    and I want to view and print all the subfolders. This is a recovery project after my hard drive failed. I know this is truly a "finder" question and will double post there.
    Thanks.
    Amy

    amy lynn wrote:
    way too much ink.
    Don't know what this means but okay.

  • HT4059 i purchased a tour guide book and would like to view and print from my PC, how can I?

    i purchased a tour guide book and would like to view and print from my PC, how can I?

    You purchased an ibook?
    Can I print my books and PDFs from iBooks?
    Yes, you can print PDFs and notes you've entered from iBooks, but the option to print ePub books is not available.2You can also email PDFs and notes you have written from iBooks."
    iBooks: Frequently Asked Questions (FAQ)

  • How do i transfer photos from iphone 3gs to computer for viewing or printing?

    how do I transfer pictures from my Iphone to my computer for viewing or printing?

    here you go
    http://support.apple.com/kb/ht4083

  • How do i view and print pdf file in mac osx with ff4.0?

    How do i view and print pdf files in ff 4.0 on a mac with osx. for some reason the updated ff version does not support it. Makes no sense that something that worked in an earlier version now does not...
    Thanks,
    Ron

    Please don't post the same question multiple times!

  • Photosmart 7520 - How to view on screen the printer status report

    How do I view on the monitor or printer screen the 'Total pages printed' figure, which otherwise I need to frequently print out via "Maintain your computer>Device reports>Print Status report"?  I'm using HP Photosmart 7520e, wireless connected, Windows 7 Ult.  Thanks.
    This question was solved.
    View Solution.

     Hello emmandell,
    Welcome back to the HP Support forums.  I understand that you would like to learn how to view your page count without having to print a Printer Status Report.
    The information can be viewed online using the printer's embedded web server (EWS).  Please follow the steps below:
    1)       Press the wireless icon  on the front panel of the printer to find the printer's ip address.
    2)      Type the ip address of the printer into the address bar of your browser, this will bring up the EWS. I recommend that you bookmark this web page for future use.  Then please click on 'Tools' tab.
    3)      Click on 'Reports' along the left hand side menu
    4)      This will print up a usage screen with the total page count shown across the top
    Hope this helps you save on ink and paper.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

Maybe you are looking for