Why is my flash content not working on my dreamweaver created html site?

This is a problem that's happening on my website I'm creating.  I created a quick test website to show you the problem on the fourm.  It's the same problem, and if you can provide the solution to this test website I can apply it to my main website.
Test website on server:
test331754952.net23.net
What I did:
-launched flash
-typed "test" and made it spin 360 degrees
-published swf
-launched dreamweaver
-created a site
-moved swf to site folder
-saved a html file to the site folder
-in dreamweaver, went to insert, media, swf, then selected the swf I made
-it inserted the swf, creating a gray placeholder for it
-re-saved the html document, at which point dreamweaver created a folder named script and 2 files, an swf, and a javascript file
Site Directory:
Scripts Sub-Directory:
What happens:
-when I launch the swf on my machine, it plays fine
-when I open the swf directly on the test website on the server, it plays fine
-when I open the html with the embended swf on the test website on the server, it shows a gray box, then goes white
-In dreamweaver, when I go to preview in browser and choose internet explorer, it tells me I don't have new flashplayer(I do: flashplayer 11) 
Ie also pokes up a box at the bottom that says its not allowing content.  When I click allow content, it creates a gray box
-In dreamweaver, when I go to preview in borwser and choose google chrome, it tells me flash player has stopped a potentionally unsafe operation.  When I close this dialog box, it gives me a gray box where my swf should be embeded.
-I've tried changing global flash secuirty setting and it does nothing
-I've tried visiting the test website on multiple computers in my household to no avail
-I've tried having friends visit the site on their computer at their house to no avail
-I did't touch the code on this test website-the code is exactly what dreamweaver generated
Html Document Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
</head>
<body>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="550" height="400" id="FlashID" title="test">
  <param name="movie" value="test.swf" />
  <param name="quality" value="high" />
  <param name="wmode" value="opaque" />
  <param name="swfversion" value="15.0.0.0" />
  <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
  <param name="expressinstall" value="Scripts/expressInstall.swf" />
  <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
  <!--[if !IE]>-->
  <object type="application/x-shockwave-flash" data="test.swf" width="550" height="400">
    <!--<![endif]-->
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="swfversion" value="15.0.0.0" />
    <param name="expressinstall" value="Scripts/expressInstall.swf" />
    <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
    <div>
      <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
      <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
    </div>
    <!--[if !IE]>-->
  </object>
  <!--<![endif]-->
