This is in regards to to the flash player version 11.6

well i was wanting to know how do i exactly fix my flash player so i can see any videos play the right way, this flash player 11.6 version is messing up really bad so if any can help me fix this i would appreciate it.

To help troubleshoot we'll need the following system information:
Operating   system  
Browser  
Flash   Player version
When reporting issues with video or audio, it's also helpful to get your system hardware and driver details.  Instructions for finding this information can be found here:
Windows  
Mac
Finally, sometimes video and audio problems are caused at a lower level and not directly related to Flash Player.  I recommend trying both of the links below to see how they perform.  If the problem exists with both, then Flash Player is most likely not the culprit as the HTML5 video link does not use Flash Player when playing.  You can verify the use of HTML5 by right clicking the HTML5 video and looking for the words "About HTML5" at the bottom of the context menu.
HTML5   video  
Non-HTML5 video

Similar Messages

  • How do I get a user to update to the Flash Player Version to 10.1

    I would like to find out if there is a way for a message to pop up on my website if the user has Flash Player version lower than 10.1. If the version 10.1 or higher (in the future) no message should come up. The message should prompt a user to update to the Flash Player version 10.1.
    My entire site is in Flash and I am using AS3. So I am guessing I should implement an AS3 code on the first frame of the script layer. Does anyone know what would be this code?

    O.K. I see,
    HTML code is automatically generated by Flash program.
    I am unable to give you a short answer on this and thus attaching the code I
    see in DreamWeaver:
    0) {
    versionRevision = versionRevision.substring(0,
    versionRevision.indexOf("d"));
    var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
    // MSN/WebTV 2.6 supports Flash 4
    else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1)
    flashVer = 4;
    // WebTV 2.5 supports Flash 3
    else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1)
    flashVer = 3;
    // older WebTV supports Flash 2
    else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer
    = 2;
    else if ( isIE && isWin && !isOpera ) {
    flashVer = ControlVersion();
    return flashVer;
    // When called with reqMajorVer, reqMinorVer, reqRevision returns true if
    that version or greater is available
    function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
    versionStr = GetSwfVer();
    if (versionStr == -1 ) {
    return false;
    } else if (versionStr != 0) {
    if(isIE && isWin && !isOpera) {
    // Given "WIN 2,0,0,11"
    tempArray         = versionStr.split(" "); // ["WIN", "2,0,0,11"]
    tempString        = tempArray[1]; // "2,0,0,11"
    versionArray      = tempString.split(","); //
    } else {
    versionArray      = versionStr.split(".");
    var versionMajor      = versionArray[0];
    var versionMinor      = versionArray[1];
    var versionRevision   = versionArray[2];
             // is the major.revision >= requested major.revision AND the minor
    version >= requested minor
    if (versionMajor > parseFloat(reqMajorVer)) {
    return true;
    } else if (versionMajor == parseFloat(reqMajorVer)) {
    if (versionMinor > parseFloat(reqMinorVer))
    return true;
    else if (versionMinor == parseFloat(reqMinorVer)) {
    if (versionRevision >= parseFloat(reqRevision))
    return true;
    return false;
    function AC_AddExtension(src, ext)
      if (src.indexOf('?') != -1)
        return src.replace(/\?/, ext+'?');
      else
        return src + ext;
    function AC_Generateobj(objAttrs, params, embedAttrs)
      var str = '';
      if (isIE && isWin && !isOpera)
        str += '';
      document.write(str);
    function AC_FL_RunContent(){
      var ret =
        AC_GetArgs
        (  arguments, ".swf", "movie",
    "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
         , "application/x-shockwave-flash"
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    function AC_SW_RunContent(){
      var ret =
        AC_GetArgs
        (  arguments, ".dcr", "src",
    "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
         , null
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
      var ret = new Object();
      ret.embedAttrs = new Object();
      ret.params = new Object();
      ret.objAttrs = new Object();
      for (var i=0; i < args.length; i=i+2){
        var currArg = args[i].toLowerCase();
        switch (currArg){
          case "classid":
            break;
          case "pluginspage":
            ret.embedAttrs[args[i]] = args[i+1];
            break;
          case "src":
          case "movie":
            args[i1] = AC_AddExtension(args[i1], ext);
            ret.embedAttrs["src"] = args[i+1];
            ret.params[srcParamName] = args[i+1];
            break;
          case "onafterupdate":
          case "onbeforeupdate":
          case "onblur":
          case "oncellchange":
          case "onclick":
          case "ondblclick":
          case "ondrag":
          case "ondragend":
          case "ondragenter":
          case "ondragleave":
          case "ondragover":
          case "ondrop":
          case "onfinish":
          case "onfocus":
          case "onhelp":
          case "onmousedown":
          case "onmouseup":
          case "onmouseover":
          case "onmousemove":
          case "onmouseout":
          case "onkeypress":
          case "onkeydown":
          case "onkeyup":
          case "onload":
          case "onlosecapture":
          case "onpropertychange":
          case "onreadystatechange":
          case "onrowsdelete":
          case "onrowenter":
          case "onrowexit":
          case "onrowsinserted":
          case "onstart":
          case "onscroll":
          case "onbeforeeditfocus":
          case "onactivate":
          case "onbeforedeactivate":
          case "ondeactivate":
          case "type":
          case "codebase":
          case "id":
            ret.objAttrs[args[i]] = args[i+1];
            break;
          case "width":
          case "height":
          case "align":
          case "vspace":
          case "hspace":
          case "class":
          case "title":
          case "accesskey":
          case "name":
          case "tabindex":
            ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
            break;
          default:
            ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
      ret.objAttrs["classid"] = classid;
      if (mimeType) ret.embedAttrs["type"] = mimeType;
      return ret;
    // -->
    <!url's used in the movie>
    <!text used in the movie>
    </html

  • Capabilities.version returns the flash player version within AIR?

    Capabilities.version returns my flash player version, "WIN 10,1,53,64", and not the AIR version within my air app. The Flex 4 reference states, "Specifies the Flash Player or Adobe® AIR® platform and version information". I assume this behavior is a bug, then. How can I obtain the version of AIR programmatically within AIR?
    My version of AIR is 2.5.1.17730.
    Thanks,
    Mark

    Hi Mark,
    To get the AIR runtime version please try:
    NativeApplication.nativeApplication.runtimeVersion
    I'll ask around about the docs, it does appear to be misleading.
    Chris

  • Where is the Flash Player version that will work in IE10 64bit?

    Where on the web site can I find a release date for a Flash Playerversion that will work with Internet Explorer 10 64bit in Windows 7 64bit?
    Or can someone please let me know when/if there will be a version soon.

    Here is the link to the revamped Flash Player forums as a result of your post: Flash Player. And this thread has been moved (not by me) to the forum where you can ask questions about using Flash Player...

  • Already have the latest Flash Player Version

    Can somebody please help me? I am trying to play a game on Facebook - a game I was able to play ONCE - about 2 weeks ago. Now when I try to play, it says I need to have the latest version of Adobe Flash Player - Download Now. So I tried to download it but it won't work. Turns out I already have the latest version for my system. My operating system is Windows XP, my browser is Internet Explorer 8 and I have the Flash Player version 11.3.300.270. And my Flash Player Add-Ons are already enabled. So why does it continue to tell me to add the latest version when I already have it? BTW: I'm NOT computer savvy - I'm just following the instructions Adobe is giving me - so please if you can help me you'll need to dumb-down your reply or I'll be even more lost. LOL. Thanks!

    Check http://forums.adobe.com/thread/867968

  • Looking for a way to tell if installed Flash Player version is ESR or not.

    We push out latest versions of Flash Player to the enterprise using a patching management suite. Every time a flash patch goes out, it rolls over (and updates) our computers that have a need to run the Flash ESR branch. Is there a registry key or specific file in the file system that indicates that the Flash Player version installed is the ESR branch and not the latest branch?

    Hi Adam,
    The way to identify if the version installed is ESR or not is by the major version number, which is '13' at this, whereas the current version is '14'.
    The Flash Player files themselves have the version number in the file name.  The files are located in \Windows\System32\Macromed\Flash and \Windows\SysWow64\Macromed\Flash (if you have 64-bit OS).  On Mac, the version number is in the Flash Player.Plugin Info.plist file.
    For registry entries, Flash Player creates the following entries with version number:
    HKEY_LOCAL_MACHINE\SOFTWARE\Macromedia\FlashPlayerActiveX > Version
    HKEY_LOCAL_MACHINE\SOFTWARE\Macromedia\FlashPlayerPlugin > Version
    If on 64-bit OS, additional entries are created in the Wow64Node for the 32-bit player version (since both 32- and 64-bit versions of Flash Player are installed on 64-bit OS).
    HTH.
    Maria

  • Flash Player Version Shown Below Every Flash Object

    Is there some reason that the Flash Player version is shown below every Flash object on every website page that it appears? This didn't happen in older versions. There are times when it obscures content on a site. Is there a way to diable it?
    Thanks.

    Duplicate of:
    how to hide version information

  • Flash player version of Design View in FB3?

    Hello~
    In FB3, the flash player version, which the design view uses is 9.
    Can it be assigned to 10?
    If the Vector class is used in some UI, it cannot be drawed in the design view.
    (Although the target player is asigned to 10.)
    Can anybody give some help? Thanks.

    What exactly does IE say you have in the Add Ons manager (name of the component and version number)?
    If you're worried about conflicting versions, you can always try to do a clean install to make sure you have the latest version.
    How do I do a clean install of Flash Player?

  • Oops, something is not right... Flash Plug-In Warning Explanation: You do not have the Flash player installed on your browser. How to Fix the Problem: This game requires the Flash plug-in. Download the latest Flash player now.

    When I try to play certain games on pogo, I get this: Oops, something is not right...
    Flash Plug-In Warning
    Explanation:
    You do not have the Flash player installed on your browser.
    How to Fix the Problem:
    This game requires the Flash plug-in.
    Download the latest Flash player now.
    So I download latest still get error message

    It is best to go to the source, Adobe, to get their software and updates. Sometimes malware can infect sites with messages that appear legitimate, but will, instead, install malware/virus/trojan on your system. Read the following carefully to install and/or update Adobe Flash.
    There are 2 versions of Adobe Flash; an '''ActiveX version''' for IE only and a '''Plugin version''' for most other browsers including Firefox. On a Windows system, you should always update both individually. '''''You do not have Adobe Flash (aka "Shockwave Flash" in Add-ons > Plugins) installed.'''''
    #'''Using Firefox''', go to the following direct download link and SAVE the download to your desktop so you can find it later: http://fpdownload.adobe.com/get/flashplayer/current/install_flash_player.exe
    #When the download is finished, close Firefox (File > Exit '''''OR''''' Firefox button > Exit)
    #Click or double-click on the file you just saved to your desktop
    #*In the installation window that appears, click the box to the left of "I have read and...." to place a check mark in the box
    #*The "Install" button in the lower right corner will now be highlighted, click it.
    #*The installation is quick.
    #Start Firefox and test your installation here: https://www.adobe.com/software/flash/about/
    #Direct link ActiveX version for IE '''''only''''': http://fpdownload.adobe.com/get/flashplayer/current/install_flash_player_ax.exe
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • Mac Safari message: To view this content, you need the latest version of the Flash Player. Adobe TV

    How do i get past this message?
    To view this content, you need the latest version of the Flash Player. Adobe TV uses the Open Source Media Framework (OSMF) to deliver a superior video experience. Please upgrade your Flash Player to version 10.2 to benefit from this technology.
    I am running Mac OS X 10.10.3 with the latest Safari version 8.0.5.
    I have uninstalled and removed cache and reinstalled the Flash Player 17 many times, but still get this message when i try to view a video in Adobe TV. 
    I have version 17 of Flash player installed but the Adobe TV is asking me to upgrade to v10.2.

    Try using a different browser and/or be sure to install and enable the Flash Player plugins for your browser. 
    Safari
    https://helpx.adobe.com/flash-player/kb/enabling-flash-player-safari.html
    Chrome
    Adobe Flash Player plug-in - Chrome Help
    Firefox
    Install the Flash plugin to view videos, animations and games | Firefox Help
    Nancy O.

  • I'm trying to open samsung pc studio and it givesme an error message and windows then tells me my flash player is incompatible with my system...this after i've downloaded the flash player im told is compatible with my system

    i'm trying to open samsung pc studio and it givesme an error message and windows then tells me my flash player is incompatible with my system...this after i've downloaded the flash player im told is compatible with my system

    In general, when desktop software is using Flash Player, it's because they're embedding an Internet Explorer window in the application.  If you don't have Flash Player for Internet Explorer (aka. the ActiveX Flash Player) installed, then the desktop application isn't going to work. 
    So, fire up Internet Explorer
    Go here: http://get.adobe.com/flashplayer/
    Follow the prompts, and then re-launch the application after you've completed the installation in IE.  Hopefully that sorts it out for you.

  • I keep getting notices to install Adobe Flash Player version 10, however when I click on the various boxes, it then tells me that Flash Player does not support Vista. What does all this mean?

    I keep getting notices to install Adobe Flash Player Version 10, however when I click on the various boxes, it then says that Flash Player does not support Vista. What does all this mean and what is a Flash Player?

    I keep getting notices to install Adobe Flash Player Version 10, however when I click on the various boxes, it then says that Flash Player does not support Vista. What does all this mean and what is a Flash Player?

  • I just installed OS X Snow Leopard.  I am now getting a prompt that the Flash Player (Safari Internet Plug-In) has failed.  How do I correct this?

    I just installed OS X Snow Leopard.  I am now getting a prompt that the Flash Player (Safari Internet Plug-In) has failed.  How do I correct this?

    Go to Adobe's site and download the current Flash plug-in: Adobe Flash Player 11.6.602.155

  • Why can't I install the flash player on my Kindle Fire???

    I have tried several times to install the flash player on my Kindle Fire but it keeps telling me there is an issue opening the download. How am I able to download it yet am unable to install it. It makes no sense to me why it would be able to download yet not be able to open the installation. Is this a problem that is being fixed? I've tried to "troubleshoot" this issue myself but there is little information on it. If the Kindle Fire is unable to install the Adobe Flash player then there needs to be some changes made either on your companies part or Amazons. There are apps offered on the Kindles that need this flash player in order to operate. If you could back to me with an answer as soon as possible I would greatly aprreciate it. Thank you.

    Hi,
    Although we continue to provide security and patch releases for Android devices which originally shipped with Adobe Flash Player, new feature development for the Android browser has drawn to a close as we shift our focus to Adobe AIR for mobile applications. For more details on the rationale for our decision I refer you to the following article.
    http://blogs.adobe.com/conversations/2011/11/flash-focus.html
    The following article describes how to manually install the Adobe Flash Player manually on your Android device.
    http://forums.adobe.com/thread/1061194
    Another alternative is to install the SkyFire browser, which appears to support Flash Video.
    https://play.google.com/store/apps/details?id=com.skyfire.browser&feat ure=search_result#?t=W251bGwsMSwyLDEsImNvbS5za3lmaXJlLmJyb3dzZXIiXQ
    Regards,
    Greg

  • Update to Flash Player 11 has caused our Flash content to crash the Flash Player plugin. Why?

    I work for a health and safety training company and we've create a SCORM compliant course using Flash that has been imported into Absorb LMS (our own instance of it www.astutis-elearning.com).  There are nine modules in the course each developed using Flash Professional CS5.5.
    These all worked fine using the Flash Player 10.3 plugin but since the Flash Player update to 11 our modules (not all Flash content) crash the plugin at certain places.  Some modules load fine and then crash later, some modules get through the preloader scene and then crash as soon as it gets to the main menu.  We've done some testing and don't know if it could be a Flash component that is causing the issue.  At any rate, they used to work with 10.3 and they don't work with 11.  We've tried on a number of machines and browsers.  Its the same on all of them.
    I am prepared to provide a login for people willing to help to see what is causing the problem.
    This is an important issue as we have people who are currently on the course that may not be able to complete the course if they upgrade their version of Flash to the latest version.  I hope I have provided enough information.  Let me know if you need any more.

    Paul and DevChaz,
    Like you, I am a Flash Developer at a company that creates eLearning.  Therefore, I assume that the way that we use Flash is very similar.  I was quite excited as I read through this thread since I have been experiencing very similar browser crashes in my newer courses since FP11 came out.  Like you, we have recently upgraded to CS5.5.
    All of my crashes are with AS2 courses.  I would be curious to know if yours are AS2 or AS3.
    Anyway, I took my use case, saved the flas down to CS4 and recompiled all the swfs.  This did not fix the problem as it did for you (see DevChaz's earlier post in this thread dated Oct 12, 2011 4:46 PM).
    I have my problem logged in the Adobe BugBase here:
    https://bugbase.adobe.com/index.cfm?event=bug&id=3018637
    fpMonster,
    I have recently added my cs4 versus cs5.5 compiled use_case on bugbase.  I am hoping that you'll look at this use_case and compare it to PaulGray's use_case to see why my use_case does NOT work correctly when compiled in a lower version of the Flash IDE.  In addition, perhaps you could share notes regarding this issue with someone at BugBase.  Thanks in advance.

Maybe you are looking for

  • Poor quality when exporting HD project directly from Final cut Express

    I am doing some HD projects in Final Cut Express HD. I filmed with the Sony HRD-HC1 in 1080i. I import into FCE using the 1080i 60 preset from Easy setup. I completed the project and it looks great from FCE full screen. I export as Quicktime (not Usi

  • Each request gets a new session problem

    I have a standalone oc4j and I have deployed an application that uses Dynamic JDBC Credentials as described in ½How To Support Dynamic JDBC Credentials½. The application works fine when oc4j runs on every computer except one (the one it should be on)

  • Oracle Database Inserts Via Microsoft Data Transformation Services (DTS)

    This question involves a SQL Server database and an Oracle database. The databases reside on different servers. One of our developers periodically uses Microsoft DTS (Data Transformation Services) to read data from a SQL Server database and insert it

  • SSIS Upsert Primary Key Violation error

    Hello, I created an SSIS package with look up transform. My source is OLE DB Source and destination is OLEDB destination with Lookup no match output and OLEDB command with Lookup match output. I am inserting data in destination database if records do

  • Submitting Digital Signature

    This is my first time submitting a digital signature. I followed online instructions and figured out how to do everything, but when I click on submit, I get this error: "An error occurred during the submit process. Cannot process content of type text