Whitespace between lines?

Hey, I am using a JEditorPane to display an HTML formatted document. The spacing between lines of text seems to be a bit much, is there any way for me to adjust that? Or is the spacing between lines set and cannot be changed in a JEditorPane ??
Thanx in advance, Bill.

I already have, cellpadding is zero and cellspacing is zero, but line spacing all on it's own is larger also, even in tables, I know HTML pretty well and it works on other browsers so I know it's a JAVA thing. :0)
Thanx anyway, Bill.

Similar Messages

  • Getting rid of too much whitespace between rows of textfields

    I'm creating a form with Arial, 8pt text fields (labels with associated textboses).  I have too much whitespace between the rows of text fields.
    Is FormCentral flexible enough to allow me to set some property of the form to remove some of this white space?  or do I need to use Adobe Acrobat for that?
    When I try to move the row of text fields up in FormCentral, as soon as I release the move the textboxes snap back down to their lower position. 
    When I print out the .pdf, there is all this white space between rows and my form prints on two pages instead of one.
    Thanks, Susan

    Susan,
    FormsCentral does not have any settings that will allow you to change the vertical spacing between lines.  This is a limitation of both FormsCentral and HTML.  Something you can try to mitigate the issue is to change the Labels from Labels on Top to Labels Right or Labels Left.  When you print your form to pdf you can get a preview of how it will layout by changing the form design view from Web View to Page View (use the View menu).  How the form prints to PDF should match how it looks in Page View.  If this is not the case then please let me know.
    Jeff Canepa
    Software Quality Engineer
    Adobe Systems, Inc.
    [email protected]

  • Page break between line items and address in invoice

    Hi Team,
    I am getting a Page beak problem between line items in an invoice.
    If i have 10line items which needs to be displayed in the output all are displayed in 3 pages. but my problem is when displaying the line item details in any page it should be fully displayed on the same page else it should go to the next page for display.
    Each line details needs to be printed on same page only (currenty Items and adresses are split up in different pages. ).
    Please let us know how can i solve this.
    Thank you for your help.
    Best Regards,
    Kumar.

    Hi Karthik,
    Thank you for your answer.
    I have already done creating a folder and grouped the text elements as you have suggested in Mainwindow. I guess my explanation on my issue is not clear.
    Actaully after printing the number of line items in an order we are printing the Certificate recevier details as a last row which is now having the problem, and it is getting truncated into two parts when enough space is not there to print on the same page.
    If i make the text element related to the  Certificate receiver properties to Page protection will it work ? i will try this option now..
    Mean while any suggestion on this regard is welcome.
    Thanks alot for your help.
    Best Regards,
    Kumar.

  • Table to see the link between line items on bank statement to customer invo

    table to see the link between line items on bank statement to customer invoices

    Hi,
    There is no link from VBRP to BSEG directly.
    This is because the data in BSEG is posted to various accounts and the VBRP is usually for a Sales Order or Delivery.
    However there is a link from BKPF to VBRK and VBRK is linked to VBRP.
    BKPF-AWKEY has the the Invoice number VBRK-VBELN
    Hope this helps.
    regards,
    Advait

  • I have multiple lines for family members on my account. Can I still transfer upgrades between lines? I don't see the option any more.

    I have multiple lines for family members on my account. Can I still transfer upgrades between lines? I don't see the option any more.

    More everything. I have one line coming up on the 19th of this month and I'd like to transfer to another user with a later upgrade date. Just not seeing the option anywhere.

  • How do I add space between lines of text in the same cell on Numbers 3.0.1

    I just updated to Mavericks 10.9. In numbers, I used to be able to uncheck a box in the inspector that would make it so the Return key did not move to the next cell, but instead allowed me to add more space between lines of text in the same cell.
    How can I do this in the new version of numbers?

    HI ilb,
    Numbers 3 is a complete rewrite of the application. This preference option hasn't (yet) been included, but N3 is very much a 'work in progress. A word to Apple via Provide Numbers Feedback asking to have this option included in Numbers 3 might be a useful step. You'll find Provide Numbers Feedback in the Numbers menu in Numbers.
    Regards,
    Barry

  • Since changing over to Mountain Lion I discover that I am no longer able to adjust spaces between lines. If I choose spacing of 1.3 after two lines single-spaced, the entire previous lines end up with 1.3 spacing. What am I missing?

    Since changing over to Mountain Lion I discover that I am no longer able to adjust spaces between lines. If I choose spacing of 1.3 after two lines single-spaced, the entire previous lines end up with 1.3 spacing. What am I missing?

    Do those previous lines have a Return/Linefeed after them, or are they just wrapped to a new line?
    What App is it you're using?

  • How do you change the spacing between lines of text?

    using Dreamweaver 6 how do you change the spcing between lines of text. Not seeing it as a option in the page properties menu.

    Try CSS line-height property.
    Kenneth Kawamoto
    [link removed by moderator]

  • How do I Dbl. space between lines in a Document?

    How do I dbl. space between lines n a document or E-mail? LOH

    HI ilb,
    Numbers 3 is a complete rewrite of the application. This preference option hasn't (yet) been included, but N3 is very much a 'work in progress. A word to Apple via Provide Numbers Feedback asking to have this option included in Numbers 3 might be a useful step. You'll find Provide Numbers Feedback in the Numbers menu in Numbers.
    Regards,
    Barry

  • How do I reduce the space between lines in a JTextComponent?

    I've searched pretty thoroughly in this forum and can't find an answer.
    My editor displays text fine, but I'm not happy with the space between lines. Is there any way I can reduce the overall height of each line just to close the gap a little?

    Okay, I've got it worked out. I reckon it will work for my purposes although I have yet to test it in my app.
    The trick is to use a negative value for the StyleConstants.setSpaceAbove(spacing2, -5.0f);The code below shows a comparison between a text pane with default spacing values and a text pane with that -5 space above value.
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.text.*;
    public class TestTextPane extends JFrame
    public TestTextPane()
         super("Text Pane Test: LineSpacing");
    JPanel panel = new JPanel();
    setContentPane( panel );
    JTextPane textPane = new JTextPane();
    textPane.setFont( new Font("monospaced", Font.PLAIN, 12) );
    textPane.setText( "abcdefghijklmnop\none\ntwo" );
    SimpleAttributeSet spacing = new SimpleAttributeSet();
    StyleConstants.setLineSpacing(spacing, 0.0f);
    StyleConstants.setFirstLineIndent(spacing, 0.0f);
    StyleConstants.setSpaceAbove(spacing, 0.0f);
    StyleConstants.setSpaceBelow(spacing, 0.0f);
    StyleConstants.setUnderline(spacing, false);
    StyleConstants.setItalic(spacing, false);
    StyleConstants.setBold(spacing, false);
    //this line sets the attributes for the text specified by the first two arguments.
    textPane.getStyledDocument().setParagraphAttributes(0, textPane.getDocument().getLength(), spacing, true);
    JScrollPane scrollPane = new JScrollPane( textPane );
    scrollPane.setPreferredSize( new Dimension( 200, 200 ) );
    //set up the comparison
    JTextPane textPane2 = new JTextPane();
    textPane2.setFont( new Font("monospaced", Font.PLAIN, 12) );
    textPane2.setText( "abcdefghijklmnop\none\ntwo" );
    SimpleAttributeSet spacing2 = new SimpleAttributeSet();
    StyleConstants.setLineSpacing(spacing2, 0.0f);
    StyleConstants.setFirstLineIndent(spacing2, 0.0f);
    StyleConstants.setSpaceAbove(spacing2, -5.0f);
    StyleConstants.setSpaceBelow(spacing2, 0.0f);
    StyleConstants.setUnderline(spacing2, false);
    StyleConstants.setItalic(spacing2, false);
    StyleConstants.setBold(spacing2, false);
    //this line sets the attributes for the text specified by the first two arguments.
    textPane2.getStyledDocument().setParagraphAttributes(0, textPane2.getDocument().getLength(), spacing2, true);
    JScrollPane scrollPane2 = new JScrollPane( textPane2 );
    scrollPane2.setPreferredSize( new Dimension( 200, 200 ) );
    panel.setLayout(new FlowLayout());
    panel.add( scrollPane );
    panel.add( scrollPane2);
    public static void main(String[] args)
    TestTextPane frame = new TestTextPane();
    frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
    frame.pack();
    frame.setVisible(true);
    }

  • Difference between line type and internal table?

    Hi..
    I wanted to know, what is the difference between Line type and Internal Table?

    Hi,
        Before the 4.7 release in SAP if we want to define an internal table we have to write the defination using the occurs statement and we need to define all the fields using INCLUDE STRUCTURE or indidually all the fields ine by one.
    From 4.7 release of R/3 SAP introduced the Line type concept and it's part of the ABAP OOPS concept. for internal table defination we don't need to use the occur statements. Instead INCLUDE structure  we need to create a Line type for that structure in Se11 and then we can define the internal table like :
    DATA : ITAB TYPE TABLE OF <LINE_TYPE>.
    Only thing is this table will be  a table without header. So for internal table processing we need to define a work area structure of type line of line type  . EX:
    DATA: WA_ITAB TYPE LINE OF <LINE_TYPE>.
    Hope this helps.
    Thanks,
    Greetson

  • How to reduce space between lines in Thunderbird

    newest TB update changed the look of TB with too much space between lines everywhere; would like to change back so to have more lines visible and not as spaced out in height, so I can see more folders and emails at once

    Interesting....as there hasn't been any changes in what you describe.
    Did you use a theme addon or the default theme?
    Check that no addons are interfering with the view.
    so restart in Thunderbird Safe mode.
    Help > Restart with addons disabled.
    If this improves what you are seeing then one of your addons is causing it.
    Process of elimination, disabling one a ta time to see which one it is. Maybe an addon needs to be updated.
    If you changed your screen resolution then it would effect the size of icons on desktop, all windows you open etc. Less dpi size increases the display items.

  • No Spacing Between Lines

    My new glasses have been not quite right but this problem seems to be here at the discussions only ~ for me anyway.
    There is no spacing between lines, not single spacing just jammed up under each line above when it is in the same paragraph. Very difficult to read.
    If it is at my end can someone advise me how to rectify it. If it is at Apple's end then please rectify it.

    mira --
    Glad things have settled down.
    May I make a suggestion?
    In the future, when it's only happening on one site,
    be sure to let us know that, OK? And give us the link, as well.
    Apple Discussions has been having severe problems
    for the last 2-4 weeks, and we could have told you immediately
    that the problem was here -- Not with your glasses (been there, done that !)
    and not with your Mac but here with these forums.
    Hopefully it will be squared away soon.

  • Spacing between lines - I'm an idiot

    Hello,
    I am used to Appleworks, and Pages is proving tricky for me. This is probably an idiotic question, but HOW do you set it to change from single to double or triple spacing between lines? This is my first posting, and I would be so grateful for an answer.
    Farnsworth
    Mac OS X   Mac OS X (10.4.4)  

    No, you're not an idiot. The space after lines setting is similar in AppleWorks & Pages, it's just that it's turned on by default in Pages & not in AppleWorks. In Pages go to the text inspector (the big T) & adjust the line & before/after paragraph spacing to your liking. By default, 12 point after paragraph spacing is set in the default, blank template. While you're making these changes, you might want to consider making any other settings such as font, margins, etc. & saving the document as a template you can use for your default.

  • Huge Gaps between lines... Please Help!!!

    Hello, On various sites when i view them i get really large gaps between lines. view this screen shot:
    http://www.meyerfredericks.com/badbrowser.jpg
    How do i fix this... it does it on firefox now too since i upgraded to 3.0. So i have two browsers that do this. Please help, it's soooo annoying!

    Hi and Welcome to Apple Discussions...
    For both browsers, Safari and Firefox locate these files:
    com.apple.safari.plist and com.mozilla.plist
    The are here: /Users/YourName/Library/Preferences. From the Preferences folder, drag those files to the trash, empty the trash and reboot. It's ok to delete a pref file, sometimes they can get corrupted.
    Also, get Onyx, it's FREE and available here; http://www.apple.com/downloads/macosx/systemdiskutilities/onyx.html
    Download and install Onyx. Run the Maintenance and Cleaning Scripts once a week to keep your browsers happy.
    Carolyn

