views:

64

answers:

0

Hi,

Im downloading a complete site for offline use:

wget \
     --recursive \
     --no-clobber \
     --page-requisites \
     --html-extension \
     --convert-links \
     --level=10 \
     --restrict-file-names=windows \
     --domains mysite.com \
     --no-parent \
         www.mysite.com

Everything works fine. Except local SWF files. They arent download by wget.

My question: how do I download (using wget) flash or swf movies (swfobject) like:

 <script type="text/javascript">
  // <![CDATA[

  var so = new SWFObject("/wp-content/swf/animation.swf", "animation", "205", "205", "6", "#FFFFFF");
  so.write("flashcontent");

  // ]]>
 </script>