Foros del Web » Creando para Internet » Flash y Actionscript »

Transparetentar Texto

Estas en el tema de Transparetentar Texto en el foro de Flash y Actionscript en Foros del Web. Disculpen pero necesito su ayuda , soy novato en flash y lo estube revisando pero no encuentro la herramienta para trasnparentar el texto, yo necesito ...
  #1 (permalink)  
Antiguo 22/06/2007, 12:32
 
Fecha de Ingreso: enero-2005
Mensajes: 286
Antigüedad: 19 años, 3 meses
Puntos: 1
Transparetentar Texto

Disculpen pero necesito su ayuda , soy novato en flash y lo estube revisando pero no encuentro la herramienta para trasnparentar el texto, yo necesito hacer algo asi. : http://www.templatemonster.com/flash...tes/15032.html
Por favor necesito saber como hacer ese efecto en el texto.
Desde ya Muchisimas Gracias.
  #2 (permalink)  
Antiguo 22/06/2007, 13:18
 
Fecha de Ingreso: septiembre-2006
Mensajes: 1.193
Antigüedad: 17 años, 6 meses
Puntos: 30
Re: Transparetentar Texto

para usar alpha en texto animado, debes embeber la fuente y llamarla utilizando textFormat.
  #3 (permalink)  
Antiguo 25/06/2007, 15:32
 
Fecha de Ingreso: enero-2005
Mensajes: 286
Antigüedad: 19 años, 3 meses
Puntos: 1
Re: Transparetentar Texto

Disculpen que moleste no ,pero estube intentandolo y no me sale si alguien me puede agregar para ayudarme se lo agradeseria muchisimo.
[email protected]
Soy nuevo en flash y soy pesimo
  #4 (permalink)  
Antiguo 25/06/2007, 15:39
 
Fecha de Ingreso: septiembre-2006
Mensajes: 1.193
Antigüedad: 17 años, 6 meses
Puntos: 30
Re: Transparetentar Texto

aprieta f1 y busca embed

por sino lo encuentras te dejo lo que dice de embed.
Código:
embedFonts (TextField.embedFonts property)
public embedFonts : Boolean

Specifies whether to render using embedded font outlines. A Boolean value that, when true, renders the text field using embedded font outlines. If false, it renders the text field using device fonts. 

If you set embedFonts to true for a text field, then you must specify a font for that text via the font property of a TextFormat object applied to the text field. If the specified font does not exist in the library (with the corresponding Linkage Instance name), then the text will not be displayed.

Availability: ActionScript 1.0; Flash Player 6

Example
In this example, you need to create a dynamic text field called my_txt, and then use the following ActionScript to embed fonts and rotate the text field. The reference to my font refers to a Font symbol in the library, with linkage set to my font. The example assumes that you have a Font symbol in the library called my font, with linkage properties set as follows: the identifier set to my font and Export for ActionScript and Export in First Frame selected. 

var my_fmt:TextFormat = new TextFormat();
my_fmt.font = "my font";

this.createTextField("my_txt", this.getNextHighestDepth(), 10, 10, 160, 120);
my_txt.wordWrap = true;
my_txt.embedFonts = true;
my_txt.text = "Hello world";
my_txt.setTextFormat(my_fmt);
my_txt._rotation = 45;


The MovieClip.getNextHighestDepth() method used in this example requires Flash Player 7 or later. If your SWF file includes a version 2 component, use the version 2 components' DepthManager class instead of the MovieClip.getNextHighestDepth() method.
asi se embebe, si tienes dudas vienes y preguntas.
  #5 (permalink)  
Antiguo 26/06/2007, 17:04
 
Fecha de Ingreso: enero-2005
Mensajes: 286
Antigüedad: 19 años, 3 meses
Puntos: 1
Re: Transparetentar Texto

Provare a ver si me sale, gracias.
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 10:59.