Ciao a tutti,
ho il seguente problema.
Dentro un file FLA che visualizza immagini in dissolvenza con testo caricato dinamicamente dal database mediante il seguente actionscript
//=================================
// INIT
//=================================
path = "flash/php/"; //declare path to php files
lvOut = new LoadVars(); //create lv object
lvIn = new LoadVars(); //create lv object
lvIn.onLoad = function (success) {
if(success){
output.htmlText = lvIn.returnVal;//PHP variable value to textbox
}else{
output.htmlText = "fail"; //or notify of failure
}
}
//=================================
// BTN
//=================================
//lvOut.years = years.text; //assign user-input value to lv property called years
//lvOut.send(path + "dogyears.php","_blank"); //send to a blank window
lvOut.sendAndLoad(path + "testo.php", lvIn, "POST"); //get results returned to lvIn
Vorrei che il testo visualizzato (che viene visualizzato correttamente) fosse linkabile ad una pagina prova.php?id=valore_dinamico_del_testo.
Come posso fare?

Rispondi quotando