AC_RunActiveContent.js Problem

Hello,
I am new to flash and am trying to publish a small flash
piece to a website. I am using CS3 Pro and AS2, but I hit publish
on the presentation (called Index) and use SmartFTP to transfer the
.js file, the .html, and the .swf file all onto the server, but I
still receive a warning that "This page requires
AC_RunActiveContent.js". So, I used Frontpage to look at the html
to see if I was missing anything, and all the names seemed to be
well I have no idea (posted below, sorry if I am not suppost to -
dont use forums often). If anyone has any suggestions that would be
great! Thanks - redbaron005

//v1.7
// Flash Player Version Detection
// Detect Client Browser type
// Copyright 2005-2007 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
+ '" ';
str += '>';
for (var i in params)
str += '<param name="' + i + '" value="' + params +
'" /> ';
str += '</object>';
else
str += '<embed ';
for (var i in embedAttrs)
str += i + '="' + embedAttrs
+ '" ';
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.toLowerCase();
switch (currArg){
case "classid":
break;
case "pluginspage":
ret.embedAttrs[args
] = 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] = 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
] = ret.objAttrs[args] = args[i+1];
break;
default:
ret.embedAttrs[args
] = ret.params[args] = args[i+1];
ret.objAttrs["classid"] = classid;
if (mimeType) ret.embedAttrs["type"] = mimeType;
return ret;
}

