I'm creating a new website, and it has to be fairly dynamic. So, I load everything through one XML document. Now, depending on the content of a certain child in each menu, it loads a new page. There are going to be about 10 pages, to choose between.
So, I start coding, and all the content works fine, but my html tags won't work. I've activated the "render as html" button, in the textField parameter (the instance name is: "nyhedText"). I've also written, nyhedText.html = true; and nyhedText.htmlText = theContent - not the exact same names, but it is the same code.
My entire code for the page is:
[AS]// defines the variable model1_spacing
var model1_spacing = 0;
// defines the variable model1_count
var model1_count = 0;
I'm using HTML text formatting with a Textfield. At the moment the <u> underline tag works fine but the <b> bold tags don't work or the italics tag doesn't work either. I read somewhere that a font with bold and italics needs to be "available". I'm just using a textfield with Arial as the font - which is embedded.
I have a custom cell renderer for a AS3 Datagrid and the html tags work except for the links. Anyone know how to get those to work?I am using the class below for the custom renderer which is called in the fla withdg.setStyle("cellRenderer", CustomCellRenderer);
I am designing a web application in Flex 4 and currently facing an issue rendering advanced HTML tags and entities in Flex 4. All I want to do is basically render an HTML text coming to me something like the one given below:-
trying to work with "simple" XML for the first time. I'm building a small CMS for a Flash based site and the content is held in an XML file. My problem is that many of the copy fields are XML CDATA fields. on the one hand, with:
I can pull the data out of that node and the CDATA tags are stripped. My issues come with trying to save the data with:
file_put_contents($file, $xml->asXML());
Problems are: a) tags are interpreted with their HTML entity equivalents. I don't want this to happen.I gather this is coming from the asXML method because even if I do anhtml_entity _decode on the $_POST data it's still being converted.
b) because of the above, there's no way to add the CDATA tags because they also have their charachters converted.
I am looking for a very basic html editor (similar to the one being used in this forum to make entries - only more basic)...which ONLY uses html tags supported by the AS2 textfield....
I'm using a custom tooltip in order to be able to use html tags. The method I used is described here.I'm using SDK v.3.5. I also did a little hack so that the TooltipManager.tooltipClass would work (check this post for more details).Here's some code.
HtmlTooltip.as: public class HtmlTooltip extends ToolTip {[code].....
Everything works fine BUT 2 things: First, font colors tags don't work. If ever I use sth like <font color='0xadadad'>...</font> it won't work. However, if I use <u>...</u>, it works fine
Second, the <a href='...'>...</a> does not work either. I checked in several websites, and the solution would be to set the selectable property of the text to true.
I have an XML document that contains CDATA nodes with <BR> tags. I'm importing the XML and displaying it in a text box, but unfortunately the text box is actually displaying the <BR> tags, rather than inserting line breaks. I've set the text box to "Render text as HTML", and I've applied the XML data through htmlText, but it's still not working. If I insert text into the text box manually it will render as HTML, as in:
This is a typewriter effect but i need the XML to also read and render HTML. right now it just types out normal text and if you insert HTML it types out the HTML instead of actually rendering it.I need to insert a small image after every item in the XML.
I have several paragraphs of text that is using the scrollBar component to give me some scrollability that part works fine. I also have the "render text as html" box checked because I have some HTML formatting going on. Anyway, all of a sudden the published SWF file started ignoring the bold tags <b>. It used to work fine. Now, anywhere that I have text surrounded by <b> HTML tags, it just omits that portion of my copy once the file is published. When I change the tags to <strong>, the text comes back, but in a normal font both with the fonts embedded and without ... neither makes a difference with this issue. I've also tried checking and unchecking the "render text as html" box and that doesn't seem to make a difference. Has this bold tag become deprecated? I'm having difficulty get a font to display as bold.
For example there are some html tags <div id="test"><div><div>testtest</div></div></div></div></div></div> From that html, I need to get this <div id="test"><div><div>testtest</div></div></div> Current regex /<div id="test">.*(</div>){3}/gim
"I have a site I made that I am streaming video on, its starting to look pretty cool but the menu I made in CSS is always under the video so some of the links dissappear behind the object, does anyone know if I can fix this, I think I tried z-index one time to no avail?
I am pulling data from an xml file which has HTML tags in it. I need the HTML tags for the on-screen display, but I am also using printJob to print what's on the screen. The problem I'm having is that when I run printjob it prints all the HTML too. Is there a way to remove the HTML tags? Maybe some sort of script? I'm thinking I could search for the beginning "<" and the end ">" and remove them and what's in between, but I'm not really sure how to go about this.
I'm importing an XML document into a flash movie. The XML is using HTML tags so that I can highlight certain words and use HTML links in the text field the data is being loaded into.
But the issue I'm having is that all of the < and > tags and all information within it being displayed within the text field.
The text field's html property is true. The text field's multiline property is true. In the XML document, the text that I'm having load into this text field is separated by the CDATA tag so that it doesn't get parsed out.
I just can't figure it out. Before I used the CDATA tag, I put all the necessary < and > tags in place, and I'm getting the same results.
I don't know why everything is being displayed even though I'm rendering this text as HTML.
I designed my friends site entirely in Flash, but now want to add things like meta tags. I've done extensive searching and found the best (or only) way to do this is to open my index.html page in dreamweaver or textedit and add them there. Sounds easy enough but when I open my html page to look at the code I get this error: // Provide alternate content for browsers that do not support scripting // or for those that have scripting disabled. Alternate HTML content should be placed here. This content requires the Adobe Flash Player. Get Flash. I have Flash Player installed.
I've searched all the web and Flash Help, found some tutorials but still can't make my dinamic text load a XML file with bold and italic on it.My dinamic text fild is set to HTML format and the XML is like that:[code]
The CDATA avoids flash from breaking that node in two because of the html tag.
When I pass that node text into a dynamic text field in flash (set to render as html) the text is not displayed properly: you literally see <b>patrick</b>jones
if I trace the variable that contains that text to be passed to the text field, it actually displays: <b>patrick</b>jones It might have something to do with it. The < > signs are written as ampersand plus lt or gt.
I'm loading some info from an XML document. In the custom tags in the XML doc is text, this text gets loaded into flash and then populates a text field (so different XML elements being referenced, and then amalgamated into one text field)So I have...
I have XML written using PHP taken from a database, which flash then uses to print out iinto a flash file dynamic text box. It all works fine as required, apart from not rendering html tags properly within the textfield, such as <p> and <b>. Below is my php, wrapped in the CDATA tags:
[Code]......
the textfield (mytext) is obviously within movie clip - theMovie - movies. As i mentioned the text is getting printed out fine from the database, but it ends up being just one block of text without formatting, and the tags that should be html are being taken and written literally.
Is there anything glaringly obvious that I'm not including to make sure that <p> tags and <b> tags etc. are rendered correctly, rather than just writing them out as "<p>" in the textfield?
My HTML tags are not working in a dynamic text box. Im guessing it is cause of the scrolling and maybe it dosn't see <br> so it dosn't allow them. This is the code i am using below.
TextField.prototype.maxviewable = function(){ if(this.maxscroll>1) return this.bottomScroll; var b = (this.html) ? this.bottomScroll-1 : this.bottomScroll; if (!this.length) this.text = ">>";
I have managed to get rid of unwanted line breaks and returns in the RSS text I am bringing in to populate my dynamic text fields. The Dynamic Text fields are set up not to render text as html, are multiline and have the fonts embedded. I keep seeing things like, <p style=""> at the beginning of the story or <THI.TO> in the middle of the story. Is there any way of deleting anything that appears as <anything> and replace with a space? Here is the code I am currently using to eliminate the line breaks. Also is there any way of turning hyphenation on?
I am loading some content into a Flash Text Area component via an XML file, within the XML I am formating via HTML, problem is flash only seems to recognize some tags and not others. For example it has no problem with the <p>, <br>, <ul> tags, but refuses to recognize any image or anchor/link tags. here a sample of my XML