Flash player has issues with filters in transparent mode in Firefox. I switched to Opaque… Then there wasn’t any problems.
However, I just realized that IE7 has the glitchy filters in both Transparent and Opaque wmode…
http://72.2.113.127/farm/facebook/displayProblem.php
Move the mouse around really fast in IE7 and stuff should be glitchy and disappear… Now, my code may also be contributing to this problem… Should I move this to frame based (Apply/Remove filter on enter frame), not on mouse move?
newTile.addEventListener(MouseEvent.MOUSE_OVER, tileInfo);
newTile.addEventListener(MouseEvent.MOUSE_OUT, removeTileInfo);
function tileInfo(e:MouseEvent) {
e.target.filters = [Glow];
}
function removeTileInfo(e:MouseEvent) {
e.target.filters = [];
}