Questions tagged [textflow]
52 questions
0
votes
0 answers
Flex TLF Word Wrap Breaks Words
My company has a Apache Flex 4.11 application. In this application we use Text Flow to allow our users to create text boxes on a page and edit the text. The problem we are having is that when a user types in a word that is longer then the textbox is…

Jeffrey Rempel
- 11
- 1
0
votes
2 answers
JavaFX TextFlow without linebreaks
Is there a way to prevent a JavaFX TextFlow control or its Text children nodes to break lines. I want a TextFlow without line break growing horizontally.
TextFlow textFlow = new TextFlow();
Text text = new Text("A verrrrryyyyy llllooooonnnnggggg…

alex
- 5,516
- 2
- 36
- 60
0
votes
2 answers
Move to specific position in TextFlow JavaFX
I'm having a TextFlow inside a StackPane which is inside a ScrollPane. I'm adding text with different colors to this TextFlow
Text txt = new Text(msg);
txt.setFill(Paint.valueOf(color));
txtFlow.getChildren().add(txt);
I want to scroll to a some…

Thusitha Thilina Dayaratne
- 5,666
- 4
- 42
- 69
0
votes
1 answer
Dynamic font embedding and formatting textflow with them
I am loading multiple swf files containing the different fonts at run-time. I am having problem when I am applying it to textflow in Rich Editable Text. Any Idea how to apply those custom fonts to the textflow ?
Here is the part of my code.
For…
0
votes
1 answer
How to use a symbol from an external swf as image in TextArea?
I hope someone will be able to help here, so first of all though let's take a look at exactly what my problem is ...
I would have liked to insert a movieclip from an external swf into my textarea but I think it isn't as easy as I thought... because…

user2641625
- 11
- 1
0
votes
0 answers
How to use markup tag
in TextFlow object in Flex
In the .mxml file, we can easy create the RichEditableText (RET) component with content of image in it:
…

Liqun Sun
- 125
- 1
- 1
- 7
0
votes
1 answer
textflow event to know when the text has been displayed
I need to know when the text of the TextFlow has been displayed.
the code runs inside a MovieClip and I have tried the follow events:
textFlow.addEventListener(FlowOperationEvent.FLOW_OPERATION_END, handleEnd); (never…

NFRiaCowboy
- 153
- 1
- 9