I have an ul with links to images and swf-files (banners). Upon clicking the links, Fancybox opens its overlay and shows the image / swf-file.
The problem is that whatever the dimensions of the swf-file are, Fancybox always shows an overlay of about 580 * 390. This of course gives a distorted view of the swf files.
I've been tinkering with autoScale and such, with no result... :-(
This is my code:
$("a.fancybox").attr('rel', 'gallery').fancybox({
'transitionIn' : 'none',
'transitionOut' : 'none',
'titlePosition' : 'inside',
'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
return '<span id="fancybox-title-inside">' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' ' + title : '') + '</span>';
}
});
Is there any way that Fancybox can detect the dimensions of the swf-files and determine the dimensions of the overlay as a result?
Please note that I do not have the dimensions of the swf file in a database or something. Also please note that images and swf's are always mixed at random.
Anxiously awaiting your responses!
Regards,
M