Actionscript 3 :: HtmlText Is Showing Tags

May 20, 2011

I have a textfield created with AS3 as thus: (theDesc is a parameter passed through a function) [code]the problem is the textField is displaying every character. <p><strong> etc.Is there any extra encoding need done on my end?

View 2 Replies


Similar Posts:


ActionScript 3.0 :: Extract HtmlText To String With Tags?

Feb 15, 2009

I'm working on a textField overflow system for a project at the moment.I cant find a way to return a textField's htmlText complete with the original html tags.The system is used for splitting up a textField above a particular height into two textFields so the side of each other. The system works perfectly with unformatted text, but I cant seem to extract the formatting tags out of the left textField and apply them to the right - all I can get is plain text. (The system uses a StyleSheet by the way - so it is applied to both textFields).I 've tried:

Code:
if (leftField.textHeight > contentHeight) {
//var rightString:String = new String;
var lastLineIndex:int = leftField.getLineIndexAtPoint(10, contentHeight - 5);[code]...........

The commented out code represents the alternative method I've tried (still fails).

View 1 Replies

Html :: Remove Font Tags From HtmlText?

Jan 16, 2012

I'd like to remove the font tags from the htmlText string produced by a TextField leaving the surrounding nodes and any bold etc tags within intact.

Example partial output of htmlText:

<P ALIGN="LEFT"><FONT FACE="ChampagneLimo" SIZE="18" COLOR="#000000" LETTERSPACING="0" KERNING="0">Lorem Ipsum</FONT></P>

My plan was to avoid trying anything with regex and create an XML object.

However if I create a new XML object containing a root node and then attempt to appendChild the htmlText string so that I have a valid XML object to manipulate I run into a problem with html entities, see example below:

<html>&lt;P ALIGN="LEFT"&gt;&lt;FONT FACE="...

How can the font tags be stripped from htmlText and how can I create a valid XML object from the htmlText string? My plan was to use the XML replace() method

View 1 Replies

AS3 :: Flash - HtmlText Is Rearranging Font Tags By Itself

Feb 27, 2012

I have the following code in AS3:

var str:String = '<TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="Arial" SIZE="12" COLOR="#000000" LETTERSPACING="0" KERNING="0">Lo<FONT COLOR="#0000FF">re<FONT FACE="GG Superscript">m</FONT></FONT><FONT FACE="GG Superscript"> Ip</FONT><FONT COLOR="#990000"><FONT FACE="GG

[Code]....

It seems htmlText is rearranging the html tags. Even though the output is the same, I need the original html back since I am making a text editor and the AFTER htmlText is messing up my tag calculations.

View 1 Replies

ActionScript 2.0 :: Html Tags In HtmlText = Statement?

Mar 11, 2004

A friend is building a blog, with entries placed in a database, pulled out with php, and then passed to flash. It all goes well except for one thing...problems with html. She's using a tutorial from webmonkey and here's all the actionscript, as it originally was created:

Code:
//function to load external data using the loadVars() object
//l=name of loadVars object
//n=name of text field [code]....

the result: everything loaded in the .swf except the title of her entry over the entry itself. There is a bold html tag around that part, she removed it and voila! The title appeared. But now there's another html tag that starts off a line of code, and it's failing. Click on the entries, and nothing loads except the - between the date and title. Here is that section of code:

Code:
for (i=0; i<this.n; i++) {
n.htmlText += "<u><a href='asfunction:_root.loadArc,"+this["id"+i]+"'>"+this["title"+i]+" - "+this["date"+i]+"</a></u><br>";
}

She found that by hardcoding a variable defined by the loadArc function, which is pulled in as arcNum, the whole thing works...but of course, can only pull in one entry with the one id number she coded.She also has removed the <u> tags, but the <a href must obviously remain to make her entries clickable.why having html at the front of this statement in the for loop is causing the entire line to fail, and no variable to pass? It's an interesting stumper. To see this in action, here is the page: http:[url].... In that directory you can also find the .fla file and the php results from the database. Tester.html is her second flash movie, also in that directory and completely barebones, and she received the exact same results.

View 1 Replies

Actionscript 3 :: Flash - Fix Line Breaks In HtmlText That Uses <b> Tags In The Xml?

Jun 10, 2010

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 that it ads spaces around the words in bold like a paragraph indent and then makes a line-break after them. What's going on, is there a way to fix?

fromxmlText.htmlText = theXML.contenttext;

If I pull the text in from a txt file it will work fine, but taking it out of an xml file causing funky formatting.

View 4 Replies

Flash :: Supported Html Tags In The HtmlText Parameter Of Components?

Feb 1, 2011

Am working on a flash component that is supposed to display some dynamic text which might include HTML formatting. This text is displayed in a label component (AS3), and i would want it to render correctly, like create a line break when <br> is inserted, but it doesn't!

So am wondering what the supported HTML tags in the label component, and in general all other flash components?

View 1 Replies

ActionScript 3.0 :: Anchor Tags In Htmltext Property Of TextField Causes New Lines In Text?

Jun 24, 2009

I have some HTML loaded from an XML document that includes web links (anchor tags).  I am using a TextField object to display the text, and am plugging the XML data into the htmlText property of the TextField, and the text is rendering with HTML markup, links are working etc.
 
The problem I'm seeing is that a new line is created before and after the link, so html like this:
 
hello world <a href ="#">this is a link</a> and all of this should be on the same line.
 
is rendered like this (with specific attention paid to the new lines): Does anyone know of a way to prevent these new lines from appearing when using HTML links within a TextField? 

View 2 Replies

ActionScript 3.0 :: HtmlText Anchor Tags Do Not Support Title Attribute For Tooltips?

Feb 5, 2010

I'm working on a project and I'm encountering an issue with Flash's sporadic support of HTML 1.01 for textboxes that use .htmlText.The "Title" attribute is not supported for showing tooltips when you hover over the link.For instance, in an HTML document, a href='index.html' title='Click Here' will show 'Click Here' in a hovering tooltip box. It doesn't display in Flash.Anyone know of a good work around? I found this page: have yet to get it working with my text. For instance, I have one textbox, and the URL links are set for various words. This means I don't have the coordinates to set my X and Y for the fake hover effect.

View 4 Replies

ActionScript :: Flex 3 HtmlText Calculates Height Wrong / Strips Span Tags

Jan 11, 2011

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 most cases, a ton of padding (or whitespace) is added above and below the text. I am not sure what happens, but it calculates the textHeight way higher than normally.

2) If I put <span> tags in my html, it automatically strips them out (instead of just ignoring them). I am using the span tags to be able to dynamically find certain pieces of my text. For instance:
<span class="salutation">Dear,</span> <span class="tag">[First Name]</span>
is inserted in my htmlText, and I use them to parse out the salutation and tag of my variable data.

