Ver Mensaje Individual
  #1 (permalink)  
Antiguo 28/04/2008, 16:42
fabianvargas
 
Fecha de Ingreso: junio-2005
Mensajes: 9
Antigüedad: 18 años, 10 meses
Puntos: 0
Orientacion con Textos en un flash

Estimados foreros:

Me han pedido expresamente que baje una web y le haga modificaciones (sé los temas legales y todo el rollo, el dueño está avisado y atenido a ello, pero me insistió)
Tengo un flash que obtiene los textos de un xml. Hasta alli todo bien. Cambio los textos pero no salen en la web.

Me parece que es algo de la programación. Le he dado mil y una vueltas y no logro hacerla funcionar.

Este es el texto que aparece relacionado con el texto. Por ejemplo si modifico t.field.embedFonts = true; y lo pongo en false, se ven los textos pero horribles, no con el font correspondiente. Traté de adjuntar la fuente en la pàgina pero aun asi no pude.

Cualquier ayuda sería altamente agradecida. De antemano, muchas gracias

Fabián Vargas

stdFont = function (t, d, sz, j)
{
t.field.html = true;
t.field.embedFonts = true;
t.field.autoSize = "left";
t.field.wordWrap = true;
t.field.multiline = true;
if (sz == undefined)
{
sz = 13;
}

t.field.htmlText = stdFormat.toHTML(d, false, undefined, undefined, {size: sz});
t.field.textColor = 16777215;
if (j)
{
var __reg2 = new TextFormat();
__reg2.align = "left";
__reg2.leading = 5;
__reg2.font = "Helvetica";
t.field.setTextFormat(__reg2);
}

}
;
urlFont = function (t, d, sz)
{
t.field.html = true;
t.field.embedFonts = true;
t.field.autoSize = "left";
if (sz == undefined)
{
sz = 13;
}

t.field.htmlText = stdFormat.toHTML(d, false, undefined, undefined, {size: sz});
t.field.textColor = 16777215;
}
;
headFont = function (t, d, sz)
{
t.field.html = true;
t.field.embedFonts = true;
t.field.autoSize = "left";
t.field.htmlText = titleFormat.toHTML(d, false, undefined, undefined, {size: sz});
}
;
subHeadFont = function (t, d, sz)
{
t.field.html = true;
t.field.embedFonts = true;
t.field.autoSize = "left";
t.field.wordWrap = true;
t.field.multiline = true;
t.field.htmlText = titleFormat.toHTML(d, false, undefined, undefined, {size: sz});
}
;