Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using jQuery slideshow to display images in a div. When displaying images with jpeg, png, jpg suffixes then the slideshow works in Mozilla and Chrome. But when we add SWF image it worked in Mozilla but not in Chrome. What to do?

I am using this code to display images:

<?php  if($extimg=='swf'){ ?><embed src="<?php echo base_url();?>/uploads/<?php echo $test[0];?>" alt="Slide_show Image <?php echo $i+1; ?>" width="159" height="140" style=" margin-left:15.5px;border-radius:8px; margin-top:14.7px;"/> <?php  }else{ ?>
<img src="<?php echo base_url();?>/uploads/<?php echo $test[0];?>" alt="Slide_show Image <?php echo $i+1; ?>" width="159" height="140" style="  margin-left:15.5px;  border-radius:8px; margin-top:14.7px;"/> <?php } ?>
share|improve this question
A 'swf' file is not an image - it's a Flash object, and must be treated a very different way. If you are using a particular slideshow plugin (which one?) then make sure it supports showing Flash files - it is probably a non-trivial job to modify a plugin to do this. It might be easier to re-render your SWF images in a different format, such as JPEG? – halfer Mar 9 at 6:12

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.