电视机杂色效果

以下语句放在第一帧:
import flash.display.BitmapData; 
var myBmp_bitmap:BitmapData = new BitmapData(10080false0x00CCCCCC); 
var my_mc:MovieClip = this.createEmptyMovieClip("mc"this.getNextHighestDepth()); 
my_mc.attachBitmap(myBmp_bitmap, 
this.getNextHighestDepth()); 
my_mc._x 
= Stage.width/2-this._width/2
my_mc._y 
= Stage.height/2-this._height/2
onEnterFrame 
= function () 
  myBmp_bitmap.noise(Math.floor(Math.random()
*500), 02551 | 2 | 4true); 
}

原文地址:https://www.cnblogs.com/shengshuai/p/Flash_TV.html