Underline text on the entire width of the entire column?

How to highlight text so that the line extends all the way to the edge of the column? Even if the text is not fully justified or not extends not to the edge of the column? I tried to do it with a style of character and tabs, but which proved to be rather tedious and seem unprofessional.

For a single or two-line paragraphs, you can use nets of paragraph, but for more than that, I would say that it would be easier to super - impose your block of text on a set of rows that are locked to the starting grid.

Tags: InDesign

Similar Questions

  • Conversion of underlined text of the word by using a script

    Hello

    When you place a Word document, I want to use a script to convert the text underlined italic character Style (which I have already created). Which should read the line of app.findGrepPreferences to find the underlined text?

    Thank you.

    It's as simple as that:

    app.findTextPreferences = app.changeTextPreferences = NothingEnum.nothing;
    app.findTextPreferences.underline = true;
    app.changeTextPreferences.appliedCharacterStyle = app.activeDocument.characterStyles.item("italic");
    app.changeTextPreferences.underline = false;
    app.activeDocument.changeText();
    

    unless she needs deep integration into your current script.

    Related issues of script can better ask in the forum script: InDesign Scripting

  • How to add the help text to the tabular columns?

    I have some tabular forms. I want to add help to the header of the column.
    APEX allows you to add page elements helping, but I don't see the option for the tabular columns. No idea/solution workaround?

    Thank you

    Hello

    I have a sample how to add Help ToolTip to the header of the report
    http://ActioNet.homelinux.NET/HTMLDB/lspdemo?p=63

    Mouse over the title, and see you help text.
    See this post for instructions
    Add help text

    PS: I think you can do better solution for example using dynamic action

    Kind regards
    Jari

    http://dbswh.webhop.NET/dbswh/f?p=blog:Home:0

  • How to control the gutter with the text of the fractionating column?

    We're going to make a text box and fill it with text. Then, select text, and in the Options bar, choose Split 2 to cut some of the text in two columns box.

    Question: How can we control the width of the gutter of these columns to split? (I tried a lot of things without success.)

    If you're on a Mac, try the Option by clicking on the icon to the left of the drop-Split/Span. It took me a while to understand this problem myself.

  • Align the text of the varchar2 column data

    Hello

    It is in reference below thread:
    Re: Align the text of varchar2

    I think I should post my question in this forum, rather than General database,

    I created a table and inserted the same that in the thread that above, and when I said:
    Select ID, FILLED_TEXT(DESCRIPTION,30) FROM T;

    It does not show the data in the column as aligned in 30 word boundaries. I thought, that I would be able to resolve the issue with the help of the http://soft.buaa.edu.cn/oracle/bookshelf/Oreilly/prog2/ch11_02.htm link, but failed.

    Kindly help me more.

    Kind regards.

    Okay, so you're saying there is already a tags in the code to indicate where the line breaks are necessary, so a small adjustment of the data to include these tags and also the code...

    DROP TABLE test_data
    /
    CREATE TABLE test_data as
    select 1 as id, q'[For several days after leaving Nantucket, nothing above hatches was seen of Captain Ahab. The mates regularly relieved each other at the watches, and for aught that could be seen to the contrary, they seemed to be the only commanders of the ship; only they sometimes issued from the cabin with orders so sudden and peremptory, that after all it was plain they but commanded vicariously.<>Yes, their supreme lord and dictator was there, though hitherto unseen by any eyes not permitted to penetrate into the now sacred retreat of the cabin.]' as txt from dual union all
    select 2, q'[Every time I ascended to the deck from my watches below, I instantly gazed aft to mark if any strange face were visible; for my first vague disquietude touching the unknown captain, now in the seclusion of the sea, became almost a perturbation. This was strangely heightened at times by the ragged Elijah's diabolical incoherences uninvitedly recurring to me, with a subtle energy I could not have before conceived of. But poorly could I withstand them, much as in other moods I was almost ready to smile at the solemn whimsicalities of that outlandish prophet of the wharves.<> But whatever it was of apprehensiveness or uneasiness - to call it so - which I felt, yet whenever I came to look about me in the ship, it seemed against all warrantry to cherish such emotions. For though the harpooneers, with the great body of the crew, were a far more barbaric, heathenish, and motley set than any of the tame merchant-ship companies which my previous experiences had made me acquainted with, still I ascribed this - and rightly ascribed it - to the fierce uniqueness of the very nature of that wild Scandinavian vocation in which I had so abandonedly embarked. But it was especially the aspect of the three chief officers of the ship, the mates, which was most forcibly calculated to allay these colorless misgivings, and induce confidence and cheerfulness in every presentment of the voyage. Three better, more likely sea-officers and men, each in his own different way, could not readily be found, and they were every one of them Americans; a Nantucketer, a Vineyarder, a Cape man. Now, it being Christmas when the ship shot from out her harbor, for a space we had biting Polar weather, though all the time running away from it to the southward; and by every degree and minute of latitude which we sailed, gradually leaving that merciless winter, and all its intolerable weather behind us. It was one of those less lowering, but still grey and gloomy enough mornings of the transition, when with a fair wind the ship was rushing through the water with a vindictive sort of leaping and melancholy rapidity, that as I mounted to the deck at the call of the forenoon watch, so soon as I levelled my glance towards the taffrail, foreboding shivers ran over me. Reality outran apprehension; Captain Ahab stood upon his quarter-deck. End]' from dual
    /
    
    CREATE OR REPLACE FUNCTION wordwrap (p_txt IN VARCHAR2, p_linesize IN NUMBER) RETURN t_wordwrap_txt PIPELINED IS
      cursor cur_wordwrap(p_txt in varchar2) is
        select rn, txt
        from (
              select rownum as rn
                    ,trim(regexp_substr(p_txt,'.{1,'||p_linesize||'}( |$)',1,rownum)) as txt
              from dual
              connect by rownum <= ceil(length(p_txt)/p_linesize)+10
             )
        where txt is not null
        order by rn;
      v_txt varchar2(4000);
      v_length number := 0;
      v_paratxt varchar2(4000) := p_txt;
      v_paratxt_part varchar2(4000);
      v_pos number;
      v_srch varchar2(100) := '<>';
    begin
      loop
        exit when v_paratxt is null;
        v_pos := instr(v_paratxt,v_srch);
        v_paratxt_part := case when v_pos = 0 then v_paratxt else substr(v_paratxt,1,v_pos-1) end;
        v_paratxt := case when v_pos = 0 then null else trim(substr(v_paratxt,v_pos+length(v_srch))) end;
        for w in cur_wordwrap(v_paratxt_part)
        loop
          v_txt := w.txt;
          loop
            exit when length(v_txt) = p_linesize or instr(v_txt,' ') = 0;
            for i in 1..p_linesize-length(v_txt)
            loop
              v_txt := regexp_replace(v_txt,'([^ ]) ','\1  ',1,i);
            end loop;
          end loop;
          v_length := v_length + length(v_txt);
          if length(v_txt) > 0 then
            pipe row(v_txt);
          end if;
        end loop;
        if v_paratxt is not null then
          pipe row(''); -- new line before next part
        end if;
      end loop;
      return;
    end;
    /
    

    results...

    SQL> select test_data.id, x.column_value
      2  from test_data, table(wordwrap(test_data.txt,50)) x
      3  /
    
            ID COLUMN_VALUE
    ---------- ---------------------------------------------------
             1 For  several days after leaving Nantucket, nothing
             1 above  hatches was seen of Captain Ahab. The mates
             1 regularly  relieved each other at the watches, and
             1 for aught that could be seen to the contrary, they
             1 seemed to be the only commanders of the ship; only
             1 they  sometimes  issued from the cabin with orders
             1 so  sudden  and  peremptory, that after all it was
             1 plain     they    but    commanded    vicariously.
             1
             1 Yes,  their  supreme  lord and dictator was there,
             1 though  hitherto  unseen by any eyes not permitted
             1 to  penetrate  into  the now sacred retreat of the
             1 cabin.
             2 Every  time I ascended to the deck from my watches
             2 below,  I  instantly  gazed  aft  to  mark  if any
             2 strange  face  were  visible;  for  my first vague
             2 disquietude  touching  the unknown captain, now in
             2 the   seclusion   of  the  sea,  became  almost  a
             2 perturbation.  This  was  strangely  heightened at
             2 times    by   the   ragged   Elijah's   diabolical
             2 incoherences  uninvitedly  recurring to me, with a
             2 subtle  energy  I  could not have before conceived
             2 of.  But poorly could I withstand them, much as in
             2 other  moods  I  was  almost ready to smile at the
             2 solemn  whimsicalities  of that outlandish prophet
             2 of                   the                  wharves.
             2
             2 But   whatever   it  was  of  apprehensiveness  or
             2 uneasiness  -  to  call  it so - which I felt, yet
             2 whenever  I  came to look about me in the ship, it
             2 seemed  against  all  warrantry  to  cherish  such
             2 emotions.  For  though  the  harpooneers, with the
             2 great  body of the crew, were a far more barbaric,
             2 heathenish,  and  motley  set than any of the tame
             2 merchant-ship    companies   which   my   previous
             2 experiences  had  made me acquainted with, still I
             2 ascribed  this  - and rightly ascribed it - to the
             2 fierce  uniqueness of the very nature of that wild
             2 Scandinavian   vocation   in   which   I   had  so
             2 abandonedly  embarked.  But  it was especially the
             2 aspect  of  the  three chief officers of the ship,
             2 the  mates,  which was most forcibly calculated to
             2 allay   these  colorless  misgivings,  and  induce
             2 confidence  and  cheerfulness in every presentment
             2 of   the   voyage.   Three   better,  more  likely
             2 sea-officers  and  men,  each in his own different
             2 way,  could  not  readily  be found, and they were
             2 every  one  of  them  Americans;  a Nantucketer, a
             2 Vineyarder,  a  Cape  man. Now, it being Christmas
             2 when  the  ship  shot  from  out her harbor, for a
             2 space  we had biting Polar weather, though all the
             2 time running away from it to the southward; and by
             2 every  degree  and  minute  of  latitude  which we
             2 sailed,  gradually  leaving that merciless winter,
             2 and  all its intolerable weather behind us. It was
             2 one  of  those  less  lowering, but still grey and
             2 gloomy  enough  mornings  of  the transition, when
             2 with  a fair wind the ship was rushing through the
             2 water  with  a  vindictive  sort  of  leaping  and
             2 melancholy rapidity, that as I mounted to the deck
             2 at  the  call  of the forenoon watch, so soon as I
             2 levelled   my   glance   towards   the   taffrail,
             2 foreboding  shivers  ran  over  me. Reality outran
             2 apprehension;   Captain   Ahab   stood   upon  his
             2 quarter-deck.                                  End
    
    65 rows selected.
    
    SQL>
    
  • Help! The balance between the top of the text flowing into the second column?

    Hello!

    I use InDesign CS5.5.

    I need to know how to make the text remain aligned when flowing a column in the second column. My problem is when the text moves to the second column, it automatically aligns to the top of the frame with the header in the first column.
    .

    I want the text in the second column to stay aligned with the text in the first column, and not with the header of the first column.

    I've attached a picture http://tinypic.com/view.php?pic=1z2pykx & s = 5 #. Um_5Lfmsim4

    Pleas, if someone can help me solve this problem

    Thank you!!!

    Use a two-column, not two frames of a column and set the paragraph header style span columns.

  • CS5 - most effective way to wire and independent streams of two blocks of text in the same document?

    Greetings...

    I am responsible for creating a 100-page instructor guide and I looking for a little guidance in the use of independent text blocks that thread the length of the document.  The idea behind the use of two columns, is that the first column (left) must be used for the notes 'instructor-only', advice, etc..  The second column (right) should be used for the text of the student guide.  Two columns (or blocks of text) would need to move independently of each other.  In other words, when the left column is filled with text placed on the page, the flow of additional text in the left column on page two, left column on page three, etc.  Same thing applies to the right column.  There is no link or thread of the text between the two columns on the same page.

    I tried to reproduce this in a two-column table format, however, the table row height is limited and overset text will not continue the table in the block of text on the next page.

    Thank you in advance for your help!

    Set up master page text frames.

    If you use facing pages, put on the student to the student and executive trainer instructor on master pages.

    Be very careful when your document is redéroule however. Take a look at this discussion, we had recently on the subject:

    http://forums.Adobe.com/message/3588735#3588735

    HTH,

    Substances

  • How to extract text in the columns of a .pdf file

    I have a .pdf document that is arranged in columns.  I tried export in crude as a .doc file and copy/paste-ing text highlighted text.  In each case, the text comes out tangled.  In other words, it reads a line across all three columns.  If the text among the three columns tangle together and very tedious to separate and pick up in the right order.

    I have a lot of text extracted of .pdfs but have not run into this problem before.  Is it possible to fix it?

    Hello

    For the selection of text in the column, you can use the tool of selection in column selection mode. To do this, go to tools > Select & Zoom > selection tool. Afterwards, press the Alt key and drag to select the desired column. By pressing the Alt key with the active selection tool the selection Mode of the column.

    Kind regards

    Swati

  • Interactive report based on the hidden column cell color

    Hello

    APEX 5.0.1 used here.

    How can I set the color of a specific cell (or column) based on a hidden column?

    Seems the link that I can't use the built-in feature because I need the custom color returned by my request.

    I tried to set the color with javascript by iterate over each line, by taking the value. text() of the color column and value

    This color-specific cell. It works, but it requires the column is visible.

    A column containing a hexadecimal value of the color does not look good...

    I tried to hide / display: no column complete but this messes up the layout.

    THX

    the force says:

    APEX 5.0.1 used here.

    How can I set the color of a specific cell (or column) based on a hidden column?

    Seems the link that I can't use the built-in feature because I need the custom color returned by my request.

    I tried to set the color with javascript by iterate over each line, by taking the value. text() of the color column and value

    This color-specific cell. It works, but it requires the column is visible.

    A column containing a hexadecimal value of the color does not look good...

    I tried to hide / display: no column complete but this messes up the layout.

    Specify the color of cell required using the hidden column and a data attribute to the property Expression of HTML in the column:

    #VISIBLE_COLUMN_ALIAS#

    Apply a static ID of the visible column to serve as a selector, jQuery, and you can access the invisible color value in your JS code in dynamic action to run the JavaScript Code using the dataset property.

  • How is it possible to a certain width (number of letters) of a single line in a text of the email to send?

    I was informed by a beneficiary of my email my email is spread too wide and too hard to read.
    Is it possible to set a limit to the width of my text (or the number of letters)?
    Thank you for the support in advance.

    Hmm. There are places on the Web where the space is not allowed, specifically in URLs and a symbolic representation, such as % 20, is used. If you have been picking them up, an email client cannot see an opportunity to break the line as those offered by a real space.

    However, these lines incriminated look like OK you in Thunderbird before you send them off? When I worked with other users reporting this issue, we saw nothing wrong with the sent message and concluded that the problem is at the end of the recipient. This affects all of your contacts, or just a select few? Are they by any chance using any particular email client or Viewer?

    'Paste unformatted' in Thunderbird works better for you, compared to go through Notepad? Have you tried text editors more sophisticated such as notepad ++?

  • Underline in the text of the Email

    Hello

    I want to send a mail with the appearance of the custom as bold, underlined text...

    It should be in email composer.

    is this possible?

    Thank you

    Zahid Naqvi

    It is my understanding the BlackBerry sends only based on text, not encoded or html messages, so no bold or underlining of messages not sent.

  • In indesign when the text is converted to be vectorised text, underlined text effect is not preserved

    In indesign when the text is converted to be vectorised text, underlined text effect is not preserved

    Adobe recommends strongly against systematically vectorised text conversion as being an unwise practice, destroyer of workflow, there is a very simple correction in Acrobat DC Pro control upstream that makes these conversions in one step.

    -Dov

  • Change the spacing of underlined text?

    If I want to emphasize text with CSS, I can controll until below the underline text appears?

    Thank you

    Hello

    If it is not possible to control where the underscore is placed as defined by the manufacturer of the browser, it is possible to use border-bottom rule of css to simulate a line of underscores, and if used with margin-bottom/padding-bottom correct rules, custom positioning of underscore may give a more professional look to your text/link underlined.

    PZ

  • Adjust the width of the text to the width of the image

    Sorry if my English is not 100%.

    Is it possible (and if so, how?) to adjust the width of a text to the width of my image?

    For example: I want to have the text 'Sample Text' in my picture that is the width of 500px. The text that must also be 500px in width. But I have another image, which is the width of the 1800px and that the text "Sample Text" must be addepted over a width of 1800px. So is there an option in Photoshop (I have CS5) which addepts the width of a text to the width of the image?

    Thanks in advance.

    Yes it is possible by using a script, here's an example that will resize the text to the width of the document and place it 5 pixels from the bottom.

    The text layer MUST be the active layer.

    main();
    function main(){;
    if(!documents.length) return;
    if(activeDocument.activeLayer.kind != LayerKind.TEXT) return;
    var startRulerUnits = app.preferences.rulerUnits;
    app.preferences.rulerUnits = Units.PIXELS;
    var Percent = 100; //Percentage of width
    var myDoc = activeDocument;
    var LB = myDoc.activeLayer.bounds;
    var docHeight = myDoc.height;
    var docWidth = myDoc.width;
    var LHeight = Math.abs(LB[3].value) - Math.abs(LB[1].value);
    var LWidth = Math.abs(LB[2].value) - Math.abs(LB[0].value);
    var percentageWidth = ((docWidth/LWidth)*Percent);
    myDoc.activeLayer.resize(percentageWidth,percentageWidth,AnchorPosition.MIDDLECENTER);
    align('AdCH'); align('AdBt');
    activeDocument.activeLayer.translate(0,-5); //move the text 5 pixels from the bottom
    app.preferences.rulerUnits = startRulerUnits;
    }
    function align(method) {
    activeDocument.selection.selectAll();
       var desc = new ActionDescriptor();
               var ref = new ActionReference();
               ref.putEnumerated( charIDToTypeID( "Lyr " ), charIDToTypeID( "Ordn" ), charIDToTypeID( "Trgt" ) );
           desc.putReference( charIDToTypeID( "null" ), ref );
           desc.putEnumerated( charIDToTypeID( "Usng" ), charIDToTypeID( "ADSt" ), charIDToTypeID( method ) );
        try{
       executeAction( charIDToTypeID( "Algn" ), desc, DialogModes.NO );
       }catch(e){}
       activeDocument.selection.deselect();
    };
    
  • [ADF, JDev12.1.3] I would like to stress that af: table takes the entire width of page and column auto-augmenter/reduce their width in proportion to the amount of available space. How...?

    Hallo,

    I see that default ADF makes all the 100px wide columns and there is the possibility to stretch a column to take full available width.

    I would like to know if there is a function / approach in ADF which - occupies all the available space - auto-calcule the width of each column to 1) the width of DB fields and 2) space in the browser window.

    I could also set the with columns of table in columns (characters) or (better?) in pixels and the framework should only for reproportion widths according to the available width.

    Or track to follow is defining the width of the columns in the table (percentage) property?

    Thank you

    Federico

    There is the possibility to stretch a column to take full available width.

    AFAIK, you can stretch several columns (read the docs for this property)

    I would like to know if there is a function / approach in ADF which - occupies all the available space - auto-calcule the width of each column to 1) the width of DB fields and 2) space in the browser window.

    (1) as far as I know, no

    (2) you can add class AFStretchWidth to the styleClass property to af:table (or surround your table with af:panelCollection and add this style class here)

    Or track to follow is defining the width of the columns in the table (percentage) property?

    Is probably not.

    % has different interpretation in different browsers, so you should use the style class AFStretchWidth.

    Dario

Maybe you are looking for

  • move contact to group email lists

    I have about 15 different lists of people I email in my work.I imported my contacts from my old machine. Is it possible to update the lists? Or what I do have to build them?

  • Why the link to yahoo email will nginx server? Cannot get into my mail.

    When I click on any of the yahoo mail icons, a new page opens that says; 404 not found, nginx/0.6.32

  • Bar do not use the Safari address search engine

    My address bar of Safari only acts as a search engine occasionally. Usually when I type something in the address bar that is not a Safari URL by default one Google search. For example if I typed "How to feed your goldfish" in the address bar, add Saf

  • DSC: Connection to the 3rd party OPC Server

    I had this work with LabVIEW 2011 and Win XP...  After update I can't make it work...   Now with LabVIEW 2012 and Win 7, the server is now upgraded to Win 7 system. I'm reading a commercial server OPC of Yokogawa variables.  I can connect to the serv

  • Create the user with privileges only data entry.

    Hello guys,.A very basic question. I created the request of APEX, well obviously the user with whom I created this application has developer access, now I want to create a user who is able to see the developed application, I tried to find the user op