• Resolved _OMEGA_

    (@_omega_)


    Hi this is my new post here and I’m new to WordPress (I’m using the 2.8.4 version).
    I created a page where I would like to put a flash I’ve done, exactly there are 3 .swf files linked each other.
    That’s my case:
    index.swf that load on the fly a movie.flv, after this it loads magic.swf and finally end.swf
    I’ve tried some addons but it plays only index.swf.
    Seems that they don’t like the linked .swf file.

    Anyone can help me please?

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter _OMEGA_

    (@_omega_)

    Thank you for the answer, I’ll ttry your hint and I hope to fix my issue.
    I’ll post again if I’llfix it or not!

    Cheers

    Thread Starter _OMEGA_

    (@_omega_)

    I tried all the plugins but unfortunatelly I didn’t solved my problem.
    Some of them don’t work, other loads only the first .swf, the one called index.swf.

    Are you referencing the other files that load into the main swf by there absolute path?

    I had a similar issue and it was solved by using http://website/flash_files/filename.swf to load external files.

    Thread Starter _OMEGA_

    (@_omega_)

    I just use the code that creates Flash as below:

    <object
            classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
            codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"
            id="index"
            width="900" height="482"
          >
            <param name="movie" value="http://MySite/Dir/index.swf">
            <param name="bgcolor" value="#FFFFFF">
            <param name="quality" value="best">
            <param name="allowscriptaccess" value="samedomain">
            <embed
              type="application/x-shockwave-flash"
              pluginspage="http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"
              name="index"
              width="900" height="482"
              src="http://MySite/Dir/index.swf"
              bgcolor="#FFFFFF"
              quality="best"
              allowscriptaccess="samedomain"
            >
              <noembed>
              </noembed>
            </embed>
          </object>
    Thread Starter _OMEGA_

    (@_omega_)

    Fixed, it was my fault.
    Wrong reference in the flash files, now it works great!

    Thank you all

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Multiple linked SWF files don’t work!’ is closed to new replies.