How to make your table force widths to the width of the text block?

Hello

Is there a way to save a lot of time by forcing the tables to redistribute the column widths (by percentage or otherwise) depending on the size of the text box?

Currently, we resize each column individually.

See you soon

Ben

If your table is on a single page, you can enter the lower right corner (with the type tool selected) to resize all the columns proportionally. (you will see a two-headed diagonal area when you are on the right place to catch)

Tags: InDesign

Similar Questions

  • How to make a table of contents reflects the document formatting?

    I use a table of contents for a long document. In the document, some special words - the titles of the texts that I write about - italic. But when they appear in the Table of contents, they are not. Part of the table of contents and problematic subheadings are shown in the attached images. I can do all the headings / subheadings italics, but I don't seem to be able to reformat the individual words, I can find no option for the table of contents to reflect the formatting of the titles themselves. I'm heading to the last resort of manually typing all the senses...

    V4.3 Pages ' 09, or Pages v5.6.1, will resume the paragraph/character in the body of the document style attributes in the generated TOC. To a certain extent, you can customize the table of contents thereafter.

  • How to make a 'active' phone number in the text box?

    I'm testing in 10.1 and 10.2, using the following QML simulators.  What I'm trying to understand is that 'rules' the text box used to set the active text, including phone numbers.  All I'm trying to do is to put a phone number in the text box that my users the opportunity to click on it to the phone.  But I can't make it work, or more exactly, may not get the phone number to become active.  .

    As you can see that I tried a variety of number formats, some specific UK because I was afraid that he may use country specific recognition, but nothing I try works.

    On the other hand the address which I also put in the TextArea is 'hot' and started the map.

    FYI, the client is running in Canada on Q10s using 10.1.  The numbers are also completely fictitious, if they work, then that is a stroke of luck.

                    TextArea {
                        inputMode: TextAreaInputMode.Text
                        editable: false
                        content.flags: TextContentFlag.ActiveText
                        text: "#123 1234, #123-1234  ph: 780-784-1231. ph: (403)218-1248. ph: 403-242-1231. ph: (01637)123456. 81 Street NE, # 101 ,, Calgary. "
                    }
    

    I saw this:

    http://supportforums.BlackBerry.com/T5/native-development/textarea-showing-quot-phone-numbers-quot/m...

    I was expecting that I didn't set the attributes for the text using C box.

    And I don't have permissions phone - eslewhere in the application that I detect when the user is on the phone.

    Any ideas on how I could get a phone number in a TextArea to be active, would be appreciated.

    Well, for what it's worth here's what I get with your data :

  • How to make a slideshow of heroes with the text and the button for each slide?

    I'm trying to make a basic slide show (auto no buttons) which will be the width of page 100% and I want each picture to have a title and a status button they can click to access other pages, for the life of me I can't this is! What I am doing wrong?

    Indeed I could solve my problem, yay 2 + hours of troubleshooting finally paid off!

    I tried the white color text and read 'Check this video now!', but the background was a color of the light, so it is in contradiction with the white text. To remedy this problem, I created a rectangle shape, he made black and reduced the opacity to 40% and threw it behind the text. In order to get the button under the text that says: 'Click here'! I was able to use a copy + paste glitch by sticking the trio in the caption text box for an image, thus allowing me to have a unique caption for each photo in an automatic slideshow. The problem arises due to the notion of a chart of the icon to stay on the text no matter how it is pasted into the text box but I could understand that if you group the text above the rectangle elements before pasting in the text area of the legend, then the text will remain on the chart! Yay problem solved (at least for now)!

  • How to make a LabelField align right when the text is long?

    In order to make a good LabelField aligned, I create the LabelField with style "FIELD_RIGHT and add it to a value for money, it works when the text can be displayed on a single line." But when the text is long, over a single line, it works well.

    For example, if the text is "ABDEL FARZAD", appears like this:

    It looks like aligned left

    How can I get it?

    .

    No guarantee, but instead of Field.RIGHT, try

    FIELD. USE_ALL_WIDTH | DrawStyle.RIGHT

  • How to organize a table like 'move with the text' and 'around and underneath "? For now, my only option in the menu drop-down is "in line with text.

    Hello. I am trying to format a table, so that when I hit it, it moves to the bottom of the page and the bumps any text underneath down as well (that is if you can see the whole table and all text at any time)

    .

    However, the only options I seem to have are moving with the text > inline with the text. The first part is what I want, but having the means of inline with the text of table than all text below it floats UNDER the table, and you can't read it.

    PIC 1 - My only option when "move with the text" is selected. As you can see all the other features are also grayed out.

    Photo 2 - I want now, select above and below, but when I select something other that in line with the text...

    PIC 3... it jumps to stay on the Page option is not what I want.

    Any ideas?

    You can have a floating table in v4.3 Pages ' 09 that moves before the text typed before it, but this feature has not been added to any release of v5 Pages. Simply set the table in the Wrap Pages ' 09 Inline with the text Inspector, and object causes the film if you wish.

  • How to make windows require a password during the installation of new programs?

    How to make windows require a password during the installation of new programs?

    Hello

    You will not be able to circumvent the password that appears before the execution of actions (installing a new program) in a non administrator account.  If you are logged on as administrator, and again, you get the command prompt, you can disable UAC (User Account Control) to stop the password dialog window.

    However, as a work around you can right-click on the installation of the program files and select run as administrator. Check if this is useful.

    Let me know if I can help you with this question or any problem related to Windows.

  • How to make a label (javafx) to display the current time dynamically?

    Hi all

    How to make a label (javafx) to display the current time dynamically?

    I have not found a Type of event related to the time in javafx API.

    Please give me some suggestions. Thank you!

    Sage

    There are lots of examples of JavaFX clocks available, for example https://gist.github.com/jewelsea/3388637 or http://blog.crisp.se/2012/08/09/perlundholm/an-analog-clock-in-javafx

    For a simple label displaying the time, the simplest thing is to create a Timeline with duration 1 second and the number of indefinite cycle, which triggers an event handler that updates the label:

    final Label clock = new Label();
    final DateFormat format = DateFormat.getInstance();
    final Timeline timeline = new Timeline(new KeyFrame(Duration.seconds(1), new EventHandler() {
         @Override
         public void handle(ActionEvent event) {
              final Calendar cal = Calendar.getInstance();
              clock.setText(format.format(cal.getTime());
         }
    });
    timeline.setCycleCount(Animation.INDEFINITE);
    timeline.play();
    

    (If you use Java 8, use the new time API, which is much more pleasant than calendar.)

  • How to make a menu like that on the Web site of the State of San Diego, with Muse?

    How to make a menu like that on the Web site of the State of San Diego, with Muse? www.SDSU.edu

    Hello

    You can use the Widget Library > panels > tab panels

    or

    Click on "Objects" > add Widget > Panel > tabbed panels

    Make sure that if you want the concept of score as it appears on the site of Ref. (www.sdsu.edu), under events option in the Panel "The reversal" should be selected.

    Enjoy working with MUSE!

    Thank you

    Prabhakar Kumar

  • Help, please... I need to know how to crop my video segments?  I also need to know how to make several clips to run at the same time by dividing the screens?  How to fade a clip?

    Help, please... I need to know how to crop my video segments?  I also need to know how to make several clips to run at the same time by dividing the screens?  How to fade a clip?

    I watched the video tutorials.  I need to know also how to add additional video tracks to my screen.  Any help please?

  • How can I make rectangular bubbles that adapt to the text inside them without the "arrow" that points to where the bubble comes to have changed?

    I do a lot of bubbles (150 +) who all text inside of them, which are distinguished by length. I want the balloons to look the same in terms of style, but I need different sizes of course for each of these texts. This means that the rectangular part of the speech bubble must adapt to the length and the width of the text on the inside, while the "arrow" to where the bubble is coming (e.g., the person who speaks) should stay the same on each bubble. So is there a way or a workaround to these bubbles "adaptation"?

    I appreciate any kind of help

    Thanks in advance!

    You can do this by using the option of automatic resizing the text block and a separate object (or 2) to the pointer / arrow.

    Create a text block that auto sizes away from the direction of the needle. Make sure that the line on the block of text is aligned to the outside. Draw a pointer with the pen tool and give it the same stroke and fill as the text block.

    Then you must carefully align endpoints of the pointer on the edge of the text block or if you want perfect-looking for joins, have endpoints of the pointer the text block overlap and cover them with another frame, filled with the same color of filling the text block.

    You may need to experiment with the position and the size of this frame obscuring so it becomes visible when the text block is resized. Here is an excerpt, you might be able to use as a starting point. Dropbox - resizing_speechbubble.idms

  • How can I get student got points in the text box

    Hello

    My problem is

    a student has a 5 subject .is there sort of set the text boxes according to these subject.if all have topic 6 then 6 text box should appear.
    is this possible.please suggest me





    Thank you
    Nisha

    Published by: Nisha Rani on September 3, 2009 23:14

    Hello

    There are a number of topics? You can create a form on your table that has all THE topics on it and then use a setting of Condition to hide the ones you don't need.

    Andy

  • I can't my auto signature to look how I want that she keeps returning to the text without spaces

    I can't my auto signature to look how I want that she keeps returning to the text without spaces

    Put

    < br >

    everywhere, you want a line break.

    for example

    My phone number is 01937 534183 if you wish to discuss. < br >
    < br >
    Thank you, < br >
    < br >
    Oliver

  • How to put a new line in the text block using jsx?

    Hello guys,.

    I am concatenating the content of the text block using two JSX, but I want separator as a new line. I have tried \n but does not work please help how to do that.

    var  seperator = "\n" 
    frame1.textItem.contents + seperator + text;
    

    Hi UpendraSengarr,

    Try this:

    var frame1 = app.activeDocument.activeLayer;
    var  seperator = "\r";
    frame1.textItem.contents = frame1.textItem.contents + seperator + "text";
    

    Have fun

  • How to get the text block, given anchor (~ a)

    I need to dynamically position anchored with anchor text blocks (but the relative position will be different for each anchor). If I grep ~ i can get the anchor marker - how to get the text block once I got this marker?

    Thank you

    The marker "anchor" is a character of "simple".

    So you can do the following if you have identified the character (and in this example selected it):

    //Start with an "Anchor Marker" selected:
    var myCharacter = app.selection[0];
    
    if (myCharacter.texts[0].textFrames.length == 1){
    
    var myAnchoredTextFrame = myCharacter.texts[0].textFrames[0];
        //do something with the anchored text frame:
        myAnchoredTextFrame.fillColor = "Yellow";
    
        };
    

    You can set the myCharacter variable differently, if you know the index of the character according to his history of parent.

    Or if you have found the character as part of a search GREP or TEXT by ExtendScript (JavaScript).

    Uwe

Maybe you are looking for

  • Tungsten e2/lack-sync: freeze when you try to synchronize

    Hello I use a tungsten e2, synchronization with the missing 6.0.4 sync on a mac 10.5.4 (German). I synchronize via the cradle. When I try to sync the e2 freezes while the "synchronization" message appears. Black-White-flashing bar appears on the tung

  • Satellite P200 - 14 H - is - what SSD upgrade possible?

    My HARD drive just died and I want to put an SSD in my P200 14 H... Is it possible to put an SSD sata 3 in my laptop where I had a disc hard classic sata 1?TNX

  • What's worse, a phone or a PC crash?

    Although I'm already getting a new laptop, my laptop froze last night, forcing a hard reset. After the reboot, he went in a windows update screen, 'Do not turn off, windows update'. He always did this when I went to bed. When I woke up, we were told:

  • Office Jet 4500 G510n printer ready but error rises to the status

    I have an Office Jet 4500 G510n and a MacBook Pro 15 2006 2 late model, worm 10.6.8 I upgraded to an SSD HD and everything works find except the printer. I can go to the utility and the TEST PAGE prints OK. However, the STATUS, it reads: "error/libra

  • Future updates?

    Hi all I recently bought the 2746CTO SL500. It's a standard construction. I wonder what the cpu max FSB, this model accepts a hard drive 7200 RPM, speed of memory?  Is there a document out there somewhere send me upgrade paths? Thank you fvlmasl2