Help inserting a flash video into my web page

Hello!
I'd love some help inserting a flash video into my web page. My web page is hosted by Viviti, templated, and edited online. I can add html to it, and I have the html source for my flash video. I also have uploaded the flash file to the server. Since I am very html illiterate, though, I need some help rewriting the html script so it can be published. There are two problems- firstly, no 'headers' or 'body' allowed in the script- these are already a part of the template. Secondly, I don't know how to rewrite it to refer to the uploaded files. It's also imperative that the full screen mode functions. I've pasted the source code for the flash video here. Please help!!!
Thanks!
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Drag and drop labelling</title>
<script language="JavaScript" type="text/javascript">
<!--
//v1.7
// Flash Player Version Detection
// Detect Client Browser type
// Copyright 2005-2008 Adobe Systems Incorporated.  All rights reserved.
var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
function ControlVersion()
     var version;
     var axo;
     var e;
     // NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry
     try {
          // version will be set for 7.X or greater players
          axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
          version = axo.GetVariable("$version");
     } catch (e) {
     if (!version)
          try {
               // version will be set for 6.X players only
               axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
               // installed player is some revision of 6.0
               // GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
               // so we have to be careful.
               // default to the first public version
               version = "WIN 6,0,21,0";
               // throws if AllowScripAccess does not exist (introduced in 6.0r47)          
               axo.AllowScriptAccess = "always";
               // safe to call for 6.0r47 or greater
               version = axo.GetVariable("$version");
          } catch (e) {
     if (!version)
          try {
               // version will be set for 4.X or 5.X player
               axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
               version = axo.GetVariable("$version");
          } catch (e) {
     if (!version)
          try {
               // version will be set for 3.X player
               axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
               version = "WIN 3,0,18,0";
          } catch (e) {
     if (!version)
          try {
               // version will be set for 2.X player
               axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
               version = "WIN 2,0,0,11";
          } catch (e) {
               version = -1;
     return version;
// JavaScript helper required to detect Flash Player PlugIn version information
function GetSwfVer(){
     // NS/Opera version >= 3 check for Flash plugin in plugin array
     var flashVer = -1;
     if (navigator.plugins != null && navigator.plugins.length > 0) {
          if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
               var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
               var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
               var descArray = flashDescription.split(" ");
               var tempArrayMajor = descArray[2].split(".");               
               var versionMajor = tempArrayMajor[0];
               var versionMinor = tempArrayMajor[1];
               var versionRevision = descArray[3];
               if (versionRevision == "") {
                    versionRevision = descArray[4];
               if (versionRevision[0] == "d") {
                    versionRevision = versionRevision.substring(1);
               } else if (versionRevision[0] == "r") {
                    versionRevision = versionRevision.substring(1);
                    if (versionRevision.indexOf("d") > 0) {
                         versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
               var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
     // MSN/WebTV 2.6 supports Flash 4
     else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
     // WebTV 2.5 supports Flash 3
     else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
     // older WebTV supports Flash 2
     else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
     else if ( isIE && isWin && !isOpera ) {
          flashVer = ControlVersion();
     return flashVer;
// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
     versionStr = GetSwfVer();
     if (versionStr == -1 ) {
          return false;
     } else if (versionStr != 0) {
          if(isIE && isWin && !isOpera) {
               // Given "WIN 2,0,0,11"
               tempArray         = versionStr.split(" ");      // ["WIN", "2,0,0,11"]
               tempString        = tempArray[1];               // "2,0,0,11"
               versionArray      = tempString.split(",");     // ['2', '0', '0', '11']
          } else {
               versionArray      = versionStr.split(".");
          var versionMajor      = versionArray[0];
          var versionMinor      = versionArray[1];
          var versionRevision   = versionArray[2];
             // is the major.revision >= requested major.revision AND the minor version >= requested minor
          if (versionMajor > parseFloat(reqMajorVer)) {
               return true;
          } else if (versionMajor == parseFloat(reqMajorVer)) {
               if (versionMinor > parseFloat(reqMinorVer))
                    return true;
               else if (versionMinor == parseFloat(reqMinorVer)) {
                    if (versionRevision >= parseFloat(reqRevision))
                         return true;
          return false;
function AC_AddExtension(src, ext)
  if (src.indexOf('?') != -1)
    return src.replace(/\?/, ext+'?');
  else
    return src + ext;
function AC_Generateobj(objAttrs, params, embedAttrs)
  var str = '';
  if (isIE && isWin && !isOpera)
    str += '<object ';
    for (var i in objAttrs)
      str += i + '="' + objAttrs[i] + '" ';
    str += '>';
    for (var i in params)
      str += '<param name="' + i + '" value="' + params[i] + '" /> ';
    str += '</object>';
  else
    str += '<embed ';
    for (var i in embedAttrs)
      str += i + '="' + embedAttrs[i] + '" ';
    str += '> </embed>';
  document.write(str);
function AC_FL_RunContent(){
  var ret =
    AC_GetArgs
    (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
     , "application/x-shockwave-flash"
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
function AC_SW_RunContent(){
  var ret =
    AC_GetArgs
    (  arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
     , null
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
  var ret = new Object();
  ret.embedAttrs = new Object();
  ret.params = new Object();
  ret.objAttrs = new Object();
  for (var i=0; i < args.length; i=i+2){
    var currArg = args[i].toLowerCase();   
    switch (currArg){     
      case "classid":
        break;
      case "pluginspage":
        ret.embedAttrs[args[i]] = args[i+1];
        break;
      case "src":
      case "movie":     
        args[i+1] = AC_AddExtension(args[i+1], ext);
        ret.embedAttrs["src"] = args[i+1];
        ret.params[srcParamName] = args[i+1];
        break;
      case "onafterupdate":
      case "onbeforeupdate":
      case "onblur":
      case "oncellchange":
      case "onclick":
      case "ondblclick":
      case "ondrag":
      case "ondragend":
      case "ondragenter":
      case "ondragleave":
      case "ondragover":
      case "ondrop":
      case "onfinish":
      case "onfocus":
      case "onhelp":
      case "onmousedown":
      case "onmouseup":
      case "onmouseover":
      case "onmousemove":
      case "onmouseout":
      case "onkeypress":
      case "onkeydown":
      case "onkeyup":
      case "onload":
      case "onlosecapture":
      case "onpropertychange":
      case "onreadystatechange":
      case "onrowsdelete":
      case "onrowenter":
      case "onrowexit":
      case "onrowsinserted":
      case "onstart":
      case "onscroll":
      case "onbeforeeditfocus":
      case "onactivate":
      case "onbeforedeactivate":
      case "ondeactivate":
      case "type":
      case "codebase":
      case "id":
        ret.objAttrs[args[i]] = args[i+1];
        break;
      case "width":
      case "height":
      case "align":
      case "vspace":
      case "hspace":
      case "class":
      case "title":
      case "accesskey":
      case "name":
      case "tabindex":
        ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
        break;
      default:
        ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
  ret.objAttrs["classid"] = classid;
  if (mimeType) ret.embedAttrs["type"] = mimeType;
  return ret;
// -->
</script>
</head>
<body bgcolor="#ffffff">
<!--url's used in the movie-->
<!--text used in the movie-->
<!-- saved from url=(0013)about:internet -->
<script language="JavaScript" type="text/javascript">
     AC_FL_RunContent(
          'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0',
          'width', '720',
          'height', '440',
          'src', 'Drag and drop labelling',
          'quality', 'medium',
          'pluginspage', 'http://www.adobe.com/go/getflashplayer',
          'align', 'middle',
          'play', 'true',
          'loop', 'true',
          'scale', 'showall',
          'wmode', 'window',
          'devicefont', 'false',
          'id', 'Drag and drop labelling',
          'bgcolor', '#ffffff',
          'name', 'Drag and drop labelling',
          'menu', 'true',
          'allowFullScreen', 'true',
          'allowScriptAccess','sameDomain',
          'movie', 'Drag and drop labelling',
          'salign', ''
          ); //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=10,0,0,0" width="720" height="440" id="Drag and drop labelling" align="middle">
     <param name="allowScriptAccess" value="sameDomain" />
     <param name="allowFullScreen" value="true" />
     <param name="movie" value="Drag and drop labelling.swf" /><param name="quality" value="medium" /><param name="bgcolor" value="#ffffff" />     <embed src="Drag and drop labelling.swf" quality="medium" bgcolor="#ffffff" width="720" height="440" name="Drag and drop labelling" align="middle" allowScriptAccess="sameDomain" allowFullScreen="true" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" />
     </object>
</noscript>
</body>
</html>

What you basically need to do is copy the sections of content from the code you show into the template (assuming the template already provides the <head> and <body> sections of the page.  So in the head section of what you show, take everything starting with...
<script language="JavaScript" type="text/javascript">
all the way down thru...
</script>
, inclusive (in the head section only), and paste that into the head section of your template.
Similarly, take everything that lies between the <body> ... </body> tags (exclusive of the body tags) and paste it into the body section of your template wherever you plan to display the Flash file.

Similar Messages

  • Can I set a static frame (jpg or png) image as a poster image when embedding flash video into a dreamweaver page?

    hello everybody - my subject line pretty much says it all...
    i'm looking to have my users see a single static frame (a
    poster image) that they can then click on to start playing a video.
    how do i set this in either flash or dreamweaver?
    anybody have any info?
    much appreciated!

    Will the video appear in place of the image clicked on? Or
    will it be in a
    separate window?
    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
    ==================
    "mitrzne" <[email protected]> wrote in
    message
    news:fvangc$9rd$[email protected]..
    > hello everybody - my subject line pretty much says it
    all...
    >
    > i'm looking to have my users see a single static frame
    (a poster image)
    > that
    > they can then click on to start playing a video. how do
    i set this in
    > either
    > flash or dreamweaver?
    >
    > anybody have any info?
    >
    > much appreciated!
    >

  • Inserting html5 Captivate files into existing web page.

    I have an existing html file that I want to import a Captivate html 5 file into.
    In the past I would import the SWF file. Since SWF is not widely supported I am trying to use the html5 option
    as a work around.
    What file do I insert instead of the SWF?
    Kind Regards,
    -Robert B

    This is not a Dreamweaver question as much as it is a Captivate question.  See the Captivate forum below:
    Adobe Captivate

  • Problem inserting Flash video into DW CS3 template

    I would like to insert some flash video into an editable
    region inside a DW CS3 template. The template I am using seems to
    work for literally hundreds of other pages I have made (none of
    which, incidentally, have any media of any kind in them).
    I have created the template and then an editable region and
    now want to insert the flash video in that editable region. All
    goes well until I hit the OK button. then I get this error--Making
    this change would require changing code that is locked by a
    template or translator The change will be discarded.
    Can anyone suggest how I might over come this error??
    Thx.
    Jane

    The problem is the detection option in the video insertion
    dialog. If you
    disable that option, you will not get the error.
    This is a problem because the detection routine requires a
    modification to
    the <body> tag (insertion of an onload event) which you
    cannot easily do in
    a template child page.
    If you really must have the detection, then you can copy and
    past the load
    call from a dummy (non-templated) page on which you have also
    done the same
    insertion. Post back with that page's body tag code, and I'll
    show you
    how....
    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
    ==================
    "Jane Smith 2300" <[email protected]> wrote
    in message
    news:fehcup$e6u$[email protected]..
    > Further to my post before--The .htm that I am trying to
    insert the Flash
    > video
    > (converted an AVI file using Flash video encoder) was
    built from a .dwt.
    >
    > The template page has several editable regions in it.
    There is also CSS.
    > formatting the document. I am trying to insert the Flash
    video into one
    > of the
    > editable regions.
    >
    > I have no problem installing the video in a page not
    built with a template
    > or
    > without css..
    >
    > Thanks for any help you can provide.
    >
    > jane
    >

  • Insert Media Flash Video... pre-loader question

    Hello everybody
    I'm desperately looking for a solution regarding the
    following problem: I've inserted a rather long flv video (insert -
    media - flash video) into my site. Visitors with smaller bandwith
    have to wait up to 30" until the video starts playing. I either
    want to show them a screen saying: "video is going to be buffered -
    please wait" or to include an adaptive preloader that shows the %
    until the video will start playing. How can this be achieved?
    Thanks for all of your input, because this issue is very important
    to me and time is running for the project...
    TCG

    Can you divide your long video into several small clips or
    chapters? Then
    just put all the clips into a common player like this one
    from Coffee Cup -
    and loop them together.
    http://www.coffeecup.com/video-player/
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "TeeCeeGee" <[email protected]> wrote in
    message
    news:g35efj$f81$[email protected]..
    > Hello everybody
    > I'm desperately looking for a solution regarding the
    following problem:
    I've
    > inserted a rather long flv video (insert - media - flash
    video) into my
    site.
    > Visitors with smaller bandwith have to wait up to 30"
    until the video
    starts
    > playing. I either want to show them a screen saying:
    "video is going to be
    > buffered - please wait" or to include an adaptive
    preloader that shows the
    > until the video will start playing. How can this be
    achieved? Thanks for
    all of
    > your input, because this issue is very important to me
    and time is running
    for
    > the project...
    > TCG
    >

  • Inserting HTML into a web page

    On a previous thread I asked how to insert ones own code into a page created in iWeb.Some kind person told me how to do it,namely: find the html page in iMac on my hard drive,in TextEdit insert the code that I want and click Save.It all worked fine. However when I go back into my web page in iWeb and make a change followed by upload, the code that I inserted in TextEditor is wiped.Is there any way that I can insert my own code into a web page and not get it wiped when I make other changes in iWeb and upload to the server? Thanks in advance

    Nope, this is how it works. If you make a change to a page like this post-publishing, and later re-publish, you have to make the html changes again! Set up a Find/Replace command in MassReplaceIt and you can do this very quickly. You can save your queries so you can make all of your changes with one click the next time you save.
    Download here:
    http://www.hexmonkeysoftware.com

  • Embedding flash movie in a web page

    I have created a flash movie using actionscript 3 and an xml file with a list of images for a slideshow. After clicking publish, I can view the slideshow by previewing the html file it creates for you. However, I want to embed this flash movie in a different web page. When I try to add it in Dreamweaver, by dragging and dropping the swf file into the page, a flash placeholder is generated, but the movie does not play when previewed. It is just blank white space.
    Now I watched the Tom Green tutorials on "flash the easy way" and my flash (CS4 professional) did NOT generate the AC_RunActiveContent.js files. I did find and download the file and manually added it to my Scripts folder. Still no joy.
    I will note that the html file that embeds the flash video is in a different directory than the movie itself. Surely this cannot be the issue, otherwise people's websites would be incredibly messy with multiple flash videos. I am trying to put all the flash movies in their own child directories of a /flash directory to keep them neat and organized.
    I am not sure what to do next. How do you make the dang thing play on a web page that is in another directory?

    If you are loading content ala using an xml file, that may be the source of the problem.  When you load a Flash file into a web page, that web page becomes the frame of reference for any files that the swf loads.  So if you tested this where the html file was in the same folder, but then moved things into different folders, then you need to adjust the Flash to load things as if it is in the html file's folder

  • Firefox sporadically won't display flash embedded within a web page.

    I have Fiorefox 28.0, running on a Mac with Mavericks 10.9.2. Sporadically, Firefox won't display an embedded flash video. I tried running Firefox in Safe Mode (all add-ons disabled). Same thing occurs - won't display the embedded flash on some webpages.
    Here is an example webpage in which this problem occurs:
    http://www.deadline.com/2014/04/nbcs-jimmy-fallon-and-seth-meyers-welcome-stephen-colbert-to-cbs-video/
    I couldn't determine how to attach a file of a screen grab or I would have done so.
    Thanks.

    I can't tell how far the player gets in loading. All I see is a blank white block of space where the player would normally be loaded. I used the term 'embedded' as that seemed the correct term to use. If incorrect, that's only due to my unfamiliarity with the correct terminology of having a flash video within a web page. BTW, I neglected to mention that the same page that Firefox has problems with is displayed fine in Safari. Screen grab attached showing blank space where Safari displays a functional plug-in.

  • How to embed multiples HTML5 videos onto simple web page?

    How to insert multiples HTML5 videos onto single web page?

    I recommend Pickle Player -- one player can support playlists of MP4 or M4V video files.
    http://www.pickleplayer.com/
    Nancy O.

  • Insert Media Flash Video

    I'm having trouble viewing a flash video that I've inserted
    using: Insert, Media, Flash Video. I can view the video ok in IE7
    and Firefox when I preview the page from Dreamweaver, but not
    online.
    http://www.swail.com/Untitled-1.html
    (sample page with problem)
    I have the video file uploaded to here:
    main/KenBowden_Swail_BN1.flv
    I have the Scripts folder uploaded in the root dir on the
    same level as the page.
    I've done this successfully in the past with other web
    sites....what am I missing here?
    Any help is appreciated!
    Marita

    >
    http://www.swail.com/Untitled-1.html
    (sample page with problem)
    I don't see a problem in either FF 2 or IE6 - it's there OK
    Jo
    "Marita" <[email protected]> wrote in
    message
    news:fjc642$s8t$[email protected]..
    > I'm having trouble viewing a flash video that I've
    inserted using: Insert,
    > Media, Flash Video. I can view the video ok in IE7 and
    Firefox when I
    > preview
    > the page from Dreamweaver, but not online.
    >
    >
    http://www.swail.com/Untitled-1.html
    (sample page with problem)
    >
    > I have the video file uploaded to here:
    main/KenBowden_Swail_BN1.flv
    >
    > I have the Scripts folder uploaded in the root dir on
    the same level as
    > the
    > page.
    >
    > I've done this successfully in the past with other web
    sites....what am I
    > missing here?
    >
    > Any help is appreciated!
    > Marita
    >

  • Inserting Text into a web page

    I need to know how to insert text into a webpage, like google, search, and then get the result.
    Using the wonders of the internet I have been able to display a webpage, and see the HTML code that is generated, however, I don't know how to insert text into a web page, or get the result.
    Any help, or pointing into the right direction would be appreciated.

    What do you mean by insert into web page? Like
    prefill data on a form?
    Or like a search on google? What are you using to
    do this?
    I am guessing based on the info you gave in your
    question, that you might want to just look at the url
    of the page. For example search on google and you
    will see the text entered into the search field
    inside the url. Learn from that and develop a url
    that will search for the text you want to insert.
    If I am not understanding you, please clarify.Right now, I'm using the URL to search for me, which will work, but the search can be different from website to website, and I would like something closer to an automated form filler if I need to implement something like this again.
    Of course, something like an automated form filler would probably work better, if I were able to retreve the results

  • How to import html5 animation (created/published using flash) into a web page using Dreamweaver.

    I have created an animation in Flash and published it as a html5 animation.
    How do I get this into an exisitng web page using Dreamweaver?

    Hi Nancy,
    I am using Flash CC2014 which publishing as html.
    (When I publish as html with edge animate you can create an oam file which allow the inserting of the resulktant animation into a web page)
    The files produced with Flash CC 2014 are: html try.html and html.try
    I was hoping I could use some way to just insert the html animation produced by Flash.
    Source Code in html file is ....
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>html try</title>
    <script src="http://code.createjs.com/easeljs-0.7.1.min.js"></script>
    <script src="http://code.createjs.com/tweenjs-0.5.1.min.js"></script>
    <script src="http://code.createjs.com/movieclip-0.7.1.min.js"></script>
    <script src="html try.js"></script>
    <script>
    var canvas, stage, exportRoot;
    function init() {
      canvas = document.getElementById("canvas");
      exportRoot = new lib.htmltry();
      stage = new createjs.Stage(canvas);
      stage.addChild(exportRoot);
      stage.update();
      stage.enableMouseOver();
      createjs.Ticker.setFPS(lib.properties.fps);
      createjs.Ticker.addEventListener("tick", stage);
    </script>
    </head>
    <body onload="init();" style="background-color:#D4D4D4">
      <canvas id="canvas" width="550" height="400" style="background-color:#99CCFF"></canvas>
    </body>
    </html>
    Tony

  • Help insert animation flash inside creator

    i want insert a banner with animation
    thanks you

    Make your link to the flash file be root relative.
    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
    ==================
    "ks?ren" <[email protected]> wrote in
    message
    news:ekknvh$cmn$[email protected]..
    > When I insert a flash movie into a DW template, I can
    see it perfectly
    > when I
    > preview the .dwt page in the browser but when I create a
    page based on
    > that
    > template and preview it, the flash movie does not show.
    >
    > Has anyone similar problem? Does anyone know how to slve
    it?
    > Thanks in advance for your help.
    >
    > Luis
    >
    >
    >

  • Trouble inserting a widget into my web page

    Hello,
    I am using DW CS3. I got the html code for a widget (in this case a small banner) to insert into my web page. Here is the code:
    <div>Find <a id="flipkey_best_of_property" href="http://www.flipkey.com/pine-mountain-club-vacation-rentals/g1553621/">Pine Mountain Club Vacation Rentals</a> on FlipKey</div><script type="text/javascript" src="http://data.flipkey.com/widgets/jsapi/36780/fhb/7be5/"></script>
    I inserted a Div Tag in my web page to contain the code (Class: Body; ID: apDiv2), and then pasted the code into the Div Tag. Though I was in Design View, the html code still showed as html code, not as the small banner I had hoped for. Can someone steer me in the right direction?
    Note: I took a web design course 3 years ago and created this web page at the time. I haven't done any web design since then, and have forgotten many of the details, but I should remember as soon as someone points out my errors.
    Thanks!

    If it's been 3 years, a refresher course may be in order. 
    Start here:
    HTML & CSS Tutorials - http://w3schools.com/
    APDivs as a primary layout method seldom works well. Here is why:
    http://apptools.com/examples/pagelayout101.php
    Learn CSS positioning in 10 Steps
    http://www.barelyfitz.com/screencast/html-training/css/positioning/
    How to Develop with CSS?  (a must read!!)
    http://phrogz.net/css/HowToDevelopWithCSS.html
    New Dreamweaver CSS Templates for beginners
    http://www.adobe.com/devnet/dreamweaver/articles/dreamweaver_custom_templates.html
    New DW Starter Pages
    http://www.adobe.com/devnet/dreamweaver/articles/introducing_new_css_layouts.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • How do you embed a Flash video into a Flash form

    I am trying to embed a Flash video into a Flash form but the
    form displays just fine however the video does not. I have tested
    the Flash video with out the Flash form and works fine.

    Take a look at CF_PIM
    loading
    swf files in flash cfforms

Maybe you are looking for