Tagged Questions
The htmltext tag has no wiki summary.
2
votes
1answer
955 views
AS3: htmlText with multiple font size tags?
I have a textfield that gets text from xml. I added a function for changing font size for a selected text and it works fine until I load the text again. Then it just ignores all other sizes but the ...
2
votes
3answers
3k views
htmlText not showing bold or italics font
So I have a MovieClip asset with a dynamic textfield sitting inside of it. I export my .fla as a .swc to use within Flash Builder 4, and create instances of the asset with code, populating the text ...
2
votes
3answers
968 views
How Do I handle IOErrors From HTML Enabled Text Fieds in AS3
If I'm loading images via the <img> tag in a dynamic text field and an IOError is thrown, what would I attach the event listener too? the text field?
I tried this...
var textField:TextField = ...
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
1answer
224 views
How to center the text in a JLabel?
despite many tries I can't get the result that I would like to see - text centered within the JLabel and the JLabel somewhat centered in the BorderLayout. I said "somewhat" because there should be ...
1
vote
3answers
529 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
130 views
How to apply formatting to data feeding AdvancedDataGrid in ActionScript 3.0
I'm using the Halo AdvancedDataGrid component, in which the default itemEditor for each column is mx.controls.TextInput.
For example, the data provider is:
[CODE][Bindable]
private var ...
1
vote
1answer
365 views
htmlText embedded images not properly aligned
I have a TextField and I am trying to display embedded images using htmlText:
var test:TextField = new TextField();
test.multiline = true;
test.wordWrap = true;
test.htmlText =
...
1
vote
1answer
519 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
1k views
tinyMCE to AS3 htmlText
I'm using tinyMCE to edit/markup text in a Zend Framework backend.
I'd like to use the generated HTML in a Flash AS3 Application.
The problem is that Flash doesn't support attributes in ...
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
44 views
In Flash CS5, htmlText seems to work differently for textfields I create dynamically (works fine), vs ones I draw with the IDE (doesn't work). Why?
[I just worked this out - I needed to set 'use device fonts'.]
When I initialise a textbox with the following code:
var tf2:TextField = createCustomTextField(10, 50, 400, 22);
tf2.htmlText = ...
0
votes
1answer
32 views
Remove text within certain identifiers from html string in AS3
For a project, I'm trying import htmlText into flash, and then remove any items flash will not process. For example, the html I want to import contains custom "[caption][/caption]" code. I essentially ...
0
votes
2answers
68 views
actionscript htmltext. removing a table tag from dynamic html text
AS 3.0 / Flash
I am consuming XML which I have no control over.
the XML has HTML in it which i am styling and displaying in a HTML text field.
I want to remove all the html except the links.
Strip ...
0
votes
1answer
24 views
html taglib struts
Good afternoon in my timezone.
I have a few little doubts regarding the use of this tag library and the actionForm.
I want to put a inputText in my page , but this input text will be read only.So i ...
0
votes
1answer
132 views
AS3 textformat, embedfonts and multiple fonts?
Here is my issue : I have a dynamic html text field, to which i passed html text / textformat such as :
<P ALIGN="LEFT"><FONT FACE="Trebuchet MS" SIZE="14" COLOR="#000000" LETTERSPACING="0" ...
0
votes
0answers
45 views
I want to get the anchor tag of links in received email using Java
I have read my email from Google mail server using Java. But contents are in "text/plain" format. I want to process the links in read email. How can I get the anchor tag of links in recieved email ...
0
votes
0answers
123 views
Img tag magically appears in htmlText of Halo TextArea component
I am using Flex 4, ActionScript 3.
I am using an AdvancedDataGrid in which one of the columns uses a custom itemRenderer that extends the Halo TextArea (I had to use the Halo component because I ...
0
votes
1answer
226 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
55 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
332 views
Flash as3: Multiline htmlText scrolls on drag selection of text
Multiline htmlText scrolls on drag selection of text
It also scroll on mouse wheel event..
var css:StyleSheet = new StyleSheet();
css.parseCSS('.red-text{font-family:"Lucida ...
0
votes
2answers
199 views
AS3 htmlText is showing tags
I have a textfield created with AS3 as thus: (theDesc is a parameter passed through a function)
var productDescTxt:TextField = new TextField();
productDescTxt.htmlText = theDesc;
...
0
votes
2answers
86 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
0answers
406 views
AS3 TextField.htmlText reseting after selection leads to unexpected behavior
Hi i'm not quite sure why this happens, but i run into some issue today.
Following situation:
I have a multiline embed textfield where i set the htmlText property. When i change the language, the ...
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
1answer
1k views
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:
...
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
392 views
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 = <html text stored in my mysql database>
It calculates the height way wrong. In ...
0
votes
1answer
61 views
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 ...
0
votes
1answer
603 views
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.
...
0
votes
1answer
214 views
Flash player 10 XML and AS2 problem
I am having trouble with less than (<) symbol in the most recent version of flash player for an AS2 app. I have an XML which contains strings of html text that I am passing to a text field like the ...
0
votes
1answer
388 views
ActionScript 3: maintaining textarea UIscrollbar position on loss of focus in flash embed
I'm using Flash CS4. Everything functions as it should when CS4 previews the swf after compiling it.
However, after embedding the flash item in a webpage, if the textArea loses focus within the flash ...
0
votes
2answers
468 views
ActionScript Dynamic HTML Text With Embedded Fonts?
i'm trying to use htmlText on a dynamic text field with embedded fonts. i've searched for an hour for an answer and i still don't have one.
on stage, there is a dynamic text field with no text. ...
0
votes
1answer
176 views
How to fill a textfield in later frames from the first frame?
I have a case where I can change the contents of an actionscript class which fills the dynamic text fields in a flash movie. The class function is called from the first frame in the movie and fills ...
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
2answers
604 views
Flash dynamic HTMLText displaying erratically in TextField
HTMLText is displaying really strangely. I'm displaying a textField with htmlText provided through XML, and in this bulleted list it'll display the first line all on one line, keep going off the end ...
0
votes
4answers
3k views
Flash AS3 and XML: way to fix line breaks in htmlText that uses <b> tags in the xml?
I'm importing text in from an xml file and i'm using htmlText to try to keep some styling with tags. I have both the regular and bold face font embedded, and the bolding works fine. The problem is ...
0
votes
0answers
860 views
Flex 4 htmlText - <a> with <img> doesnt work
Wow - I cant believe I actually have a question for Stack O'Flow! Been here many times but never needed to ask till now so thanks in advance!
I have a Flex 4 app that I want to embed htmlText with ...
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
730 views
Broken htmlText in Actionscript 3.0 - funky display from incremented display using string.substring
This is an issue with textField.htmlText in actionScript 3.0 and the class I'm making for it.
In an attempt not to post my whole class, I've managed to boil down the problem to what seems like a ...
0
votes
2answers
153 views
How can I reference only a portion of a TextArea's htmlText block?
I have a number of very poor-quality pdf documents that look like 80's photocopies, which I'm rebuilding in Flash (Flex Builder 3 MXML application), representing paragraphs of text in TextAreas so ...
0
votes
3answers
798 views
Change UIWebView's color while loading content
I have a UIWebView in my app that shows some html-formatted text (loaded from a .plist file from my bundle). The UIWebView takes about 1 second to render the text on the screen and during that second ...
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