Ho bisogno di inserire una pagina php (connessa a server mysql) in un filmato flash.
In flash ho inserito questa azione:
myText.borderStyle = "none";
myText.depthChild0._alpha = 0;
myText.html = true;
myText.wordWrap = true;
myText.multiline = true;
myText.label.condenseWhite = true;
var about = new XML();
about.onLoad = function ()
{
myText.text = about;
};
var ss = new TextField.StyleSheet();
ss.onLoad = function (success)
{
if (success)
{
myText.styleSheet = ss;
about.load("prodotti.php");
} // end if
};
ss.load("stile_fe.css");
Dove sbaglio?
Grazie a tutti per l'aiuto