Salve atutti vorrei creare il tipico effetto da televisore con antenna staccata, lo sfarfallio per capirci. Il tutto lo vorrei fare in actionscript. ho trovato qualcosa ma un casino perche con il passar sopra del mouse mi crea e mi sposta i valori dell'effetto. ho messo questo as nel primo frame della timeline, qulacuno mi aiuta levando le cose che non servono da questo as? oppue magari se avete un'altro sistema, ciao e grazie.

import flash.display.BitmapData;
createTextField("status_txt", 90, 0, 0, 100, 20);
status_txt.selectable = false;
status_txt.background = 0xFFFFFF;
status_txt.autoSize = "left";
function onMouseMove() {
status_txt._x = _xmouse;
status_txt._y = _ymouse-20;
updateAfterEvent();
}
this.createEmptyMovieClip("img_mc", 10);
img_mc.loadMovie("http://www.helpexamples.com/flash/images/image1.jpg");
var noiseBmp:BitmapData = new BitmapData(Stage.width, Stage.height, true);
attachBitmap(noiseBmp, 80);
setInterval(updateNoise, 100);
var grayScale:Boolean = true;
function updateNoise():Void {
var low:Number = 30 * _xmouse / Stage.width;
var high:Number = 200 * _ymouse / Stage.height;
status_txt.text = "low:" + Math.round(low) + ", high:" + Math.round(high);
noiseBmp.noise(Math.round(Math.random() * 100000), low, high, 8, grayScale);
}