I get no sound on youtube and can't update to the flash player

When I use youtube I get no sound. When I go to 'Add-ons' and click on 'find updates' Shockwave flash is listed as 'Vulnerable'. When I try to install the plugin via the Adobe website Firefox says 'no suitable update available'. Help!

i am unable to view sound

Similar Messages

  • How can i update or download flash player in my iPad 2?

    How can i update or download flash player in my iPad 2?

    IOS device do not support Flash
    However Skyfire, Photon, iSwifter, Browse2Go and Puffin Web Browser will provide limited Flash capability

  • 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

  • Why can't I install the Flash Player on my I-Pad?

    Why can't I install the Flash Player on my I-Pad?

    davidleegrant wrote:
    Why can't I install the Flash Player on my I-Pad?
    Because eight years ago, when Apple developed it, Steve Jobs was adamant that iOS NEVER EVER EVER be compatible with Flash. That... will never change.
    Apple says to use "SkyFire" as your browser if you must view Flash content (which they do not recommend you do with an iPad). It's free in the App Store.

  • 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

  • How to turn off Foxfire, so I can install update for adobe flash player

    How to turn off Foxfire, so I can install update for adobe flash player

    On Safari menu > Quit Safari.

  • The Shockwave Flash 10.1 r82 plugin check says "VULNERABLE" and suggest an update for Adobe flash player 10.1. It may disable my antivirus. Is this safe? Is it the right update?

    I have Firefox 3.6.10.
    When I checked for plug-ins updates, it opened the "plug-in check" page and showed the Shockwave Flash 10.1 r82 as "vulnerable", explaining a potential security vulnerability and suggesting to update to latest version if existent, or if not,disable the plugin.
    The Adobe security advisory suggests to upgrade to the newest version Adobe Flash Player 10.1.85.3.
    When I click on it, it says Adobe Flash Player 10.1 only. It also says: "You may have to temporarily disable your antivirus software". Is this safe? Also: how do I know that the 10 . 1 version is the same as the 10.1.85.3 version?

    The [http://www.adobe.com/products/flashplayer/ Adobe Flash Player] page refers to 10.1, but the full version details for the latest release is 10.1 r85 which is a security update. You can get it from the above link, or use the manual installers available from http://kb2.adobe.com/cps/191/tn_19166.html#main_ManualInstaller
    You should not have to disable the Anti-virus software in order to install Flash, only do that if is is interfering with the installation.

  • Can't even download the flash player installer

    I can't even see the page to download the installer for flash player, I've tried using different browsers, chrome and IE (Chrome has same issue, IE just says flash is built in), Firefox, my main browser, has this issue, and I haven't tried installing Opera yet.
    My OS is Windows 10 Technical Preview. All browsers are fresh installs after upgrading, thus saying, they are as up to date as possible.
    this is the issue in picture format..
    As you can see, there's nothing there, just blank space. I've even tried checking the source, but there's nothing I can see wrong, other than no content. I just don't know what to do.
    Edited to add operating system.

    Hi Jackie,
    Thank you for including the OS version in your post.  I will forward this to the folks who handle the download page.
    In the mean time, the offline installers are posted at the bottom of the http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html page, in the 'Still having problems' section.  Since you indicate Firefox is your main browser you'll want to download th installer for Firefox browsers.  Microsoft began embedding Flash Player in Internet Explorer with Windows 8, and it can only be updated via an update to Internet Explorer, which Microsoft releases.   Chrome also embeds Flash Player and Google updates Flash Player in Chrome whenever there is a release.  So again, no need to install a separate plugin for it.
    Maria

  • I downloaded and installed version 11 of the Flash player, but it doesn't work.  Is there a problem?

    I downloaded and installed Flash Player 11, but I get the message "You need the latest version of Flash Player to see this file".  What did I not do to get this working?

    •    Adobe product and version number-   Don't know, but its the version the last version in the Adobe website
        •    Operating system and version number- Windows 7
        •    Browser and version number (where applicable)- IE, don't know version number
        •    The full text of any error message(s)- " You require the latest Adobe Flash Player to view this file"
        •    What you were doing when the problem occurred- I was trying to watch some video clips
        •    Screenshots of the problem (if possible)
        •    Computer hardware, such as CPU; GPU; amount of RAM; etc.- Inter Core i5 processor, 1 TB hard drive, 8 GB DDR3 memory

  • Errors in loading video such as in Youtube and other sites that uses Adobe Flash Player, even I updated the program.

    error loading video or games

    You did not supply much information with your question:
    #In Add-ons > Plugins, do you see "Shockwave Flash ''(version)''"? If not, Flash is not installed for Firefox; see below
    #You can test Flash on this Adobe page: https://www.adobe.com/software/flash/about/
    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.
    #'''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.'''

  • Why can't i download the flash player?

    Everytimee i try to download the flash player, it says that
    the installation will be complete when i see the video at the top,
    but i never see it, even after hours of waiting. Why won't my
    computer allow me to download flash!?

    baribean wrote:
    > Everytimee i try to download the flash player, it says
    that the installation
    > will be complete when i see the video at the top, but i
    never see it, even
    > after hours of waiting. Why won't my computer allow me
    to download flash!?
    www.adobe.com/support/flash
    flip through the installation troubleshooting.
    Best Regards
    Urami
    !!!!!!! Merry Christmas !!!!!!!
    Happy New Year
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • How can i set the html5 player by default in ubuntu instead of the flash player ? i just can use the flash player as default

    Well i use lubuntu 14.04 and i've realized that the html5 player on youtube works so much better than the flash player, but i can't use it by default, for play videos i have to request the html5 player, and the problem is when i restart the browser or when i turn off my computer, big is my surprise because youtube is using the flash player. If i disable the flash plugin is ok because youtube doesn't have another option but to use html5, but this is not the solution, because there is still some videos that use flash, and other web sites too. so: how can i fix this or i just have to wait that mozilla gives html5 support for linux, because on windows the default player is the html5. i'd really appreciate any help, thanks

    I usually use Ubuntu, and am not aware of HTML5 being the default for Flash videos on Windows.
    Is it more likely you have chosen an option on the YouTube website to use HTML5. I think this page offers support and includes an option to toggle HTML5 or FlashPlayer.
    * https://www.youtube.com/html5

  • Can anyone help with my flash player???

    i need help with this there isnt any sound coming from my
    flash player and this confuses me becxause the video plays and it
    only happend to the flash player not my windows media player or
    anything
    does anyone know anything about this???

    yah this is really confuing me since its only the flash
    players and my windows player works i mean i have all of the
    downloads and stuff so idk what to do its happened several times
    and went back to normal within a few hours or days but this time
    its been a few weeks and its kinda gettin anoying

  • Hello... i have a Max OS 10.5.8 but i can't use the flash player

    Hi! I have a macbook 10.5.8 but I can't update adobe flash player and i can not watch de videos...

    Hi Claudia, see if Flash is disabled...
    About Safari 5.1.7 and Leopard Security Update 2012-003
    Summary
    Learn about Safari 5.1.7 and Leopard Security Update 2012-003.
    Products Affected
    Mac OS X 10.5, Product Security, Safari 5.1 (Mac OS X 10.6), Safari 5.1 (OS X Lion)
    Safari 5.1.7 for OS X Lion, Safari 5.1.7 for OS X Snow Leopard, and Leopard Security Update 2012-003 disable out-of-date versions of Adobe Flash Player.
    Out-of-date versions of Adobe Flash Player do not include the latest security updates and will be disabled to help keep your Mac secure. If Safari 5.1.7 or Leopard Security Update 2012-003 detects an out-of-date version of Flash Player on your system, you will see a dialog informing you that Flash Player has been disabled. The dialog provides the option to go directly to Adobe's website, where you can download and install an updated version of Flash Player.
    Additional Information
    If you need to re-enable an out-of-date version of Flash Player, you can do the following:
        1.    Navigate to the /Library/Internet Plug-Ins (Disabled) folder.
        2.    Drag "Flash Player.plugin" into /Library/Internet Plug-Ins.
        3.    If the browser is running, quit and restart it.
    http://support.apple.com/kb/HT5271
    http://support.apple.com/kb/HT5655

  • The new version of fire fox keeps crashing my entire computer if i pull down the scroll bar to fast and when using sites that use flash player my other browsers work fine its only started happening since it updated to 3.6.10

    Firefox keeps crashing my entire computer if i pull down the scroll bar too fast or go to websites that use flashplayer and sometimes for no reason at all. My other browsers work fine and firefox did till the update.

    There has been a security update of the Flash Player and the current version is 10.1 r85 , so you are two versions behind (previous was 10.1 r82).
    See http://www.adobe.com/software/flash/about/

Maybe you are looking for