Mount horizontal scaling of TEXT to the framework (set) by a maximum factor of 200 min 40%

We you print shirts and often copy and paste the names of player in a model then adjust the horizontal scale, one at a time to fit the text frame (up to 200% not less than 40%). It is a tedious process, and I am sure that there is a way to do it with a script. However I was not able to understand. Any help would be appreciated.

That is down to a certain lateral thinking. How do you define "worthy" or "does not not to?" The following seems to be true, provided your name are the only thing to each its separate text block: not more than 1 single line and not (in part or in whole) in excess.

First of all, a reality check: reduced the text to width 40 percent actually make it fit? If this isn't the case, set the scale to 100% and leave it alone for a human Intervention. Then, it fits all the way up to 200%. We cannot go any wider, we need not resolve anything still don't 'go home' by which meanings. Only if a name is wrapped line, he needs his width adjusted again down.

Here's how it works: select all your text at the same time frames, and then run the script. Then sit because it goes over each picture and adjusts the text to fit with accuracy up to 0.1%

I have prepared a picture to show what it looks like - Fanny Blankers-Koen, Dutch skating pride, was chosen to be the "too long" name to show that the script is not in what it can not solve, and Ali, pele and Louis (Joe, of course!) show that it go not beyond 200%.

Oh and here's the Javascript code:

//DESCRIPTION:Multi-text-frame-fit
// A Jongware Script 07-Apr-2015

for (i=0; i 1)
    ft.horizontalScale = 100;
  else
  {
    // calc what should fit
    ft.horizontalScale = 200;
    // still not there at 200? Leave it, else try smaller
    if (f.overflows || ft.lines.length > 1)
    {
      while (f.overflows || ft.lines.length > 1)
        ft.horizontalScale -= 10;
      ft.horizontalScale += 10;
      while (f.overflows || ft.lines.length > 1)
        ft.horizontalScale -= 1;
      ft.horizontalScale += 1;
      while (f.overflows || ft.lines.length > 1)
        ft.horizontalScale -= 0.1;
    }
  }
}

Tags: InDesign

