View Single Post
Flash URLs normally end with ".swf", so just put the following in your blocked URLs list:

\.swf$

(Explanation: "." means "any char" in regular expressions, so you have to escape the "." with the backslash. "$" means "end of string".)