Bullet color in external text

Hey again,
I am pulling in text from external .htm files, and i have run into a bit of
a problem. i am using the loadMovie funciton to pull in the text. i have it
set to Render Text as HTML.

here is what the htm file looks like:

tiptext=<body text=“white”><font color=“white”>Paragraph #1
<p>Paragraph #2:
<ul>
<li>Item #1</li>
<li>Item #2</li>
</ul>
<br>
<p>
<p>Paragraph #3</font></body>

Everything in this file displaysexactly as it should display in flash,
except that the bullets are black instead of white. what am i doing wrong to
that i cannot get white bullets. after playing around in dreamweaver, i
found that the only effective way to change bullet’s color is using the
<body text=“color”> tag, so i added that to the .htm file, but it still
isn’t working.

Any ideas out there?

thanks in advance for any help…

GRRR, how can i post html tags and have them actually display here?:angry: :angry:

Place [i][/i] between the tags, for example <[i][/i]a href=“www.whatever.com”>Whatever<[i][/i]/a>

Here is a repost of the code in the external htm file that flash is grabbing:

tiptext=<**body text=“white”><**font color=“white”>Paragraph #1
<**p>Paragraph #2:
<ul>
<li>Item #1</li>
<li>Item #2</li>
<
/ul>
<**br>
<p>
<p>Paragraph #3</font><
/body>

i hope this works now…

if it helps, here is the actionscript used to apply the .htm file to the dynamic text box:

//Create a new instance of the loadVars object and assign it to a variable
loadVarsText = new loadVars();
loadVarsText.load(“txt/tip_02.htm”);
//assign a function which fires when the data is loaded:
loadVarsText.onLoad = function (success){
tip_text.html = true;
tip_text.htmlText = this.tiptext;
}

read the help in flash or @ macromedia about html text and the supported tags, there’s really just a few, forget about body & any styles…
http://www.macromedia.com/support/flash/technotes.html

here’s the problem though:

according to the flash help file:

"The following HTML tags are supported in text fields: <**A>, <**B>, <**FONT COLOR>, <**FONT FACE>, <**FONT SIZE>, <**I>, <**P>, and <**U>.

The following HTML attributes are supported in text fields: LEFTMARGIN, RIGHTMARGIN, ALIGN, INDENT, and LEADING.
"

this text is taken directly from the help files that came with flash. and according to it, the unordered list (bullet list) should not be working, but it does work.

so i was hoping that maybe someone had some idea how to change the color of the bullets since it seems to be supported.

I dont think thats possible.