Similar Questions

  • File IDML opening with vertical alignment of text in the box set "Center".

    I got a batch of files, asking me to review. They were saved as files CC as well as .idml. I have used .idml since the sender used plugins files that are not included in the package. Using the .idml, I do not get the warning about the missing plugins. However, when I open the idml files that all text boxes are the vertical value Center instead of top. Very tedious. CC files opened correctly (with the exception of the warning about the missing plugins).

    Is it possible to open the idmls and get the vertical alignment to open as "top"? Or should I use the CC files and ignore the warning on the plugins?

    Thank you!

    Tim

    Guess I'm stuck with opening the idml docs and manually change each vertical alignment of text box.

    With Find\Change you can:

    Find/replace > object tab

    Tye: Blocks of text

    Change object Format: click on specify the attributes to modify > text frame general Options > vertical Justification > Align > Top

    Then find and change or change all

  • When you change the text, all the text in the bounding box is removed...

    I have a PDF file that was created in a different version of Adobe. The Adobe program, I am currently working with that is Adobe Acrobat Pro DC. It is on a Windows 7 PC. When I change the text in the 'framework', any word, I try to change, all of the text in the box is removed. How can I stop this from happening?

    Nevermind, I figured it. I had select the bounding box and select "bring forward" under the "objects" tool

  • Add text to the 10 items

    I open the items editor today and found that I could add is no longer any text a new image.

    I start the elements, go into the editor, create a new image, then add some text, and I don't quite see the text.  I checked things:

    Different fonts

    Different sizes

    Various colors

    Various opacities

    Anti-aliasing on and outside

    Styles (including none)

    I tried horizontal and vertical text

    I tried setting the background of different colors

    Zoom level seems to make no difference

    No matter if I create the new image with a white or transparent background

    When I try the Horizontal mask tool, I get a message "WARNING: no pixels were selected.

    Layer names contain the text I typed in the image.

    Any idea what could happen?

    Thank you!

    I would try to reset the text tool:

    What size is the new image of your creation?

  • Printer giving horizontal lines through the text in the print quality report.

    I ran through the troubleshooting steps.  Use all of the HP ink (and always have) I cleaned the printheads through the steps.  The color blocks out now clear - also received streaks before the troubleshooting steps.  The black bloc also lacks a section in each of the blocks of color.  The text at the top is still missing some parts.  I also replaced the black cartridge with a brand new.

    Can it be fixed or I am looking at a new printer?

    Of two things happening. The printer just needs to be aligned, or the print heads are gone.  You can find the alignment in the same place, you can find the print head cleaning.  If the alignment fails or does not solve the problem, the print heads went out and must be replaced.  The print heads have their own warranty, so be sure to check the date of warranty before look you at buying new print heads.  If the print heads are under warranty and need replaced, HP should replace it for free.  If the printer and print heads are more under warranty, it would be cheaper to buy a new printer, it would be to replace the two print heads.  Let me know what happens.

  • Find and move text within the existing framework of anchored

    I have a great story that spans several pages text. It contains a number of paragraphs that have the following content:

    [empty anchor for an existing character, but the anchor text frame] [important book that contains NO tab] [TAB] [intermediate text containing NO tab] [TAB] [end text containing NO tab] [empty anchor for an another existing character, but the block of anchor text]

    I need a script (Javascript, preferably) that:

    1. find a paragraph that starts with a character of anchor;

    2. find and cut the main text between the character of the anchor and the first TAB after

    3. Paste the main text in text anchored at the beginning of the paragraph;

    4. in the same paragraph, find the final text between the second (and last) TAB and the character of the second (and last) anchor at the end of the paragraph;

    5. glue the final text under text anchored at the end of the paragraph;

    6. repeat 1. -5. for the paragraph all in the same article that starts with a character of the anchor.


    I'm a JS programmer advanced, but new scripts CreativeSuite. I just understood how to search for some text, and I know that the 'parent' of an anchored object is a 'character' - but now to I access the contents of an object anchored to its parent character?


    Even better:

    function movetoanchored(find) {
      var myText = find.characters.itemByRange(1, -1).texts[0];
      var myFrame = find.characters[0].textFrames[0];
      myText.move(LocationOptions.AT_BEGINNING, myFrame);
    };
    
    function main() {
      var myStory = app.selection[0].parentStory;
      app.findGrepPreferences = app.changeGrepPreferences = null;
      app.findGrepPreferences.findWhat = "^~a\\S+";
      var myFinds = myStory.findGrep(true);
      for (i = 0; i < myFinds.length; i++) movetoanchored(myFinds[i]);
      Window.alert(myFinds.length + " moves performed");
    };
    
    app.doScript(main, ScriptLanguage.JAVASCRIPT, undefined, UndoModes.ENTIRE_SCRIPT, "MoveToAnchored");
    
  • The scaling and positioning of the images in the framework

    In JavaScript, I try to place an image within a framework which already exists and then put the image to a specific size and move it to a specific location in the framework.

    I'm the placement using the:

    pageItem.place (File (imagePath + name));

    I tried to find the code, but all I can find are standard fit content to frame, content, etc. Center.

    I tried...

    pageItem.verticalScale = 90;

    .. .and it resizes the frame, not the frame content.

    How can I request this content?

    I need to put in place a transformation matrix?

    Could someone share the lines of code for this?

    Thank you!

    your "pageItem" is the framework. [Once you placed something in this framework, you can see in "pageItem.graphics [0 ']. Then "pageItem.verticalScale = 90" should be "pageItem.graphics [0] .verticalScale = 90".»

  • How to set the alternate text for a framework anchored in FrameMaker 11?

    What is the procedure in FrameMaker 11 to include the alt for anchored frames text? We need produce a tagged PDF output is consistent accessibility; This output should include the alternate text for each image in the document that a screen reader can read.

    In previous versions of FrameMaker, it was possible to set the text as follows:

    1. Select the image and choose the graphics > properties of the object.
    2. Click on object attributes.
    3. In the text attributes section, add your text and the text and then click on set.

    FrameMaker online help describes the same procedure, to http://help.Adobe.com/en_US/FrameMaker/using/WSd817046a44e105e21e63e3d11ab7f7960b-7f0f.htm l . However, I see that in FrameMaker 11, you get the choice of graphics > properties of the object has changed from previous versions, and I can't see the object attributes.

    Where the text is defined for an object in FrameMaker 11?

    In the Panel of the anchored frame, click the button object attributes.

  • How to get the height and width of the exact text in TextLayout framework

    Hello fellow developers,.

    I'm starting to work with TLF when there are three different CFC now, I work with unique CFCS with flex 4 and a lot of things are changed as

    I use calculateHeight (), calculateWidth () now these methods are not available.

    If someone knows the replacement of these methods then do let me know.

    Thank you

    If the text exceeds the container, what can happen in a container to scroll where you have to scroll to see some of the text, then returns getContentBounds values are estimated values. It is because we do not want to force the text to recompose all the way at the end of a very long TextFlow in order to return a value. However, if you want to get the exact amount and is not afraid to take the time to redial, call textFlow.flowComposer.composeToPosition (), before calling getContentBounds. This forces all text redial at the end, and then getContentBounds displays the calculated value entirely instead of her estimate.

  • E operator and horizontal scaling?

    I'll try to find an example of a PDF with horizontal scaling in one of it is the Tm.

    The other thing, I want to find is a pdf file with an operator used in Th.

    I think that I can't find anything on it it's because Th operator is used to create pdf files from scratch rather than the automatic writing of a pdf document from any file (using Adobe writer).

    My understanding is that if I have a Tm like that.   12 10 20 36 0 99

    and I have an operator of text fonts showing this:

    / F2 1

    the horizontal scale would then 20 x 1 = 20.

    But if that's the case then why a pdf file will contain an operator of Th.  Maybe they do not.  I have yet to find an example of one?

    Also, the my assumptions are correct on the horizontal scale above?

    My colleague and I try it worked, so we can incorporate this into our analysis tool pdf we write used in our workplace?

    An' th' is not an operator but a state parameter, which is initially set to 100. If a Tz operand is called, it will simply change the value of Th (level100).

    So you will never find a PDF document that uses a 'Th' operator because it is not defined (see "appendix table A.1: PDF content stream operators ' in the format PDF 32000-1: 2008).

  • How to change the default alignment of text in the cells in a table on the demand for numbers?

    I'm new to Mac. I own a MacBook pro MF839HN/A and currently using the 3.6.2 release NUMBERS (2577). I want to know if I can change the default alignment of text in the cell in a table of NUMBERS application? Also, when I select all the cells in a table to change their alignment, I can only change the horizontal alignment of the text and not the vertical alignment. To change the vertical alignment of the text in a cell, I have to select them individually. Help me with two questions.

    The only way I know is to create a table that is set up as you like, then save the empty document as a template customized by using the menu item "file > save as template:

  • How can I get the Extension toolbar icon to display the image without text (without affecting the other icons universally)? How can I change the text of the icons (except space)?

    «In the drop-down view menu, you can choose what to display toolbars: icons, text, or icons and text together.» By default, Firefox shows icons only. "Is it possible to choose a setting for a specific toolbar icon to be icon only (no text) without affecting all the other icons on the toolbars universally?

    Second, is there a way to edit the text on a toolbar button by another extension (because it takes up too much horizontal space in the toolbar because of the amount of text)? I do not know how to locate the xpi file and open it with Notepad, but then it is mainly (not English) code & FIND is not to search the text of the button (to change).

    These 2 questions should apply to the buttons of the Extension in general. However IF it makes a difference I'm talking for the toolbar button back to 7.0 top of the page that says 'Go to top/bottom '. I would like to at least change on "Go to", but my questions also apply to the other buttons Extension. I realize that it may be necessary to redo a fix/change whenever there is an update? Thank you.

    You should always see this icon that only the text of the label could be hidden.

    You can try this code in the file userChrome.css below default @namespace.

    @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    
    toolbar[mode="full"] #b2tTBUnicon { min-width:0px !important; }
    toolbar[mode="full"] #b2tTBUnicon .toolbarbutton-icon { margin-top:-20px !important; }
    toolbar[mode="full"] #b2tTBUnicon .toolbarbutton-text { display:none !important; }
    
  • OCIEnvCreate failed with return code-1, but the text of the error message was not available. »

    OCIEnvCreate failed with return code-1, but the text of the error message was not available. »

    I get this message (error) after update my customer Oracle 9.0 to 10.1 (used in the .net Oracle connection)

    I would like to get a resolution? If someone has experiece with her.

    THX

    Hello

    To improve assistance to this subject, you can ask your question in the MSDN Forums.

    NET Framework

    http://social.msdn.Microsoft.com/forums/en-us/category/netdevelopment

  • The framework of the call works on a Dev Alpha device?

    Hello

    The framework of the call (to share of text or files to an application via the share button) works on a Dev Alpha device?

    It's my bar file - descriptor.xml - I want to register my app for the menu to share with the text:

      default false  John Deer AppIconsForPublish/appname_1280x768_splash_landscape.jpg core.media  100 1.0.0.0  AppIconsForPublish/appname_114.png John Deer1234567890
    
     VIEWER bb.action.OPENtext/csvtext/xlstext/plain  
    
      APPLICATION  bb.action.SHAREtext/csvtext/xlstext/plaintext/*  
    
    run_air_native
    
    
    

    Is there something missing?

    Thanks for all your comments!

    Vibes

    I should start by individual tests and see if it works.

    I leave you a few samples I saw and work:

    Share your app from the text:


          APPLICATION
         
             bb.action.SHARE
             text/plain
            
         

      

    Share the link with your application:
     
        APPLICATION
          
                 bb.action.SHARE
                 *
                
          

     

    This one is for opneing my app with local files with these extensions:


            APPLICATION
            
                bb.action.OPEN
                *
                
                
            

        

  • Invoke the framework to share via NFC

    I have an application that processes webworks nfc read via the api called successfully, but need to write a text simply return to the tags. I see that support nfc does not come any time soon

    https://github.com/BlackBerry/BB10-WebWorks-framework/issues/568

    So my question for the use of the invoke framework to write the tag. I tested the waterfalls sample applications (NFCTool and NFCToolLite) that do exactly what I need. NFCToolLite uses the framework to invoke to share text with a tag.

    I tried many combinations of target, action and type based around

    Target: 'sys. NFCViewer,"action:" bb.action.SHARE", type and uri:"application/vnd.rim.nfc.ndef"and"ndef://2/text/""

    With no luck. Is their anything I can do to share short trying to write my own native extension text within webworks nfc tags?

    see the code sample I wrote here; https://github.com/BlackBerry/BB10-Webworks-Community-Samples/BLOB/Master/NFC/ndefTagReading code is there to analyze and build tags NDEF, easy access to the content of the tags well known Custom byte level access... (and writing via invoke)

Maybe you are looking for