,0,0,1,0]));
bmp.bitmapData.applyFilter(bmp.bitmapData,new Rectangle(0,0,bmp.width,bmp.height),new Point(0,0),new BlurFilter(12,12));
var matrix:Matrix = new Matrix();
matrix.translate(10,13);
bmp.bitmapData.draw(txf,matrix,null,BlendMode.SCREEN);
}
private function errorHandler(event:ErrorEvent):void{
trace("errorHandler>>"+event);
}
private function soundCompleteHandler(event:Event):void {
trace("soundCompleteHandler: " + event);
if(timer.running){
timer.stop();
}
bmp.bitmapData.fillRect(new Rectangle(0,0,bmp.width,bmp.height),0);
id = 0;
button.visible = true;
}
}
}
|