I have made a Flash movie which loads variables from a database through a php-script. Works fine, but then I wanted to attach a CSS-stylesheet and I can’t make it work. I have tried to use this tutorial ([color=#000020]css_in_flash_mx[/color]) and it works fine even with an external .txt but not when I load from my .php.
How can I make my text use the stylesheet???
This is my code in flash:
import = new LoadVars();
import.onLoad = function() {
var i;
myText.htmlText = “”;
for (i=0; i<5; i++) {
myText.htmlText += +this[“title”+i]+" “+this[“date”+i]+”<br>";
myText.htmlText += +this[“entry”+i]+"<br>";
}
myScrollbar.update();
import.load(“entries.php”);
}