Maybe you are looking for

  • How do I get apps I've already bought on my phone to show on my new iPad?

    I just purchased an iPad mini.  I restored it from my iPhone, rather than setting it up as a new iPad, thinking that I would then be able to see all my apps,  However, none of the apps I have on my iPhone are available on the iPad.  I went to the app

  • Satellite Pro A200-16YT - Wireless adapter card upgrade to 802.11n

    Satellite Pro is A200-16YT (PSAE1E) with Windows XP Professional SP3. I have been trying to increase my existing 54 Mb/s wireless network speed by replacing the existing Atheros AR5007-EG 802.11a/b/g with the faster 802.11n adapter. The Atheros drive

  • Error in SFP (SOAP Exceptional error)

    Hi, I have ECC 6 and Adobe livecycle designer 7.1 installed in my system. When Im trying to design layout in SFP (via. layout button) it is taking me to Adobe form designer(i have done with interface and print program step) however when im executing

  • Cannot complete successful installation of Yammer 3.1.4 Web part on SharePoint 2010 Standard

    I have installed Yammer server component successfully. I have inserted the Yammer Web Part (Ver 3.1.4) onto a page in SharePoint 2010. However, when in view the page the place on the page where the web part should how up has an error: System Exceptio

  • How can I delete Mail To Do tasks?

    I have started using the To Do function in the Mail program and is very handy. I notice that when I check off a To Do task it no longer shows up in the list which is great. But the completed tasks are showing up in another program I have that links t