Swf embedding with Dreamweaver

I have tried to test working of swf in Mozilla firefox with a code prepared in Dreamweaver as below. By some reason it appears a gap between swf cell 835x110 and the next cell 835x19, as if there is an additional row. In other browsers all is alright, there is ni gaps. It seems it's something wrong in the code. Have anybody a solution?
<!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>Untitled Document</title>
<script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
</head>
<body>
<table width="835" border="0" cellspacing="0" cellpadding="0">
<tr>
<th width="835" height="110" align="left" valign="top" scope="col"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="835" height="110" id="FlashID" title="top">
<param name="movie" value="images/top.swf" />
<param name="quality" value="high" />
<param name="wmode" value="opaque" />
<param name="swfversion" value="6.0.65.0" />
<!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
<param name="expressinstall" value="Scripts/expressInstall.swf" />
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="images/top.swf" width="835" height="110">
<!--<![endif]-->
<param name="quality" value="high" />
<param name="wmode" value="opaque" />
<param name="swfversion" value="6.0.65.0" />
<param name="expressinstall" value="Scripts/expressInstall.swf" />
<!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
<div>
<h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
</div>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object></th>
</tr>
<tr>
<th width="835" height="19" align="left" valign="top" bgcolor="#FF6633" scope="row"> </th>
</tr>
</table>
<script type="text/javascript">
swfobject.registerObject("FlashID");
</script>
</body>
</html>

First I would check if you are actually assigning your
dynamically loaded in Font to the text - Remove your Font from the
Windows Font folder to uninstall it - then try loading just the
SWF. It shouldn't matter if that font is installed or not - if its
embedded correctly, it will display in that font
appropriately.