Similar Messages

  • Flash in Dreamweaver site  AC_RunActiveContent.js problem

    I have a site created at www.backtothebasics.net. I have
    Flash banners running at the tops of each page. The home page
    works, as does all of the main category pages (ie Sprouting,
    Gardening, etc). However, when you click further, to an article
    within a category, the Flash banner just shows up as a blank white
    box. Each page has the same code on it-the script call in the head
    "<script src="AC_RunActiveContent.js"
    type="text/javascript"></script>", and then the code
    within the page. The only difference is that the article pages are
    one more level down in the folder structure, so the head code reads
    Scripts/AC_RunActiveContent.js on the home page, ../Scripts/ on the
    category pages, and then ../../Scripts/ on the newsletter article
    pages. I have tried taking out all AC references, as well as
    putting the js script in the same folder and adjusting the head
    code accordingly, and none of these things seems to work. Any ideas
    on what I need to do to fix this?

    This is the portion in the <head>
    <!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"><!--
    InstanceBegin template="/Templates/dehydrating_short.dwt"
    codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Back to the Basics : Benefits of Dehydrating
    Article Page 1</title>
    <!-- InstanceEndEditable --><!--
    InstanceBeginEditable name="head" -->
    <link href="../../print.css" rel="stylesheet"
    type="text/css" media="print" />
    <script src="
    http://www.backtothebasics.net/Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    <!-- InstanceEndEditable -->
    <link rel="stylesheet" type="text/css"
    href="../../theme.css" />
    <script type="text/javascript">
    This is the body portion:
    <table width="820" border="0" cellspacing="0"
    cellpadding="0" align="center">
    <tr>
    <td width="150" valign="middle"><img
    src="../../images/top_left.gif" width="160" height="180"
    /></td>
    <td width="670" valign="middle">
    <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','660','height','180','src','../flash/Dehydrateing_Banner','quality','high','pluginspag e','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash',' movie','../flash/Dehydrateing_Banner'
    ); //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="660" height="180">
    <param name="movie" value="
    http://www.backtothebasics.net/flash/Dehydrateing_Banner.swf"
    />
    <param name="quality" value="high" />
    <embed src="../../flash/Dehydrateing_Banner.swf"
    quality="high" pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    type="application/x-shockwave-flash" width="660"
    height="180"></embed>
    </object></noscript></td>
    </tr>
    </table>
    The paths to the script and flash files are both correct.
    Here is the code on a page that is working correctly: The
    only difference is that this page is located at root/dehydrating/
    and the one that is not working is at root/dehydrating/articles/.
    <!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"><!--
    InstanceBegin template="/Templates/main_page.dwt"
    codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Back to the Basics : Dehydrating Main
    Page</title>
    <!-- InstanceEndEditable --><!--
    InstanceBeginEditable name="head" -->
    <script src="../Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    <!-- InstanceEndEditable -->
    <script src="../Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    <link rel="stylesheet" type="text/css" href="../theme.css"
    />
    <script type="text/javascript">
    And the page code:
    <table width="820" border="0" cellspacing="0"
    cellpadding="0" align="center">
    <tr>
    <td width="150" valign="middle"><img
    src="../images/top_left.gif" width="160" height="180"
    /></td>
    <td width="670" valign="middle"><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','660','height','180','title','Dehydrating
    Flash
    Banner','src','../flash/Dehydrateing_Banner','quality','high','pluginspage','
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movi e','../flash/Dehydrateing_Banner'
    ); //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="660" height="180" title="Dehydrating Flash Banner">
    <param name="movie"
    value="../flash/Dehydrateing_Banner.swf" />
    <param name="quality" value="high" />
    <embed src="../flash/Dehydrateing_Banner.swf"
    quality="high" pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    type="application/x-shockwave-flash" width="660"
    height="180"></embed>
    </object></noscript></noscript></td>
    </tr>
    </table>
    Thanks!

  • Problem with flash element in Dreamweaver

    Hi, I am a little new to dreamweaver and am starting up a new
    site with a flash element. I have started this out and it works
    great on my computer when i preview it, but the flash element isn't
    showing up when I publish it. When it loads in the browser it says
    the page is "Done, but with errors" and when I click on that it
    tells me that the problem is in line 12 of my code which is:
    AC_FL_RunContent( 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','wid th','1027','height','53','src','menubar','quality','high','pluginspage','http://www.adobe. com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','menubar'
    ); //end AC code
    I have also published the swf and the AC_RunActiveContent.js.
    I have published the site to
    http://www.sectiondesign.com/porcelain/porcelain.html
    any help would be great.
    Thanks a lot

    misner51 wrote:
    > Hi, I am a little new to dreamweaver and am starting up
    a new site with a flash
    > element. I have started this out and it works great on
    my computer when i
    > preview it, but the flash element isn't showing up when
    I publish it. When it
    > loads in the browser it says the page is "Done, but with
    errors" and when I
    > click on that it tells me that the problem is in line 12
    of my code which is:
    >
    > AC_FL_RunContent(
    > 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#
    >
    version=9,0,28,0','width','1027','height','53','src','menubar','quality','high',
    > 'pluginspage','
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Vers
    > ion=ShockwaveFlash','movie','menubar' ); //end AC code
    >
    > I have also published the swf and the
    AC_RunActiveContent.js.
    > I have published the site to
    >
    http://www.sectiondesign.com/porcelain/porcelain.html
    Base upon:
    <script src="Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    You page is looking for the JavaScript file at this location
    but cannot find it:
    http://www.sectiondesign.com/porcelain/Scripts/AC_RunActiveContent.js
    I also checked here:
    http://www.sectiondesign.com/Scripts/AC_RunActiveContent.js
    and did not find the file. Make sure that you upload the
    script to the appropriate location, or adjust the path so that it
    points to the place where you uploaded the file to.
    It appears that your menu SWF file is present at:
    http://www.sectiondesign.com/porcelain/menubar.swf
    Danilo Celic
    | Extending Knowledge Daily :
    http://CommunityMX.com/
    | Adobe Community Expert

  • Problem with a flash banner in a php includes

    I am creating a site that has many pages and I made an includes file for the header of the page that contains my navigation bar, i then made a template of the page to use for all my pages.
    Now I have created a flash banner that i want to play in the header of all my pages but i´m having problems getting it to show on all the pages.
    Firstly I added the flash swf into my includes file and inserted the flash into the includes file page using insert flash from the dreamweaver menu (code below):
    <?php $currentPage=basename ($_SERVER['SCRIPT_NAME']);?>
    <script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
    <div id ="adBanner">
      <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','468','height','60','title','advertise','src','advertise_banner','quality','high','plu ginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveF lash','movie','advertise_banner' ); //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="468" height="60" title="advertise">
        <param name="movie" value="advertise_banner.swf" />
        <param name="quality" value="high" />
        <embed src="advertise_banner.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="468" height="60"></embed>
      </object></noscript>
    </div>
    <div id ="NavBar">
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p><a href="index.php" <?php if ($currentPage == 'index.php') {echo 'id="here"';}?>>Home</a></p>
        <p><a href="about.php" <?php if ($currentPage == 'about.php') {echo 'id="here"';}?>>About Us</a></p>
      <p><a href="contact.php" <?php if ($currentPage == 'contact.php') {echo 'id="here"';}?>>Contact Us</a></p>
      <p><a href="advertise.php?ad=y" <?php if ($currentPage == 'advertise.php') {echo 'id="here"';}?>>Advertise</a></p>
      <p> </p>
        </div>
    Great the flash ad works when I load the includes page in a browser and when i look at all my other pages that have the link to the includes file the flash file shows as a grey box with F in the center, however if i load any of these pages into a browser the flash ad does not show.
    I also tried doing exactly the same, adding the flash to the header of my template and saving it. However this did not update all of the pages that use the template, the flash ad would play in the browser if I load the template in the browser. (in this instance the actual swf file was in my templates folder with the template page).
    The final thing i tried was just to add the flash to one of my pages just to see if it would work when i loaded the page into a browers, it didn´t and i don´t understand why as it worked on the includes page and template page. (the swf file in this case was in the file along with all the pages of my site).
    It doesn´t seem that i have a problem with the actual flash banner, i just cannot seem to put it in the pages that i want to.
    Any help or input in this matter will be greatly appreciated.
    Thank you in advance.

    I don't know if this will be of any help but I have a flash rotator that I use on a few pages setup in a seperate file as well, here is the code from my include file
      <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="884" height="402" id="myFlashContent">
        <param name="movie" value="/Image-Rotator-V2.swf" />
        <!--[if !IE]>-->
        <object type="application/x-shockwave-flash" data="/Image-Rotator-V2.swf" width="884" height="402">
        <!--<![endif]-->
         <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>
        <!--[if !IE]>-->
        </object>
        <!--<![endif]-->
      </object>
    I also added the following to the head section of the page the flash is used on.
    <script src="http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js" type="text/javascript"></script>
    Regards
    Richard

  • Javascript menu problems in IE

    Hi
    I am using a javascript menu for a website I am trying to
    build, I have tested it on many browsers and thought it was working
    fine, it's fine on all the macintosh browsers, works fine on
    firefox on the PC but there seems to be problems on some versions
    of IE. Especially runing XP but am not sure about vista.
    You dont seem to be able to see the menu when the page loads,
    you can see something is there and the buttons show when you hover
    over them, but they are kicked out of place.
    here is the code if it helps
    <!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=ISO-8859-1" />
    <title>Ecoligical Planning and Research
    Ltd</title>
    <link href="epr.css" rel="stylesheet" type="text/css"
    />
    <script src="Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    </head>
    <body bgcolor="#cfdcce">
    <table width="800" border="0" align="center"
    bgcolor="#FFFFFF" class="greenborderoutline">
    <tr>
    <th height="29" align="left" scope="col"><div
    class="menu" id="menu">
    <script type='text/javascript'
    src='quickmenu.js'></script></div></th>
    </tr>
    <tr>
    <td height="132"><script type="text/javascript">
    AC_FL_RunContent( 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','nam e','eprbanner','width','800','height','168','id','eprbanner','title','banner','src','eprba nner','quality','high','pluginspage','http://www.macromedia.com/go/getflashplayer','wmode' ,'transparent','movie','eprbanner'
    ); //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=7,0,19,0"
    name="eprbanner" width="800" height="168" id="eprbanner"
    title="banner">
    <param name="movie" value="eprbanner.swf" />
    <param name="quality" value="high" />
    <param name="wmode" value="transparent" />
    <embed src="eprbanner.swf" width="800" height="168"
    quality="high" pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash" wmode="transparent"
    name="eprbanner"></embed>
    </object>
    </noscript></td>
    </tr>
    <tr>
    <td height="304" valign="top"><table width="798"
    height="131" border="0">
    <tr>
    <th width="513" scope="col"><p
    class="bodycopyHomepage"><strong>Ecological Planning
    &amp; Research Ltd</strong> is
    <th width="275" scope="col"><span
    style="margin:0px"><img src="images/office.jpg" alt="Head
    Office" name="eprOffice" width="241" height="296" align="left"
    id="eprOffice" /></span></th>
    </tr>
    </table> </td>
    </tr>
    <tr>
    <td height="105"><img src="images/btBanner.gif"
    alt="btBanner" width="800" height="103" align="top"
    /></td>
    </tr>
    </table>
    <table width="800" align="center" border="0">
    <tr>
    <th scope="col"><div align="left"
    class="copyright">&copy;<strong> 2007</strong>
    Ecological Planning and Research Ltd </div></th>
    </tr>
    </table>
    <p> </p>
    </body>
    </html>
    any help here would be great as I am really stuck
    many thanks
    Jon

    Gad. Ask the authors of the menu for help. Would you REALLY
    use something
    like that on a web page?
    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
    ==================
    "ronnyrocket" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hi
    >
    > I am using a javascript menu for a website I am trying
    to build, I have
    > tested
    > it on many browsers and thought it was working fine,
    it's fine on all the
    > macintosh browsers, works fine on firefox on the PC but
    there seems to be
    > problems on some versions of IE. Especially runing XP
    but am not sure
    > about
    > vista.
    >
    > You dont seem to be able to see the menu when the page
    loads, you can see
    > something is there and the buttons show when you hover
    over them, but they
    > are
    > kicked out of place.
    >
    > here is the code if it helps
    >
    > <!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=ISO-8859-1" />
    > <title>Ecoligical Planning and Research
    Ltd</title>
    > <link href="epr.css" rel="stylesheet" type="text/css"
    />
    > <script src="Scripts/AC_RunActiveContent.js"
    > type="text/javascript"></script>
    > </head>
    >
    > <body bgcolor="#cfdcce">
    > <table width="800" border="0" align="center"
    bgcolor="#FFFFFF"
    > class="greenborderoutline">
    > <tr>
    > <th height="29" align="left" scope="col"><div
    class="menu" id="menu">
    > <script type='text/javascript'
    src='quickmenu.js'></script></div></th>
    > </tr>
    > <tr>
    > <td height="132"><script
    type="text/javascript">
    > AC_FL_RunContent(
    > 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#
    >
    version=7,0,19,0','name','eprbanner','width','800','height','168','id','eprbanne
    >
    r','title','banner','src','eprbanner','quality','high','pluginspage','
    http://www
    >
    .macromedia.com/go/getflashplayer','wmode','transparent','movie','eprbanner'
    > );
    > //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" name="eprbanner" width="800"
    height="168" id="eprbanner"
    > title="banner">
    > <param name="movie" value="eprbanner.swf" />
    > <param name="quality" value="high" />
    > <param name="wmode" value="transparent" />
    > <embed src="eprbanner.swf" width="800" height="168"
    quality="high"
    > pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    > type="application/x-shockwave-flash" wmode="transparent"
    > name="eprbanner"></embed>
    > </object>
    > </noscript></td>
    > </tr>
    > <tr>
    > <td height="304" valign="top"><table
    width="798" height="131"
    > border="0">
    > <tr>
    > <th width="513" scope="col"><p
    > class="bodycopyHomepage">
    Ecological
    > Planning &amp; Research Ltd is
    > <th width="275" scope="col"><span
    style="margin:0px"><img
    > src="images/office.jpg" alt="Head Office"
    name="eprOffice" width="241"
    > height="296" align="left" id="eprOffice"
    /></span></th>
    > </tr>
    > </table> </td>
    > </tr>
    > <tr>
    > <td height="105"><img src="images/btBanner.gif"
    alt="btBanner"
    > width="800"
    > height="103" align="top" /></td>
    > </tr>
    > </table>
    >
    > <table width="800" align="center" border="0">
    > <tr>
    > <th scope="col"><div align="left"
    class="copyright">&copy;
    2007
    > Ecological Planning and Research Ltd
    </div></th>
    > </tr>
    > </table>
    > <p> </p>
    > </body>
    > </html>
    >
    >
    > any help here would be great as I am really stuck
    >
    > many thanks
    >
    > Jon
    >

  • Inserting SWF in one of my divs is causing problems with css layout

    I am testing code for a new layout including an swf piece in
    the center of my page and I can't understand what the issue is.
    http://www.ltcproduction.com/ltcproditems.html
    I am loosing a lot of my formatting which should look exactly
    like
    http://www.ltcproduction.com
    only with a dynamic piece in the middle
    here is the code I am using for the new dynamic page below:
    HTML Code:
    <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>ltcproditems_bleu</title>
    <script language="javascript">AC_FL_RunContent =
    0;</script>
    <script src="AC_RunActiveContent.js"
    language="javascript"></script>
    <script language="javascript">
    if (AC_FL_RunContent == 0) {
    alert("This page requires AC_RunActiveContent.js.");
    } else {
    AC_FL_RunContent(
    'codebase', '
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
    'width', '750',
    'height', '400',
    'src', 'ltcproditems_bleu',
    'quality', 'high',
    'pluginspage', '
    http://www.macromedia.com/go/getflashplayer',
    'align', 'middle',
    'play', 'true',
    'loop', 'true',
    'scale', 'showall',
    'wmode', 'window',
    'devicefont', 'false',
    'id', 'ltcproditems_bleu',
    'bgcolor', '#ffff99',
    'name', 'ltcproditems_bleu',
    'menu', 'true',
    'allowFullScreen', 'false',
    'allowScriptAccess','sameDomain',
    'movie', 'ltcproditems_bleu',
    'salign', ''
    ); //end AC code
    </script>
    </head>
    <body bgcolor="#ffff99">
    <!--url's used in the movie-->
    <!--text used in the movie-->
    <!--
    Gekko divers
    Video editing
    Web production
    Graphic Design
    Project Management
    Email Deployment
    Graphic design
    Email deployment
    -->
    <!-- saved from url=(0013)about:internet -->
    <div id="bar-top"></div>
    <div id="content_long">
    <h2>Ltc Production</h2>
    <?php
    include("navbar_insert.php");
    ?>
    <div id="main_container1">
    <noscript>
    <object
    classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0"
    width="750" height="400" id="ltcproditems_bleu" align="middle">
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="allowFullScreen" value="false" />
    <param name="movie" value="ltcproditems_bleu.swf"
    /><param name="quality" value="high" /><param
    name="bgcolor" value="#ffff99" /> <embed
    src="ltcproditems_bleu.swf" quality="high" bgcolor="#ffff99"
    width="750" height="400" name="ltcproditems_bleu" align="middle"
    allowScriptAccess="sameDomain" allowFullScreen="false"
    type="application/x-shockwave-flash" pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    />
    </object>
    </noscript>
    </div></div>
    <div id="bar-bottom">
    <span class="copyright">(c) ltc
    production</span></div>
    </body>
    </html>

    move the javascript block that starts with if
    (AC_FL_RunContent == 0) { to immediately before the noscript block,
    and it should fix your problem.
    I may suggest using swfobject:
    http://code.google.com/p/swfobject/
    to embed your swf. It gives you more flexibility than the adobe
    AC_RunActiveContent method.

  • Picasa photo gallery problems...

    I created a web gallery with Picasa to add to the website I'm creating.  The problem is that when I go to the url where the gallery lies it will not appear, the only thing that appears is a icon saying that the latest macromedia flash player must be installed.  That's not too strange, the strange part is that I have the latest flash player loaded and it still won't appear.  Why is it calling for macromedia and not adobe?  Can someone look at the source code and/or let me know why I can't view this but others can on their computers.  Any help would be greatly apprecaited!
    www.weddingsandmore.us/photogallery
    -Dre

    There where you want to have the users to see it, for example in your startsite.
    Let's create an example, only with one flash (translated from German DW):
    Create a new file.
    Switch to code mode.
    STRG-A (or CTRL-A) --> mark the text over all.
    Delete all.
    Copy my code into the open field.
    <!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>SWF</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','71','height','28','title','SWF','src','Musik/suono','quality','high','pluginspage','h ttp://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','YourDirectory/YourFile' ); //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="71" height="28" title="SWF">
      <param name="movie" value="YourDirectory/YourFile.swf" />
      <param name="quality" value="high" />
      <embed src="Musik/suono.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="71" height="28"></embed>
    </object></noscript>
    </body>
    </html>
    Control pathes and replace my file-names with your's.
    Switch to design mode.
    Try out (play) your swf-file in DW design mode.
    Hope I for my part changed all the names too.
    Hans-G.
    post changed: hans-g.

  • Problem uploading Flash in DW cs3

    This Flash site previews well in DW, but stays blank after upload. It played fine online in a previous version, can anyone tell what's wrong by the code? (Looks like its cut off at the bottom, the site is doghouselords.com. Thanks in advance):
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>DoghouseLords.com</title>
    <style type="text/css">
    <!--
    body {
         background-color: #000000;
    #apDiv1 {
         position:absolute;
         left:102px;
         top:0px;
         width:213px;
         height:223px;
         z-index:1;
    -->
    </style>
    <script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
    </head>
    <body>
    <div id="apDiv1">
      <script type="text/javascript">
    AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','770','height','650','src','Doghouse Lords website 1','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','Doghouse Lords website 1' ); //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="770" height="650">
        <param name="movie" value="Doghouse Lords website 1.swf" />
        <param name="quality" value="high" />
        <embed src="Doghouse Lords website 1.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="770" height="650"></embed>
      </object>
    </noscript></div>
    </body>
    </html>

    I have the same problem. The folder "scripts" solved it the first time.
    But now I have created a second page for the same site with a Flash slideshow (done with SlideShowPro). I tried everything I can think of but the Flash slideshow doesn't appear on the uploaded site. It does very well locally, but once uploaded, nothing happens. The "Scripts" folder is in place, the "_notes" folders are in place in each folder (the main one and each of the Flash folders).
    Here are the 2 pages containing Flash elements :
    http://www.chris-staebler.com/Hounts/index.html
    http://www.chris-staebler.com/Hounts/images.html
    I must have forgotten something somewhere, but I search since 5 hours now…
    If someone has an idea !!!
    Thanks for helping me.
    I must add that I'm new to forums and not a Dreamweaver specialist (ask me about Photoshop or Illustrator, I will be much better !!…)
    Chris from France

  • Dreamweaver CS3 Scripting Youtube embedding Problems

    I use embeds from youtube on my site. They are usually no
    problem. Today I
    upgraded from Dreamweaver 8 to CS3. When saving my files and
    uploading to the host, CS3
    created two scripts that it said were necessary for
    standards-based sites and
    applications:
    AC_Activex.js
    AC_Runactivecontent.js
    CS3 indicated that they must be uploaded in "Scripts" folder
    to host. Now all my
    embeds show up as a red x in IE7. Oddly enough they work in
    Monzilla. Sounds like a version problem doesn't it? Although of
    course my host (Bluehost) says it ain't their problem.

    Check out the following extension:
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&extid=1327520
    From the looks of your code you were embedding Youtube links
    as if they were Flash. However, while they are Flash, Youtube has
    its own system for embedding. I believe Youtube does provide you
    with code to do this. However, this plugin should do it all for you
    from within Dreamweaver.

  • Problem calling function in FireFox

    Anything wrong with this code? It works for IE but FireFox throws: "thisMovie("Untitled-2").playF is not a function" error
         function thisMovie(movieName) {
             if (navigator.appName.indexOf("Microsoft") != -1) {
                 return window[movieName];
             } else {
                 return document[movieName];
         function sendToActionScript(archivo) {
             thisMovie("Untitled-2").playF(archivo);
    EDIT: this is JS code in an HTML file

    Fixed it, the HTML code generated by flash was not working. I republished and used the newly generated HTML file (wish it was not that big and filled with comented stuff) But it's now working on FF as well.
    EDIT: Heh, I keep editing my own stuff. Problem with firefox was having a separate AC_RunActiveContent.js file with most of the code originally generated in the HTML site upon publishing. Worked ok in IE but FF didn't like to have all the js code in a separate file. Strange cause it worked fine on FF too when files were on kglad's server. Server security issue most likely.

  • No 'AC_RunActiveContent.JS' in Flash CS4

    Hey Folks,
    Having same problem as most with Internet Explorer 8.
    Comes up with pop up bar when loading your flash movie. This was remedied in the past when Flash created a file named "AC_RunActiveContent.JS" along with the HTML file after you published your work.
    However since I upgraded to CS4 this file no longer seems to be producing after publishing.
    Any Advice would be hugely appreciated...

    I think you have a better chance to get an answer if you post your question in the Flash forum (this is the Flash Player forum).

  • ActiveX / IE Problem - Flash not loading :(

    Hi, 1st post whooo hooo :)
    Ok, I have been creating a website for a friend and i thought
    all was going well until i tried to open the site via IE. Menu
    (created in flash 8) doesnt work. After a day searching on the web,
    i found out it is due to a security update from MS...i guess alot
    of people are having this problem as i found alot of web pages with
    "fixes" but none seemed to work for me.
    I have been trying to follow this one:
    http://www.amarasoftware.com/macromedia-ie-solution.htm
    But still no luck...i put the .swf file and
    AC_RunActiveContent.js in the root of my website and i think i
    followed the instructions word for word. The menu dimensions are:
    w-770, h-349
    Works fine in Firefox/Opera
    Can anybody point me in the right direction or can you tell
    me where im going wrong?
    Thanks in advance for any help/advice you can give me!
    Cheers
    Chris :)
    Before i tried
    to update
    After I tried
    to update

    Here's a solution:
    First go here and copy the code and create javascript file
    paste the code in the file, name it swfobject.js and put it in a
    folder called js.
    put this line of code in your html head
    <script type="text/javascript"
    src="js/swfobject.js"></script>
    Next:
    Put this in your body or where you want your flash to appear
    Replace the information with your file info:
    "7" means version number 200 is width 100 is height
    <div id="flashcontent">
    This text is replaced by the Flash movie You can put
    anything here incase the user doesn't have flash plugin or correct
    version.
    </div>
    <script type="text/javascript">
    var so = new SWFObject("movie.swf", "mymovie", "200", "100",
    "7");
    so.write("flashcontent");
    </script>
    here's a link to the article
    http://blog.deconcept.com/swfobject/
    Shane

  • Problems seeing my swf file after it's loaded on my server

    Hello! I loaded a swf file in a dreamweaver cs3 and tested it on a browser and works fine. However, after I uploaded everything on my server.. I don't see the swf anymore.. I loaded the scripts AC_RunActiveContent.js.. Can't find the solution for this! Any help is appreciated it. Thanks in advance.
    Here is the link to the page: http://www.salveasi.com.br/index_test2.html

    Then there's your problem. IE uses an activeX control and many other non-standard practices to display html content. It looks like you're going to have to change your design to get the look that you want to achieve.

  • Flash Image Gallery load problem

    This a familiar problem that has been put up here a thousand
    times I'm sure but as yet I haven't been able to find a solution
    for it. I've put together a simple image gallery using Flash and an
    XML file. It works perfectly on my system but there are issues with
    the images loading properly when I put them onto my site. I know
    very little Flash, I've been using a pre-made gallery that I
    downloaded but since it works on my computer I assume I should be
    able to get it to work online too. The thumbnails for the file seem
    to work fine and the information from the XML file is obviously
    being accessed, however the main images are not loading. I've
    included all the code below (Actionscript, XML and the Web coding),
    if someone could help me before I put my fist through a wall that
    would be great:
    Actionscript
    stop();
    //specify the url where folder is located below (if
    applicable)
    toadd="";
    t = 0;
    l = 0;
    theside = 1;
    galxml = new XML();
    galxml.load(toadd+"flash/fashion/easy-xml-gallery-2.xml");
    galxml.ignoreWhite = true;
    galxml.onLoad = function(success) {
    if (success) {
    maxnum = galxml.firstChild.childNodes.length;
    for (n=0; n<maxnum; n++) {
    specs = galxml.firstChild.childNodes[n];
    //TEXT FOR SIDE NAV
    duplicateMovieClip(side.thumbs.thumbsb, "thumbs"+n, n);
    thumbclip = eval("side.thumbs.thumbs"+n);
    thumbclip._x = n*100;
    thumbclip.thetitle = specs.attributes.name;
    thumbclip.theurl = specs.attributes.theurl;
    thumbclip.thecaption = specs.attributes.caption;
    thumbclip.thenum = n+1;
    thumbclip._alpha = 100;
    loadMovie(toadd+"/flash/fashion/images/"+(n+1)+"b.jpg",
    thumbclip.thumbload.thumbload2);
    play();
    side.thumbs.thumbsb._visible = false;
    mainperc.onEnterFrame = function() {
    if (mainperc.perc<98) {
    mainperc._alpha += 5;
    mainperc.perc = Math.round(l/t*100);
    mainperc.perctext = mainperc.perc+"%";
    mainperc.ltext = "OF THUMBNAILS LOADED
    ("+Math.round(t/1024)+"kb)";
    if (mainperc.perc>98) {
    //mainperc._alpha -= 5;
    if (mainperc._alpha<-50) {
    delete mainperc.onEnterFrame;
    XML
    <gallery>
    <pic1 name="ONE">
    <pic2 name="TWO"/>
    <pic3 name="THREE"/>
    <pic4 name="FOUR"/>
    <pic5 name="FIVE"/>
    <pic6 name="SIX"/>
    <pic7 name="SEVEN"/>
    <pic8 name="EIGHT"/>
    <pic9 name="NINE"/>
    <pic10 name="TEN"/>
    </gallery>
    Webpage coding
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>shorty designs</title>
    <style type="text/css">
    <!--
    body,td,th {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color: #666666;
    body {
    margin-left: 0px;
    margin-top: 0px;
    background-image: url(images/fashion_back.gif);
    background-repeat: no-repeat;
    a:hover {
    color: #999999;
    text-decoration: none;
    .Sections {
    color: #333333;
    font-weight: bold;
    #wrapper {
    background-color: #FFFFFF;
    padding: 10px;
    width: 760px;
    margin-right: auto;
    margin-left: auto;
    .section_reg {
    color: #333333;
    font-weight: bold;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: large;
    padding-left: 10px;
    .contact {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: large;
    color: #333333;
    background-color: #FFFFFF;
    width: 400px;
    padding-left: 22px;
    text-align: right;
    .section_back {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: large;
    color: #FFFFFF;
    background-color: #000000;
    width: 135px;
    padding-left: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    background-position: center center;
    vertical-align: middle;
    height: auto;
    .style2 {color: #F0F0F0}
    a:link {
    text-decoration: none;
    color: #333333;
    a:visited {
    text-decoration: none;
    color: #333333;
    a:active {
    text-decoration: none;
    -->
    </style>
    <script src="Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    </head>
    <body>
    <div id="wrapper">
    <p class="Sections"><img src="images/version5.jpg"
    alt="shorty logo" width="166" height="85" /><span
    class="contact">Contact by email:
    [email protected]</span></p>
    <p class="Sections">
    <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','536','height','518','align','right','src','/flash/fashion/fashion','quality','high',' pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=Shockwa veFlash','movie','/flash/fashion/fashion'
    ); //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="536" height="518" align="right">
    <param name="movie" value="/flash/fashion/fashion.swf"
    />
    <param name="quality" value="high" />
    <embed src="/flash/fashion/fashion.swf" width="536"
    height="518" align="right" quality="high" pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    type="application/x-shockwave-flash"></embed>
    </object>
    </noscript>
    </p>
    <p class="section_back">Fashion</p>
    <p class="section_reg"><a
    href="travel.html">Travel</a></p>
    <p class="section_reg"><a
    href="wedding.html">Wedding</a></p>
    <p class="section_reg"><a
    href="layout.html">Layout</a></p>
    <p class="section_reg"><a
    href="personal.html">Personal</a></p>
    </div>
    </body>
    </html>

    Yep, these are the directions:
    this is very easy to update. You only need to edit the simple
    xml file and add images to the images folder.
    step 1.
    add as many images as you like at the size 536 x 403
    step 2.
    create thumbnails for the above images at size 100x75
    step 3.
    update the xml file with the name url and caption for each
    image. (to take the url off just click through to the button on the
    main picture and delete the script that says getURL(theurl)
    step 4.
    open flash file and change the 'toadd' variable to the folder
    where the flash file and image folder is located on your site.
    thats it done.
    The frustrating thing now is that the files are finally being
    found but the thumbnail function has decided to mess up.

  • Problem Using Flash FLV Video Via Dreamweaver CS3

    I have been unable to get my FLV video to play on my website.
    I seem to have two problems:
    1) I want the FLV file to be hosted in a different domain to
    the website itself (for bandwidth reasons) and it doesn't want to
    do that!
    2) I would prefer to use Flash skins rather than Dreamweaver
    skins as I want to offer a full-screen option but I cannot get them
    to work!
    If I host the FLV file on the website domain, the video plays
    ok. If I change the file location in the Properties of the movie to
    become the FLV located on the other domain (using full path
    http://<etc>flv) then nothing
    displays on that part of the page. Firebug tells me it has loaded
    the AC_RunActiveContent.js and FLVPlayer_Progressive.swf but it
    makes no mention of the skin file or the flv file itself ... it is
    as if it just simply has not bothered with it! I suspect I am
    missing something obvious but cannot find it. All help would be
    appreciated. By the way, I have loaded up a crossdomain.xml file to
    the root of the domain that hosts the flv file but that didn't seem
    to make any difference!
    The second challenge is that ideally I would like to use a
    Flash skin so that I can have a full-screen option and so that I
    can have the menu bar under the video itself. However, I can't even
    get that option to work when I host the whole lot on the normal
    webserver! I am suspecting that it might be something that might
    suddenly start working when I fix problem 1. However, if anybody
    has any links to a page that provides simple instructions about how
    to do this task I would greatly appreciate it!
    Many thanks for your help!

    1) Why not post your video to YouTube or Google Video and
    then embed the
    code they provide into your website. This way their servers
    carry the
    bandwidth for you and the scripted embed code will work on
    your site.
    2) If Video sharing isn't an option, and you need more
    bandwidth, you can
    get domain hosting for as little as $4.95 - 6.95/month at
    Bluehost,
    Lunarpages or Web Hosting Pad.
    Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com

Maybe you are looking for

  • Still unable to save bookmarks in Safari 5.1.2 - any clues?

    Starting with Safari 5.1.1 on Lion I have been unable to save any bookmarks after an initial few hours running when it has been possible. I had hoped that the new release of Safari 5.1.2 might have cured the problem, but it doesn't appear to have don

  • Help with removing the Flash DRM module

    Hi, To be able to play DRM content, Flash requires a separate DRM module that is not bundled with the Adobe Flash installer, this is downloaded separatly upon first playback of DRM content. We've successfully implemented this flow. But we now need to

  • Volume Shadows of the NTFS partition are created after a certain period

    Dear Support, Shadows are configured to create on Mon to Fri every week. Once a spell is over from Monday to Friday, they are not created from next Monday. Am I doing anything wrong? The exact time to start the Shadow copies is at 9:00PM from Monday

  • Nomad Zen Jukebox dead battery - where to get fixed in Phoen

    I have had a Nomad Zen Jukebox for several years. Sadly, after I got another player, I let this one sit for several months and now the Li-ion battery is dead. It's one of those 3.6 v batteries soldered onto the mainboard. I li've in Phoenix. Anyone k

  • Mac OS X-10.3.7-Questions about upgrading?

    I am running mac os x-10.3.7 which came with my computer. I have had my computer for a few months now and I'm still learning new stuff everday and need help. I checked my updates and noticed updates for Java 1.4.2, Mac OS X Update Combined-10.3.9, Se