.swf won't embed

Has anyone run into this:
I've got a Flash file that tests and plays fine as a
stand-alone .swf.
However, when I go to embed the .swf, nothing is displayed.
Nada.
I cannot get the .swf to embed using ANY of my usual methods.
Let me know if you've run into anything similar.

Even I am pretty new to flash. Had faced a similar problem
when I exported
my swf files for Version 8.0 and all the computers on the
intranet were on
flash player 6.0 The firewall prevented it from upgrading to
the latest
player.
Right click the area where your flash file is supposed to be.
You might find
the about flash player menu showing up and that might give
you an idea if
the player version is the problem. In my case that was the
problem because I
could see it on my computer, whereas other with lower
versions could not see
it...Had to make 2 flash files so that both versions play it.
Hope this helps
Zarir
"donkey boy" <[email protected]> wrote in
message
news:e4agkl$rnc$[email protected]..
> Has anyone run into this:
>
> I've got a Flash file that tests and plays fine as a
stand-alone .swf.
>
> However, when I go to embed the .swf, nothing is
displayed. Nada.
>
> I cannot get the .swf to embed using ANY of my usual
methods.
>
> Let me know if you've run into anything similar.
>

Similar Messages

  • Embedded SWF - Won't Embed?

    Hi, I'm using Acrobat 9 Pro to embed an animated logo that I created in Flash. I exported a SWF file from Flash and then used the multimedia Flash tool in Acrobat to import from my desktop into the PDF document. I went through the advanced settings etc. and made sure they were correct. I saved the PDF, re-opened it and all looked good, the SWF played nicely. I then sent the file to several friends and nobody could see the animated logo, it seems the SWF is no longer embeded in the PDF. I go back and open the attachment from one of the several emails I sent and there it is, the logo appears to be there and it plays fine. So somehow the SWF is not embedded and is just linked to the SWF file on my desktop. Any ideas as to what I'm doing wrong.
    Cheers,
    D.

    Another thing I noticed is when I go to use Skype instead of regular email to send the PDF, Skype gives you a clear preview/thumbnail of the file you are sending (in fact you can flip through all of the pages withing the PDF document). When I look at this preview I can see that there is no logo on the PDF....yet this is the PDf with the working animated logo. Hmmmmm?

  • SWF Won't Display in RoboHelp Project

    Hi,
    I have a RoboHelp 9 HTML project that has a number of SWF files embedded in a number of the pages. The problem is the SWF won't display on the HTML page. The SWF files are published to version 11.x. The HTML pages work fine on my computer but I have Robohelp and Flash Pro installed. When I take it to any other computer in my office, the HTML pages load with no problem but the SWF files will not load onto the pages. Any help is appreciated.
    Thanks

    So you are saying that the SWF *WAS* actually displaying but was somehow unable to present the text?
    For others that may wonder about what TLF is (as I did) I'll save you the Google step.
    Click here to view
    Cheers... Rick

  • Swf won't load on web but ok locally (believe only video playback issue)

    Hi all,
    I am very new to flash....literally first day into it.
    I converted a mov into flv and imported the flv with playback component. When I publish, I am able to see both (via the swf and the html) from my browser. Once I uploaded the swf and html onto my webserver (both files are stored in the same folder just like how I had it locally), the swf won't display the video.
    Now, I have a button (when clicked, it skips the playback and go directly to the site) and the button works fine. So, I think it is only limited to the video playback.
    Any help appreciated.

    Hi Ned,
    I was just fiddling with it and it seems to be working now.  I think your advice of putting the flv there helped?!?! Thanks a billion!
    http://www.astoryconcept.com/index1.html
    The only minor issue that I need to fix and not sure how yet:
    -it stops during the initial playback (I guess my flv is a little large 4mb and I might have to optimize it to a smaller file)
    -it didn't center itself when I drag the browser larger/smaller
    Now that it works, I want to see if I could optimize it. Wandering if there is a "BETTER/EASIER" way to take me to a url at the end of the video playback.
    What I did in here:
    I created a cuepoint at 23 second (that's the end of the video) and it will take me to a url (here: adobe.com). Below is the actionscript I had in there (using code snipper) [One is for "Skip Intro" that will bring me to cnn.com; and the other one is the cuepoint that will take me to adobe.com):
    ================================================================
    /* Click to Go to Web Page
    Clicking on the specified symbol instance loads the URL in a new browser window.
    Instructions:
    1. Replace http://www.adobe.com with the desired URL address.
       Keep the quotation marks ("").
    skip_intro_btn.addEventListener(MouseEvent.CLICK, fl_ClickToGoToWebPage);
    function fl_ClickToGoToWebPage(event:MouseEvent):void
    navigateToURL(new URLRequest("http://www.cnn.com"), "_blank");
    /* On Cue Point Event Handler
    Executes the fl_CuePointHandler function defined below each time a cue point is passed in the specified video instance.
    Instructions:
    1. Add your custom code on a new line after the line that says "// Start your custom code" below.
    The code will execute when cue points are reached in a video that is playing.
    import fl.video.MetadataEvent;
    video.addEventListener(MetadataEvent.CUE_POINT, fl_CuePointHandler);
    function fl_CuePointHandler(event:MetadataEvent):void
    // Start your custom code
    // This snippet code displays the cue point's name in the Output panel
    // trace(event.info.name);
    var url:URLRequest = new URLRequest("http://www.adobe.com/");
    navigateToURL(url);
    // End your custom code

  • ExternalInterface not working when swf file is embed inside a dynamically cloned DIV element.

    ExternalInterface not working when swf file is embed inside a dynamically cloned DIV element.
    It seems that flash movie is identifed as 'undefined' inside document.
    //a statically placed div
    var staticdiv=document.getElementById('PropDiv');
    //dynamically placed div with object tag
    var dynDiv =staticdiv.cloneNode( true );
    var xD=50;
    var yD=50;
    if(dynDiv)
    dynDiv.style.display  = "block";
    dynDiv.innerHTML="<object classid=" + "\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\"" + "codebase=" +
    "\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\"" + "width=" + xD + "height=" + yD +
    "id=" + "\"external\"" + "align=" + "\"middle\"" + ">" +
                    "<param name=" + "\"allowScriptAccess\"" + "value=" + "\"sameDomain\"" + "/>" +
                    "<param name=" + "\"movie\"" + "value=" + "\"external.swf\"" + "/>" +
                    "<param name=" + "\"quality\"" + "value=" + "\"high\"" + "/>" +
                    "<param name=" + "\"wmode\"" + "value=" + "\"transparent\"" + "/>" +
                    "<param name=" + "\"bgcolor\"" + "value=" + "\"#ffffff\"" + "/>" +
                    "<embed src=" + "\"external.swf\"" + "quality=" + "\"high\"" + "wmode=" + "\"transparent\"" +"bgcolor=" + "\"#ffffff\""
    + "width=" + xD + "height=" + yD + "name=" + "\"external\"" + "align=" + "\"middle\"" + "allowScriptAccess=" + "\"sameDomain\"" +
    "type=" + "\"application/x-shockwave-flash\"" + "pluginspage=" + "\"http://www.macromedia.com/go/getflashplayer\"" + "/>" +
                    "</object>";
       dynDiv.style.top=50;
       dynDiv.style.left=100;
    document.body.appendChild(dynDiv);
    In above situation communication is not establised when a  funtion which is retruning boolean is called from flash using
    ExternalInterfcae.call.The return value of this function is getting as false inside flash.But the value is true in javascript.
    if (navigator.appName.indexOf("Microsoft") != -1) {
       return window[movieName];
      } else {
       return document[movieName];
    window["external"] is returning as 'undefined'.
    Please give a  solution to solve this.

    Note that you have different file names for the object (images/banner.swf) and the embed (images/banner1.swf)
    You also placed the embed in the middle of a param tag and nested all param tags.
    Because you didn't include a MIME type and the object doesn't have a classid for an ActiveX control for IE, I'm not sure what Firefox will be using.<br />
    The object doesn't have a data attribute to specify the file.<br />
    A separate embed is only needed when you specify a classid in the object.
    <pre><nowiki><div class="bannercontainer">
    <object width="940" height="445" type="application/x-shockwave-flash" data="images/banner.swf" >
    <param name="wmode" value="transparent" />
    <param name="movie" value="images/banner.swf" />
    </object>
    </div></nowiki></pre>

  • Won't embed font due to licensing restrictions

    Trying to work with the Chinese font provided on a MAC called HeitiStd, however when I try to make a PDF I get the error message: won't embed font due to licensing restrictions.
    Any idea how to work around this?
    Cynthia

    Thanks for the help. How do I get the font to re-install? It came with the computer. Is it on the original disks? Should I contact Apple? (I'm on a MAC).
    Thanks for not treating me like an idiot and telling me to "use another font". That's pretty obvious and of course I tried that first, but the "other fonts" didn't show all the characters! I knew about the outline too, but needed to be able to edit the PDFs.

  • .swf won't play - blank screen

    Hello,
    I had my flash designer take a 16MB .mpg file and convert it
    to a 2MB .swf
    file.
    I created a "blank" .hmtl page and dropped in the .swf -
    which shows up as
    the white box on this page:
    http://emerge-solutions.com/pland
    (this link will forward you to the page.)
    After I got a blank screen, I uploaded the .flv (2MB) and the
    .fla (14MB)
    files to the server as well (same folder as the .html file)
    but that didn't
    help - same blank screen.
    Can anyone help me understand why this .swf won't play?
    Thank you in advance!

    It plays fine for me.
    Tested in Chrome, IE7, and FF3

  • .swf won't load remotely...please help

    Ok, so I have been working with the FlipBook dreamweaver extension and once I upload to my server
    the .swf file won't load. However, everything works like a charm when tested locally. All corresponding
    xml and js files are in place and the code looks fine. I've had this issue once before, and after much time spent on Google it
    seemed there could be a problem with how the swf is being uploaded. I finally got it to work via uploading
    through the web based control panel. Unfortunately, we switched hosts and can only upload via FTP now.
    So I'm stuck again..any ideas how to remedy this situation? Thanks. -Bryan
    URL: http://www.franklinshopper.com/everyday_heroes/

    MAke sure you have all the supporting files loaded to the srver.  Also, the flashvars line(s) in your embedding code that appear to have some stray "&amp;"s in them that probably needs to be a real "&"s
    <param name="flashvars" value="movie=FlipBook.swf&amp;flashvars=configSource=config.xml&source=book.xml&amp;swfversion=9 .0.45.0" />

  • Swf won't display in safari

    Hi,
    I embedded a swf. file into dreamweaver MX2004. The html file
    displays the swf in mac firefox but not in mac safari.
    can anyone help?
    thanks,
    cher

    HI!
    I have the same problem. The DW published file works from safari, but online doesn't work.  Online only works from firefox, not safari. Doesn't matter if only one browser is on. Please Help! I embedded a flash video via swf in my page:http://www.duke.edu/~bjw24/splash.html. Works on firefox but not safari! PLEASE HELP!!  I'm GOING CRAZY! This is the code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>The Wiley Group</title>
    <link href="oneColLiqCtr.css" rel="stylesheet" type="text/css" />
    <script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
    </head>
    <body class="oneColLiqCtr">
    <div id="container">
      <div id="mainContent">
        <h1 align="center">
          <script type="text/javascript">
    AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0, 28,0','width','1000','height','450','align','middle','src','splashvideo','quali t y','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P 1 _Prod_Version=ShockwaveFlash','bgcolor','#000000','movie','splashvideo' ); //end AC code
    </script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0, 28,0" width="1000" height="450" align="middle">
            <param name="movie" value="splashvideo.swf" />
            <param name="quality" value="high" /><param name="BGCOLOR" value="#000000" />
            <embed src="splashvideo.swf" width="1000" height="450" align="middle" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFl ash" type="application/x-shockwave-flash" bgcolor="#000000"></embed>
          </object></noscript>
        </h1>
      <!-- end #mainContent --></div>
    <!-- end #container --></div>
    </body>
    </html>

  • Swf won't dislpay

    This is the first time I have tried to accomplish this task
    I have made a banner in flash 8 with some text that slides
    in, that was easy
    enough
    I have published it and I have a swf and the html and an fla
    These are in the same folder in dreamweaver 8
    I have then inserted them into a div
    <div id="logo">
    <script type="text/javascript">
    AC_FL_RunContent(
    'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.
    cab#version=7,0,19,0','width','468','height','60','src','state_fours','quali
    ty','high','pluginspage','
    http://www.macromedia.com/go/getflashplayer','movi
    e','state_fours' ); //end AC code
    </script><noscript><object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.ca
    b#version=7,0,19,0" width="468" height="60">
    <param name="movie" value="state_fours.swf">
    <param name="quality" value="high">
    <embed src="state_fours.swf" quality="high"
    pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash" width="468"
    height="60"></embed>
    </object></noscript>
    </div>
    I test it in the preview browser and it works
    When I upload the files and click the link to the page the
    swf don't display
    In the help section of Dreamweaver I have read over and over
    and I blowed if
    I can see what I have done wrong that the swf wont work when
    I upload it
    I have searched and searched thru google but to no avail
    Could some one give me some direction please
    Sherro

    > Gosh oh gee You would not beleive how hard I tried to
    find the
    > problem--days
    > and days and more days
    You should have looked at the code. A little head scratching
    and a glance
    there would have put you on the right track immediately.
    By the way, this solution is posted here 3-4 times a day -
    maybe developing
    some skills searching this forum would be a good idea too! 8)
    Try here -
    http://groups.google.com/advanced_group_search?q=+group:macromedia.dreamweaver
    > If I make another swf does that mean that it will create
    another
    > ../Scripts/AC_RunActiveContent.js
    > and it will also have to be uploaded or will the the
    file that is there
    > now
    > be the script for all swf's in the future?
    One script fits all.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Sherro" <bigsherro@NO_SPAM_primus.com.au> wrote in
    message
    news:[email protected]...
    > Gday Osgood
    > Thankyou from the bottom of my heart
    > I found the scripts folder, uploaded it and mate IT
    WORKS .
    > Gosh oh gee You would not beleive how hard I tried to
    find the
    > problem--days
    > and days and more days
    >
    > If I make another swf does that mean that it will create
    another
    > ../Scripts/AC_RunActiveContent.js
    > and it will also have to be uploaded or will the the
    file that is there
    > now
    > be the script for all swf's in the future?
    >
    > I am unimagineably happy that Osgood has provided the
    solution to my
    > problem and also thankyou to all the kind people who
    answered my call for
    > help
    > Nadia, John Waller and the Deaf web designer
    >
    > Sherro
    >
    >
    >
    >
    >
    >
    > "Osgood" <[email protected]> wrote in
    message
    > news:[email protected]...
    >> Sherro wrote:
    >>
    >> > Thankyou for helping me
    >> > this is my first try to put a swf file before
    and this is my first try
    >> > As always things dont seem to work for me
    >> >
    >> >
    http://www.bedfordbc.com.au/State_games2006/state_foursPRE_2007.html
    >>
    >>
    >> You need to upload this folder/script to your server
    to make it work.
    >> Its a folder/script that is created automatically by
    Dreamweaver when
    >> inserting Flash. Its in your site root folder.
    >>
    >> ../Scripts/AC_RunActiveContent.js
    >>
    >>
    >> Without it being present on the server the script
    wont be executed and
    >> you wont see the Flash.
    >>
    >
    >

  • SWF won't play onced inserted into html page, though plays in absolute paths

    I have embedded a SWF in my index page. The background image saved in the FLA shows up, but none of the remaining content. If I put in the URL to the actual SWF and HTML files, however, everything works fine.
    palmettowebproductions.com is the URL of the site
    this is the code in the index page:
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8.0.22.0" width="900" height="284" id="slideshow\"> <param name="movie" value="/flashslidebanner/slideshow.swf"/> <param name="quality" value="high" /> <param name="wmode" value="transparent" /><embed src="/flashslidebanner/slideshow.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="900" height="284" wmode="transparent" name="slideshow"></embed></object>

    Paevo Kelley wrote:
    I have embedded a SWF in my index page. The background image saved in the FLA shows up, but none of the remaining content.
    This to me sounds like an issue with the ActionScript.  Have you tried posting in the Flash forum?

  • SWF Won't Play Locally or In Browser

    I put an .swf file on the home page of my site. When I try to play it locally (preview in Safari, Firefox, or Chrome) I am in given this message.
    When I try to view it online on any of 3 previous browsers I simply get a blank screen. On IE it attempts to download a later version of Flash but nothing happens.
    I'm guessing something is wrong with the .swf they are referencing but is was provided to me by Flash along with the actual .swf I exported. I imagine it will actually be necessary for the viewer of my site who doesn't have Flash. Any thoughts?

    This appears to be a Dreamweaver problem. I never, ever, use Dreamweaver, and so I'm not the best person to parse out a problem. I tried the same thing that you did with an .swf of my own and I got the same error message.
    It seems that the problem is with the default html that Dreamweaver writes when you embed a Flash file. There is a line:
    <param name="swfversion" value="17.0.0.0" />
    The number "17" is the problem. You need to change that to the number of the Flash player that you are designing for in Flash. If you've left Flash's Publish settings at their defaults, then you are designing for Flash Player 11. So you need to change that number 17 to 11 in the html.
    To find the Flash Player value that Flash is using, go to the File menu and select Publish Settings. A new window will open. In the upper left is an option labeled: Target. This is the player version that Flash is using.

  • .swf won't open in internet explorer

    Hi,
    This is driving me mental, flash seems to hate me! created a webpage in dreamweaver and then dropped .swf videos onto it. One video though was originally a .mov which i encoded to f4v in media encoder and then exported as a .swf from flash. It worked fine on my computer and now that it's uploaded it refuses to play. Also it won't preview on my computer anymore! Please help.
    This is the page it's supposed to play on www.dpdigitalmedia.co.uk/portfolio.html
    Affroken

    If you're having trouble installing Adobe Flash Player, try downloading the installer directly from the following link:
    Flash Player for ActiveX (Internet Explorer)
    Save it, close your browser and run it.

  • Swf won't show in Chrome

    Howdy,
    I've published html+swf from flash cs5 and it won't show in Chrome. all is looking well in Firefox & IE though...
    Here's the code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
    <head>
    <title>site_2</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <style type="text/css" media="screen">
    html, body { height:100%; background-color: #ffffff;}
    body { margin:0, auto; padding:0; overflow:hidden; }
    #flashContent { width:100%; height:100%; }
    </style>
    </head>
    <body>
    <center>
    <div id="flashContent">
    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="850" height="567" id="site_2" align="middle" margin= 0, auto;>
    <param name="movie" value="site_2.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#ffffff" />
    <param name="play" value="true" />
    <param name="loop" value="true" />
    <param name="wmode" value="window" />
    <param name="scale" value="exactfit" />
    <param name="menu" value="true" />
    <param name="devicefont" value="false" />
    <param name="salign" value="" />
    <param name="allowScriptAccess" value="sameDomain" />
    <!--[if !IE]>-->
    <object type="application/x-shockwave-flash" data="site_2.swf" width="850" height="567">
    <param name="movie" value="site_2.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#ffffff" />
    <param name="play" value="true" />
    <param name="loop" value="true" />
    <param name="wmode" value="window" />
    <param name="scale" value="exactfit" />
    <param name="menu" value="true" />
    <param name="devicefont" value="false" />
    <param name="salign" value="" />
    <param name="allowScriptAccess" value="sameDomain" />
    <!--<![endif]-->
    <a href="http://www.adobe.com/go/getflash">
    <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
    </a>
    <!--[if !IE]>-->
    </object>
    <!--<![endif]-->
    </object>
    </div>
    </center>
    </body>
    </html>
    thanks!

    Seemed to work just fine when I tested the code (with my .swf). Tested in Chrome, FF, IE, Safari.
    Does your Chrome have the Flash plugin?
    But a couple of things..
    quotes missing here:
    margin= 0, auto;>
    Seems like you are trying to scale to exact fit?
    #flashContent { width:100%; height:100%; }
    <param name="scale" value="exactfit" />
    Won't work with pixel dimensions for the .swf:
    width="850" height="567"
    and <center> tag... set W/H params to 100% and remove <center> if you want to scale to exact fit 100% W and H
    Best of luck!
    Adninjastrator

  • Mp4 video files in SWFs- How to embed?

    The Flash Player 9.0.115 and up can play mp4 files, but getting them in the swf to begin with is not easy!
    Below are three different methods I've tried, and the results.
    • Instance A: I place an FLVPlayback Component on the stage, but it is not possible to set the source video if it is .m4v, .mp4, or .f4v, or flv.
    • Instance B: If I encode a video file as an f4v, I can use actionscript 3 to set the source to an F4V encoded file, but only IF I change the file extension to .flv . If I keep it as f4v. The video won't play.
    vidplayer.source = mymp4Movie.flv;
    vidplayer.play();
    • Instance C: Streaming works. All you have to do is add an mp4: prefix to the file, or in some cases, remove the file extension altogether.
    rtmp://flashvideo.rtmphost.com/samples/mp4:stella_pan.mp4
    If it helps to understand, here's the project— A SWF/projector is playing mp4 video files from local media- a DVD.
    This is a tough nut. Thanks to anyone who can shed any light on this.

    Welcome to our community
    You might try re-posting your issue in a Flex forum.
    While this forum certainly discusses Audio/Video issues, it's intended for Audio/Video issues related to using Adobe Captivate.
    Click here to visit the Flex forum
    Best of luck to you in resolving your issue! Rick

Maybe you are looking for