
23/03/2005, 13:03
|
 | | | Fecha de Ingreso: julio-2003 Ubicación: Santo Domingo, República
Mensajes: 59
Antigüedad: 21 años, 8 meses Puntos: 0 | |
xml con css en FLASH tengo un xml que está cargando un css. toda esta información es visualizada en un FLASH, pero en el swf solo sale la información cargada sin el css. :(
<b>tengo mi ruta es asi<b>
archivo.swf
css/archivo.css
xml/ archivo.xml
<B>EN EL CSS TENGO ESTO archivo.css<B>
datos {
font: "Times New Roman";
text-align: right;
font-size: 20px;
color:#003399;
}
<B>EN EL XML TENGO ESTO archivo.xml</B>
<?xml version="1.0"?>
<?xml-stylesheet href="css/archivo.css" type="text/css"?>
<curriculum>
<datos>Ingeniero en sistema
Casado
Cédula de Identidad y Electoral:
001-569874-23</datos>
</curriculum>
<b>en flash tengo esto archivo.swf</b>
System.useCodepage = true;
datos_txt.border = false;
datos_txt.wordWrap = true;
datos_txt.selectable = true;
datos_txt.XML = true;
datos_txt.text = "Cargando datos...";
var info_xml:XML = new XML();
info_xml.ignoreWhite = true;
info_xml.load("xml/archivo.xml");
info_xml.onLoad = function(llenarcurris) {
if (llenarcurris) {
datos_txt.text = info_xml.firstChild.childNodes[0].firstChild.nodeValue;
} else {
experiencia_txt.text = "Error";
}
}; |