16th June 2008

CSS and the bold tag in Flash TextFields

posted in Flash |

I think I have some fundamental lack of understanding here. I'm trying to use CSS to specify how some HTML text in a text field is rendered. Specifically, I want my bold text to be a bit larger and different color. I have this test code:

Actionscript:
  1. var tf:TextField = new TextField();
  2. tf.width = 200;
  3. tf.multiline = true;
  4. tf.wordWrap = true;
  5. addChild(tf);
  6.  
  7. var css:String = "h1 { color:#ff0000; font-size: 14;}";
  8. //var css:String = "b { color:#ff0000; font-size: 14;}";
  9.  
  10. var ss:StyleSheet = new StyleSheet();
  11. ss.parseCSS(css);
  12. tf.styleSheet = ss;
  13.  
  14. tf.htmlText = "<h1>Header</h1><br/>This is <b>bold text</b> here.";

Create a text field, a CSS selector, a style sheet that parses the CSS. Apply it to a text field, assign it some html text. The above works fine, making the h1 header text appear in red. But if I uncomment line 8, and comment the one above it, effectively changing the "h1" to a "b", nothing happens. The bold text is still bold, but not colored and same size as the rest.

I'm no CSS expert, but it seems this kind of thing should be possible. Is this just a funky Flash text field implementation of CSS, or am I not grasping some concept about CSS?

Post to Twitter

This entry was posted on Monday, June 16th, 2008 at 10:51 am and is filed under Flash. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.

