Questions tagged [htmltext]
103 questions
0
votes
2 answers
Flex 3.5 multiline htmlText scrolls 1-2 lines
It's easy to reproduce. If you are using Flex 3.5 (not my choice) and you scroll the mousewheel over a Text component with multiple lines of htmlText, it will scroll down 1 (sometimes 2) lines, even though there is no text there.
Any ideas how to…

andrewpthorp
- 4,998
- 8
- 35
- 56
0
votes
1 answer
Flex 4: htmlText property and hand cursor
I need hand cursor to appear on roll over spark Label. I've tried useHandCursor + buttonMode properties, but no result. And is there anything like htmlText property for spark Label (I need underline)? Any alternative solutions are welcome. Thanks.

Timofei Davydik
- 7,244
- 7
- 33
- 59
0
votes
1 answer
how to remove "=20" at end-of-line html/text emails
I am using vbs and hMailServer to send html/text emails.
I noticed that for the text section of the email =20 was added to the end of almost every line making it harder to read the text section of the email.
How can I prevent getting these =20 at…

MeSo2
- 450
- 1
- 7
- 18
0
votes
2 answers
Android TextView HTML text break at the end of line
In my text view, I am setting the HTML text:
mTextView.setText(Html.fromHtml("THIS USEFUL INTERESTING HTML TEXT IS DISPLAYED IN ANDROID TEXT VIEW"));
The Text is displayed as below:
The long word at the end is breaking with a hyphen. I want the…

user846316
- 6,037
- 6
- 31
- 40
0
votes
1 answer
Flex 3 setSelection with htmlText
In Adobe Flex 3, this causes problems.
textArea.setSelection( textArea.htmlText.indexOf( 'testString' ), textArea.htmlText.indexOf( 'testString' ) + 10 );
This puts the cursor in the wrong place, because indexOf takes into account the HTML tags,…

andrewpthorp
- 4,998
- 8
- 35
- 56
0
votes
2 answers
Not able to use HTML text in setText of collapsing Toolbar in android?
I am using collapsing Toolbar layout in my android application. while layout is collapse or expand in both case I need collapsing Toolbar text displaying my "amount" in green and "balance" in red.
I had try to use HTML like…

sofquestion 9
- 167
- 4
- 12
0
votes
1 answer
How to remove default CSS from TextField in flex?
I'm in serious fight with it. I need to set the defaultTextFormat of a TextField component to my own values. I can't do that since the component does not use the defaultTextFormat if it has it is already using the format from CSS stylesheet as said…

Clederson
- 15
- 4
0
votes
1 answer
How to avoid the behavior of set htmlText in RichTextEditor?
I'm having this problem of adding an image to the textArea in RichTextEditor (RTE) on the fly and this image seems to "reset" the html properties of the textArea.
Better explained:
The user starts writing something in the TextArea (with Verdana in…

Clederson
- 15
- 4
0
votes
1 answer
flash as3 xml cdata bold tags rendered in htmlText with an embedded font
I'm just trying to get flash to render bold text in a dynamic text field with an embedded font, using data I've imported from an xml file using CDATA. Anyone know how to do this?
XML File:

mheavers
- 29,530
- 58
- 194
- 315
0
votes
2 answers
Flex htmlText with full width image cuts characters off
My mx:Text's htmlText is the following:
mainText.htmlText = "
" + "Lorem Ipsum is simply dummy tex......(more here)"
However, the result looks like the…


andrewpthorp
- 4,998
- 8
- 35
- 56
0
votes
1 answer
Flex htmlText cuts off multiple lines from the bottom if you add an ![]()
For some reason, if you add an image to htmlText, like the following:
myText.htmlText = "
" + dataProvider.bodyText;
The image will be succesfully added to the htmlText, but it…

andrewpthorp
- 4,998
- 8
- 35
- 56
0
votes
4 answers
HTML text field's label showing in three lines
I have created a input text field and given a label to it using html but instead of showing label in one line I am facing problem that the label is showing in three lines.
label {
display: inline-block;
position: relative;
width: 5px;
…

Destro
- 13
- 1
- 5
0
votes
2 answers
Flex 3 htmlText calculates height way wrong and strips span tags
I currently have two problems with Flex 3 htmlText.
1) When I am setting my text's htmlText:
myText.htmlText =
It calculates the height way wrong. In most cases, a ton of padding (or whitespace) is added…

andrewpthorp
- 4,998
- 8
- 35
- 56
0
votes
1 answer
Flash - slowly loading external files
I've been using flash functionality in order to fill in dynamic text variable with an external data. The script works fine, except that now runs very slow - around 30 seconds or so.
myData = new LoadVars();
System.useCodepage = true;
…

Nevyan
- 1
0
votes
1 answer
Flash Lite: htmlText formatting
IN A NUTSHELL
I have a flash application (made for flash lite - actionscript 2).
When I load in my application an XML File and I process it in an object. I get the correct html input in a textfield.
However if I hardcode the object, all html tags…

Jozzeh
- 841
- 10
- 28