Flash content 5230

I have been unable to view any flash content on my web browser of Nokia 5230 since I have bought it.
When i open desktop version of Youtube or Metacafe, instead of playing the video there appears a small "flash 9 needed icon" in the video. On the mobile version of these sites the browser opens the Realplayer.
I have already upgraded to FlashLite 3.1
Please help me

Update to latest flash lite, if available, through software update application for the flash videos to work, regarding the videos played from the memory card are they encoded with MPEG4 codec or any other one supported by device.
If a reply has solved your problem click Accept as solution button, doing it will help others know the solution. Thanks.

Similar Messages

  • 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

  • Flash contents not being displayed on the published Apex application URL

    I've had to publish one of my apex application through an bluecoat proxy to reach my Oracle HTTP server. It works fantastic for everything - except my flash charts. Flash contents are not getting loaded.Issue is only in the published application URL,the same application is working fine internally without proxy.
    Does anyone have any idea why this is failing and how I might fix this?.The bluecoat support enginner is having the following findings
    I am seeing some strange behavior when the browser goes through the
    proxy vs when it does not.
    When the browser uses the proxy the last thing it requests is the
    following(packet 354):
    GET /i/themes/theme_20/btn-bg.gif HTTP/1.1 Via: 1.1 GITS6ISA Cookie:
    WWV_CUSTOM-F_941005998277888_193=7DE31ABFD8D9E680 User-Agent:
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.19)
    Gecko/2010031422 Firefox/3.0.19 GTB7.1 (.NET CLR 3.5.30729) Host:
    ithelpdesk.anupcomp.ae Accept: image/png,image/*;q=0.8,*/*;q=0.5
    Accept-Language: en-us,en;q=0.5 Accept-Charset:
    ISO-8859-1,utf-8;q=0.7,*;q=0.7 Referer:
    http://ithelpdesk.anupcomp.ae/i/themes/theme_20/theme_3_1.css
    X-Forwarded-For: 86.98.85.117 Cache-Control: max-stale=0 Connection:
    Keep-Alive X-BlueCoat-Via: E2DE37912594ECAA
    HTTP/1.1 200 OK ETag: "1a887e1-92-4c2c5105" Content-Type: image/gif
    Last-Modified: Thu, 01 Jul 2010 08:25:41 GMT Server:
    Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server
    OracleAS-Web-Cache-10g/10.1.2.0.2
    (G;max-age=3600+360;age=0;ecid=121853469393,0) Date: Tue, 25 Jan 2011
    07:52:55 GMT Accept-Ranges: bytes Content-Length: 146 Connection:
    Keep-Alive Age: 0
    That is the browser requests
    http://ithelpdesk.anupcomp.ae/i/themes/theme_20/btn-bg.gif and gets a
    200 ok from the proxy/server.
    When the browser does not use the proxy I see the following
    behavior(packet 2783):
    The browser requests
    http://anupserver:7777/i/themes/theme_20/btn-bg.gif 2 times, each time
    the server responds with a 304 not modified status, this means the
    browser has the most recent copy of the .gif file. The browser finally
    does a post to http://anupserver:7777/pls/apex/wwv_flow.accept. Given
    that the browser gets a 200 ok response from the proxy when requesting
    http://ithelpdesk.anupcomp.ae/i/themes/theme_20/btn-bg.gif and then
    stops requesting data, we need to understand why the browser is behaving
    differently without the proxy(i.e. why does it request the content 2
    times and why is it doing the post). The interaction between the
    browser and the proxy appears normal, a 200 ok response with content is
    normal, why does the browser stop requesting content?
    GET /i/themes/theme_20/btn-bg.gif HTTP/1.1 Accept: */* Referer:
    http://anupserver:7777/pls/apex/f?p=193:1 Accept-Language:
    en-us,ar-ae;q=0.5 Accept-Encoding: gzip, deflate If-Modified-Since: Thu,
    01 Jul 2010 08:25:41 GMT If-None-Match: "1a887e1-92-4c2c5105"
    User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET
    CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152;
    .NET CLR 3.5.30729) Host: anupserver:7777 Connection: Keep-Alive
    HTTP/1.1 304 Not Modified Date: Sun, 13 Feb 2011 12:42:01 GMT Server:
    OracleAS-Web-Cache-10g/10.1.2.0.2 Content-Type: text/html Connection:
    Keep-Alive Keep-Alive: timeout=5, max=999 Content-Length: 0
    GET /i/themes/theme_20/btn-bg.gif HTTP/1.1 Accept: */* Referer:
    http://anupserver:7777/pls/apex/f?p=193:1 Accept-Language:
    en-us,ar-ae;q=0.5 Accept-Encoding: gzip, deflate If-Modified-Since: Thu,
    01 Jul 2010 08:25:41 GMT If-None-Match: "1a887e1-92-4c2c5105"
    User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET
    CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152;
    .NET CLR 3.5.30729) Host: anupserver:7777 Connection: Keep-Alive
    HTTP/1.1 304 Not Modified Date: Sun, 13 Feb 2011 12:42:02 GMT Server:
    OracleAS-Web-Cache-10g/10.1.2.0.2 Content-Type: text/html Connection:
    Keep-Alive Keep-Alive: timeout=5, max=999 Content-Length: 0
    POST /pls/apex/wwv_flow.accept HTTP/1.1 Accept: image/gif,
    image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash,
    application/vnd.ms-excel, application/vnd.ms-powerpoint,
    application/msword, application/x-ms-application, application/x-ms-xbap,
    application/vnd.ms-xpsdocument, application/xaml+xml, */* Referer:
    http://anupserver:7777/pls/apex/f?p=193:1 Accept-Language:
    en-us,ar-ae;q=0.5 Content-Type: application/x-www-form-urlencoded
    Accept-Encoding: gzip, deflate User-Agent: Mozilla/4.0 (compatible; MSIE
    6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR
    2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) Host:
    anupserver:7777 Content-Length: 262 Connection: Keep-Alive
    Cache-Control: no-cache

    Hello Orton,
    I think this has something to do with network access, may be a firewall restricting access to the server.
    Thanks,
    Machaan

  • Problem with Left Click (mighty mouse) and flash content

    Hi, first sorry for my bad english...
    Well I have an issue with the left click (i have mighty mouse) and flash content in Firefox:
    if i'm using Firefox and then change to any other app, when i get back to firefox i have no left click anymore...
    So i have to open the mouse setting panel and everything works fine again...
    I don't want to open the mouse panel over and over again to fix that, so what i can do?
    THANKS in advance =)
    I uploaded a video to show the issue:
    http://www.youtube.com/watch?v=ROWSod5fUjk
    Mighty mouse Settings:
    Left Click + Right Click
    Firefox ver: 3.5.5
    Snow Leopard: 10.6.2
    iMac 24" (iMac9,1)
    Message was edited by: MaLk Gopher

    Hi, Guys!!
    And you have some right cosmic_hippo , Why?
    Well think that the real problem it's something between Firefox and Flash content...
    because if i use Safari and i try make what i describe in the first post, i don't have any problem with the mouse settings.
    Only Happens when i use Firefox...
    Cheers.
    Well the issue is still there...

  • Flash content distorts when scrolling and switching tabs.. since FF 13.0.1..

    Before describing the issue
    Please note from the System Details pane to this post that I have the latest flash, etc.
    And Windows updates,are up to date.
    ==================================================
    Issue: Scrolling distorts flash player window (Youtube, hulu, etc.)
    Since: FF 13.0.1 update in June. (I posted on the issue under "badly scrambled images".)
    Problem is still there with FF 14.0.1
    This distortion happens:
    # even with just starting the browser (so no bloated cache)
    # even with just only one or two tabs open.
    And since last week's update to FF 14.01, I have also detected:
    Switching to the the tab with flash content will "imprint" the image from the my previous tab on to the flash player. I have to scroll or refresh to get the flash player to show its content.
    FYI, none of these flash player problems occur with IE9.
    The advise from a regular contributor was to turn off hardware acceleration, but these did not solve this issue.:(
    Solutions suggesting disabling all the plugins etc. have not solved the problem either.
    So if you can tell me some other way to solve this, I will appreciate it.
    Thanks.
    Images:
    [URL=http://imageshack.us/photo/my-images/824/ff14scramblesyoutubecon.png/][IMG]http://img824.imageshack.us/img824/4443/ff14scramblesyoutubecon.th.png[/IMG][/URL]
    [URL=http://imageshack.us/photo/my-images/715/stillscrambledflashcont.png/][IMG]http://img715.imageshack.us/img715/6813/stillscrambledflashcont.th.png[/IMG][/URL]

    Sorry, it took me a while to give feedback for the suggestions you have given here.
    (Please refer to sidebar on the original post for system details.)
    I have reset the profile and updated the Nvidia driver. The version of FF is 14.0.1. But it still scrambles the pictures.
    On top of scrambling the flash content when scrolling, it has additional problems:
    As you can see from the attached image, another tab's content is showing on the youtube flash player. This happens when I have paused the video even for a short time.
    I have a suspicion that the combination of Flash and Firefox does some weird things to graphic processing and memory.
    (I realize that IE implements Flash differently, but they seem to have this right.)
    I might just have to say goodbye to Firefox for a while.
    Thanks.

  • Web Part with Flash Content is not working in IE only

    Hi All, 
       I have created on Visual WebPart its contain a flash embed object i am trying load this flash component inside the Iframe.
    unfortunatly its not working in IE 11 version but its working fine with other browser like Mozila and Chorme.
    I referred the other links like but its not helped me to solve this issue. i have tried without iframe alos its not working if its a standalone web page out side the shrepoint working fine.
    https://social.technet.microsoft.com/Forums/office/en-US/c88466ba-bd00-4cd3-a7cf-3a9a7eee7f51/flash-content-not-working-in-ie-11?forum=ieitprocurrentver
    Thanks 
    SUJIL KUMAR T
    Software developer

    Hi,
    As the custom web part works well in other browsers, the issue may be related to the IE itself.
    Have you tried the methods below?
    Use compatibility mode to check whether it works.
    Open IE->Tools->Compatibility View Settings
    Add the site into Trusted sites to check whether it works.
    Open the IE->Internet Options->Security->Trusted Sites->add the site into the zone
    What’s more, you can also switch the Document mode to IE 10 or lower to check whether it works.
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Upgraded to Flash 9 on OS 10.4.11 -- cannot view flash content

    Hi All! I recently upgraded Flash to v. 9 and can no longer
    view any Flash content online. No error messages - just blank space
    where video clip would normally be. Shortly before I noticed these
    problems, I also upgraded Quicktime. I've seen comments online
    about going into System Preferences > Quicktime > Advanced
    > MIME Settings > Miscelaneous. I was told to uncheck the
    Flash in the list, but don't see Flash listed there. I'm not sure
    if there is some conflict with Quicktime or if that upgrade is
    unrelated? Any advice would be appreciated! Sue

    I am having the same problem. When I installed The new Flash
    Player it said it was installed successfully. But I don't see the
    movie, just the (F) flash logo. When I go to pbskids.org to run
    flash content, it says I need the Flash Player??

  • Flash Content on the BBC in Safari 5.0.6

    This question applies to my G5 2.5 gHz Tower running Safari 5.0.6. and an issue with Flash content on the BBC News website.
    I often the BBC News website, and until a few months ago was able to play all of their video content.  For some inexplicable reason their website now tells me I do not have the minimum Flash version (10.1.0) for playback.  However, I do have the minimum Flash installation (v.10.1.102.64) as confirmed by the Adobe web site, and, seconded by the simple fact that Firefox 3.6.25 on the very same computer does play all the content at the BBC News web site and fails to generate any warnings.
    So, Mac gurus and assorted experts who have earned my depest respect... what's going on?  I have written to those in charge of the BBC News web site and indications are they probably didn't read my message past the subject line as they proceeded to ask me all the questions they'd have had answers to by reading my message in the first place.  In short, they asked me to upgrade to Flash 10.1.0... so that route is not going solve my problem.
    Any help or insight would be greatly appreciated.
    Many thanks...

    BBC iPlayer relies on Adobe Air. AIR 1.5.3 is the last version of AIR that supports Mac PowerPC and Windows 2000. AIR applications that require AIR 2 or later cannot be installed or used on a Macintosh PowerPC or a computer running the Windows 2000 operating system.
    http://kb2.adobe.com/cps/853/cpsid_85304.html
    I am in the same boat. I cannot watch flash videos on the BBC website or on BBC iPlayer, although all other flash videos (YouTube for example) are fine.
    For reasons that passeth all understanding, they work with the PPC version of Firefox, called TenFourFoxG5.app, once you have anabled plug-ins, as it does not natively support Flash.
    You can download TenFourFoxG5 from here:
    http://www.floodgap.com/software/tenfourfox/
    Now for the intersting bit: TenFourFox, like Firefox, does not support most plug-ins. Unless you are prone to headaches (in which case don't) you can read about that here:
    http://code.google.com/p/tenfourfox/wiki/PluginsNoLongerSupported
    But there is a workaround!
    Open TenFourFox and type in the address bar: about:config (no spaces) and click return. This gives you a warning that it might harm the application. Ignore that and click on 'I'll be careful, I promise' and you get the config file that you can edit - with great care.
    Look/search (scroll down) for: tenfourfox.plugins.enabled
    Set it to true. (Double click it to toggle it)
    Now close TenFourFox, open it again, and Flash will now work, as it now uses the plug-ins that Safari has stored.
    I am using Flash 10.1.102.64 in TenFourFox and it works just fine.

  • Windows 8 freezes while I try to watch online Flash content and running Audition CS6

    I recently bought a online introduction course to Auditon CS6 on Vimeo.com
    While I have a setup where I put the lecture on one screen and the program on the other I like to follow tutorials and learn how to use software.
    However this proves to be impossible for me in Audition, because for some reason my computer gets completely unresponsive after a little while of watching the lectures with Audition running.
    It never happens when Audition hasn't been launched, and I'm kind of suspecting a driver conflict, but I don't have a fancy audio card in my computer, (just built in Realtek,) and find it a bit
    odd that it wouldn't be supported as it is some of the most common audio setups around. As far as I know the system runs stable with Audition running and no Flash content started as well.
    This has happened for the last couple of months and I've updated Flash and drivers as they roll out. Audition CS6 is downloaded with the Creative Cloud application Manager.
    Here is some general info on my computer:
    OS: Windows 8 Pro 64 bit.
    Motherboard: eVGA x58 Classified (Tried with stock BIOS and also updated to new BIOS)
    Audio Card: Realtek (on motherboard)
    Graphics: Nvidia Geforce GTX 560 Ti
    The system storage device is a SSD (Firmware recently updated due to BSODs apearing, and seems to be resolved.)
    I do believe that this might not be a Audition issue, but rather a issue with Flash. However Audition + Flash reproduces this problem faster than anything else I can remember this happening while
    using other 3rd party software while playing Flash. (Not exactly the type of software.) I have a suspicion that it is something that occurs if Flash and other programs is paging/wiring/reading the SSD...
    I can't remember this happening with Photoshop or other Adobe software, and so I'm also curious to how different Audition runs "under the hood" so to speak. What is it constantly checking
    that could lead to a hardware conflict.

    A month ago I uninstalled AVG Internet security from my computer making it a lot less potent to BSODs in general, (can't reacall having any.) So today I thought I'd try to learn some more Audition. I could Sit with it for a good while just playing around with recordings and settings and my system didn't react weirdly at all. So the next step was of course to try and load some of the Udemy lectures I had waiting.
    As the video was buffering I turned away from the computer for a while, but when I came back it had completely froze up again... I don't think I've ever had a BSOD in this context either, instead of going into BSOD the computer just stops responding completely.
    (I'm using the latest version of Flash, tried with both Firefox and Chrome.)
    I'm thinking this is a very niche bug and I can't seem to se that it can be anything but a conflict with Flash. Weither it's a memory leek or what ever it is.
    I can use Audition fine on my computer it seems, as long as I never start a browser in risk of loading a Flash application, (which would be fine if I was avid, but I need some lectures to get started.)
    Nothing really seems to be overloaded (RAM/CPU) before the freeze ocurs either.
    I  don't really know where or how to adress this to the Flash Player forum/community, (or if there is one.)
    Thanks.

  • Adobe Reader cannot play embedded Flash content

    I don't know why, the Flash format was originally created by Macromedia, and then Adobe acquired the company, but the Adobe Reader cannot display Flash content.
    My PDF file is here:
    http://genifer.googlecode.com/files/agi-book.pdf
    Scroll to page 37.
    The original SWF file is here:
    http://genifer.googlecode.com/files/unified-AND-OR.swf
    which *can* be played on my Chrome browser.
    But when I embedded the SWF file in the PDF, the result is unplayable.
    A clue is:  Adobe Reader asked me to download QuickTime to display media contents.  So I downloaded QuickTime.  But QuickTime nowadays has removed Flash support.  Why did Adobe Reader ask me to download QuickTime to display Flash, when Adobe owns the Flash format?
    I have also tried selecting other media players in the Reader's option box (eg, Windows Media, Windows built-in, Adobe Flash, etc) but none of them works.
    I have also tried using Adobe Acrobat Professional 9.  Same result.
    It seems to be a problem with Adobe Reader.  Any suggestions?
    Thanks!

    Adobe Reader most certainly CAN play embedded Flash content, but only if you embed it properly.
    You're seeing a Quicktime warning because you're embedding the SWF as "legacy media" content - this is no longer supported for authoring and is disabled by default for playback.You should use Rich Media Annotations instead (embedding using the multimedia/flash tool in Acrobat 9 or Acrobat X).

  • Hi, is this the right product for enabling flash contents? I need support for my Harvard e-learnings pls.  After downloading Presenter, I get an error message 'Not a valid presenter' when I add the Harvard url.  Need help.

    Hi
    Is there anothe product for enabling flash content.

    Pallavi,
    Adobe Presenter is a plug-in application to MS PowerPoint that allows you to add video, audio, Flash and quiz content in to a presentation and then author it out as a Flash based presentation that can the be delivered to others via the web. You are asking about enabling Flash content. In what browser/application are you needing to enable Flash Content?
    The 'Not a valid presenter' message is most likely due to you not have the rights to author content to Harvard's e-learning system, but without knowing if the URL is for a Connect account or some other e-learning platform, it's hard to give any useful insight.

  • IE8 Error when opening Pop-up with Flash Content

    I am running into a problem creating a webpage.  I am very new to AS3 and not quite a novice at Dw CS3.  I have audio files and flash content that is downloadable from my page.  The audio is made available by clicking on a flash button that links to an mp3 or wav file.  The player then opens and plays the file.  I also created some flash animations that are accessed by flash buttons I also created and put on my webpage.  I added scripting (AS3) for those buttons that defines a pop-up window size and points to an html page to put into the pop-up window.  I'm really not sure if this script is the most efficient.  It probably isn't. The script is below: (Note: I could not paste it in so I retyped it.  Don't know why, but the script works even though there might be syntax errors below.)
          //define variable "jscommand" that has URL to open and pop-up window parameters
    var jscommand:String="window.open('Multiplication.html,'miniwindow','height=440,width=605,toolbar=yes,scrollbar=no');";
          //define variable "openflashURL" which runs "jscommand"
    var openflashURL:URLRequest("javascript"+jscommand+"void(0);");
          //define function "openflashdown" that initiates URL request
    function openflashdown(Event:MouseEvent):void{
    NavigateToURL(openflashURL,"_self"};
          //define button listener
    Mult_FlashPlayer_btn.addEventListener(MouseEvent.CLICK,openflashdown);
    The problem is as follows:  When I click on the flash buttons that use the above script, I get a pop-up window with the .swf in it and everything runs fine.  Next, when I click on an audio button, the mp3 file downloads and the player (Real) begins to play it.  But if I try to open up the flash animation again I get this error message from IE8 "Unspecified Error  Internet Explorer cannot download".
    I tried to find anwsers on-line and I found another person with a similar problem.  Their solution was to take the javascript code out of the flash button coding and put it in the html page directly.  I took the first line on code in the above and put it in the html code.  Dw did not recognize it as code but as text.  I don't know where to go from here.  Does anyone know what to do?  I'm a beginner so please be as clear as you can be.

    Try uninstalling your sound card driver in Device Manager and reboot your PC.

  • Firefox closes on websites with Flash content

    I have been experiencing this problem after the last couple of updates. I'm currently running 3.6.6. On nearly every site that runs Adobe Flash content, the content loads to the point that I know it will work, but Firefox stops loading the content, freezes, and then closes with no error messages. I reopen it and it asks for a session restore, but only about half of the time. The other half, it restores the tabs to about 10 seconds before the crash. I would open Speedtest.net, for example, it would load the player to when the blue line appears in the bottom, and then the loading wheel in the tab would freeze. After that, it closes. It has happened every time I opened that website. It would happen on other site with flash games as well.
    I have reinstalled Adobe Flash by uninstalling and then reinstalling. I have also manually upgraded Firefox again. None of these have fixed the problem.

    Open up computer case, unplug and take out the processor fan cooler and wipe out all the dust, speccially in the heatsink, with a soft little brush and compressed air spray (also check power supply fan). I discovered this solution after weeks of trying all software related recommended steps and nothing worked, adobe flash player was still crashing in firefox, chrome and opera even after completely uninstalling flash and installing latest version 10.2.152.26 of the plugin. I realized this was the problem when pc started to crash unexepectedly when not playing flash videos. So, EUREKA, that did the trick for me. Hope it does for you.

  • Enable flash content in pdf

    When exporting my indesign file to an interactive pdf i get the following problem:
    I open the pdf, when there is flash content , i can set the properties for it to be visible when the page is opened, that is what i want. When i then save the pdf other user do no longer have to 'enable' the flash content so that it looks embedded in the document (because people otherwise would just miss it ).
    Now I have a PDF with over 60 pages off flash content, so i have to enable page per page , and when the client asks for a little adjustment, be it 1 word, i re-save the pdf, it loses al those settings (the properties per flash in acrobat ) , so my questions is : how can i enable all this content 1 one time, in acrobat or indesign, because this is a terrible workaround.
    Thank you!

    Windows 7
    Indesign CC 2014 (latest)
    Adobe acrobat XI , version 11.0.0
    Flash is installed (otherwise i would not be able to activate the content i guess ? )
    Thank you

  • Flash Contents Blank

    Like many out there, I continue having problems with Flash
    Player and am extremely exasperated.
    My problem may be a little bit different from what others may
    have experienced because, even though Flash Player seems to install
    itself without a problem,
    I get a blank space where Flash content should be in BOTH IE7
    and Firefox2.
    I have followed steps listed in Macromedia Flash Player forum
    under the following topic headings to no avail:
    INFO NEEDED: Flash Player installer button doesn't work, or
    cannot be seen - Posted by BWolfe [ADOBE]
    Adobe Flash Player will not work - Posted by gearhead9
    [ADOBE] Resolving Windows Flash Player permission-related
    issues 9/2007 - Posted by BWolfe [ADOBE]
    Help with Flash Player- Not Playing - Posted by jdb123
    Can't run in Firefox - Posted by worknonjoy
    Flash Player Downloading, but can't see content. - Posted by
    s83982c
    Basically, I haven’t been able to spot anything that
    points to why I should be having this problem so far.
    I have the following installed:
    Windows XP Media Center 2002
    McAfee SecurityCenter 7
    Spybot Search & Destroy 1.4
    Ad-Aware 2007 Version 7
    I have run registry clean with Spybot Search & Destroy,
    Ad-Aware 2007, and McAfee SecurityCenter 7 (Tools - Maintain
    Computer - McAfee QuickClean).
    The applications were not running when I tried the steps
    listed in the forum.
    And I started having problems before I ran registry clean for
    the first time.
    I have all pop-up blocking turned off.
    In Add or Remove Programs, I see the following listed:
    Adobe Flash Player ActiveX (Version 9.0.47.0)
    Adobe Flash Player Plugin (Version 9.0.47.0)
    Any further solutions or suggestions would be greatly
    appreciated!

    well it looks like your vid is here:
    http://lasdsite.lasd.org/sheriff_video/lasd_one_team.flv
    your swf is here:
    http://www.lasd.org/lasdsite/sheriff_video2.swf
    and your swf's link to flv is this:
    "X:\\sheriff_video\\lasd_one_team.flv"
    should be:
    "sheriff_video/lasd_one_team.flv"
    that's the relative path from the swf to the vid...
    HTH
    -Ted

Maybe you are looking for

  • How to embed fonts in a PDF

    I have a book which uses Garamond Light Italic and Helvetica light Oblique. Only 2 styles of 2 fonts. The printer wants me to embed the entire font families with the PDF files. My problem is that I don't know how. All I know is that it will only embe

  • How to get the record set into array?

    Hi, I want to get the record set into array in the procedure and do the processing of the array later in procedure. below is the stored procedure i am working on: procedure bulk_delete_group(p_group_id in Array_GroupListID) as begin for i in p_group_

  • F110 Issue:there is diff between of 1000usd in F110 payment list & dme file

    H i experts F110 Issue: there is difference between of 1000 usd in F110 payment list and Dme file. please let me know reason regards sachin

  • Adobe are as bad as hackers and spammers

    I now completely understand why Apple do not want Adobe on the equipment. I made the mistake of updating flash player for firefox and guess what... those management geeks at adobe decided that they would also install some junk mcaffee software at the

  • How to move completed motion project to another computer?

    I made a simple opening bumper video / title video that I have sent over to FCPX. (Meaning I can change the date on the video in FCPX.) I want to transfer that to my laptop to do some work next week. Do I need to have Motion installed on my laptop fo