There are currently 22 responses to “CSS and the bold tag in Flash TextFields”

  1. 1 On June 16th, 2008, Pier said:

    Did you try putting some units on the font-size? like “14px”

  2. 2 On June 16th, 2008, Chad Udell said:

    Keith,
    You are not alone… I’ve all but given up on depending on Flash’s rudimentary HTML and CSS support. It’s alternately too stupid or too helpful to render text as needed. Usually I resort to explicitly setting color on spans of text with html font tags. Bad I know, but it works.

    In your case, you are using an H1, which as far as I know is not actually a supported HTML tag in Flash player, so that may have something to do with it, try some other tags that Flash does understand like “i”, “a”, “span”, “p” or something. Does that work for you?

  3. 3 On June 16th, 2008, schk said:

    I’m not sure why Flash is crapping out on the bold tag, but if you replace the “b” tags with “strong” and update your CSS to use “strong”, it will accomplish what you are looking for.

  4. 4 On June 16th, 2008, kp said:

    yeah, exactly, it’s the fact that htmlText already recognizes the b tag, which is what I kind of figured. And I worked it out by using other custom tags. I just assumed there would be a way to do this while still using

  5. 5 On June 16th, 2008, tbm said:

    you have to set embedFonts to true.. then you have to also embed a bold version of the font in the library. I’ve been through mill on css and flash and there’s huge problems with it. especially for other languages.

    I have to actually hack the unicode.xml file to include all the characters for a font if using CSS for multiple languages.. as when you stick the font in the library (which as far as i can tell you have to do with css) it only embeds a subset of the font.

    luckily now i have got it all sorted. my css parser grabs the name of fonts from the .css file, loads them in by name.. i.e. Arial.swf so all i have to do on textfields is say

    copy_txt.styleSheet = FontManager.getInstance().style;

    and then it uses the style from the css for all languages without any formatting or other crap to sort out

    dying to know if runtime font loading is in flash 10. I done it for flash 9 by parsing the Bytedata of font files but its not really usable for anything other than graphic experiments.

  6. 6 On June 16th, 2008, Dru said:

    I did not realize this until I read Essential ActionScript 3.0 (by Moock), but you cannot use CSS to alter the formatting of HTML tags other than “p”, “li”, and “a”. Put another way, “b” and “i” tags will always render with their original HTML intent. Can’t un-bold a “b” tag, unfortunately.

    I just looked it up, it’s on page 728 of the book, in the Text Display and Input chapter (ch 27).

    Using “strong” as mentioned earlier, or any other tag that is not officially supported by Flash, should work.

  7. 7 On June 16th, 2008, Mem's said:

    Flash + CSS != 2 ;)
    Lot of bugs, no margin-top, no margin-bottom, only few tags supported …
    Is for what I using RegExp to sanetize and transform all tags (I keep only p, ul, li and h*)

    myCSS.setStyle(“.strong”, {color: “#ffffff”, fontSize: “13px”, fontFamily: “Dax-Medium”});

    text = text.replace(//gi, “”);// replace | by
    text = text.replace(//gi, “”);
    text = text.replace(//gi, “”);// replace by

  8. 8 On June 16th, 2008, tbm said:

    ahh o.k as usual am not on the same page. you cant override the with css, gotcha. good tip

    but to be honest better not to isn’t it?.. what if some other copy elsewhere in the site wants to use bold. I guess its a succinct way to write over all things quickly for small jobs without having to create tons of spans all over the place.

    or as is the case you cant.. lol

  9. 9 On June 16th, 2008, kp said:

    Mem’s, I think your angle brackets got eaten by Wordpress, but I get the idea. I was thinking of going down a similar route. Thanks.

  10. 10 On June 16th, 2008, Shoom said:

    I find myself doing some CSS/HTML jobs from time to time and, well, I never liked the or tags anyway. If you want to keep the layout separate from the structure those tags really shouldn’t be used since their only purpose is to style text. So all does and should do is set text to bold by terms of solely html. When you want to emphasize certain text by use of font weight AND different color the tag would be misleading, since its name already says it’s only for making text bold. Using or something similar is still cleaner than bending the ’s styles, whether it’s Flash or HTML…

  11. 11 On June 17th, 2008, Mem's said:

    Maybe with HTML entities ?
    text = text.replace(/<(?:b|strong)>/gi, "<span class=\"strong\">");// replace <strong>|<b> by <span class="strong">
    text = text.replace(/<\/(?:b|strong)>/gi, "</span>");
    text = text.replace(/<br\s?\/>/gi, "<br>");// replace <br /> by <br>

  12. 12 On June 17th, 2008, Evan Mullins said:

    I’ve had many problesm trying to get flash to do what it seems like it should with html text and css! I feel your pain. To help me understand it better I wrote a couple blog posts explorint it…
    http://blog.circlecube.com/2008/02/11/css-and-html-rendered-in-flash-open-source-example/
    - a simple wysiwyg htmlText css renderer. http://blog.circlecube.com/2008/06/05/style-htmltext-with-css-in-your-actionscript-flashcss-tutorial/ Here’s a sample I did just a bit ago. It doesn’t explain the problems with flash html css, but shows a few working styles.

  13. 13 On June 19th, 2008, Tyler Egeto said:

    I’ve gone down this road before and for the most part regretted the journey. Some of the styling isn’t so bad, but when you get the clever idea of using the image tag functionality, it’s best just to forget that its even there.

  14. 14 On July 19th, 2008, Christian Kragh said:

    Hey, just stumbled across your blog and stumbled across this post – I’ve just recently created a XML News application in Flash using HTML within a XML file and the text field within Flash is connected to a CSS file. Really the only thing I used the CSS file for was styling the links (a tag), because when you use HTML / CSS formatting of text within Flash its a bit different – only a few tags and properties are supported. I myself haven’t been able to figure out how to change the font, it always has to be the font that is set in the text field, but I actually set the font color and size in the HTML (which was within the XML, but that doesn’t matter) using the tags. The Flash AS3 reference in the help file note this if you look up htmlText in it. Bold and italics are also supported as long as the font you are using supports it as well. Just thought I’d share the fact that stuff I would do in the CSS like font size and color, is easier done in the HTML text using the tag. Thanks. :)

  15. 15 On August 30th, 2008, Lawrie said:

    @Christian: It’s worth noting that a single textfield in Flash cannot, at present, support more than one font embedded into it at a time.

    I got around this a while ago when I wanted to use a different font for titles by creating an MC containing a dynamic textfield in the library with a Linkage name to export for Actionscript. Then I called in my XML file and for every occurance of the title tag, I stripped it out and replaced it with an img tag calling to the MC in the library, giving it a unique instance name and populating it with the original text of the title tag. It took a little bit of figuring out.

    @Keith: I discovered a long while ago that Flash would utterly refuse to apply an CSS to bold tags. I haven’t had to fool around with it for a while, but I’ve recently decided to have a go at redesigning my blog for the first time in two years and noticed that closing ’strong’ tags are, for some reason, forcing line breaks.

    Sometimes I love Flash. Sometimes I want to hurt it. Badly.

  16. 16 On August 30th, 2008, kp said:

    Lawrie. Yep, I hear that. :)

  17. 17 On September 18th, 2008, John said:

    I have a question regarding CMS and flash.
    I need a text editor that produces a flash friendly HTML formatting so i can import to flash.
    The text editor module should preferably be in PHP..

    Anyone?

  18. 18 On October 8th, 2008, Text in Flash | Welcome Flash World said:

    [...] Read more [...]

  19. 19 On October 10th, 2008, Text in Flash | Lemlinh.com said:

    [...] Read more [...]

  20. 20 On January 6th, 2009, Kirk said:

    I was trying to find a hack to implement marginTop or marginBottom and found this post.
    Unfortunately I’m still lost on vertical margins, but I wanted to add a couple of notes.

    @Lawrie
    You *can* use multiple fonts in a single text field. Somewhere off-stage in your movie create dummy text fields with the various fonts you want embedded (one per field, as you mention). Then make sure embedFonts is set to true on your actual displaying text field and use CSS to set the fontFamily name to *exactly* how it appears in the Flash app drop down menu. This way you can display multiple fonts in a single dynamic text field. It’s kind of magical.

    My understanding is that any tag that Flash “recognizes” (b, i, u, etc) cannot have its styles modified. This is a pain if you’re sharing html with some other presentation layer.

    I was hoping I would finally be able to use one text field to display multiple paragraphs. Until vertical margins or padding are supported it looks like I’ll have to continue to use a text field for each element, or use full line-breaks in-between. alas :-(

  21. 21 On April 7th, 2009, trovamercatini said:

    One solution for Bold text?
    The same textField duplicate, one of this with BOLD button ON and other with BOLD button OFF in the same frame, with the same propiety (only Bold option is different) and same namo of instance.
    good luck

  22. 22 On July 25th, 2009, Lawrie said:

    @Kirk
    Thanks for the tip – I remember struggling with this concept back in 2007 on an abandoned blog design, hence my convoluted methodology above. I just tried what you suggested (in Flash 8, no less) and it worked a treat. Score!

    In defence of my method, I’d also embedded a whizzbang calendar MC and exapandable tag cloud into that title clip. Calling MCs from the library into a textfield with an img tag is one of the lovelier tricks Flash gave us.

Leave a Reply

Who is reading BIT-101?

Copyright ©2009 by Keith Peters. All rights reserved. This means that you may not reprint or repost the contents of this site without express written permission of the author.


  • Calendar

  • February 2010
    M T W T F S S
    « Jan    
    1234567
    891011121314
    15161718192021
    22232425262728
hoodia order buy Levitra Plus betablockers weight loss information buy pills without a prescription arthritis menopause ambien doses cat's eye health information on cholesterol cialis online order valtrex cheapest phentermine onlin e increase breast size lower blood sugar immediately terramycin which is better cialis or viagra buy cheap cialis reduce cholesterol naturally new blood pressure treatment products for back pain cheapest cialis index will levitra help piroxicam 20 mg order viagra online in germany buy tadalafil online buy levitra onlines how to naturally lower cholesterol buy generic viagra where to buy soma anti allergic drug levothyroxine dogs new hair loss treatmen buy levitra pain meds buy cheap malaria therapy weight loss after baby asthma medications chronic snoring viagra gel prostate cancer cures order viagra cialis alprazolam men health natural cure arthritis immune system support diet medicine cialis approval lipitor effects where can i buy arthritis drugs overactive bladder in men self help weight loss natural cholesterol control ativan medication cialis approval best cure for snoring breast enhancing pills order prozac celebrex pharmacy buy levitra onlines premature ejaculation cure confidence hypnotherapy free stop smoking bust enhance diet weight loss supplements skin fungal infection valium with no prescription viagra with out prescription breast enhancement products alpha blocker medications azithromycin 250mg skin disease chronic heart failure medicines dog care products buying cialis online gerd in children antibiotics to buy my drug store muscle building diet drugs affecting levitra anti anxiety medications really large breast enhancement help for constipation ulcers stomach drugs for high blood pressure selling pet products buy pain medicine viagra online overnight fucidin ointment generic zyrtec prices soft tab cialis smoking treatment dog products online weight loss solution cialis on line blue pills weight loss diet pill nitroglycerin sublingual floxin prevention of heart attack imuran order gasex vermox treatment of depression Viagra On Line buy generic cialis professional tooth whitening kits to buy valium 2mg treatment for hypertension ultram cheapest online stores hair loss products cheap weight loss diovan prescription malaria preventative taurine treating prostate cancer immune system support natural constipation cure phentermine no prescription fast delivery purchase meds without prescription buy plendil diet drug taking viagra after cialis protonix cheapest generic cialis online viagra levitra cialis yohimbe benefits muscle mass gain diet and health products medical treatment for insomnia buy blood pressure meds buy celexa levaquin interactions blood pressure drug skin disorder where can i buy arthritis drugs natural breast enhancer acute pain control online diazepam natural acne remedy antifungal strategies triphala pravachol online how can i stop smoking breast enhancement natural nautral breast enhancement beta blocker medications wellbutrin dosages order viagra cialis lower high blood pressure mass muscle phentermine from canada how to loss weight osteoporosis bone health lipitor use dog medication drug allergies buy diazepam buyviagra cialis phentermine 37.5 mg zestril medication parkinsons treatment generic revatio free nexium cosmetic dentistry tooth whitening avalide generic buy cheap tadalafil uk simvastatin tablets buy cialis online in usa breast pain cat care ovulating clomid medical skin care lines viagra to canada viagra or cialis cheap cialis tramadole buy azulfidine drugs used for cancer ear pain oral ketoconazole raloxifene evista taurine sex with levitra stop smoking today heart failure natural cholesterol control protonix dose oxybutynin 5mg irritable bowel syndrome treatments new treatment for hepatitis c cheap prescription drugs viagra online prescription depression therapy buy sumycin menopause treatment hair loss treatments medication pletal what is a natural antibiotic viagra purchase synthroid tablets generic prilosec lipitor cat health info discount vitamin cholesterol and health bacterial diarrhea weight loss medicine new treatment for depression removing retention fluids diuretic medicines soma 250mg cat anxiety loss weight online pharmacy viagra buy phentermine without a prescription herbs for breast growth cymbalta dosage fast weight loss supplement arthritis menopause levitra online order cheapest place to buy phentermine cold flu medications for nausea buy ultram where pills for acne free weight loss programs help with anxiety improve skin valium 2mg urinary tract health cat urinary tract disease crestor dosage drug zofran calan zyrtec buy nirdosh dosage digoxin buy pain patch acomplia alendronate cialis best price cheap wellbutrin small dog products depression medicine sildenafil dosage dog health depression and anxiety lamictal withdrawal viagra, levitra and cialis online drug buy bone maker strontium cures for hair loss nitroglycerin tablets natural arthritis treatment arimidex buy buy energy patch how to treat a yeast infection viagra herb alternative viagra cialis levitra order sublingual cialis cialis comparison breast lift augmentation seroquel for depression carisoprodol mg new treatment for depression cialis soft tabs safe sleep aid severe leg muscle pain natural weight loss gabapentin medication what is ambien clozapine medication viagra online ordering cures for hair loss free weight loss help buy viagra levitra pet treats order plan b diabetes type 2 phentermine risk ultram er side effects treatment for hepatitis b constipation cures drugs used in treating depression leg pain buy cheap generic cialis anti anxiety meds hypnotherapy for weight loss motilium body building fitness dog skin relieve upper back pain cures for high blood pressure cardura celecoxib Viagra Online Cheap cheap bactrim ambien online lamisil cost infertility meds progesterone clomid osteoporosis hormon urinary tract infection symptoms hypnotherapy for health how to buy viagra online joint pain cure online allegra buy generic cialis uk generic abilify cures for lung cancer new treatments for lung diseases pain meds buy cheap treatment for dry skin disease of the skin nexium drug free stop smoking buy tooth whitening products viagra tablet naprosyn dosage women's fertility male sexual power carisoprodol purchase asthma attack treatment estradiol pills phentermine from canada pet health care hair loss products online astelin generic cheap estrace free weight loss program buy rimonabant relieve lower back pain lexapro prescription new breast cancer drug buying ambien best online viagra scams home scabies treatment hair loss in woman buy generic cialis uk eye drop gabapentin medication amitriptyline uses ultram no prescription natural pain cures buy cla products back pain lowest price generic viagra pain meds buy cheap mg buy phentermine acne skin care cialis rx weight loss and fitness nitrofurantoin buy phentermine without a prescription high blood pressure medicines stop hair loss viagra china use levitra female health coreg dosage carisoprodol price pain relief product breast enlargement depression pills buy how to treat flu home neck pain relief order imitrex online vitamin b-6 cialis soft tabs pharmacy software description of soma buy isoniazid cheap prevacid help ear infections on dog fat burning stop smoking remedies rhinitis treatment chronic pain relief birth control online meds without prescriptions buy lovastatin drug stores penis enlargement without pill cancer medicine buy deltasone cure for throat infection thyroid dogs dosage cipro viagra from uk cheap alcoholism treatment natural cure for constipation paxil cialis 5mg tablets amitriptyline uses topamax drugs lower heart rate drug discount codes dog medicines body fat loss joint pain recurring urinary tract infections ativan information buy drugs online cheap fast valium body building ambien maximum dosage information on valium how to sperm more chlamydia medication dosage buy cialis online viagra chest pain heart fluconazole interaction calcium channel blocker side effects zolpidem dosage online drug stores zelnorm muscle strength fluconazole buy stress gum free weight loss products information on gout low immune system online viagra cialis 20 buy cefixime phentermine from canada gain muscle mass fast lasix side effects buy singulair penis enlargement free natural muscle and joint health viagra online overnight cialis online aceon allergies and asthma diamox side effects weight loss software generic compazine price for tramadol high blood pressure symtoms osteoporosis help treatment severe constipation drug new smoking stop pain relief product xanax online dog health info clonazepam .5mg buy tribulus pregnancy prevention methods allergy hives