onRollOver privado de la función (ev: Acontecimiento): vacío
{
myMovie.filters = [nuevo ColorMatrixFilter (this.getSaturationMatrix ())];
}
onRollOut privado de la función (ev: Acontecimiento): vacío
{
myMovie.filters = nuevo arsenal ();
}
getSaturationMatrix privado de la función (): Arsenal {
matriz del var: Arsenal = nuevo arsenal ();
matriz = matrix.concat ([0, 0, 0, 0, 0]); arsenal de //red
matriz = matrix.concat ([0, 0, 0, 0, 0]); arsenal de //green
matriz = matrix.concat ([0, 0, 1, 0, 0]); arsenal de //blue
matriz = matrix.concat ([0, 0, 0, 1, 0]);
matriz de vuelta;
}
|