Tagged Questions
2
votes
9answers
8k views
Flex. Embeded images in htmlText
Images can be included in TextArea control using htmlText property:
ta.htmlText = '<img src="http://..."/>';
How can i reference embeded images?
An example:
<mx:TextArea ...
1
vote
3answers
528 views
How to “append” html text to text area in flex and flex mobile project to display sprite and text formatting
I'm playing around with a messaging type of application. Does anyone know how, or of any tutorials on to "appending" html text to text areas in flex and flex mobile projects? And specifically how I ...
1
vote
1answer
518 views
Why Flex AS3 TextArea Htmltext changes format on event
this is giving me no sleep,
Ive added my test application here. Just copy and paste to test
the application adds well formated html text to a text area on clicking 'add'
then on clicking 'go' i take ...
1
vote
2answers
8k views
ActionScript 3 TextArea htmlText styling using <span> tag
According to this webpage, the htmlText property in TextArea can handle CSS text style if using span tag. I want to format multiple tags in my code. Something like:
var tags:TextArea = new ...
1
vote
3answers
3k views
Flex: How to call an actionscript function from htmlText anchor
Is there any way to call an action script function from an anchor which defined in TextArea component's htmlText property.
Thank you
0
votes
1answer
223 views
Flex does not handle line breaks in htmlText
I store the htmlText property of a RichTextEditor in the database.
I retrieve it in another instance and I want to show the user the first line of it as plain text
So I let Flex handle the ...
0
votes
1answer
54 views
AIR: url navigation via <a> link in htmlText
I have AIR application and mx:Label with htmlText property (<a href='http://www.adobe.com'>Navigate to Adobe.com.</a>). For some reason nothing happens when I click it. It works in not-AIR ...
0
votes
2answers
84 views
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 ...
0
votes
1answer
788 views
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)? ...
0
votes
1answer
167 views
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, ...
0
votes
1answer
164 views
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 ...
0
votes
1answer
172 views
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 ...
0
votes
2answers
231 views
Flex htmlText with full width image cuts characters off
My mx:Text's htmlText is the following:
mainText.htmlText = "<img src=\"breadmaker.png\" width=\"339\" height=\"275\" vspace=\"0\" hspace=\"0\" \/>" + "Lorem Ipsum is simply dummy ...
0
votes
1answer
169 views
Flex htmlText cuts off multiple lines from the bottom if you add an <img />
For some reason, if you add an image to htmlText, like the following:
myText.htmlText = "<img src='"+dataProvider.bodyImage.getUrl('original')+"' align='left' \/>" + dataProvider.bodyText;
...
0
votes
2answers
216 views
Can I get access to htmlText setter code in textArea in Flex?
Greetings,
I can see that when I set htmlText in a textarea control, the text property contains the html free version of the text. So there is a parser somewhere that is ripping of html from the ...
0
votes
0answers
639 views
htmltext of TextArea in Flex 3 disappears when embedding fonts!
I have textArea which gets the text through user input in runtime. User input comes through Richtexteditor so it is html
I save the html text from Richtexteditor to textArea's htmltext property.
...
0
votes
2answers
323 views
Is there a negative for Courier new font?
I want to make a text highlight in flex textArea but its htmlText doesn't support <font bgcolor='#FFFF00'> part of my text </font> so I'm searching for a font witch is the opposite of ...
0
votes
1answer
455 views
Can I control the context menu on a link in htmlText when using Flex?
I created a Flex application with a textArea. I'm populating the textArea's htmlText property.
I have a context menu on the textArea, but I don't see how to make a different context menu when the ...
0
votes
1answer
559 views
htmltext as object in flex
is it possible to convert htmltext in object and move that object in textarea?
Regards,
Shivang
0
votes
2answers
960 views
Flex. Images aligning in htmlText
I set htmlText property of a TextArea to the following value:
<img src="img.gif" />Some text<br><img src="img.gif" />Some text
The top edge of "Some text" is aligned to the top ...
0
votes
1answer
4k views
displaying an image inline in TextArea.htmlText
I would like to display some smiley's inbetween text in my chatbox but when i add an image it gets displayed on a seperate line...
Any ideas?
<mx:TextArea id="myChat" width="271" height="238" ...