How to reduce the space between to words in Scripts?

Hello Friends,
  How can I reduce the space between to words in Scripts?
Thanks & Regards
   Sathish Kumar

use &ekpo-ebeln(C)& it is for reducing the space...
if you are trying to codense the space in prog  and then want to pass that to script use
condense ekpo-ebeln <no-gaps>.
<no-gaps> is optional ...so as per your requirement you can use it
regards
shiba dutta

Similar Messages

  • How do reduce the space between the front panel and the display area

    I am trying to reduce the space between the front panel and display area but i am not able to reduce the space

    A picture would be very helpful in demonstrating what you are having trouble with.
    Lacking that, I will guess.
    VI Properties >>> Windows Size
    lets you define the minimum size of a FP window.
    Well that's my guess!
    Did I win?
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • How to adjust the space between images in a carousel or images with horizontal scroll

    I use the next steps to create a carousel or horizontal scroll of images:
    Webcenter portal: Spaces
    Spaces
    Manage Settings
    Pages
    Create page
    Content management
    Content presenter
    Add images with Plus Icon
    It works, but between every image has a lot of space, can you tell me how to reduce the space between every image.
    My Oracle Version 11gR1 (11.1.1.3.0)
    Regards
    Tomas Reyes

    Remove line 234 in your HTML code.
    <p>& n b s p</p>
    This is a redundant line of code. Your spacing should get resolved.
    PS: I've given spaces between the tag because otherwise this forum would not display the line correctly.

  • How to eliminate the space between two analysis in the Dashboard?

    Hi All,
    I have created a Dashboard which contains 12 analyses arranged vertically. When i see the report in the dashboard section it contains some standard space between each analysis. So it looks like separate separate analysis arranged in dashboard. But i want it to look a single table is it possible by reducing the space between every analysis? If possible please let me know how to achieve this in clear manner.
    Awaiting your valuable responses.
    Thanks in Advance
    Thenmozhi

    Hi,
    Yes,try to adjust the analysis view (table/pivot/chart view )Formating option...
    FYI: try to align formating left,right,top/bottom padding and also try to reduce the width and height..
    Please refer the below
    Re: Eliminating the space between two reports in OBIEE dashboard page Section
    THanks
    Deva

  • How to manage the space between a table and its title?

    Have tables where titles are very close to the main text and need a couple of points to separate these elements. How to reshape this space?
    1. Titles were separated by a return that is not  visible...  (any code is revealed by ID)
    2. When a Return is inserted after the title, nothing happens aparently, but this return is now visible and could be used as a «paragraph space after» value:
    3. A solution could be Grep to catch the end of paragraph assigned to titles to insert a return;
    but Grep only catches the right border of the table (the yellow mark shows the big blinking cursor);
    Grep cannot see the end of paragraph in the tables's title.
    It another method?
    Basically, how to modify the space between a table and ists title

    I think you and Bob are not in synch here.
    Bob suggested that you could use paragraph spacing, but for that to work you do need to use separate paragraphs for the title and table, which you don't seem to be doing. Using GREP to find the end of the paragraph only works if there IS and end to the paragraph. As far as I know there is now meta-character to use in Find/Change that would allow you to find a table and insert a paragraph break ahead of it, but I bet it could be scripted.
    I'm not quite sure what you were trying to find in the GREP you posted. Did you actually have a paragraph return inserted already after the title? In that case you only need to redefine the style for that paragraph to add the space (or redefine the style for the paragraph that holds the table itself). You don't need the GREP. But the reason it does nothing is that you've found a location -- the end of the paragraph, but haven't found any actual text to modify. To do anything you would need to use something like .$
    But back to NOT having a separate paragraph... If you put the cursor in any table cell and go to Table Options > Table Setup tab you'll see fields to set space before and after the table that should do what you want. That was the second part of what he posted.

  • 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);
    }

  • WAD - How to Minimize the Space Between Drop-Down Box and Table

    Hi all,
      I am trying to display a query in 'Table' with Web Application Designer (WAD). First, I have placed the 'Drop-down box' web-item and 'Table' web-item below it in the Web Template. There is an half-inch of space between the 'Drop-down box' and the 'Table' when it displays on the browser. It doesn't look good with this gap.
      How can I eliminate or minimize this gap, PLEASE ?.
    Thanks.

    Hi Ingo & Hari,
       Thanks a lot for your help. Now it reduced the gap between the drop-down box and table to 3mm on browser.
    But, there is no gap on web template. If we change some settings, we could still further reduce the gap while displaying it on browser.
      Any new suggestions, PLEASE.  Thanks again.
    <!--BW HTML data source object tags: -->
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="SET_PROPERTIES"/>
             <param name="TEMPLATE_ID" value="TESTWBOLAPQUERYUSER1"/>
             TEMPLATE PROPERTIES
    </object>
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="SET_DATA_PROVIDER"/>
             <param name="NAME" value="DATAPROVIDER_1"/>
             <param name="QUERY" value="Z_BWSTAT_OLAP_PER_QUERY_USER"/>
             <param name="INFOCUBE" value="0BWTC_C10"/>
             DATA_PROVIDER:             DATAPROVIDER_1
    </object>
    <html>
      <head>
        <title>BW Web Application</title>
        <link href="/sap/bw/Mime/BEx/StyleSheets/BWReports.css" type="text/css" rel="stylesheet"/>
      </head>
      <body>
    <P align=left>
    <TABLE cellSpacing=1 cellPadding=1 width="75%" border=0>
      <TR>
        <TD vAlign=top><object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="DROPDOWNBOX_1"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_FILTER_DDOWN"/>
             <param name="DATA_PROVIDER" value="DATAPROVIDER_1"/>
             <param name="WIDTH" value="69"/>
             <param name="IOBJNM" value="0TCTUSERNM"/>
             ITEM:            DROPDOWNBOX_1
    </object></TD>
        <TD vAlign=top><object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="DROPDOWNBOX_2"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_FILTER_DDOWN"/>
             <param name="DATA_PROVIDER" value="DATAPROVIDER_1"/>
             <param name="WIDTH" value="19"/>
             <param name="IOBJNM" value="0TCTIFCUBE"/>
             <param name="MAXVALUES" value="1"/>
             ITEM:            DROPDOWNBOX_2
    </object></TD>
        <TD vAlign=top><object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="DROPDOWNBOX_3"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_FILTER_DDOWN"/>
             <param name="DATA_PROVIDER" value="DATAPROVIDER_1"/>
             <param name="WIDTH" value="34"/>
             <param name="IOBJNM" value="0CALDAY"/>
             ITEM:            DROPDOWNBOX_3
    </object></TD>
        <TD vAlign=top><object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="DROPDOWNBOX_4"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_FILTER_DDOWN"/>
             <param name="DATA_PROVIDER" value="DATAPROVIDER_1"/>
             <param name="WIDTH" value="22"/>
             <param name="IOBJNM" value="0TCTQUERY"/>
             ITEM:            DROPDOWNBOX_4
    </object></TD></TR></TABLE>
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="TABLE_1"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_GRID"/>
             <param name="DATA_PROVIDER" value="DATAPROVIDER_1"/>
             <param name="WIDTH" value="505"/>
             <param name="BORDER_STYLE" value="FORM"/>
             <param name="ALT_STYLES" value=""/>
             ITEM:            TABLE_1
    </object></P>
    <P align=left> </P>
    <P align=left> </P><FONT color=#0000ff size=2>
    <P align=center></FONT> </P>
    <P align=center> </P>
    <P align=center> </P>
      </body>
    </html>

  • How to control the  space between records in form layout

    Hi ,
    I need to display mutiple records (15-20) in a form ,
    and have choosen FORM layout as I need to display each record in two lines (Can a record be displayed in two lines in TABULAR layout ? ) .
    Now There is lot of space between each record and I could not move records closer . How can I control space between reords in FORM layout ?
    (While creating Canvas I selected Distance bwteen records = 0 )
    Thanks in advance,
    Asha

    Asha,
    no in tabular layout there is no way to display a record on two lines. All you can do is to use a stacked canvas and use it to make the table scrollable horizontally
    The distance between record setting is a property on the item level. if this is set to 0 (please double check) then all that is loeft is the item bevel. You can set the item bevel property to plain and then work on resizing the items hight until close to acceptable.
    Frank

  • Reducing the space between select option -Text element & Extension button

    Hi ,
    Can someone let me know is it possible to reduce the space betwwen the text element of select option & Extension button.
    i.e. is it possible to make customise  the extension button such that it is near the text element

    HI,
    You can use
    SELECTION-SCREEN BEGIN OF LINE.
      SELECTION-SCREEN COMMENT 1(10) TEXT-001.
      PARAMETERS: P1(3), P2(5).
    SELECTION-SCREEN END OF LINE.
    Only use this for single range ie from P1 to P2
    Define a range in your report and populate the range from P1 and P2.
    Regards
    Praveen

  • How do I reduce the space between the images in the fotopage?

    Hi
    I have made a Photopage - and some of the Photos are croped and when I add them to the page there is a loot of space between the one above and underneath
    look at this screen shot
    http://skitch.com/baiaz/n8un4/iweb
    or go to my photopage:
    http://web.me.com/baiaz/Adino/Galleri/Sider/UKE1.html
    Then you will see what I mean.
    Is there a way to make them more even???? So the gap is not that big when I crop the photos?

    The photogrid is square. Your pictures are rectangle. That's difficult to fit.
    To change the settings of the photogrid, click on an image.
    You can change the number of columns, the spacing between the images, the numbers of lines for the caption and the number of pictures on a page.
    It's all there.

  • How to Calculate the Space between two Characters in GDI + ?

    I am Drawing the set of characters in Graphics, by Calculating the points using GraphicsPath for each Character. I Need to know how to calculate the distance should be given between the two characters?
    I am using this code to generate points
    PointF [] pnts;
    var p=new GraphicsPath();
    path.AddString("A","Arial",(int)FontStyle.Regular,50,new pointF(0f,0f),StringFormat.GenericDefault);
    Matrix m=new Matric(1,0,0,1,0,0);
    path.Flatten(m,1,0f);
    pnts=path.pathpoints;
    i am getting the points for all characters using the above code.
    Now i am combining the two character Using the points generated by the above code.  Eg "AB"
    Help me to calculate the the character space should be given between two characters?
    Thanks in Advance...

    Hi,
    this link can assist you:>
    Professional C# - Graphics with GDI+ 
    Mark as answer or vote as helpful if you find it useful | Ammar Zaied [MCP]

  • How do I reduce the space between headlines in Firefox via DW?

    Hi all,
    I have a website up and running, I can send the URL to anyone who thinks s/he may be able to help me.
    The webpages look great in Explorer Internet.  However in Firefox, there's a lot of unslight gaps between the main headline, the sub-heading, etc.  And I've tried to find out why it's like that, by peering into DW's coding part, but I can't seem to see the code that influence this.  Does anyone have any idea?
    I should add that I use a template for all of these webpages, and that I've set up editable regions within that template.  I get this feeling that the way I set up the editable regions may be part of the problem, so I'm going to go and test that hunch.
    In the meantime, if any of you have run into that problem in Firefox (but not EI), and have any suggestions, I'd really appreciate it.
    Thanks,
    Alexy

    Hello Sandra,
    Thanks for providing the link. I was actually right the first time. Your issue actually falls on browser compatibilties. Firefox has a different way of interpreting paragraph - <p>... </p> tags. By default, it adds some more space.
    I am inserting a screenshot here when I edited your page in Dreamweaver:
    Instructions:
    Highlight the group of text which has an issue - "Do you need....products?*".
    Go to the Tag Inspector grid (bottom part) where you can see blurred tags like <table>, <tbody>, <tr>, ... and the bold tags <mmtinstance:editable>.
    Right-click on the <p.blurb> tag and choose Remove Tag. This means this is a paragraph tag using the "blurb" class.
    After this you will see that the formatting for the highlighted group of text has been removed.
    While the texts are still highlighted, go to Insert menu > Layout Objects > Div Tag
    In the Class input textbox, type the word blurb and click OK.
    Save the page and preview it in Firefox again.
    Feel free to reply to this post for the updates.
    Thanks and have a nice day.
    Regards,
    Christine R.
    Adobe North America Technical Support

  • Justify tracking? That is, justify letters, not the space between words...

    I know this question might be kind of hard to understand... Okay, so usually you justify type, and you can get some rivers, right? I've been reading this book, and the type is set in a way where there are no rivers. The type is justified, but it seems as if the individual letters are justified (like the tracking) rather than the words. The space differs from each word's letters, and not the space between each word. Attached are some photos of the book in question.
    Exaggerated examples of what I am trying to say.
    The book's layout:
    H e l l o   m y   n a m e   i s   L a n d o n.
    Normal Justification:
    Hello      my     name     is         Landon.
    Thanks!

    Yes, InDesign allows this. Look in the Justification options: the default settings are to adjust Word Spacing from 80% to 133%, with a preferred value of 100% (which is in Space Widths), and Letter Spacing has all set to 0%, meaning it should not be touched. (I may have set these as defaults. YMMV.)
    To achieve this effect, you could -- at least theoretically -- set "Word Spacing" to 100%,100%,100% and set Letter Spacing to something like -5%,0%,20%. Be warned though that in this case, InDesign will Do What You Ask, but that this will not "thus" make Good Typography!
    With slightly more sane settings, Word Spacing at 90%,100%,110% and Letter Spacing at 0%,0%,20% (note I don't touch the "Minimum"!), you get something like this. Top: regular settings, bottom: adjusted.

  • Inserting non-breaking spaces between specific word combinations

    Hi all,
    I'm a bit of an InDesign novice, and need to work out an efficient way to automate a typesetting job. The story is that the work we're publishing is in the Maori language, and there are certain word combinations that are separated by spaces but need to be typeset so that they don't break across a line. When you import a doc file the line breaks can be anywhere, of course, and we've previously gone through and checked manually that all is well, with any changes that need to be made being done by hand (with changes cascading through the rest of the paragraph, of course). As you can imagine, this can be pretty time consuming, and it's all wasted if the client then asks for the font to be slightly larger etc.
    I'd like to help avoid this by running a script that finds and replaces the space between certain words with a non-breaking space. We're currently producing a list of the combinations where this will occur. Are you guys able to show me how to produce a script that will replace "word1[space]word2" with "word1[nbsp]word2", "word3[space]word4" with "word3[nbsp]word4"...?
    Thank you for any help you can offer!
    Stephen

    simplest way: use findChageByList script provided by Adobe.
    the syntax for the list should be like this:
    text[tab here not space]{findWhat:"word_one word_two"}[tab here not space]{changeTo:"word_one^Sword_two"}[tab here not space]{includeLockedStoriesForFind:false, includeLockedLayersForFind:false, includeHiddenLayers:false, includeMasterPages:false, includeFootnotes:true, wholeWord:true, caseSensitive:true, kanaSensitive:true, widthSensitive:true, ignoreKashidas:true, ignoreDiacritics:false}
    add as many lines as needed and adjust preferenecs to your likings.

  • How to reduce 'other' space in iphone, how to reduce 'other' space in iphone

    suddenly other space in my iphone increased to 1.26GB from 800MB. please suggest how to reduce the space in 'other'

    I am having 'other' storage problems on a lot of my devices and I have been searching for a way to solve this. I was looking through threads of discussions and everyone pretty much said the same thing- that it 'other' is data that can't be classified into sections eg. things like documents, contacts, mail etc and that a way to get rid of it, as mentioned above, is to restore is. But then I came across this thread of disucssions: https://discussions.apple.com/message/17668547#17668547
    which said that there was a way to reduce the storage without restoring, having something to do with old uptade files of apps. I'm not sure if this works as I haven't tried it yet but they said it was safe and worked, so there is an option

Maybe you are looking for