Ask a Question related to Macromedia Flash Sitedesign, Design and Development.

  1. #1

    Default TextArea HTML Help

    If someone can help it would be great!....I'm using ActionScript in Flash
    MX2004 to fill a TextArea box with results from some calculations. I have the
    TextArea properties set to HTML because that helps with the formatting. But
    now the global styles don't work for Font Color and Font Size. In regulare
    HTML those usually need "" around them so I can't figure out how to send them
    in HTML to the TextArea or is there another way to format the text in the
    box...??

    Thanks in advance for the help

    blrbd Guest

  2. Similar Questions and Discussions

    1. Using PHP + Images in an html TextArea tag
      I'm trying to add images to a TEXTAREA tag (in my PHP web page) using the usual image tag: <INPUT TYPE="image" etc. But the images are not...
    2. strip html tags from textarea content
      Hi, I'm really new to flex developing, I'm writing a page that have to retrieve some content from an xml file and display it in some form...
    3. TextArea
      I am making a simple blog, and was wondering if anyone had any suggestions on making a wysiwyg editor. I want to try and make it as much cross...
    4. textArea - HTML - img URL
      I've got a textArea loading html from an external file. The problem is with displaying images. Everything works fine when the image URL is e.g....
    5. Removing carriage returns from <textarea></textarea> input
      Hiya, I have a form with a <textarea></textarea> to receive user input. This input is then stored in a database and sent by fax... I need to...
  3. #2

    Default Re: TextArea HTML Help

    this.createTextField("tfNewfield",1,10,10,150,30);
    tfNewfield.text = "This is your text";
    tfNewfield.html = true;
    tfNewfield.htmlText =
    "Here is a link to <a href='http://i-technica.com'>HTML Formatted Text
    here</a>";

    creativity06 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139