privates Funktion onRollOver (ev: Ereignis): Lücke
{
myMovie.filters = [neues ColorMatrixFilter (this.getSaturationMatrix ())];
}
privates Funktion onRollOut (ev: Ereignis): Lücke
{
myMovie.filters = neue Reihe ();
}
privates Funktion getSaturationMatrix (): Reihe {
var-Matrix: Reihe = neue Reihe ();
Matrix = matrix.concat ([0, 0, 0, 0, 0]); //red-Reihe
Matrix = matrix.concat ([0, 0, 0, 0, 0]); //green-Reihe
Matrix = matrix.concat ([0, 0, 1, 0, 0]); //blue-Reihe
Matrix = matrix.concat ([0, 0, 0, 1, 0]);
Rückholmatrix;
}
|