Any alternative ideas on how to parse out pieces of html? Any way to improve htmlText? How to correctly measure textHeight and/or remove padding?

View 2 Replies

IDE :: XML Load Into MovieClip - Showing Tags

Feb 2, 2009

Code:
var RootNode:XMLNode;
var contentXML:XML = new XML ();
contentXML.ignoreWhite = true;
contentXML.onLoad = processXML;
contentXML.load("about.xml");
function processXML(success:Boolean):Void {
[Code] .....
When I test the above my XML loads properly into the holding MC. My problem is that it is also showing all of the XML tags.

View 1 Replies

ActionScript 3.0 :: TextField Not Showing As HtmlText When Using AddChild

Mar 16, 2009

I have an odd predicament that I'm trying to wrap my head around. I have a textField, that is populated by data from an xml file. It contains simple line html line break tags, and when I use the htmlText option, it doesn't seem to recognize those tags, even though they don't show up when I view it online. Here is my code:


Code:
//FLASHVARS CODE
var varName:String;
var paramObj:Object = LoaderInfo(this.root.loaderInfo).parameters;
for (varName in paramObj) {

[Code]......

I can't figure out how to make it render properly. If I choose a dynamic text field already on the stage it works fine, but then the scrollbar doesn't work. I read that a TextField automatically uses a scrollbar when it gets too long. Can anyone suggest a possible work around for this? I feel the answer is staring me in the face and I just can't see it.

View 7 Replies

ActionScript 3.0 :: TextField Not Showing As HtmlText When Using AddChild?

Apr 29, 2009

I have an odd predicament that I'm trying to wrap my head around. I have a textField, that is populated by data from an xml file. It contains simple line html line break tags, and when I use the htmlText option, it doesn't seem to recognize those tags, even though they don't show up when I view it online. Here is my code:

Code:

//FLASHVARS CODE
var varName:String;
var paramObj:Object = LoaderInfo(this.root.loaderInfo).parameters;

[code]...

I can't figure out how to make it render properly. If I choose a dynamic text field already on the stage it works fine, but then the scrollbar doesn't work. I read that a TextField automatically uses a scrollbar when it gets too long.

View 1 Replies

Actionscript 3 :: HtmlText Not Showing Bold Or Italics Font?

May 11, 2010

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 dynamically from XML.

My issue is that even though I have htmlText enabled, bold and italics tags don't appear to be working. I have a feeling it is because when I created the asset in Flash CS4, the text field makes you specify the font, and the subset of that to use (Regular, Bold, Oblique, etc).

Is there any way to get the htmlText to render bold and italics tags properly without having to completely rethink the way I'm creating all these fields?

View 3 Replies

ActionScript 3.0 :: Converting HTML Tags To XML Well-Formed Tags?

Sep 10, 2009

I have HTML file, I changed its extension to .XML.I'd like to convert HTML tags to valid XML document using AS3.

View 6 Replies

ActionScript 2.0 :: Flash Attribute Tags - Add In Custom Attribute Tags That Flash Can Recover?

Dec 15, 2006

I have been trying to figure out how you could add in custom attribute tags that flash can recover.

EX:
<param name = "movie" value = "somefile.swf">
<embed src = "somefile.swf" width = "550" height = "400">

Except, that I would like to add a Custom tag, like "randNum" so that the tag user could input some number, or rather, a flash movie could generate a tag with a number already put in...Basically, heres a really basic version of the idea.There is a Flash Movie.In the movie, you can input text into a textfield.Upon finishing your message, you click a button "save".

The flash movie then:

1. Comes up with a random number unique to the message.

2. Assigns that number to a variable... "randNum".

3. Saves message as a xml file to the server as "filename" + randNum.

4. Outputs into a textfield a generated HTML tag that a user can post on myspace and such so that it will load in the flash movie.

Except... in the tag, there will be a custom attribute. If the random number variable "randNum" was 00112233, the custom attribute will be 00112233.

EX:
<embed src = "somefile.swf" width = "550" height = "400" randNum = "00112233">

So when the movie opens, it retrieves that randNum from the tag and can use it inside flash. How can this be done? Sorry this post was so long, but I wanted everyone to understand the concept.

View 8 Replies

ActionScript 3.0 :: HtmlText <img> Tag?

Jan 12, 2011

if I use an <img src='images/pic.jpg' /> within a text box that is using classic text, dynamic text as its settings, it has been assigned "render text as html" and has been set to multiline, it works great, that is when my image is in the top of the text area. When I move the image to the end of the scrolling text, it makes my text block larger to accommodate the text instead of making it just scroll more.

View 2 Replies

ActionScript 3.0 :: Htmltext <img> Won't Appear?

Feb 29, 2012

context: flashplayer 9, in the same folder as the .fla I have an images folder and inside that the png I wish to display

For the life of me I can't get the img tag to work in a textfield Here is my code, what the bleep am I missing here!! (the other html tags seem to work but not image)

import flash.display.Sprite;
import flash.text.StyleSheet;
import flash.text.TextField;

[Code].....

View 2 Replies

IDE :: No Space After <p> In HtmlText?

Feb 3, 2009

I have been working with htmlText and everything is loading and appears fine with one minor exception. For some reason there is no space between paragraphs defined by the <p> tag. There will be a line break, but not the extra space between the paragraphs.

View 2 Replies

ActionScript 2.0 :: <br> In HtmlText?

Apr 26, 2011

I been doing more programming in other languages through the past two flash changes and am now using CS5 (and AS 2.0) for work. Tell me, why doesn't this work:

Code:
this.createTextField("test",1,100,100,500,500);
test.html = true;
test.htmlText = "Hi<br><br>Hi";
No breaks show up - it appears as "HiHi"
I've tried <br /> and <BR> etc. embedFonts && regular.

View 2 Replies

AS3 :: Flash - Add <hr/> Tag And Utm Tags?

Feb 28, 2011

first, I need to show an <hr/> tag after the description, its an rss widget so need to seperate with each rss post with a border or hr. Its not possible to make it manually because its came from xml. I'll give you the existing script with me.

second, I need to add utm tag after the urls to trace the clicks, this is actually I need to add after the links 'utm_source=rsswidget', you'll get an idea by seeing the script below

var loader:URLLoader = new URLLoader();
loader.addEventListener(Event.COMPLETE, onLoaded);
var xml:XML;
function onLoaded(e:Event):void

[Code]....

View 1 Replies

Asp.net :: Object Tags And Asp?

Sep 22, 2011

I have a master page that gets all its images from a table on a database, and I am trying to incorporate flash, for banners, but I can't quite seem to figure it out.Right now there is a:

<asp:image id="headerimg" runat="server"> and that generates the appropriate img tag needed to show an image in html. Now I would like to know if there is any way where I can generate an object tag if a .swf file is present and populate the tag with width height and data and also not show the img tag.

I now have made a usercontrol that will create the object tag, but can someone please tell me if it is looking like I am doing it right..

[Code]...

View 2 Replies

ActionScript 3.0 :: XML - HtmlText And CSS Formatting?

Nov 6, 2008

I (well, a rather angry client) found an oddity I would like to consider a bug in formatting htmlText coming fom XML's toString() method with css.

If somehow an empty tag ends up in XML like <h1></h1>, all of the following text in the field is formatted to the CSS defined props of h1. In the (simplified DocumentClass) code below I have an XML object which has an empty h1-tag after the first sentence of the first paragraph. Placing the XML it in the field renders the text following the empty tag as bold and with the fontsize set for h1.

Strangely, if the html source is initialized as a string and put straight in the textField (see commented code), all formatting is OK.

View 10 Replies

Layout Mess Up If Use Css In HtmlText?

Jul 2, 2009

layout mess up if use css in htmlText.ike if I do

<p><span style='display:inline;color:#6b97fe'>Tel:</span>1234567</p>
there would be a line break after </span>
OR

[code].....

View 2 Replies

ActionScript 3.0 :: GetCharBoundaries And HtmlText?

Jul 21, 2010

I am having an issue using getCharBoundaries() with htmlText.  In the following code, I am trying to get the location of <img> tags, so that I can then move the image to where the <img> tag in the text, rather than the image being placed on the next line.  getCharBoundaries returns an actual rectangle when I use plain text, but when it's htmlText, the function returns null (I put in a trace statement just to make sure of whether I was getting null or not).  I've read that getCharBoundaries() can be unpredictable; does anyone know of a workaround or why this might be happening? 

[Code]...

View 3 Replies

ActionScript 3.0 :: HtmlText: <img Src= From Library?

Feb 23, 2011

I have a htmlText Field, and I wanna embed a Movieclip from my library into the text.I've tried everything for about 5 hours, nothing worked, even though the Adobe Help stated that it's possible:src: Specifies the URL to an image or SWF file, or the linkage identifier  for a movie clip  symbol in the library. This attribute is required  all other attributes are optional. External files (JPEG, GIF, PNG,  and SWF files) do not show until they are downloaded completely.

View 9 Replies

Professional :: Specify Dynamic Url In HtmlText?

Apr 6, 2011

I am populating a dynamic text box with some information that comes from an xml.
 
//fill in the text
     infoBox.informationText.htmlText=
     "<font size='16' color='#FFFAF0'>"+calledMarkerIndex+[code]....
 
I am also placing an image in the text box which you can see from the url above.I would like this url to be dynamic just like the other variables that are filling in the text box calledMarkerIndex, calledMarkerDate, calledMarkerDescription.
 
I have another variable which specifies the url I'd like named calledMarkerContent. I've tried simply chaning the text piece for this but it does not work.
 
"<img src='calledMarkerContent'/>"+

 I feel like maybe I am just making a scripting error.  Or maybe I cannot use a dynamic variable in this place. 

View 1 Replies

Actionscript 3 :: Flash - CS4 <b> Tag In With HtmlText?

Mar 2, 2010

I have the following setup:wo textfields on the stage with Arial normal and Arial bold, both embedded. I then have another textfield which I am setting like so:tb.htmlText = "Test <b>Test</b>";For some reason, the bold text is not displaying as bold, but as regular weight. I have tried embedding the fonts in the library, using the [Embed] meta tag and even resorted to using CSS to force the fontFamily. Weirdly, I can use Font.enumurateFonts and see both fonts are embedded, but the textfield refused to use the bold version inside the < b > tags.I've been told this is a problem with Flash CS4 on a mac and that it will work on PC. I refuse to believe this is the case, however. Surely Adobe would have fixed this by now?

View 3 Replies

ActionScript 3.0 :: Using GetCharBoundaries() With HtmlText

Jul 21, 2010

I am having an issue using getCharBoundaries() with htmlText. In the following code, I am trying to get the location of <img> tags, so that I can then move the image to where the <img> tag in the text, rather than the image being placed on the next line. getCharBoundaries returns an actual rectangle when I use plain text, but when it's htmlText, the function returns null (I put in a trace statement just to make sure of whether I was getting null or not). I've read that getCharBoundaries() can be unpredictable; I've attached the code as a txt file. Update: Even if I try calling getCharBoundaries on a character a few positions before the img tag, so that it's an actual character and not markup, I still get a null value returned.

View 1 Replies

IDE :: HtmlText Leading And Kerning?

May 30, 2007

problem stated in my title. Attach is my code.

Code:
this.createTextField("myText",this.getNextHighestDepth(),23,72,300,400);
//bgPic._alpha = 25;
var titleS:TextFormat = new TextFormat();
titleS.font = "TradeGothic";

[Code]...

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved