Tagged Questions

23
votes
10answers
30k views

how to get a Flex text control to word wrap

I'm creating an Adobe Flex application and I have a Text control (mx:Text), which is supposedly used when you need multiline noneditable text (as opposed to a Label, which is single line noneditable ...
4
votes
1answer
222 views

Is it possible to modify how Text swt widget wrap word?

The development platform is an Eclipse RCP 3.4 on Fedora (It's using Gtk native component). I need to avoid word wrapping. i.e.: "Hello World" is displayed as case N°1 but I need the case N°2. ...
4
votes
1answer
443 views

Algorithm for Text Wrapping Within a Shape

I am looking for an algorithm to wrap text within a non-rectangular shape, preferably based on the Knuth and Plass algorithm. The hardest part of this is that the lines may have different heights due ...
4
votes
3answers
803 views

Algorithm for re-wrapping hard-wrapped text?

Let's say that I have written a custom e-mail management application for the company that I work for. It reads e-mails from the company's support account and stores cleaned-up, plain text versions of ...
3
votes
3answers
441 views

Java code for wrapping text lines to a max line width

Before I re-invent the wheel (poorly), I'd like to know if there is a some existing Java code for wrapping text lines to a given maximum width. Ideally it would: respect existing linebreaks break up ...
1
vote
2answers
58 views

Word wrapping text without splitting words

I'm looking for a procedure in VB6 to parse strings (with variable lengths) without splitting any word. I have many strings and I have to write each of them (looping) to an image. An example string ...
1
vote
1answer
25 views

Characters prone to word-wrapping

Browsers, when resized, word-wrap text on the fly, right? What characters beside normal spaces, allow to be "breaked" down? I know soft hyphens and zero with spaces also do this. But what others? ...
1
vote
2answers
77 views

How can you break text that is really long?

I am not quite sure how to do this. I'm trying to break up text that is too long. (E.g. hiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii) I've tried using word-wrap: break-word; but this isn't doing ...
1
vote
2answers
51 views

Is there a libraray/method for 80 column formatted text output?

Here is what I'm looking for. I'd like to find a library or method that formats output text, such that it word wraps at 80 columns (or user configurable), and allows user defined indentation. I know ...
1
vote
1answer
334 views

Rendering CoreText within an irregular shape

I'm looking for guidance on implementing a view that renders an NSAttributedString within a polygon with holes, wrapping and reflowing text to fit the geometry. It's not CoreText that's the issue, but ...
1
vote
1answer
640 views

word wraped tex on Android canvas

im trying to write some strings to a canvas (live wallpaper) however long string dont get word-wraped is there any way to doit? * i think canvas is the only thing i can use for this, since it's a ...
0
votes
1answer
610 views

PHP: wrap text exploded with imagettftext

This script takes text, looks for urls, colors those and makes a png image. The problem I am having is with wordwrap. Since I have to break the text apart and put it back together to color the links, ...
0
votes
6answers
366 views

PHP: combine text after explode

Using explode I broke up the text into pieces, then us the foreach to look for a few thing in the text. $pieces = explode(' ', $text); foreach ($pieces as $piece) { Some Modification of the ...
0
votes
1answer
291 views

TextAttribute.TRACKING and LineBreakMeasurer

has anyone ever successfully used the java.awt.font.LineBreakMeasurer to draw word-wrapping text that has java.awt.font.TextAttribute.TRACKING (also known as letter spacing) set on the font? i create ...