Posts

Showing posts with the label flash

Capturing Flash Website Screen Shots

Image
Problem: Lately I've been trying to capture website screenshots in various formats, but mainly PDF, PNG and JPG. For this, I have used a great webkit based command-line tool called wkhtmltopdf . Unfortunately, this tool does not support flash sites. We can use the "--enable-plugins" parameter, which will overcome the "flash is required to view this page" warning for missing flash extensions, but no usable rendering will come up from that. Turns out there is a tool, PhantomJS , that did once allow generating Flash-based sites/content to be rendered by its CLI version. Sadly enough, they completely removed this feature since 1.4.1, which is the last version to support Flash rendering. They remove Flash support for several reasons, but mainly to keep their ideals of "headless" script generation. For more info, here is a link . Solution: So the solution *** seams *** quite straight-forward: grab the 1.4.1 binaries and try them! For those of y...

Transparent background in flash swf files

1.Add the following parameter to the OBJECT tag: <param name="wmode" value="transparent"> 2.Add the following parameter to the EMBED tag: wmode="transparent" http://kb2.adobe.com/cps/142/tn_14201.html