Is it possible to check the dimensions of an SWF file located on the server. I now know that it is possible to do this with images through:
$location = '/home/www/teenonyM/scripts/wip/images/';
$pic_size = getimagesize($location . $filename);
$pic_width = $pic_size[0];
$pic_height = $pic_size[1];
However this same method does not work for .swf files. Is it possible to work out the dimensions of .swf files on the server?