Similar Messages

  • Problem loading .swf embedded with HTML

    Hi All,
    I have embedded .swf file with HTML. It is working fine with
    win xp and win 2003. But not working on win 2000 server.
    I have set the MIME in IIS for .swf.
    Please let me know what setting I should configure.
    Thanks,
    Aung

    does container exit on the timeline that contains your code?
    is master.swf in the same directory with your flash swf and
    html?

  • Can i access swf files with your product?

    can i access swf files with dreamweaver?

    You will need Flash as well as Dreamweaver.
    Follow these instructions http://help.adobe.com/en_US/dreamweaver/cs/using/WSc78c5058ca073340dcda9110b1f693f21-7ad0a .html

  • Can't Use Dreamweaver Flash Embedding with ExternalInterface

    I've been trying to use ExtermalInterface to call ActionScript 3 functions from JavaScript and have been having a problem when embedding SWF files using Dreamweaver. When I use the sample code at the bottom of the ExternalInterface docs page (http://help.adobe.com/en_US/AS3LCR/Flash_10.0/flash/external/ExternalInterface.html) the JavaScript/ActionScript function calls work fine. But when I insert a SWF with Dreamweaver CS4 they don't. They do actually work in Internet Explorer 8 but not in Firefox 3.5, Safari 4, or Chrome 3.
    The problem has to do with the the way the SWF embedding is done. On the ExternalInterface page mentioned above a different form of the <object/embed> tags is used than in DW. Here's the sample code from the docs page:
         <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
                 id="ExternalInterfaceExample" width="500" height="375"
                 codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">
             <param name="movie" value="ExternalInterfaceExample.swf" />
             <param name="quality" value="high" />
             <param name="bgcolor" value="#869ca7" />
             <param name="allowScriptAccess" value="sameDomain" />
             <embed src="ExternalInterfaceExample.swf" quality="high" bgcolor="#869ca7"
                 width="500" height="375" name="ExternalInterfaceExample" align="middle"
                 play="true" loop="false" quality="high" allowScriptAccess="sameDomain"
                 type="application/x-shockwave-flash"
                 pluginspage="http://www.macromedia.com/go/getflashplayer">
             </embed>
         </object>
    In DW, instead of an <embed> tag a second object tag is inserted. I did find that by manually giving the second <object> tag its own ID (a different ID from the one given the first tag by DW I could make the function call work in FF. But you would then have to choose the ID based on the browser. And, worse, that technique doesn't work in Chrome or Safari.
    So, the workaround seems to be to use the style of embedding used on the ExternalInterface page. But, I don't like that approach for several reasons. First, the page  won't tell the user they need to upgrade their FlashPlayer if that's a problem. Second, you have to manually copy/past the embedding code instead of using DW's nice menu option. And I suspect there may be other benefits to the DW approach,
    So, is there a way to make the DW embedding style work with ExternalInterface in all the major browsers??
    David Salahi

    Very interesting, thanks for your insight. Dreamweaver does seem to be a black sheep in this regard. Curiously, one of the reasons I wanted to stick with DW is because it highlights the <embed> tag in yellow—which normally means an HTML error. Not being entirely up on the ins and outs of the embed tag I thought maybe it's deprecated or something so wanted to avoid it. But now, I've found that it's apparently the right way to do things.
    I did a little testing; here are my results...
    My SWF was originally generated in FlexBuilder (as an ActionScript project) so I copied over the Flex-generated HTML page and modified it for use with ExternalInterface. That works fine in all four of the browsers I mentioned in my original post.
    Next, I grabbed an HTML page generated by Flash's Publish menu option and made the same modifications. Again, everything was copacetic.
    Each of the three tools (Flash, Flex & Dreamweaver) generate different HTML code for embedding a SWF file and only two of them work with ExternalInterface. I guess I'll steer clear of Dreamweaver's Insert-> Media -> SWF menu option in the future. This cost me an entire day of hair-pulling.
    But thanks for your tip!
    David Salahi

  • HELP! Embedding Flash with Dreamweaver CS4

    Hello i'm have issues with CS4 embedding Flash FLV's.
    It won't show up when it's on the server but it's working
    locally.
    i've uploaded all the files in the scripts folder and the swf
    skin files.
    But it still won't work server-side.
    I did not have this issue with dreamweaver CS3 as i've found
    that Dreameaver CS4 seems to
    change how the code of how the .FLV is embedded
    any ideas??
    or is anyone else having this issue?
    thanks
    Jordan
    here's is my current test page link with a sample flv video:
    http://www.lambethdesktop.com/flashtest/index.html
    i've also attached the code of the html page it has been
    embedded in.

    This script appears to be missing (or uploaded to the wrong
    folder)
    http://www.lambethdesktop.com/Scripts/swfobject_modified.js
    "chilversj" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hello i'm have issues with CS4 embedding Flash FLV's.
    > It won't show up when it's on the server but it's
    working locally.
    > i've uploaded all the files in the scripts folder and
    the swf skin files.
    > But it still won't work server-side.
    > I did not have this issue with dreamweaver CS3 as i've
    found that
    > Dreameaver
    > CS4 seems to
    > change how the code of how the .FLV is embedded
    >
    > any ideas??
    > or is anyone else having this issue?
    > thanks
    > Jordan
    >
    > here's is my current test page link with a sample flv
    video:
    >
    http://www.lambethdesktop.com/flashtest/index.html
    >
    > i've also attached the code of the html page it has been
    embedded in.
    >
    >
    >
    >
    > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN"
    > "
    http://www.w3.org/TR/html4/loose.dtd">
    > <html>
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=UTF-8">
    > <title>Untitled Document</title>
    > <script src="Scripts/swfobject_modified.js"
    > type="text/javascript"></script>
    > </head>
    >
    > <body>
    > <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="320"
    > height="240" id="FLVPlayer">
    > <param name="movie" value="FLVPlayer_Progressive.swf"
    />
    > <param name="quality" value="high">
    > <param name="wmode" value="opaque">
    > <param name="scale" value="noscale">
    > <param name="salign" value="lt">
    > <param name="FlashVars"
    >
    value="&amp;MM_ComponentVersion=1&amp;skinName=Clear_Skin_1&amp;streamName=http:
    >
    //theharnessedge.com/fcys/FCYS08.28.08&amp;autoPlay=true&amp;autoRewind=false"
    > />
    > <param name="swfversion" value="8,0,0,0">
    > <!-- This param tag prompts users with Flash Player
    6.0 r65 and higher
    > to
    > download the latest version of Flash Player. Delete it
    if you don?t want
    > users
    > to see the prompt. -->
    > <param name="expressinstall"
    value="Scripts/expressInstall.swf">
    > <!-- Next object tag is for non-IE browsers. So hide
    it from IE using
    > IECC.
    > -->
    > <!--[if !IE]>-->
    > <object type="application/x-shockwave-flash"
    > data="FLVPlayer_Progressive.swf" width="320"
    height="240">
    > <!--<![endif]-->
    > <param name="quality" value="high">
    > <param name="wmode" value="opaque">
    > <param name="scale" value="noscale">
    > <param name="salign" value="lt">
    > <param name="FlashVars"
    >
    value="&amp;MM_ComponentVersion=1&amp;skinName=Clear_Skin_1&amp;streamName=http:
    >
    //theharnessedge.com/fcys/FCYS08.28.08&amp;autoPlay=true&amp;autoRewind=false"
    > />
    > <param name="swfversion" value="8,0,0,0">
    > <param name="expressinstall"
    value="Scripts/expressInstall.swf">
    > <!-- The browser displays the following alternative
    content for users
    > with
    > Flash Player 6.0 and older. -->
    > <div>
    > <h4>Content on this page requires a newer version
    of Adobe Flash
    > Player.</h4>
    > <p><a href="
    http://www.adobe.com/go/getflashplayer"><img
    > src="
    http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif"
    > alt="Get Adobe Flash player" /></a></p>
    > </div>
    > <!--[if !IE]>-->
    > </object>
    > <!--<![endif]-->
    > </object>
    > <script type="text/javascript">
    > <!--
    > swfobject.registerObject("FLVPlayer");
    > //-->
    > </script>
    > </body>
    > </html>
    >

  • Embedding Lightroom HTML gallery with Dreamweaver

    I'm new to Dreamweaver and have used it to build a portfolio website.  I've created HTML image galleries using Lightroom and would like to integrate these galleries into my existing page design.  Lightroom generates an Index file, as well as Context and Resources folders.  I've seen an earlier discussion about using LR to upload the galleries to my host, then edit the HTML to link the gallery pages to my other web pages.  This strikes me as cumbersome for two products made by a single company.
    What I'm after is a clear answer about if I can embed these HTML galleries quickly and easily into my existing page design?  My other solution is to use the Airtight SimpleViewer gallery, but since it's using Flash, my galleries won't work on Apple mobile devices.
    I'm using Dreamweaver CS5.5 and Lightroom 3.
    Thanks in advance for any help.

    You can't edit a flash gallery with Dreamweaver.
    To make changes to the LR flash gallery you would require a copy of the original fla file and a copy of Flash to edit it.
    The index file you see is the one that loads the flash player to play your gallery. The message is what is seen in a browser that doesn't have flash player installed.
    You can make amendments to the gallery itself by changing the xml files, although the changes you can make here can also be made in LR itself so why bother?
    You can embed the gallery itself in your own html page. Using insert, media and then finding the gallery.swf file. As long as you then upload everything in the correct locations (including the scrippt files abd the new html file in the same folder structure it will work.
    There are other flash galleries that are far easier to  embed available. However in order to make serious changes to flash galleries of any type you will require the original fla file and most designers are not going to give you that! Adobe does give away the fla's for the galleries that ship with PS.

  • How to place a Flash swf file with a movie FLV file embedded in DW

         My hair is getting shorter by the hour or maybe missing.  I have created a SWF file with Flash 8 that has an embedded FLV file that was created from a MP4 file.   The SWF file works perfectly in FLASH including my Flash nav buttons, and the movie with soundtrack and the buttons for control of volume and start stop.  Now I am ready to place it on the web using DW to make the html page.  What happens when I test the page on FireFox or IE is the background loads, the buttons load but do not work properly anymore but worse than that:  The slide show and the control buttons do not even show up. 
         I am also having trouble defining my site locally.  I select new site and tell it where every thing is but no luck. All in the same directory, right now I have a image directory but I have not used them on the page as the only image is a jpg and flv file and they are embedded in the swf file.
         I know this is 2 different programs but the Flash files need to be placed in a HTML file to be uploaded, and I have to text them first.
    HELP
    Randy

    from the Premiere Pro Help section about importing SWF files:
    " Interactive content and scripted animation are not retained. Animation defined by keyframes in the main, top-level movie is retained."

  • Embedding SWF file with SAP Netweaver BI Connection to JSP page

    All,
    Is it possible to embed a SWF file with SAP Netweaver BI connection that is already published in BW system to a JSP page?
    Thanks...

    Hallo,
    embedding the published web-template via iframe into the jsp should work:
    <iframe id="test" src="/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.sap.pct!2fplatform_add_ons!2fcom.sap.ip.bi!2fiViews!2fcom.sap.ip.bi.bex?DASHBOARD=TECHNICAL_NAME_DASHBOARD" width="600" height="800" />
    Regards,
    Roman

  • Embeding symbols from a swf created with mxmlc

    Hello everyone,
    I am trying to bundle my resources in seperate swf files then use them in another flex project. I create this bundles from a wizard i wrote in AIR. AIR app calls mxmlc to compile bundle.as and i dynamicaly load bundle.swf. I can access resources from this bundled swf using ApplicationDomain.getDefinition(). No problem there
    However i also want to use my wizard to edit prexisting bundles. Problem is i cannot embed resource from original bundle to new bundle. I mainly use Sprite and ByteArray assets in bundles.
    To simplfy problem i prepared following test. Created a bundle application to create bundle swf in flex. The project has 4 files: 2 .as files, 1 .png file, 1 .swf file( from FLA which has a symbol linked "Fill" )
    // Bundle.as
    package
              import flash.display.*;
              public class Bundle extends Sprite
                        public function Bundle()
                                  var fla:DisplayObject = new Fla();
                                  addChild(fla);
                                  var image:DisplayObject = new Image();
                                  addChild(image);
    // Image.as
    package
              import flash.display.Bitmap;
              [Embed(source='plus.png')]
              public class Image extends Bitmap
    // Fla.as
    package
              import flash.display.Sprite;
              [Embed(source='fla.swf', symbol="Fill")]
              public class Fla extends Sprite
                        public function Fla()
    Project above compiles without problem and i can see both assets on screen.
    Then i create a second project which will use swf created from project above.
    package
              import flash.display.*;
              public class Application extends Sprite
                        [Embed(source='Bundle.swf', symbol='Fla')]    /// Flex cannot embed this
                        private var flaClass:Class;
                        [Embed(source='Bundle.swf', symbol='Image')]  /// But it can embed this
                        private var imageClass:Class;
                        public function Application()
                                  var fla:DisplayObject = new flaClass();
                                  addChild(fla);
                                  var image:DisplayObject = new imageClass();
                                  addChild(image);
    The second project can only see Bitmap  asset as symbol. But could not find Sprite asset.
    We depend heavily on vector graphics from Flash, and byte array assets embeded with
    [Embed(source='x.ba', mimeType="application/octet-stream")]
    I could write byte array assets into a temp dir and embed them again but i cannot do it with Sprites. How can i solve this problem.

    Interesting problem. What happens if you encapsulate the embed in the first Bundle?
    Something like this:
    package
              import flash.display.Sprite;
              public class Fla extends Sprite
                       [Embed(source='fla.swf', symbol="Fill")]
                       private var flaClass:Class;
                        public function Fla()
                            var flaAsset:DisplayObject = new flaClass();
                            addChild(flaAsset);
    *edit*
    Fixed typo in code.
    Message was edited by: drkstr_1

  • Integrating Flash swf or html with Dreamweaver

    I created a swf file to replace my current static background image (page properties) in dreamweaver (the files are the same dimensions). When I try to select it, the swf file is grayed out. So I deleted the background image and inserted the flash swf with a transparent bkgd. When I preview it in my browser (safari) it doesn't work. I like the position of the static file and would like the swf to stay in the same place to compensate for different user monitor sizes. Please Help!!!!
    The current/live site is http://www.sistercirclemedina.com you will see the static image (header_11_01.jpg). I added the revised homepage (index.html) to my site you can find that at http://www.481gddr.com/sistercircle/index.html  The script files required are in a script folder on the hosting server. I also inserted the swf into a completely new dreamweaver document and it does not work.
    If the swf file won't work...why? Should I try to use the js and input that into the dreamweaver code?
    Thank you so much for your assistance and time.

    Check, if all the paths in your projects are "relative" paths.
    If you drag&drop files or link in dreamweaver, DW will most likely use absolute paths.
    Then when you upload  your files, some of this paths won`t exist.
    I also inserted the swf into a completely new dreamweaver document and it does not work.
    You cant really "insert" a swf into a dreamweaver document.
    DW in this case does nothing else then telling the browser (via the <flash> tag where to find the swf. that has to go into a <div>

  • The powerpoint 2003 file with a swf embeded, can not see and manipulate it after upgrade to Adobe flash 14 !!

    I have a powerpoint 2003 file with a swf embeded, which is created by SAP Xcelsius 2008.  I can not see and manipulate it after I upgrade to Adobe flash 14 !! 
    What happen ?
    How to solve this problem ?

    Please don't post the same question multiple times!

  • Generating PDF with Flex App (swf) embedded

    Hi,
    Does anyone has the experience in developing a Flex Application that is to be
    embedded into a PDF and open in the Reader/Acrobat for data capturing?
    How to embed the Flex Application (swf) into a PDF in a Livecycle process?
    With the XML data prepopulated into the PDF (embedded with a schema) and
    accessible by the Flex Application when open in Reader/Acrobat.
    Users will still be able to save the data filled in the Flex Application into the PDF
    and also to generate a XML data (with data capturing in the Flex App) to be
    submitted back to the server.
    How can these be achieve? Any example?
    Thanks alot.

    Just wondering, am I in the correct section of the forum? it seems like most of the discussions listed here are related to form designing rather than form rendering.
    I know this is FORMS ES section, just that i come across something that might related to the topic.
    Has anyone try out Adobe LiveCycle PDF Generator ES2 new features?
    Based on Adobe Upgrade Center http://www.adobe.com/products/livecycle/upgrade/pdfgenerator.html, it mentioned that PDF Generator ES2 has the ability to embed SWF files in PDF.
    But is this also applicable to Flex Application compiled SWF file?
    Does the generated PDF function as a normal interactive form?
    Able to retain its embedded schema and objects (scripts)?
    I will try to install LC ES2 to try out but need sometime to setup the system, really appreciate if someone can give me a head start.
    Thanks.

  • Trace() not working with embedded SWFs created with Flash Builder

    I have just migrated to Flash Builder 4.5 with the 4.5.1 SDK.
    I have an application that loads a lot of child SWFs into it - some of which are created with Flash, some are created with Flash Builder.
    I am noticing now that my trace() statements that are called from within SWFs produced with Flash Builder that are loading as child SWFs into my main SWF are NOT appearing.  However, trace() statements called from within SWFs produced with Flash that are loading as child SWFs into my main SWF ARE appearing.
    This is an extremely major problem and has short-circuited my debugging/development.
    Any recommendations, workarounds, or suggestions?

    If the child SWFs were created by performing an "Export Release Build", then trace() statements would be omitted.
    You can control this by setting the -omit-trace-statements compiler argument (in Project properties -> Flex Compiler -> Additional Compiler Arguments).
    -Anirudh

  • After adding a flashfile .swf into a dreamweaver page and trying to run it, I get an error message related to Javascript

    after adding a flashfile .swf into a dreamweaver page and trying to run it, I get an error message related to Javascript
    I have no trouble viewing other websites with (most likely), flashfiles.
    Here is the the PopUp message:
    "Adobe-warning Adobe Flash PLayer has stopped a potentrially unsafe operation......"

    In newer versions of Flash Pro, you can export to HTML5 Canvas, that's probably what they're talking about: Flash Professional Help | Creating and publishing an HTML5 Canvas document
    .FLV and .SWF are Flash formats that won't show up on iOS (or an ever increasing number of other mobile devices). Mobile Flash was killed by Adobe a couple years ago, so the number of mobile devices that can see it is dwindling rapidly, don't use those formats if you want your viewers on mobile devices to see your content.

  • Can't view .swf files in Dreamweaver

    I'm using CS3 versions of both Dreamweaver and Flash and when
    I import a .swf file into dreamweaver it works perfect locally but
    doesn't show at all when I've uploaded the file into my webspace.
    What am I doing wrong? I never had this problem when I used the CS2
    versions of both software and it's driving me absolutely nuts!!!
    Any advice would be most gratefully received.

    On the other hand, if it's not working in CS3, then there is
    an error
    somewhere, since I know that CS3 does it properly....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Baxter" <baxter(RemoveThe :-)@gtlakes.com> wrote in
    message
    news:fpid4r$jic$[email protected]..
    >I would just use Dreamweaver 8 to do my flash stuff.
    > I have not upgraded to CS3 so I can't give you a answer
    for that, I'm
    > waiting for the next version before upgrading,Sorry.
    > Dave
    > "CJR 2007" <[email protected]> wrote in
    message
    > news:fpddif$1is$[email protected]..
    >> Hi, thanks for the reply. Yes, I have uploaded the
    scripts in the scripts
    >> folder. I also just tried inserting the .swf file
    into a document created
    > in
    >> Dreamweaver 8 and that works fine after uploading to
    my server so
    > something's
    >> going on with CS3.
    >>
    >> What do you suggest now?
    >>
    >> Thanks.
    >> Chris.
    >>
    >>
    >
    >

Maybe you are looking for

  • CS5 MPE - any benefit for SD editing?

    I do ONLY home video SD editing to create family DVD output... NO hi-def and no h.264 codecs Since the nVidia 285 card is about $400 and a good ATI card w/1Gig (to use with Photoshop) is about $100... does anyone know if the new MPE module in CS5 wil

  • Error in ME9L after upgrade

    Hello Experts, After a recent upgrade, in the transaction ME9L, after entering the PO number, while hitting the display message button for a particular message type, am getting the error 'Symbol : "EKKO" Invalid data type "u" '. After analysing, we f

  • Bean problem: No interface classes found

    Hi ; I try to create a adapter . according to tutorial "How To Create Modules for the J2EE Adapter Engine" https://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/f013e82c-e56e-2910-c3ae-c602a67b918e&overridelayout=true Although I did all steps in it

  • Refreshing Screen While Observing

    When I am viewing multiple machines. One of the machines being observed is not refreshing. Has anyone else had this problem? Does anyone know how to fix it. All the other machines show accurate screens. Just this one machine shows a screen that is no

  • Username for SSO

    I set up SSO to work with portal, OID and AD. Now, when the portal authenticated my credentials against AD and not OID when I signed onto the portal. Everything is working fine. When I sign in onto my portal, I have to use the form username@domain Id