Inserting a flash template into dreamweaver

I have Macromedia Flash Pro 8 and I am using it to edit a
flash template. When I put it in dreamweaver I can view it and it
is fine, but when I try to put it on my remote server(my site) I
cannot get it on there. Does anyone have a solution for this? May
some key file that I need to be looking for?

Thank you for helping me!
<!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>Bridge Point Church</title>
<script src="/Scripts/AC_RunActiveContent.js"..."
type="text/javascript"></script>
</head>
<body>
<script type="text/javascript">
AC_FL_RunContent( 'codebase','
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','wid th','766','height','750','title','Bridge
Point Church','src','mainV8','quality','high','pluginspage','
http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movi e','mainV8'
); //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="766" height="750" title="Bridge Point Church">
<param name="movie" value="mainV8.swf" />
<param name="quality" value="high" />
<embed src="mainV8.swf" quality="high" pluginspage="
http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
type="application/x-shockwave-flash" width="766"
height="750"></embed>
</object>
</noscript>
</body>
</html>

Similar Messages

  • How Do I Load Up A Flash Template into Dreamweaver?

    Can anyone help me load up a website template I purchased from Template monster so I can start editing it through dreamweaver?

    Flash files are not viewable by iPhone, iPad, iTouch, Android or any other web device that doesn't support flash player.   In short, Flash is pretty much dead as a web technology.  Maybe you can trade to an all HTML & CSS Template that you can edit in Dreamweaver?
    Nancy O.

  • 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.

  • How Do I Import A Photoshop CS4 Template into Dreamweaver CS4

    Ok. Here's the deal, my friend and I spent alot of time working in Photoshop to come up with a nice template. He's even done all the coding to animate the buttons for standard, hover over, and click and all that. It's really cool, the buttons slide back and "lock" into place dependent upon which page you're on. However, I want to take all of that information and plug it into my website without loosing the button functionality. Unfortunately, every time I try to put the photoshop web template into Dreamweaver, it always converts it into an image. So, how do I add my complete photoshop web template and all it's functionality into Dreamweaver?

    I'm afraid Photoshop is a graphics program ill suited for generating good HTML and CSS code.  Use Photoshop to create your images only. Use DW to build your HTML, CSS and menus.
    Have a look at this tutorial:
    Taking  a Fireworks (or Photoshop) comp to a CSS based layout in DW
    Part 1 --
    http://www.adobe.com/devnet/fireworks/articles/web_standards_layouts_pt1.html
    Part 2 --
    http://www.adobe.com/devnet/fireworks/articles/web_standards_layouts_pt2.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • How to put Photoshop templates into Dreamweaver

    After purchasing templates and downloading, I discovered the
    page layouts for the templates were Photoshop files. I made the
    changes I wanted to make in Photoshop and now need to put in
    Dreamweaver. There is a Flash file that is giving me error messages
    when I open the index page. When I try to insert an image (the
    page) it comes in a new window. I'm definitely not doing this
    correctly.
    Can anyone tell me how to insert them into
    Dreamweaver?

    Actually, I had forgotten about SiteGrinder. Its code is not
    bad, to tell
    you the truth. They have taken alot of trouble to make things
    more stable
    than a slap-dash, layer-based layout, but it is, to be sure
    still strongly
    rooted in absolute positioning. It might be an expedient way
    to go, but
    there is no substitute for some good HTML/CSS knowledge.
    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
    ==================
    "jon@cmiwebstudio" <[email protected]> wrote
    in message
    news:gjohrn$ch9$[email protected]..
    > There is software by media lab called sitegrinder that's
    designed to
    > export css
    > based html websites from your photoshop designs, and I'd
    say that's about
    > as
    > close to what you're talking about as I'm aware of.
    >
    >
    http://www.medialab.com/sitegrinder/
    >
    > HOWEVER, this is along the same lines as using fireworks
    to design html
    > websites. The code is bloated and sensitive to fall
    apart while
    > adjusting, and
    > in any professionals opinion, really only intended to
    show clients a
    > demonstration of what their website will look like.
    >
    >
    >
    >

  • How do I convert a Expression Web template into Dreamweaver CC?

    Just got the Adobe CC subscription they said I could convert an Expression Web site template to Dreamweaver?  It has a file master.dwt that has the common header, footer and menu

    Thanks, Dick - that helps. Save this code into the Templates folder at the root of the site. Name the saved file with a *.dwt extension. Let me know when you've done that and I'll tell you what to do next.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html dir="ltr" xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta name="google-site-verification" content="n0PVQVe6Cs8EI5p0bjR5h5NxRpxwYuGqalb63SvPRaI" />
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Hotchkiss Sheep Camp  Stock Dog Trials </title>
        <meta name="description" content="Home page for the Hotchkiss Sheep Camp  Stock Dog Trials held in Hotchkiss Colorado on Mother's Day weekend in May"/>
        <meta name="keywords" content="Hotchkiss Sheep Camp, Stock Dog Trials, Hotchkiss, Colorado, SheepWagon, Sheep, herding dog,  Border Collie"/>
    <!-- TemplateEndEditable -->
    <link href="styles/style2.css" media="screen" rel="stylesheet" title="CSS" type="text/css" />
    <link rel="stylesheet" href="cssmenutools/scripts/MTHM1.css" type="text/css" />
    <style type="text/css">
    .auto-style1 {
      margin: 10px;
    .auto-style3 {
      vertical-align: middle;
    </style>
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    </head>
    <body style="width: 98%; background-color: #FFFFFF;">
    <form id="form1" runat="server">
        <!-- Begin Container --><div id="container" style="left: 10px; top: 1px; background-color: #FFFFFF;">
      <!-- Begin Masthead -->
      <!-- End Masthead -->
      <!-- Begin Navigation -->
        <div id="masthead" style="border-bottom-color: #E1F3FB; border-color: #BCE1FC; height: 162px; background-color: #BCE1FC; border-left-color: #BCE1FC; border-top-color: #BCE1FC; border-right-color: #BCE1FC;">
      <img alt="Hotchkiss Sheep Camp" height="75" src="images/Hotchkiss%20Logo.jpg" width="294" class="auto-style1" />
      <object type="application/x-shockwave-flash" data="HotchkissSheepCamp2.swf" width="358" height="159" align="right"><param name="movie"
      value="HotchkissSheepCamp2.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="showall" />
      <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" width="358" height="159" />
      </a>
      <!--[if !IE]-->
      </object>
       <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="358" height="159" id="HotchkissSheepCamp2" align="right">
      <param name="movie" value="HotchkissSheepCamp2.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="showall" />
      <param name="menu" value="true" />
      <param name="devicefont" value="false" />
      <param name="salign" value="" />
      <param name="allowScriptAccess" value="sameDomain" />
      <!--[if !IE]>-->
      </object>
      <!--<![endif]-->
      </object>
         </div>
      <div id="MTHMWUHHfGCDiv" class="MTHMWUHHfGCwrapper"><div id="MTHMWUHHfGCTop" class="MTHMWUHHfGCtop"><div class="MTHMWUHHfGCtopmiddle"><ul><li class="MTHMWUHHfGCitem1" style="margin-left:0px"><a href="index.html"><span>Home</span></a></li><li class="MTHMWUHHfGCitem2"><a href="#"><span>We Are</span></a></li><li class="MTHMWUHHfGCitem2"><a href="#"><span>Handler's Area</span></a></li><li class="MTHMWUHHfGCitem2"><a href="#"><span>General Information</span></a></li><li class="MTHMWUHHfGCitem2"><a href="#"><span>Trials Art</span></a></li><li class="MTHMWUHHfGCitem2"><a href="#"><span>Area Amenities</span></a></li><li class="MTHMWUHHfGCitem2"><a href="#"><span>Shopping</span></a></li></ul></div></div><script type="text/javascript" src="cssmenutools/scripts/MTHM1.js">/* MTHMMenu script ID:MTHMWUHHfGC */</script></div>
      <!-- End Navigation -->
      <!-- Begin Page Content -->
      <div id="page_content">
      <!-- Begin Left Column -->
      <div id="column_l" style="left: 0px; top: 0px; background-color: #FFFFFF; width: 96%;">
      <!-- TemplateBeginEditable name="content" -->
      <h2 style="width: 99%; position: relative; left: -20px; top: 0px; color: #000000; font-size: xx-large; font-family: 'Arial Black';">Headline 2</h2>
      <p style="z-index: 1; width: 1712px; height: 19px; position: absolute; top: 53px; left: 10px">insert content here</p>
      <!-- TemplateEndEditable --></div>
      <!-- End Left Column -->
      <!-- Begin Right Column -->
      <div id="column_r" style="width: 22%; background-color: #FFFFFF;">
      <!-- TemplateBeginEditable name="sidebar" -->
      <h3 style="width: 375px; background-color: #FFFFFF; color: #000000;">Headline 3</h3>
      <p>insert content here</p>
      <!-- TemplateEndEditable --></div>
      <!-- End Right Column --></div>
      <!-- End Page Content -->
      <!-- Begin Footer -->
      <div id="footer">
      <p style="border-bottom-color: #DCEFFC; border-color: #BCE1FC; width: 98%; background-color: #BCE1FC; border-left-color: #BCE1FC; border-right-color: #BCE1FC; border-top-color: #BCE1FC; color: #000000;">
      <br />
      <img alt="USBCA" height="150" src="images/usbcha-logo-200.gif" style="float: left" width="118" class="auto-style3" /><br />
      <br />
      <br />
      Last Updated  May 20, 2014<br />
      Copyright &copy; 2014 Hotchkiss Sheep Camp Stock Dog Trials.  All Rights Reserved.<br />
      <br />
      <br />
      <br />
      <br />
      Powered by
      Solutions Ark</p>
      </div>
      <!-- End Footer --></div>
    <!-- End Container -->
    </form>
      </body>
      </html>

  • Problem playing an imported flash template in dreamweaver cs5

    hi,i just downloaded a flash template from flashmo.com and imported it to dreamweaver cs5 through Insert > media > SWF and it loaded. but the problem is, when i click the live view or play the file in the properties,nothing shows up.except some texts "loading XML data..."
    all the flash templates i have downloaded face this prob. i have no idea where is the mistake.
    what could be the problem?any help,plz.

    From their website:
    " Adobe Flash (version 8 or higher) is required to edit the
    FLA file.
    - Use the source codes at your own risk after downloading and
    flashmo.com is
    not responsible for any bugs or errors caused by
    ActionScripts."
    Do you own Flash? Are you familliar with action scripts? If
    not, then you
    probably want to start with a plain html template and learn
    how to code html
    and CSS. Flash sites look nice but they are not friendly for
    Search Engines
    or users who don't have flash player installed on their
    system.
    Here are some on-line tutorials to help you get started with
    html and CSS
    code:
    www.w3schools.com (free)
    www.Lynda.com (pay videos)
    Adobe help - "Getting Started"
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "jdbcmcbride" <[email protected]> wrote in
    message
    news:ftr2vf$i4q$[email protected]..
    > I am a first-time user of DreamWeaver and am currently
    learning how to
    build a
    > website with the Adobe HTML article that they have.
    However, I found a
    flash
    > template that I downloaded as it is exactly what I want
    to use for my
    website.
    > My problem is, I don't know how to make it work.
    >
    > The template is located at
    http://www.flashmo.com/home
    and it is the one
    on
    > page 5 called "037 Wooden". If anyone can tell me what
    to do to get this
    to be
    > my website, I would really appreciate it.
    >

  • Flash shell into Dreamweaver (CS3) HELP!

    Alright, I have been struggling with this for hours now. I
    have created a fully working site completely in Flash. I used a
    shell to access each of my different pages within Flash, everything
    works perfectly. Buttons navigate, rollover images appear, simple
    animations interact just fine. I inserted the shell.swf into a
    blank Dreamweaver file, saved it to my host (Mobile Me) as
    index.html and have domain forwarding set up for the site itself.
    When I type in the address: www.jenspaeth.com it opens up to
    the front page of the shell in the browser. It does not work past
    that though. The flash buttons highlight on rollover, but do not do
    anything.
    I am supposed to have this sit up and running today and can't
    figure out how to make it work. Any and all help would be greatly
    appreciated.

    TexasJen posted in macromedia.dreamweaver:
    > When I type in the address: www.jenspaeth.com it opens
    up to the
    > front page
    > of the shell in the browser. It does not work past that
    though.
    > The flash buttons highlight on rollover, but do not do
    anything.
    Getting a 404 error for
    http://www.jenspaeth.com/home.swf
    before I even
    bring a mouse over the screen.
    I'm guessing that
    http://www.jenspaeth.com/Jen
    Site/Shell.swf is
    attempting to load that file and cannot find it.
    Did you upload home.swf and any other relavent files to the
    root of
    www.jenspaeth.com? Or is it supposed to be in the "Jen Site"
    folder?
    You should not use spaces in folder/file names.
    Mark "404" Boyd
    Keep-On-Learnin' :)

  • Flash animation into dreamweaver

    hey everyone, i'm new at both flash and dreamweaver and currently have a project combining the two together and i really cant work it out (i'm even using html instead of css haha) :/
    Anyway, what i want to do is have a zipper (as in a zipper on ones clothes) on my main page and when someone puts their mouse over the zip, it zips down and reveals the text for that page.
    I have gone into photoshop and started editing a zipper at different stages of being pulled down, but am stuck as to how i'd
    a) link it together on flash/what type of file to save it as?
    b) put the actual code into dreamweaver
    c) have it actually working functionally to reveal my text underneath.
    thanks in advance for any help, i'd be very appreciative of anyone who could give me some advice

    You'll probably need to spend time learning how to create things in Flash--maybe try lynda.com.  Flash can be used for the animation and mouse interaction revealing text.  Once you are able to create the animation in Flash, you can have Flash publish both the swf file, which is what goes into the web page, and an html file.  You can copy the code from the Flash html file into the Dreamweaver file wherever you intend the Flash file to be inserted.

  • Inserting a Flash Movie with Dreamweaver

    I'm trying to insert a .swf file into my html using
    Dreamweaver8. I go to inset-media-flash video, browse to my file
    enter the width and height and click ok, and I receive this warning
    everytime: "The URL cannot contain spaces or specal charaters.
    Change hte path or file name and try again." The file is located in
    my main directory of the website, and the file is titled
    clienttv.swf. Am I doing something wrong?
    Also, This file is a television commercial buit in avid and
    compressed in squeeze, but I don't have the .flv file, only a .swf
    file.
    Is there a way to convert my .swf to .flv, or is there a way
    to add a skin to my .swf file so that I have the movie controls
    (play/pause, stop)?
    thanks,
    nofx1728

    Thank you for helping me!
    <!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>Bridge Point Church</title>
    <script src="/Scripts/AC_RunActiveContent.js"..."
    type="text/javascript"></script>
    </head>
    <body>
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','wid th','766','height','750','title','Bridge
    Point Church','src','mainV8','quality','high','pluginspage','
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movi e','mainV8'
    ); //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="766" height="750" title="Bridge Point Church">
    <param name="movie" value="mainV8.swf" />
    <param name="quality" value="high" />
    <embed src="mainV8.swf" quality="high" pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    type="application/x-shockwave-flash" width="766"
    height="750"></embed>
    </object>
    </noscript>
    </body>
    </html>

  • Flash code into Dreamweaver - Help please!

    I am using GoDaddy for my hosting account. It is on a linux
    server. I have created an HTML page and loaded it up to the
    internet using Dreamweaver, like I normally do. the page in
    question is
    http://www.desmoinesbilliards.com/gallery.html
    When I use dreamweaver to insert the flash movie, it
    transfers it as normal, but it will not show up on the website. The
    flash movie works fine on the server, just cannot be seen on the
    site. I called Go Daddy who said that there is a problem with the
    way the code is calling up the Flash movie. I have not altered it
    at all from the way that Dream weaver inserts it. The flash movie
    is located in a folder on the site called 'flash'. The code is
    below. I can't figure it out, any help would be appreciated. The
    code that dreamweaver inserts is below. By the way, I use
    Professional 8 version of both products.

    Upload the scripts folder that DW places in your local site
    when you insert
    Flash on a page.
    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
    ==================
    "JesseDSM" <[email protected]> wrote in
    message
    news:[email protected]...
    >I am using GoDaddy for my hosting account. It is on a
    linux server. I
    >have
    > created an HTML page and loaded it up to the internet
    using Dreamweaver,
    > like I
    > normally do. the page in question is
    >
    http://www.desmoinesbilliards.com/gallery.html
    When I use dreamweaver to
    > insert
    > the flash movie, it transfers it as normal, but it will
    not show up on the
    > website. The flash movie works fine on the server, just
    cannot be seen on
    > the
    > site. I called Go Daddy who said that there is a problem
    with the way the
    > code
    > is calling up the Flash movie. I have not altered it at
    all from the way
    > that
    > Dream weaver inserts it. The flash movie is located in a
    folder on the
    > site
    > called 'flash'. The code is below. I can't figure it
    out, any help would
    > be
    > appreciated. The code that dreamweaver inserts is below.
    By the way, I
    > use
    > Professional 8 version of both products. <script
    type='text/javascript'>
    > AC_FL_RunContent(
    > 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#
    >
    version=7,0,19,0','width','730','height','80','src','flash/leaguebanner','qualit
    > y','high','pluginspage','
    http://www.macromedia.com/go/getflashplayer','movie','f
    > lash/leaguebanner' ); //end AC code
    </script><noscript><object
    > classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000'
    > codebase='
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#ve
    > rsion=7,0,19,0' width='730' height='80'> <param
    name='movie'
    > value='flash/leaguebanner.swf' /> <param
    name='quality' value='high'
    > />
    > <embed src='flash/leaguebanner.swf' quality='high'
    > pluginspage='
    http://www.macromedia.com/go/getflashplayer'
    > type='application/x-shockwave-flash' width='730'
    height='80'></embed>
    > </object>
    >
    > <script type="text/javascript">
    > AC_FL_RunContent(
    > 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#
    >
    version=7,0,19,0','width','730','height','80','src','flash/leaguebanner','qualit
    > y','high','pluginspage','
    http://www.macromedia.com/go/getflashplayer','movie','f
    > lash/leaguebanner' ); //end AC code
    > </script><noscript><object
    > classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    > codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#ve
    > rsion=7,0,19,0" width="730" height="80">
    > <param name="movie" value="flash/leaguebanner.swf"
    />
    > <param name="quality" value="high" />
    > <embed src="flash/leaguebanner.swf" quality="high"
    > pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    > type="application/x-shockwave-flash" width="730"
    height="80"></embed>
    > </object>
    >

  • Using flash template in dreamweaver

    Hi,
    I am new to dream weaver. JUST NEED A QUICK HINT.
    I used a flash template which was available free online to
    make my own website - I am using dreamweaver to publish my website
    using the flash template i just finished filling out - used a layer
    in dream weaver and put .swf file in it (the main file)
    I also uploaded the dependent files on web.
    When I preview my page in browser it plays the main file
    correctly but does not automatically access other files
    Problem:
    when I play the main 24.swf file in flash - it automatically
    accesses different dependent files and plays the files as I want it
    to - also plays different page files - but the same file when put
    in dreamweaver only plays the intro and then stops and does not
    play different page files.
    Actual files:
    24.swf - is the main page file - when I play this in flash -
    it plays intro, contact tab (when clicked), my projects (when
    clicked), work experience (when clicked), everything.
    I edited different page files my projects (24.1), contact tab
    (24.2), work experience (24.3) individually using their .fla files
    but still when I update information in this files and save them the
    24.swf file automatically picks up the update BUT when I use the
    same file in dream weaver for publishing my website, it only goes
    till the intro and then stops and shows no view for those 24.1 24.2
    24.3 files.
    24.fla plays the intro but 24.swf plays everything, I didnt
    know it would take me so much time to do a simple upload like this.
    I have been working on this problem since last 3 days and
    night but need some help now, I got to finish this up by tomorrow
    night.
    Please help me, I am going crazy because I am a second away
    from the whole website but it doesnt show anything right now.
    Please please help.
    If my explanation doesnt sound clear, please for god sake let
    me know.
    thank you very much

    AC_FL_RunContent( 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','wid th','1000','height','400','src','descarga
    total1','quality','high','pluginspage','
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movi e','descarga
    total1' ); //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="400">
    <param name="movie" value="descarga total1.swf" />
    <param name="quality" value="high" />
    <embed src="descarga total1.swf" quality="high"
    pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    type="application/x-shockwave-flash" width="1000"
    height="400"></embed>
    </object>

  • Flash Catalyst into Dreamweaver to make Wordpress Theme??

    Is it possible to take your flash catalyst file into Dreamweaver and make it into a Wordpress Theme?

    No. Please read the Wordpress pages on how to create and modify themes. None of that has anything to do with just opening a file of whatever type in DW nor FC.
    Mylenium

  • Swf from flash cs4 into dreamweaver cs4

    I don't know why this is so difficult, but I'm unable to embed a swf generated in flash into a dreamweaver template. I can finally create a few basic animations and want to test them out in the  dreamweaver envoirment. What is the simplest path to accomplishing this? For example if I open flash, create a simple animation, like a ball moving across the screen. If I save that SWF, what's the next step after opening dreamweaver. I just want to be able to test it the site with dreamweaver or see it "live". Thanks in advance.

    Go to the Insert menu in DW and select swf. Find the .swf that you want to use and select it. Save the file and then use the Preview in Browser tool. Alternately, you can use the Publish function in the File menu in Flash to publish an html docuement that you can then open in DW.

  • How to insert HTML5 rollover buttons into Dreamweaver

    i publish an HTML5 canvas out of Flash contaning a rollover button and now I want to insert it into my site in Dreamweaver, how do i do it?

    Hi Ercolubus,
    Are  you looking for something like this?
    http://forums.adobe.com/thread/1295208
    Thanks,
    Preran

Maybe you are looking for

  • Adobe Creative Cloud crashes immediately on launch, won't run on a new iMac 5K / Yosemite.

    Adobe Creative Cloud installer (/Applications/Utilities/Adobe Creative Cloud/ACC/Creative Cloud.app) crashes immediately on launch, so I can't install CC on a new iMac 5K running Yosemite. Launching the app to fetch the rest of the CC programs crashe

  • Error while installing flash builder 4.5 for php

    Hello to all. Im having a problem while trying to install the flash builder 4.5 for php.... it keeps saying that i have the zend installed in my computer! but i have not... i just have buyed this computer... and it keeps saying that i have the zend i

  • How Do I Redirect LPT1 Printer Port to 'LOCAL Printer' in Windows 7

    I have previously redirected LPT1 Port to a 'Network Printer' as well as 'Print Server' with NO PROBLEMS.  However, I have NOT been able to redirect LPT1 Port to a 'LOCAL' PRINTER. I have already set up:  - new HP Laser Printer (tested, no problem pr

  • Use of attributes in FIX statement w/ other mbrsets

    Hi all,I just discovered that in 6.1.4, using a FIX statement like:FIX (@ATTRIBUTE("Diet"), @LEVMBRS(Products, 0))will actually select all products, not just a subset that have the attribute "Diet" (where "Diet" is, of course, an attribute of product

  • Requisition quantity against contract

    Hi SAP gurus, We have a problem with the following scenario: A purchase requisition is created, after that a contract referenced to this requisition is created. The problem ocurrs when a purchase order is created referenced to the requisition and oth