Audio not working in Chrome

MacBook Pro Retina mid 2012 8GB NVIDIA GeForce GT650M 1024 MB running on 10.8.2.  Latest Chrome Version.
After some period of time (maybe a few days?), sound stops working in Chrome until I shut down and restart the MacBook.  When audio stops working, I can copy the URL from Chrome and go to Safari and it works fine.  If I shut down and restart, it works fine again in Chrome for a while.  Any suggestions on what to do?

Sorry, didn't realize it would be a bother to ask an Apple Support group about this.  No worries, I won't be back.

Similar Messages

  • Flash Audio Not Working in Chrome/FireFox

    I'll try to make this post as clear and concise with all the troubleshooting I've done:
    For Chrome:
    Firstly, I went into the plug-in section of chrome. I have the default Chrome flash-player active because if both are on or if only the non-default
    flash player is on, a flash program (i.e. YouTube) will crash and will say the plug-in is unresponsive. The video will run fine under the default Chrome extension but the audio will not be played.
    Secondly, HTML 5 and non-HTML 5 videos do not make a difference, no audio is played. The same applies for HTML 5 and non-HTML 5 audio:
    I have disabled hardware acceleration, deleted the Flash cache, ran a disk clean-up and still no fix to the problem.
    For Firefox:
    The videos do not even load, Firefox will just freeze up and the pop-up saying that the Shockwave Flash Player is unresponsive will show.
    I have up to date plug-ins:
    This problem just suddenly occured, thanks for the help

    I have no other clue as to what could be faulty with my system. I am currently running Symantec Endpoint Protection as my only
    sort of security or virus system.
    If there anything else I can check for?

  • Cursor 'mouseover' state change not working in Chrome

    Flash novice here.
    I'd appreciate any tips on where to start looking for answers to this problem.
    Here's the basic details:
    1. 40kb banners with no audio and nothing tricky
    2. Created in Flash Pro CC 2014
    3. Opened and re-saved in Flash CS6 for delivery to client website
    4. Client IT reports that everything is fine and banners are up and running
    5. For me personally, the mouseover state for the cursor works in Safari, but not in Chrome.
    6. While the mouseover cursor state for my banner is not working in Chrome, it is working for all the other banners/ads on that page.
    7. A friend tested the banner on all major browsers and the mouseover cursor state works for him.
    Any ideas where to look would be appreciated.
    Should I be talking to the host website, examining the Flash file, or checking my version of Chrome?
    Thanks in advance.

    This forum software is very tricky; updates to forum posts sometimes need to be done three or four times until it "takes".  I have been able to update your original post.
    Now that it is actually readable, I will go and have a look at it.

  • Cross browser testing : Modifier Keys playback actions not working in chrome and Firefox

    Hi,
    In my work flow I have to select multiple items in list.So I have recorded 'Ctrl+Click' action to select list items.In Chrome and Firefox it is not selecting multiple Items.
    Even Ctrl+A,Ctrl+C,Ctrl+V also not working in chrome and Firefox.Complete modifier keys support is not observed in chrome and Firefox.Let me Know how to automate modifier keys actions in cross browser?
    Regards,
    Nagasree.

    Hi Nagasree,
    Welcome to MSDN forums.
    First,please make sure the Chrome and Firefox is supported by cross browser testing.
    Latest version of Chrome and Firefox supported by cross browser testing are Chrome version 38.0.2125.111 and
    Firefox 33.
    I doubt whether Chrome and Firefox in cross browser testing don’t support automating modifier keys or there is anything wrong on it if you are using supported browser. Since this issue is related to the Extensions tool
    Selenium components for Coded UI Cross Browser Testing, if possible, I suggest you post this
    issue here, click “Q AND A”, and then you could post this issue there, you would get dedicated
    support there.
    Thanks for your understanding.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • PDF Submit not working in Chrome & Safari

    I have a PDF with form fields added as well as a submit button, The action on the submit button exports all fields to a page on the server as HTML. This works fine in Firefox and IE but does not work in Chrome or Safari. Is there any known workaround to this?

    The PDF is imbedded in a web page - they are forced to open in a browser. There they are required to fill in the forms fields and submit. Here is an example:  https://www.benefitfront.com/Applications/ABCCompany_Anthem_Medical_23_BZUFP.pdf

  • Iphone 5.1 update messed up sound. Audio not working in youtube, music and video apps. Phone is not muted! nor is volume turned down

    Iphone 5.1 update messed up sound. Audio not working in youtube, music and video apps. Phone is not muted! nor is volume turned down

    Basics from the User Guide are restart, reset, restore from backup, restore as NEW.  Unless you've tried ALL of these, you're not done troubleshooting.

  • Ac3 dts audio not working in my iphone but it works in my friends samsung mobile?pls help me.

    Iam using o player... Ac3 dts audio not working msg showing

    Settings > General > Reset > Reset Network Settings
    Contact the carrier.

  • RTE not working in chrome and mozilla

    Hi
        I have an urgent issue.. My RTE is not working in chrome and mozilla.. It is showing up in my dialog; but when i enter data and submit it is not storing in CRX. Also non of the plugins is active
    Any help weill be appreciable
    Thanks
    Veena

    Hi Sham
         After lot of debug i found out the following issues
    In RTE if we put styles plugin only this issue is happening
    The issue happens because the RTE is getting disabled because of the following in RichText.js
    if (CQ.Ext.isIE) {
                var editorSheet = this.doc.createStyleSheet();
                for (cssIndex = 0; cssIndex < cssCnt; cssIndex++) {
                    styleToAdd = cssToAdd[cssIndex];
                    for (sheetIndex = 0; sheetIndex < styleSheetCnt; sheetIndex++) {
                        styleToCheck = styleSheets[sheetIndex];
                        rules = styleToCheck.rules;
                        ruleCnt = rules.length;
                        ruleToCopy = null;
                        for (ruleIndex = 0; ruleIndex < ruleCnt; ruleIndex++) {
                            ruleToProcess = rules[ruleIndex];
                            ruleText = ruleToProcess.selectorText;
                            if (ruleText == "." + styleToAdd) {
                                editorSheet.addRule(
                                        "." + ruleText, ruleToProcess.style.cssText);
                                break;
            } else {
                var styleDef = this.doc.createElement("style");
                styleDef.type = 'text/css';
                var cssText = "";
                for (cssIndex = 0; cssIndex < cssCnt; cssIndex++) {
                    styleToAdd = cssToAdd[cssIndex];
                    for (sheetIndex = 0; sheetIndex < styleSheetCnt; sheetIndex++) {
                        styleToCheck = styleSheets[sheetIndex];
                        rules = styleToCheck.cssRules;
                       ruleCnt = rules.length;
                        ruleToCopy = null;
                        for (ruleIndex = 0; ruleIndex < ruleCnt; ruleIndex++) {
                            ruleToProcess = rules[ruleIndex];
                            if (ruleToProcess.type) {
                                if (ruleToProcess.type == CSSRule.STYLE_RULE) {
                                    ruleText = ruleToProcess.selectorText;
                                    if (ruleText == ("." + styleToAdd)) {
                                        ruleToCopy = ruleToProcess;
                                        break;
                        if (ruleToCopy) {
                            cssText += ruleToCopy.cssText;
                            break;
                styleDef.appendChild(this.doc.createTextNode(cssText));
                headEl.appendChild(styleDef);
    The above lines are from 650-701 in RichText.js of CQ5.4 . They have handled the code for IE seperately from lines 650-670
    The error is happening in line number 679 ; Where the ruleCnt is returning null for some sheetIndex and so the code is breaking and the RTE is disabled.
    If i add the following line of code
    if(ruleCnt == null){
    continue;
    just after line 679 . This issue seems fixed. But i think it is not the proper way to fix it and it is only a temporary fix. I dont know if it is a CQ issue.
    Does any one have any solution for this.
    To replicate the scenario
    Create a rtePlugin in ur richtext widget
    add a styles dropdown with styles in it
    run this in chrome or any other browser except IE
    If you have a proper solution please let me know
    Thanks
    Veena

  • Webpage links not working in chrome

    please advise why webpage links in green and grey table cells beneath the product image are not working in chrome on following webpage: http://www.canchair.com/new_web_product_family.asp?productfamily=5

    thanks for your quick reply
    the following code containing the links which i believe is of discussion appears in internet explorer:
    <table width="100%"  border="0" class="zebra" cellpadding="0" cellspacing="0" >
                      <tr>
                        <th> </th>
                        <th>Title</th>
                        <th>Model</th>
                        <th>Price</th>
                      </tr>
                      <tr valign="top" style="cursor: hand;">
                        <a href="productfamily_processor.asp?ProductID=1453" ><td valign="top">View Item</td>
                        <td valign="top">Lightweight Poly Folding Table, 24"x60" </td>
                        <td valign="top">SD2460</td>
                        <td valign="top"><strong>Contact us</strong></td></a>
                      </tr>
                      <tr valign="top" style="cursor: hand;">
                        <a href="productfamily_processor.asp?ProductID=1059" ><td valign="top">View Item</td>
                        <td valign="top">Center Fold Lightweight Poly Folding Table  30" x 72" - GREY GRANITE</td>
                        <td valign="top">SD3072F</td>
                        <td valign="top"><strong>Contact us</strong></td></a>
                      </tr>
                      <tr valign="top" style="cursor: hand;">
                        <a href="productfamily_processor.asp?ProductID=641" ><td valign="top">View Item</td>
                        <td valign="top">Lightweight Poly Folding Table, 30" x 72" - UPGRADED RUNNERS - GREY GRANITE</td>
                        <td valign="top">SD3072</td>
                        <td valign="top"><strong>Contact us</strong></td></a>
                      </tr>
                      <tr valign="top" style="cursor: hand;">
                        <a href="productfamily_processor.asp?ProductID=1393" ><td valign="top">View Item</td>
                        <td valign="top">Lightweight Poly Folding Table, 36" x 78" - UPGRADED RUNNERS - GREY GRANITE</td>
                        <td valign="top">SD3678</td>
                        <td valign="top"><strong>Contact us</strong></td></a>
                      </tr>
                      <tr valign="top" style="cursor: hand;">
                        <a href="productfamily_processor.asp?ProductID=1085" ><td valign="top">View Item</td>
                        <td valign="top">Lightweight Poly Folding Table, 30" x  96" - UPGRADED RUNNERS - GREY GRANITE</td>
                        <td valign="top">SD3096</td>
                        <td valign="top"><strong>Contact us</strong></td></a>
                      </tr>
                      <tr valign="top" style="cursor: hand;">
                        <a href="productfamily_processor.asp?ProductID=642" ><td valign="top">View Item</td>
                        <td valign="top">Lightweight Poly Folding Table, 36" x 84" - UPGRADED RUNNERS - GREY GRANITE</td>
                        <td valign="top">SD3684</td>
                        <td valign="top"><strong>Contact us</strong></td></a>
                      </tr>
                      <tr valign="top" style="cursor: hand;">
                        <a href="productfamily_processor.asp?ProductID=921" ><td valign="top">View Item</td>
                        <td valign="top">Standard Duty Lightweight Poly Folding Table, 18" x 60"</td>
                        <td valign="top">SD1860</td>
                        <td valign="top"><strong>Contact us</strong></td></a>
                      </tr>
                      <tr valign="top" style="cursor: hand;">
                        <a href="productfamily_processor.asp?ProductID=632" ><td valign="top">View Item</td>
                        <td valign="top">Lightweight Poly Folding Table, 18" x 72"</td>
                        <td valign="top">SD1872</td>
                        <td valign="top"><strong>Contact us</strong></td></a>
                      </tr>
                      <tr valign="top" style="cursor: hand;">
                        <a href="productfamily_processor.asp?ProductID=755" ><td valign="top">View Item</td>
                        <td valign="top">Standard Duty Lightweight Poly Folding Table, 18" x 96"</td>
                        <td valign="top">SD1896</td>
                        <td valign="top"><strong>Contact us</strong></td></a>
                      </tr>
                    </table>
                  </div>
       </div>
              <div class="inside-box-border">
                  <div class="inside-box" align="left"> Other </div>
                  <div   class="inside-border"> insert other </div>
              </div>
                <!-- NEWS-ITEM -->
              <!-- InstanceEndEditable --></td>
              <td valign="top"><!-- InstanceBeginEditable name="right nav" -->
                <!-- NAV-MENU -->
              <!-- InstanceEndEditable --></td>
            </tr>
          </table>

  • HT201210 AUDIO NOT WORKING PROPERLY AFTER INSTALLED IOS7

    After installed ios 7
    photos not able to see fully
    audio not working properly.... [no treble, no depth in sound, very low soung even the volume is full]
    get strucks while playing games

    This board is full of people that are update crazy...
    even when they have perfectly good working systems.
    i know i thought well it's just a security update not a major update.
    Best advice... whenever updating the OS, unplug all
    firewire devices.
    will take note of that from now on.
    Was this auto-update? Try downloading the file and
    running the update again with all firewire devices
    unplugged.
    While the 828 is disconnected perform the factory
    reset
    again.
    Disconnect the firewire cable from the 828mkII
    -Press the Setup knob
    -Turn the Setup knob all the way to the right
    -Press the Select knob
    -Press the Value knob
    -Power off the interface and plug the firewire cable
    back
    in
    -Power the interface back on
    i have the original 828 not mark 2, so no reset i know of, just power on off.
    After the Mac updates... reboot and plugin the 828,
    see if that doesn't get you going.
    pancenter-
    cheers pancenter, i'll give it a whirl updating without the interface plugged in. thanks for all your help.

  • Why two fingers sliding is not working in Chrome and PDf, why two fingers sliding is not working in Chrome and PDf

    Sometime two fingers sliding for scroll down is not working in Chrome and Pdf. I have to log out to make this work. I just bought this laptop a week ago, is it software's problem or just my laptop's problem. Thx,guys!

    having the same problem and i bought a brand spankin new retina 15'

  • Simple Pass Not Working with Chrome Version 42.0.2311.90 m

    SimplePass stopped working today.  I noticed a while ago that I no longer had to manually add the Website Logon extension anymore.  A small window popped up with a warning about using developer extensions and SimplePass worked.  Website Logon extension is enabled, but SimplePass isn't working.
    Does anyone know I can fix this?  Many thanks in advance.
    As a last resort, I have gone back to a previous restore point.  Now SimplePass is working.  However, I would still like resolution as I expect to encounter this problem again with other updates, etc.  Can someone tell me what Windows Update may have caused the problem so I can not apply that particular update?
    Thanks again.

    Hi @mellman ,
    Welcome to the HP Support Community! I hope you enjoy your time with us.
    I see that you are having a problem with SimplePass not working with Chrome. This has been a problem for a while now as Google Chrome made some changes about what extensions are available from their webstore and how they work.  You can try the steps in this HP Forums post to see if that fixes the issue for you.
    Please click “Accept as Solution ” if you feel my post solved your issue.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Thank you,
    BHK6
    I work on behalf of HP

  • Simple pass not working with Chrome

    I've seen this posted numerous times (some posts going back to 2012) and I have yet to see an answer that works. I just bought a windows 7 machine with simple pass.  Simple pass simply does not work with chrome. The only time it works is when I log on to windows itself. Everything is new and up to date, and simple pass is configured correctly. 
    This is one of the reasons why I bought this machine, and it just doesn't work. Can someone, anyone, tell me how to make it work?

    It does work with IE Explorer but I have to use Chrome for work

  • Embedded Youtube videos not working on Chrome 23 / Flash player 11.5.31.2

    For the past couple of weeks, I've not been able to play any Youtube videos that appear as embedded videos on other websites.  The small player appears with the still frame from the video and all the controls, but on pressing play, the video goes blank and won't play (the slider stays stuck at 0:00).  Nor does the full screen button work - the player just stays where it is within the third party website.  This problem has occurred across more than one website, but all sites still work in Internet Explorer.
    The main Youtube site is still working.
    I have tried all relevant steps here, to no avail (except increasing memory for a particular website, since not just one website is affected):
    http://helpx.adobe.com/flash-player/kb/flash-player-games-video-or.html
    Details:
    Windows 7 Home Premium 32-bit
    Google Chrome 23.0.1271.64 m
    Flash Player 11,5,31,2
    Any suggestions please?
    John

    Thank your for your reply, Chris.
    I installed the newest version of Chrome, and the videos I have
    embedded on my blog are now working.
    Regards,
    Frank
    2012/11/30, Chris Campbell <[email protected]>:
    Chris Campbell http://forums.adobe.com/people/chris.campbell created the
    discussion
    "Re: Embedded Youtube videos not working on Chrome 23 / Flash player
    11.5.31.2"
    To view the discussion, visit:
    http://forums.adobe.com/message/4885375#4885375

  • Export vCard is not working on Chrome; on Chrome Version 40.0.2214.93 m; function works on Mozilaa and IE.

    Export vCard is not working on Chrome; on Chrome Version 40.0.2214.93 m; function works on Mozilaa and IE; is anyone else seeing this same issue?

    Update; my OS is Windows 7 Pro 64-bit v1.08.00.AF B09 SP1.   Same issue reported (by 7 others) at => https://discussions.apple.com/thread/6779059

Maybe you are looking for

  • How do i prevent a slide that is after the quiz results page from showing?

    HI guys, I am trying to achieve the following in Captivate 6: 1) Users answer questions. They have 2 attempts to pass with 70% or above. 2) At the quiz results page, if the score is less than 70%, users get a button to retake the quiz. After the seco

  • So I have a MacBook Pro 2013. That won't turn on and won't charge.

    So I have a MacBook Pro 2013. That won't turn on and won't charge. When the charger is plugged in the light remains green as if it is fully charge. Before it died the laptop still recognized the charger but wouldn't charge. And now won't turn on.

  • IPad 2 Photo-stream problem

    Both my wife and myself have iPhones also a mac at home and now an iPad2. We have photostream set up on all devices and they all share photos with the same account with no problems. I do this because any photos i wish to keep i then drag straight ove

  • Controlfile error

    SQL*Plus: Release 10.2.0.1.0 - Production on Sun Jul 24 02:49:39 2011 Copyright (c) 1982, 2005, Oracle. All rights reserved. hi i dont have any back up of control file how can i recover from this SQL> connect / as sysdba Connected. SQL> startup nomou

  • How do I copy just one page of a PDF file?

    How do I copy and save just one page if a PDF file?