Lid |
|
wat een titel maar het lijkt me vrij duidelijk wat het probleem is want ik kan wel gewoon css in flash krijgen en ik kan ook (dynamise) tekst inladen in flash maar om er nu ook nog een stylesheet aan te plakken lukt me niet. Heeft iemand een idee hoe dit moet??
Zoals hieronder laad ik de php in me flash file.
home.html = true;
home.htmlText ="Loading...";
myData = new LoadVars();
//this is the part where we execute the function that handles the loaded data
myData.onLoad = function(){
placeTheDataIntoTheRightPlace();//call the function
};
//here we load in the php file, make sure you set the right path to your file
myData.load("content.php");
placeTheDataIntoTheRightPlace = function(){
home.htmlText = myData.home;
};
home.html = true; home.htmlText ="Loading..."; myData = new LoadVars(); //this is the part where we execute the function that handles the loaded data myData.onLoad = function(){ placeTheDataIntoTheRightPlace();//call the function }; //here we load in the php file, make sure you set the right path to your file myData.load("content.php"); placeTheDataIntoTheRightPlace = function(){ home.htmlText = myData.home; };
|