Ver Mensaje Individual
  #1 (permalink)  
Antiguo 30/08/2006, 15:16
diegoferrari
 
Fecha de Ingreso: julio-2003
Mensajes: 13
Antigüedad: 20 años, 9 meses
Puntos: 0
Smoothing Anti-Aliasing FLV externo

Quiesiera si alguien me puede ayudar a introducri el siguiente codigo para lograr que mi FLV se vea bien cuando lo reescalo en la película Flash

Yo tengo una pelicula que incorpora un FLVPlayback y este enlaza externamente un .flv

Ahora bien lo que quiero lograr es que me funcione el anti aliasing.

Paso el código que he encontrado, pero que no puedo hacerlo funcionar.

-----------------------------------------------
When using the plain Video object, you need to use the NetConnection and NetStream objects to load an FLV file into the player. The following code takes care of this for you:
-----------------------------------------------

var netC:NetConnection = new NetConnection();
netC.connect(null);
var NetS:NetStream = new NetStream(netC);
test_video.attachVideo(NetS);
//Enter file to be loaded here
NetS.play("test.flv");

-----------------------------------------------
Now, to enable anti-aliasing, all you have to do is set the smoothing property for the Video object:
-----------------------------------------------

test_video.smoothing = true;

-----------------------------------------------
As I said before, I haven’t found a way to actually use this functionality with the newer Video components. If you know how, please let me know and I’ll update these instructions.

Si alguien me puede ayudar. Muchas gracias.