</object>
<script type="text/javascript">
swfobject.registerObject("FlashID");
</script>
</body>
</html>
Javascript file code(the one dreamweaver made when I inserted swf):
/*! SWFObject v2.0 <http://code.google.com/p/swfobject/>
Copyright (c) 2007 Geoff Stearns, Michael Williams, and Bobby van der Sluis
This software is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
var swfobject = function() {
var UNDEF = "undefined",
  OBJECT = "object",
  SHOCKWAVE_FLASH = "Shockwave Flash",
  SHOCKWAVE_FLASH_AX = "ShockwaveFlash.ShockwaveFlash",
  FLASH_MIME_TYPE = "application/x-shockwave-flash",
  EXPRESS_INSTALL_ID = "SWFObjectExprInst",
  win = window,
  doc = document,
  nav = navigator,
  domLoadFnArr = [],
  regObjArr = [],
  timer = null,
  storedAltContent = null,
  storedAltContentId = null,
  isDomLoaded = false,
  isExpressInstallActive = false;
/* Centralized function for browser feature detection
  - Proprietary feature detection (conditional compiling) is used to detect Internet Explorer's features
  - User agent string detection is only used when no alternative is possible
  - Is executed directly for optimal performance
var ua = function() {
  var w3cdom = typeof doc.getElementById != UNDEF && typeof doc.getElementsByTagName != UNDEF && typeof doc.createElement != UNDEF && typeof doc.appendChild != UNDEF && typeof doc.replaceChild != UNDEF && typeof doc.removeChild != UNDEF && typeof doc.cloneNode != UNDEF,
   playerVersion = [0,0,0],
   d = null;
  if (typeof nav.plugins != UNDEF && typeof nav.plugins[SHOCKWAVE_FLASH] == OBJECT) {
   d = nav.plugins[SHOCKWAVE_FLASH].description;
   if (d) {
    d = d.replace(/^.*\s+(\S+\s+\S+$)/, "$1");
    playerVersion[0] = parseInt(d.replace(/^(.*)\..*$/, "$1"), 10);
    playerVersion[1] = parseInt(d.replace(/^.*\.(.*)\s.*$/, "$1"), 10);
    playerVersion[2] = /r/.test(d) ? parseInt(d.replace(/^.*r(.*)$/, "$1"), 10) : 0;
  else if (typeof win.ActiveXObject != UNDEF) {
   var a = null, fp6Crash = false;
   try {
    a = new ActiveXObject(SHOCKWAVE_FLASH_AX + ".7");
   catch(e) {
    try {
     a = new ActiveXObject(SHOCKWAVE_FLASH_AX + ".6");
     playerVersion = [6,0,21];
     a.AllowScriptAccess = "always";  // Introduced in fp6.0.47
    catch(e) {
     if (playerVersion[0] == 6) {
      fp6Crash = true;
    if (!fp6Crash) {
     try {
      a = new ActiveXObject(SHOCKWAVE_FLASH_AX);
     catch(e) {}
   if (!fp6Crash && a) { // a will return null when ActiveX is disabled
    try {
     d = a.GetVariable("$version");  // Will crash fp6.0.21/23/29
     if (d) {
      d = d.split(" ")[1].split(",");
      playerVersion = [parseInt(d[0], 10), parseInt(d[1], 10), parseInt(d[2], 10)];
    catch(e) {}
  var u = nav.userAgent.toLowerCase(),
   p = nav.platform.toLowerCase(),
   webkit = /webkit/.test(u) ? parseFloat(u.replace(/^.*webkit\/(\d+(\.\d+)?).*$/, "$1")) : false, // returns either the webkit version or false if not webkit
   ie = false,
   windows = p ? /win/.test(p) : /win/.test(u),
   mac = p ? /mac/.test(p) : /mac/.test(u);
  /*@cc_on
   ie = true;
   @if (@_win32)
    windows = true;
   @elif (@_mac)
    mac = true;
   @end
  return { w3cdom:w3cdom, pv:playerVersion, webkit:webkit, ie:ie, win:windows, mac:mac };
/* Cross-browser onDomLoad
  - Based on Dean Edwards' solution: http://dean.edwards.name/weblog/2006/06/again/
  - Will fire an event as soon as the DOM of a page is loaded (supported by Gecko based browsers - like Firefox -, IE, Opera9+, Safari)
var onDomLoad = function() {
  if (!ua.w3cdom) {
   return;
  addDomLoadEvent(main);
  if (ua.ie && ua.win) {
   try {  // Avoid a possible Operation Aborted error
    doc.write("<scr" + "ipt id=__ie_ondomload defer=true src=//:></scr" + "ipt>"); // String is split into pieces to avoid Norton AV to add code that can cause errors
    var s = getElementById("__ie_ondomload");
    if (s) {
     s.onreadystatechange = function() {
      if (this.readyState == "complete") {
       this.parentNode.removeChild(this);
       callDomLoadFunctions();
   catch(e) {}
  if (ua.webkit && typeof doc.readyState != UNDEF) {
   timer = setInterval(function() { if (/loaded|complete/.test(doc.readyState)) { callDomLoadFunctions(); }}, 10);
  if (typeof doc.addEventListener != UNDEF) {
   doc.addEventListener("DOMContentLoaded", callDomLoadFunctions, null);
  addLoadEvent(callDomLoadFunctions);
function callDomLoadFunctions() {
  if (isDomLoaded) {
   return;
  if (ua.ie && ua.win) { // Test if we can really add elements to the DOM; we don't want to fire it too early
   var s = createElement("span");
   try { // Avoid a possible Operation Aborted error
    var t = doc.getElementsByTagName("body")[0].appendChild(s);
    t.parentNode.removeChild(t);
   catch (e) {
    return;
  isDomLoaded = true;
  if (timer) {
   clearInterval(timer);
   timer = null;
  var dl = domLoadFnArr.length;
  for (var i = 0; i < dl; i++) {
   domLoadFnArr[i]();
function addDomLoadEvent(fn) {
  if (isDomLoaded) {
   fn();
  else {
   domLoadFnArr[domLoadFnArr.length] = fn; // Array.push() is only available in IE5.5+
/* Cross-browser onload
  - Based on James Edwards' solution: http://brothercake.com/site/resources/scripts/onload/
  - Will fire an event as soon as a web page including all of its assets are loaded
function addLoadEvent(fn) {
  if (typeof win.addEventListener != UNDEF) {
   win.addEventListener("load", fn, false);
  else if (typeof doc.addEventListener != UNDEF) {
   doc.addEventListener("load", fn, false);
  else if (typeof win.attachEvent != UNDEF) {
   win.attachEvent("onload", fn);
  else if (typeof win.onload == "function") {
   var fnOld = win.onload;
   win.onload = function() {
    fnOld();
    fn();
  else {
   win.onload = fn;
/* Main function
  - Will preferably execute onDomLoad, otherwise onload (as a fallback)
function main() { // Static publishing only
  var rl = regObjArr.length;
  for (var i = 0; i < rl; i++) { // For each registered object element
   var id = regObjArr[i].id;
   if (ua.pv[0] > 0) {
    var obj = getElementById(id);
    if (obj) {
     regObjArr[i].width = obj.getAttribute("width") ? obj.getAttribute("width") : "0";
     regObjArr[i].height = obj.getAttribute("height") ? obj.getAttribute("height") : "0";
     if (hasPlayerVersion(regObjArr[i].swfVersion)) { // Flash plug-in version >= Flash content version: Houston, we have a match!
      if (ua.webkit && ua.webkit < 312) { // Older webkit engines ignore the object element's nested param elements
       fixParams(obj);
      setVisibility(id, true);
     else if (regObjArr[i].expressInstall && !isExpressInstallActive && hasPlayerVersion("6.0.65") && (ua.win || ua.mac)) { // Show the Adobe Express Install dialog if set by the web page author and if supported (fp6.0.65+ on Win/Mac OS only)
      showExpressInstall(regObjArr[i]);
     else { // Flash plug-in and Flash content version mismatch: display alternative content instead of Flash content
      displayAltContent(obj);
   else {  // If no fp is installed, we let the object element do its job (show alternative content)
    setVisibility(id, true);
/* Fix nested param elements, which are ignored by older webkit engines
  - This includes Safari up to and including version 1.2.2 on Mac OS 10.3
  - Fall back to the proprietary embed element
function fixParams(obj) {
  var nestedObj = obj.getElementsByTagName(OBJECT)[0];
  if (nestedObj) {
   var e = createElement("embed"), a = nestedObj.attributes;
   if (a) {
    var al = a.length;
    for (var i = 0; i < al; i++) {
     if (a[i].nodeName.toLowerCase() == "data") {
      e.setAttribute("src", a[i].nodeValue);
     else {
      e.setAttribute(a[i].nodeName, a[i].nodeValue);
   var c = nestedObj.childNodes;
   if (c) {
    var cl = c.length;
    for (var j = 0; j < cl; j++) {
     if (c[j].nodeType == 1 && c[j].nodeName.toLowerCase() == "param") {
      e.setAttribute(c[j].getAttribute("name"), c[j].getAttribute("value"));
   obj.parentNode.replaceChild(e, obj);
/* Fix hanging audio/video threads and force open sockets and NetConnections to disconnect
  - Occurs when unloading a web page in IE using fp8+ and innerHTML/outerHTML
  - Dynamic publishing only
function fixObjectLeaks(id) {
  if (ua.ie && ua.win && hasPlayerVersion("8.0.0")) {
   win.attachEvent("onunload", function () {
    var obj = getElementById(id);
    if (obj) {
     for (var i in obj) {
      if (typeof obj[i] == "function") {
       obj[i] = function() {};
     obj.parentNode.removeChild(obj);
/* Show the Adobe Express Install dialog
  - Reference: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=6a253b75
function showExpressInstall(regObj) {
  isExpressInstallActive = true;
  var obj = getElementById(regObj.id);
  if (obj) {
   if (regObj.altContentId) {
    var ac = getElementById(regObj.altContentId);
    if (ac) {
     storedAltContent = ac;
     storedAltContentId = regObj.altContentId;
   else {
    storedAltContent = abstractAltContent(obj);
   if (!(/%$/.test(regObj.width)) && parseInt(regObj.width, 10) < 310) {
    regObj.width = "310";
   if (!(/%$/.test(regObj.height)) && parseInt(regObj.height, 10) < 137) {
    regObj.height = "137";
   doc.title = doc.title.slice(0, 47) + " - Flash Player Installation";
   var pt = ua.ie && ua.win ? "ActiveX" : "PlugIn",
    dt = doc.title,
    fv = "MMredirectURL=" + win.location + "&MMplayerType=" + pt + "&MMdoctitle=" + dt,
    replaceId = regObj.id;
   // For IE when a SWF is loading (AND: not available in cache) wait for the onload event to fire to remove the original object element
   // In IE you cannot properly cancel a loading SWF file without breaking browser load references, also obj.onreadystatechange doesn't work
   if (ua.ie && ua.win && obj.readyState != 4) {
    var newObj = createElement("div");
    replaceId += "SWFObjectNew";
    newObj.setAttribute("id", replaceId);
    obj.parentNode.insertBefore(newObj, obj); // Insert placeholder div that will be replaced by the object element that loads expressinstall.swf
    obj.style.display = "none";
    win.attachEvent("onload", function() { obj.parentNode.removeChild(obj); });
   createSWF({ data:regObj.expressInstall, id:EXPRESS_INSTALL_ID, width:regObj.width, height:regObj.height }, { flashvars:fv }, replaceId);
/* Functions to abstract and display alternative content
function displayAltContent(obj) {
  if (ua.ie && ua.win && obj.readyState != 4) {
   // For IE when a SWF is loading (AND: not available in cache) wait for the onload event to fire to remove the original object element
   // In IE you cannot properly cancel a loading SWF file without breaking browser load references, also obj.onreadystatechange doesn't work
   var el = createElement("div");
   obj.parentNode.insertBefore(el, obj); // Insert placeholder div that will be replaced by the alternative content
   el.parentNode.replaceChild(abstractAltContent(obj), el);
   obj.style.display = "none";
   win.attachEvent("onload", function() { obj.parentNode.removeChild(obj); });
  else {
   obj.parentNode.replaceChild(abstractAltContent(obj), obj);
function abstractAltContent(obj) {
  var ac = createElement("div");
  if (ua.win && ua.ie) {
   ac.innerHTML = obj.innerHTML;
  else {
   var nestedObj = obj.getElementsByTagName(OBJECT)[0];
   if (nestedObj) {
    var c = nestedObj.childNodes;
    if (c) {
     var cl = c.length;
     for (var i = 0; i < cl; i++) {
      if (!(c[i].nodeType == 1 && c[i].nodeName.toLowerCase() == "param") && !(c[i].nodeType == 8)) {
       ac.appendChild(c[i].cloneNode(true));
  return ac;
/* Cross-browser dynamic SWF creation
function createSWF(attObj, parObj, id) {
  var r, el = getElementById(id);
  if (typeof attObj.id == UNDEF) { // if no 'id' is defined for the object element, it will inherit the 'id' from the alternative content
   attObj.id = id;
  if (ua.ie && ua.win) { // IE, the object element and W3C DOM methods do not combine: fall back to outerHTML
   var att = "";
   for (var i in attObj) {
    if (attObj[i] != Object.prototype[i]) { // Filter out prototype additions from other potential libraries, like Object.prototype.toJSONString = function() {}
     if (i == "data") {
      parObj.movie = attObj[i];
     else if (i.toLowerCase() == "styleclass") { // 'class' is an ECMA4 reserved keyword
      att += ' class=" + attObj[i] + "';
     else if (i != "classid") {
      att += ' ' + i + '="' + attObj[i] + '"';
   var par = "";
   for (var j in parObj) {
    if (parObj[j] != Object.prototype[j]) { // Filter out prototype additions from other potential libraries
     par += '<param name="' + j + '" value="' + parObj[j] + '" />';
   el.outerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"' + att + '>' + par + '</object>';
   fixObjectLeaks(attObj.id); // This bug affects dynamic publishing only
   r = getElementById(attObj.id);
  else if (ua.webkit && ua.webkit < 312) { // Older webkit engines ignore the object element's nested param elements: fall back to the proprietary embed element
   var e = createElement("embed");
   e.setAttribute("type", FLASH_MIME_TYPE);
   for (var k in attObj) {
    if (attObj[k] != Object.prototype[k]) { // Filter out prototype additions from other potential libraries
     if (k == "data") {
      e.setAttribute("src", attObj[k]);
     else if (k.toLowerCase() == "styleclass") { // 'class' is an ECMA4 reserved keyword
      e.setAttribute("class", attObj[k]);
     else if (k != "classid") { // Filter out IE specific attribute
      e.setAttribute(k, attObj[k]);
   for (var l in parObj) {
    if (parObj[l] != Object.prototype[l]) { // Filter out prototype additions from other potential libraries
     if (l != "movie") { // Filter out IE specific param element
      e.setAttribute(l, parObj[l]);
   el.parentNode.replaceChild(e, el);
   r = e;
  else { // Well-behaving browsers
   var o = createElement(OBJECT);
   o.setAttribute("type", FLASH_MIME_TYPE);
   for (var m in attObj) {
    if (attObj[m] != Object.prototype[m]) { // Filter out prototype additions from other potential libraries
     if (m.toLowerCase() == "styleclass") { // 'class' is an ECMA4 reserved keyword
      o.setAttribute("class", attObj[m]);
     else if (m != "classid") { // Filter out IE specific attribute
      o.setAttribute(m, attObj[m]);
   for (var n in parObj) {
    if (parObj[n] != Object.prototype[n] && n != "movie") { // Filter out prototype additions from other potential libraries and IE specific param element
     createObjParam(o, n, parObj[n]);
   el.parentNode.replaceChild(o, el);
   r = o;
  return r;
function createObjParam(el, pName, pValue) {
  var p = createElement("param");
  p.setAttribute("name", pName);
  p.setAttribute("value", pValue);
  el.appendChild(p);
function getElementById(id) {
  return doc.getElementById(id);
function createElement(el) {
  return doc.createElement(el);
function hasPlayerVersion(rv) {
  var pv = ua.pv, v = rv.split(".");
  v[0] = parseInt(v[0], 10);
  v[1] = parseInt(v[1], 10);
  v[2] = parseInt(v[2], 10);
  return (pv[0] > v[0] || (pv[0] == v[0] && pv[1] > v[1]) || (pv[0] == v[0] && pv[1] == v[1] && pv[2] >= v[2])) ? true : false;
/* Cross-browser dynamic CSS creation
  - Based on Bobby van der Sluis' solution: http://www.bobbyvandersluis.com/articles/dynamicCSS.php
function createCSS(sel, decl) {
  if (ua.ie && ua.mac) {
   return;
  var h = doc.getElementsByTagName("head")[0], s = createElement("style");
  s.setAttribute("type", "text/css");
  s.setAttribute("media", "screen");
  if (!(ua.ie && ua.win) && typeof doc.createTextNode != UNDEF) {
   s.appendChild(doc.createTextNode(sel + " {" + decl + "}"));
  h.appendChild(s);
  if (ua.ie && ua.win && typeof doc.styleSheets != UNDEF && doc.styleSheets.length > 0) {
   var ls = doc.styleSheets[doc.styleSheets.length - 1];
   if (typeof ls.addRule == OBJECT) {
    ls.addRule(sel, decl);
function setVisibility(id, isVisible) {
  var v = isVisible ? "inherit" : "hidden";
  if (isDomLoaded) {
   getElementById(id).style.visibility = v;
  else {
   createCSS("#" + id, "visibility:" + v);
function getTargetVersion(obj) {
     if (!obj)
         return 0;
  var c = obj.childNodes;
  var cl = c.length;
  for (var i = 0; i < cl; i++) {
   if (c[i].nodeType == 1 && c[i].nodeName.toLowerCase() == "object") {
       c = c[i].childNodes;
       cl = c.length;
       i = 0;
   if (c[i].nodeType == 1 && c[i].nodeName.toLowerCase() == "param" && c[i].getAttribute("name") == "swfversion") {
      return c[i].getAttribute("value");
  return 0;
function getExpressInstall(obj) {
     if (!obj)
         return "";
  var c = obj.childNodes;
  var cl = c.length;
  for (var i = 0; i < cl; i++) {
   if (c[i].nodeType == 1 && c[i].nodeName.toLowerCase() == "object") {
       c = c[i].childNodes;
       cl = c.length;
       i = 0;
   if (c[i].nodeType == 1 && c[i].nodeName.toLowerCase() == "param" && c[i].getAttribute("name") == "expressinstall") {
       return c[i].getAttribute("value");
  return "";
return {
  /* Public API
   - Reference: http://code.google.com/p/swfobject/wiki/SWFObject_2_0_documentation
  registerObject: function(objectIdStr, swfVersionStr, xiSwfUrlStr) {
   if (!ua.w3cdom || !objectIdStr) {
    return;
   var obj = document.getElementById(objectIdStr);
   var xi = getExpressInstall(obj);
   var regObj = {};
   regObj.id = objectIdStr;
   regObj.swfVersion = swfVersionStr ? swfVersionStr : getTargetVersion(obj);
   regObj.expressInstall = xiSwfUrlStr ? xiSwfUrlStr : ((xi != "") ? xi : false);
   regObjArr[regObjArr.length] = regObj;
   setVisibility(objectIdStr, false);
  getObjectById: function(objectIdStr) {
   var r = null;
   if (ua.w3cdom && isDomLoaded) {
    var o = getElementById(objectIdStr);
    if (o) {
     var n = o.getElementsByTagName(OBJECT)[0];
     if (!n || (n && typeof o.SetVariable != UNDEF)) {
         r = o;
     else if (typeof n.SetVariable != UNDEF) {
      r = n;
   return r;
  embedSWF: function(swfUrlStr, replaceElemIdStr, widthStr, heightStr, swfVersionStr, xiSwfUrlStr, flashvarsObj, parObj, attObj) {
   if (!ua.w3cdom || !swfUrlStr || !replaceElemIdStr || !widthStr || !heightStr || !swfVersionStr) {
    return;
   widthStr += ""; // Auto-convert to string to make it idiot proof
   heightStr += "";
   if (hasPlayerVersion(swfVersionStr)) {
    setVisibility(replaceElemIdStr, false);
    var att = (typeof attObj == OBJECT) ? attObj : {};
    att.data = swfUrlStr;
    att.width = widthStr;
    att.height = heightStr;
    var par = (typeof parObj == OBJECT) ? parObj : {};
    if (typeof flashvarsObj == OBJECT) {
     for (var i in flashvarsObj) {
      if (flashvarsObj[i] != Object.prototype[i]) { // Filter out prototype additions from other potential libraries
       if (typeof par.flashvars != UNDEF) {
        par.flashvars += "&" + i + "=" + flashvarsObj[i];
       else {
        par.flashvars = i + "=" + flashvarsObj[i];
    addDomLoadEvent(function() {
     createSWF(att, par, replaceElemIdStr);
     if (att.id == replaceElemIdStr) {
      setVisibility(replaceElemIdStr, true);
   else if (xiSwfUrlStr && !isExpressInstallActive && hasPlayerVersion("6.0.65") && (ua.win || ua.mac)) {
    setVisibility(replaceElemIdStr, false);
    addDomLoadEvent(function() {
     var regObj = {};
     regObj.id = regObj.altContentId = replaceElemIdStr;
     regObj.width = widthStr;
     regObj.height = heightStr;
     regObj.expressInstall = xiSwfUrlStr;
     showExpressInstall(regObj);
  getFlashPlayerVersion: function() {
   return { major:ua.pv[0], minor:ua.pv[1], release:ua.pv[2] };
  hasFlashPlayerVersion:hasPlayerVersion,
  createSWF: function(attObj, parObj, replaceElemIdStr) {
   if (ua.w3cdom && isDomLoaded) {
    return createSWF(attObj, parObj, replaceElemIdStr);
   else {
    return undefined;
  createCSS: function(sel, decl) {
   if (ua.w3cdom) {
    createCSS(sel, decl);
  addDomLoadEvent:addDomLoadEvent,
  addLoadEvent:addLoadEvent,
  getQueryParamValue: function(param) {
   var q = doc.location.search || doc.location.hash;
   if (param == null) {
    return q;
    if(q) {
    var pairs = q.substring(1).split("&");
    for (var i = 0; i < pairs.length; i++) {
     if (pairs[i].substring(0, pairs[i].indexOf("=")) == param) {
      return pairs[i].substring((pairs[i].indexOf("=") + 1));
   return "";
  // For internal usage only
  expressInstallCallback: function() {
   if (isExpressInstallActive && storedAltContent) {
    var obj = getElementById(EXPRESS_INSTALL_ID);
    if (obj) {
     obj.parentNode.replaceChild(storedAltContent, obj);
     if (storedAltContentId) {
      setVisibility(storedAltContentId, true);
      if (ua.ie && ua.win) {
       storedAltContent.style.display = "block";
     storedAltContent = null;
     storedAltContentId = null;
     isExpressInstallActive = false;
Can someone please help!  I've looked and tried prety much everything.  If you can provide a solution I would GREATLY apreciate it!

There is no Flash player version 15... as in your code:
<param name="swfversion" value="15.0.0.0" />
For some reason Adobe thought it would be a good idea to target a Flash player version (15) as default.....which may be out a couple years in the future. Go figure!!!
If you don't like player version 9, change to 10 or 11.... just not 15 (yet).
Best wishes,
Adninjastrator

Similar Messages

  • Why will adobe flash player not work on my mac?

    Hi, I just got my mac back from the apple store and sadly I lost all my data so its a 'new mac' and i had to set it up from scratch etc.
    I am unable to watch videos on youtube and other sites that need Java or Adobe flash player EVEN THOUGH I have downloaded and uninstalled several times and each time it doesnt work. Ive checked in safari prefferences that 'enable java-script' and 'enable plug-ins' is on but it still will not work!
    Ive been on system prefferences and checked the java and adobe application prefferences to see if i can add the websites oor something but it will not work.
    my mac is deffinetly up to date to the latest version, i have checked several times and i have made sure that it is the correct adobe flash player most recently updated etc, but it will still not work! ive been researching for a couple of days now and cant find anything that works.
    Someone Please Help!!!!!
    This is a screen shot of what is happening with the adobe flash player:
    'clicking on manage website settings'
    why will it not work!!??
    please help!!!!

    The reference in the screenshot  above is about "Adobe Reader", not about Adobe Flash Player."
    Install Adobe Flash Player
    http://get.adobe.com/flashplayer/
    Security turned on?
    System Preferences >  Security & Privacy > General
    Select App store & identified developers

  • Why does my flash player not working?

    When I first intalled it workek.
    Later it dint work.
    Dont know what is the reason for that.

    Hello,
    Crashes or other problems with certain multimedia content in Firefox (such as Youtube videos and Flash animations or games) can often be resolved by performing the steps in these Knowledge Base articles:
    * [[Flash Plugin - Keep it up to date and troubleshoot problems]]
    * [[Flash 11.3 crashes]]
    * [[Flash 11.3 doesn't load video in Firefox]]
    On Windows Vista and above, you can disable Flash protected mode by following the instructions on these pages:
    * http://forums.adobe.com/thread/1018071#TemporaryWorkaround
    * http://kb.mozillazine.org/Flash#Disabling_Protected_Mode_in_Flash_11.3
    (See [http://blogs.adobe.com/asset/2012/06/inside-flash-player-protected-mode-for-firefox.html this Adobe blog post] for technical details about Flash protected mode.)
    For recent updates for Adobe Shockwave Flash, please update your version to 14.
    Please refer to the security updates [http://helpx.adobe.com/security/products/flash-player/apsb14-18.html and Adobe Security Bulletin] for more information.
    <!--Please also note that html5 may need to be enabled to view some videos on youtube [https://www.youtube.com/html5]-->
    <!--[version 13]Please refer to these security issues [http://helpx.adobe.com/security/products/flash-player/apsb14-13.html and Adoble Blog post] for more information on the security update. -->
    Please tell us if this helped!

  • Flash content not working(tried all I can think of)

    First of all I have looked through the knowledgebass and I have followed the step by step troubleshooting instructions with no luck.
    as an example if I try to load up the Native Instrumenst home page the screen shows that it loads "30%" and then it just stops, if I control click the page and go to Adobe flash player Settings, the small settings window pops up but I cant click on anything.
    Is there ANYTHING else I can do to fix this?
    Mac pro quad core, 2.66
    snow leopard 10.6.4
    Flash played 10,1,82,76
    Not sure what else I need to put here!
    thanks in advance,
    Karl

    is this a continuation of another thread?

  • Why isn't flash player not working?

    have macbook pro, downloaded flash player 12.0.0.4 ??, it won't play. In one suggestion, was told to check system preferences>
    go to advanced>check version. Checked and showed have latest but it keeps telling that i don't have latest. Size is 17.5MB downloaded was 961KB
    what does that mean? Am i doing something wrong? I appreciate it if anybody can help. Thank you

    If you're sure you've installed the latest version of Flash, take each of the following steps that you haven't already tried. After each step, relaunch Safari and test. In rare cases, you might have to log out or reboot to force a Flash update to be recognized. For a "missing plug-in" error, start with Step 6.
    Step 1
    If you're only having trouble with YouTube videos, sign in to your YouTube account and load this page. You may see a link with the text "Leave the HTML5 Trial." If so, click that link.
    Step 2
    If you're getting a "blocked plug-in" error, then from the menu bar select
     ▹ System Preferences… ▹ Flash Player ▹ Advanced
    and click Check Now. Quit and relaunch your browser.
    Step 3
    Take this step only if you're getting a "blocked plug-in" error, and Step 2 doesn't resolve it.
    If you're running OS X 10.9 or later, select from the menu bar
     ▹ Software Update...
    The App Store window will open. You may see a "Checking for updates" legend at the top of the window. Wait for it to disappear. You don't have to install any updates, just check. You can then close the window.
    If you're running an older version of OS X, ask for instructions.
    Step 4
    Triple-click anywhere in the line below on this page to select it:
    /Library/Internet Plug-Ins
    Right-click or control-click the highlighted text and select
    Services ▹ Open
    from the contextual menu.* A folder should open. Delete the following item, or anything with a similar name, if present:
    Flash Player (failing).plugin  
    You may be prompted for your login password.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combinationcommand-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.
    Step 5
    Re-download and reinstall Flash. Download it from the domain "get.adobe.com". Don't click a link from any other website, including this one, because you can't trust links. They may be an attempt to trick you into installing malware masquerading as Flash. Type the address into the browser window. Never download a Flash update from anywhere else.
    Step 6
    If you get a "missing plug-in" error, select
    Safari ▹ Preferences... ▹ Security
    from the Safari menu bar and check the box marked
    Allow (or Enable) plug-ins
    Then click the button marked
    Manage Website Settings...
    if present and make sure that the website is not blocked for Flash.
    Step 7
    Select
    Safari ▹ Preferences... ▹ Extensions
    from the Safari menu bar. If any extensions are installed, disable them.
    Step 8
    In the Safari preference window, select
    Privacy ▹ Remove All Website Data
    Close the window. Then select
     ▹ System Preferences… ▹ Flash Player ▹ Advanced
    and click Delete All. Close the preference pane.

  • Why does flash player not work with facebook?

    Why does flash player not work with fcebook?  Whenever I wish to view a video, I get the message that i need to upgrade my flash player. Then no matter how often I download and install flash player I still get the message that I need to upgrade my flash player.  When I go check which version I have, I always get the message that I have the most current one.  I run Mozilla Firefox with Windows.  I don't know anything else.
    Message was edited by: khettich

    This means you don't have the latest version installed.  Update to 11.9.900.117, and Firefox will allow it: Flash Player Plug-in (All other browsers)

  • Why does Flash Player not work with Firefox 16?

    I am posting this question on behalf of wdanh, whose comment on Adobe Flash Professional FAQs was deleted.

    what is the exact issue?  flash content not loading or plugin not initializing or other?  post platform information also.  thanks...

  • Current Version Of Flash Does Not Work For Last 8 Months Or Longer

    So i make flash arcades that resides in a game called Second Life the flash player it used to work great till the updates not long ago i now have to tell each person wanting to play my arcades that they have to do the following to get it to work.
    Here Is The Quote
    This is a fix for people that can not move with arrow keys in game or other keys not working on the arcade it comes down to Adobe no fixing there code in there new version. Every now and again they release a new version of Flash Player and they break the code this here is a way to fix it so you can play the arcades in sl with out problems i am sorry it is taking Adobe so long to fix this i have no control over what they do i do hope they fix this soon.
    Step 1. Download the uninstaller for Flash Player http://download.macromedia.com/get/flashplayer/current/support/uninstall_flash_player.exe
    The Flash Player uninstaller executes on both 64-bit and 32-bit version of the Windows operating systems.
    Save the file in a location where you can find it easily after you restart your computer. For example, save it on your Windows desktop.
    Step 2. Run the uninstaller
    Double-click the icon of the uninstaller that downloaded to your computer.
    Follow the prompts. If you see the message "Do you want to allow the following program to make changes to this computer?," click Yes.
    Delete Flash Player files and folders.
    (more in depth directions with pictures can be found here http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-windows.html#main_Download_t he_Adobe_Flash_Player_uninstaller )
    Step 3. Installing a working version of Adobe Flash Player Flash Player 15.0.0.152 (Win Firefox and Mac) (132 MB)
    Direct Link http://download.macromedia.com/pub/flashplayer/installers/archive/fp_15.0.0.152_archive.zi p
    Save the file in a location where you can find it easily example, save it on your Windows desktop.
    Step 4. Unzip the file to your desktop if you do not know how to unzip a file you can google it. Or you can download a free app called winzip or winrar are well known apps.
    After you have unzipped the file you should be left with a folder called "fp_15.0.0.152_archive" open the folder and find the folder named "15_0_r0_152" ignore the folder that says debug on it.
    When you are insde the "15_0_r0_152" folder double click the file flashplayer15_0r0_152_win.exe it will be the red box there will be 3 red box icons its the top one you want to install.
    After you complete this action you have the choices to let adobe automatically update your flash player we recommend you say no to this then click finish. Now restart your pc and log into SL and it should be working 100% again.
    Notes:
    15.0.0.152 is the latest working version of Adobe Flash Player that we know of atm if there is a new version out please let us know.
    You may update your flash player and see if it is working on the latest version we recommend you check each month at least one time to see if they have done updates to the software.
    If it breaks again you will need to follow these steps again until they fix there code. Some times they fix the code by the next update some times they take a month or more just depends on the people at adobe that are releasing these bad versions of Flash.
    Link to Flash Archive http://helpx.adobe.com/flash-player/kb/archived-flash-player-versions.html
    So i am wondering can some one pass this to a tech person to fix the current code what ever was in 15_0_r0_152 and before worked great now it don't work at all this is not some noob talking this has been tested on over 80+ different computers if not more 80 or more people have contacted me alone on the issue as i know it is one and to be honest i am getting sick of waiting on adobe to fix there code so please send this to the right department to see if they can fix there code and not let it fall on deaf ears. Or give me the exact reason why the new code does not work but the old code does work and i will see if i can fix it but i would rather it be fixed by Adobe as there are many people that want it fixed thank you.
    Sincerely,
    Deviant Taurus
    PS. This happened about 3 years ago and was fixed with the next update i do not recall the version number but you guys have been releasing many new versions and it is still broken please help me and many others put this problem to rest,

    I just now posted it Adobe Flash Player 17.0  -  Bug 3973913
    Adobe Flash Player 17.0  -  Bug 3973913
    Adobe Flash Player 17.0  -  Bug 3973913
    Adobe Flash Player 17.0  -  Bug 3973913

  • My IPad cannot download live Tv from skygo. I have no problem with my lap top so I assume the broad band is okay. Can anybody suggest why the live streaming will not work on my iPad one.

    My IPad cannot download live Tv from skygo. I have no problem with my lap top so I assume the broad band is okay. Can anybody suggest why the live streaming will not work on my iPad .

    Are you using the Sky Go app to try and watch it ? If so are you logged in with your Sky account ?
    If you are using the app then you could try closing the app completely and see if it works when you re-open it : from the home screen (i.e. not with Sky Go 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Sky Go app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then you could try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Why GWt suggest box is not working in the latest versions of Firefox ? It was working only in Firefox 3 and not other versions. could you please assist in this regards.,

    Why GWt suggest box is not working in the latest versions of Firefox ?
    It was working only in Firefox 3 and not other versions. could you please assist in this regards.,

    jbren wrote:
    I repeatedly have problems with playback on my STB's. Go thru all the motions, inhouse agent, fix multi room dvr problems. Unplug unit, unplug dvr, etc. etc. etc.  The DVR'd show will play on the DVR but not on the STB's. What's up with that?
    Sorry to hear the auto fix suggested early did not fix your problem. So we can get more information from you, I have copied your post to our private support board. Please refer all correspondences to there from here on out. You can easily get to the private support one of two ways. In the email you signed up for the forums with, you will receive a link to click on. Make sure you are already signed into the forums before clicking on this link. Another way of getting there is by clicking on your username anywhere you see it in the forums. This brings you to your account profile. Scroll down to the section labeled "My Support Cases" . In there you will see the link to your case.
    Anthony_VZ
    **If someones post has helped you, please acknowledge their assistance by clicking the red thumbs up button to give them Kudos. If you are the original poster and any response gave you your answer, please mark the post that had the answer as the solution**
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or plan

  • Flash Player not working in Firefox

    Suddenly Firefox will not play flash player content called
    when I play games online. It worked fine a few days ago.
    When I click on the link, it opens the game page, but where
    the game should appear, I see a blank black box. When I click on
    the "Play online game" link I also get a large empty black box.
    I am running Windows XP on an HP Pavilion ze2315us laptop. I
    recently installed trial version of Adobe Acrobat 8 Pro.
    In efforts to fix the problem I tried the following:
    Removed adblocker addresses that might conflict.
    Checked blocked sites
    Removed and reinstalled Flash Player.
    Reinstalled Firefox.
    Set folder options to use Firefox to open SWF files
    All to no avail.
    I tried the web site in IE. Had to download and install Flash
    Player again but it works fine in IE.
    Afterwards, it still did not work in Firefox.
    Any tips would be greatly appreciated.
    Thanks.

    Hello,
    I have a similar problem in Linux Fedora 16.
    I have installed adobe flash-plugin 11.2.202.233
    In Google Chrome I can see flash applications very well.
    But in Firefox 11.0 flash does not work.
    When I look in about:plugins I see:
    Shockwave Flash
    File: nswrapper_32_32.liblashplayer.so
    Version:
    Shockwave Flas 11.2 r202
    application/x-shockwave-flash
    Shockwave Flash
    swf
    application/futuresplash
    FutureSplash Player
    spl
    Please, in which OS did you worked?
    In the past I with other versions, it did work without any problem.
    Perhaps I can look if I have firewall is turned on?
    Thanks in advance for any answer,
    Greetings,
    Gaston Verhulst.

  • 'Content not working' problem on BBC and elsewhere

    Wonder if any kind and expert people could help here?
    System: Lenovo laptop, Win XP SP3 32bit, all updates installed. Main browser Firefox with add-ons including Adblock and Ghostery. Broadband via TalkTalk (after they bought up the original ISP I signed up for!) via a BT Business Hub router, usually connecting wirelessly. Comodo firewall installed, no other 'security' stuff running..
    Problems: started around 7/8/9ish Jan 2013 after working fine for ages. Not sure what triggered it - there were Windows, Acrobat and possibly a few other automatic updates going in around then, maybe also FireFox going to 18.
    Problem is with on demand video:
    BBC iPlayer - any show - spins for a bit then comes up "this content doesn't seem to be working"
    Error code - EMP v.3.0.0.r617463_618125_4  Playlist URL : http://www.bbc.co.uk/iplayer/playlist/p012msym/ Error code : 
    CDNRedundancyManagerError [0] : null
    BBC news website clips - any - spins for a bit then comes up "this content doesn't seem to be working"
    Error code  - same as iPlayer
    BBC radio player - says 'loading' for a bit then does nothing.
    ITVplayer - plays an ad then 'resume' button comes up but it won't play, 'resume' just reappears.
    Youtube - videos play but takes several seconds to start buffering, much slower than usual
    BUT video playing via e.g. Guardian website seems to work fine.
    I've tried googling CDNRedundancyManagerError and searching for any related problems, and then tried everything suggested, e.g. at
    http://forums.adobe.com/message/4022210
    http://ubuntuforums.org/archive/index.php/t-1939039.html
    but nobody seems to have an answer and all made no difference:
    - Broadband speed tests - these show around 2Mb/s as usual. Iplayer diagnostic showed the 'streaming 1' test at zero one time, but then it was around 2Mb/s like  the others on subsequent tests.
    - Cleared Firefox browser cache and history
    - Restarted FF in safe mode
    - checked 'allow third party storage' is on in Flash settings. Also tried it with and without hardware acceleration (right click in Flash player and also in Firefox options).
    - /etc/hosts file is original Windows one with no changes.
    - uninstalled Flash and reinstalled current Flash 11.5 (freshly downloaded)
    - Full clean uninstalled Flash as per Adobe instructions and reinstalled 11.5
    - Clean uninstalled and tried Flash Beta 11.6
    - Clean uninstalled then tried Flash 10.3
    - Then put 11.5 back on
    - Turned off firewall
    - In firewall, whitelisted Firefox and plugin container
    - Installed Chrome and tried that - exactly the same behaviour as Firefox.
    - Connected laptop to router via ethernet cable not Wifi
    - Tried another XP computer, connecting by wifi to the same router - same problem. Rarely use this machine so not sure how long it had the issue.
    - Tried a Windows 7 laptop connecting by wifi to the same router - works properly no problems!
    - On original laptop tried a system restore to a week ago when known working - system restore failed, 'no changes made to original system'.
    So, I'm a bit flummoxed.
    - Can't be the router as the Win7 laptop works OK.
    - Can't be the ISP throttling streaming video as the Win7 laptop works OK.
    - Can't be the Wifi on the XP machines as connecting by ethernet makes no difference.
    - Unlikely(?) to be Flash as the Chrome version has same problems as Firefox, and also installing various versions made no difference.
    - Not the firewall as turning it off makes no difference.
    - Not the Firefox add-ons as (a) turning them off in safe mode makes no difference and (b) Chrome also affected
    So what can it be? Any ideas anyone?
    Thanks in advance for any help. Will respond quickly with further info or results of further tests. Cheers Pete

    Good idea - but sadly there was no change in safe mode. I agree something in XP does sound like the culprit...
    I suspect it may be quite hard to reproduce - similar error reports from users are fairly thin on the ground, and I'd expect many more if all XP systems were affected. Everything also plays fine on an XP machine I have at work (different router and ISP, but it's got much the same software on and has had all the same updates).
    I'm in the UK BTW as you clearly guessed!
    As to a URL - just try any of the video clips on the BBC website or try playing anything via iPlayer - they all behave the same as far as I can tell. e.g.
    http://www.bbc.co.uk/news/uk-21039157
    http://www.bbc.co.uk/iplayer/episode/b01pz9m7/Locomotion_Dan_Snows_History_of_Railways_Epi sode_1/
    both give the 'content not working' with CDN redundancy etc error just now. Incidentally several of the Google hits for that error were for people trying to access the BBC via various VPN services/proxies... wonder if that's an indication I'm running into some error whereby the BBC don't know I'm in the UK?
    for ITV player see e.g.
    https://www.itv.com/itvplayer/lewis/series-7/episode-2-down-among-the-fearful-part-2
    It prompted me for a location - either via me typing a postcode or letting the browser tell them the location. Choosing the latter came up 'unknown' so I had to enter the postcode...
    So I wonder if it's an issue whereby my IP address (or whatever) isn't being properly tied to a UK location. I would assume that's usually an ISP issue, although the fact that the Windows 7 machine works would seem to contradict this...
    Region is set as UK in the XP 'Regional and Language' control panel...
    Finally I've just noticed that another on demand service seems to be working OK: e.g.
    http://www.channel4.com/programmes/the-big-bang-theory/4od#3456419

  • Why this character \ it is not working in action scrip?

    Hi...
    Why this character \ it is not working in action scrip? And
    how can I solve it?
    on (release) {
    text.text = text.text + "l"
    Please your help ASAP
    thank you

    yea, that's true, but I don't think that is the problem.. I
    use it every once in a while, and it doesn't break the script.
    "I’m trying to make bush button if i press it, the
    action script it well write the text in text area and I’m
    using Flash MX 2004"
    This statement makes
    zero sense.. please clean it up and make it understandable,
    and tell what version of Actionscript you are publishing to.

  • Flash player not working.  can't watch video and can't upload pics to facebook

    flash player not working.  can't watch video and can't upload pics to facebook

    thanks for helping.  I have windows 7, internet explorer.  recently had to replace my hard drive, and compete reinstall of all software so still a few bugs on settings, ect.  not seeing any error messages.  video and uploading pics seemed to be fine until the last week.  not sure what could have changed .  I can still look at PDF ect, I'm not positive its the Adobe that is messed up, but the 2 things I'm having problems with, clicking on and watching video on espn.com and not uploading pics to Facebook, both just does nothing when I try them.  no errors, just black screen where its suppose to play or upload.  the trouble shooting for both sites say make sure to have the latest version of flash player, so thats why I assume something is wrong with Adobe.  when I do the self scan from this site it says I have the latest version.  my settings say the player is enabled

  • Why is adobe flash player not supported?

    Why is adobe flash player not supported?

    Because.
    Apple and Adobe could never come up with an OS that liked flash and a version of flash that worked on the OS. So never the twain will meet. and now Adobe is abandoning mobile flash in favor of other things, so it's become a moot point.
    With the surge in the number of mobile devices and the fact that a lot of them don't use flash, site creators will need to take mobile devices into account when they create their sites and assess their accessibility.

Maybe you are looking for