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.
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.
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;
}
"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.