No errors but no sound output . Help !

Dear Java People,
I have a program that has a good look with buttons but the
sound actionPerformed() play() sound does not work.
Below is the coding and below that is the original version
Thank you in advance
Norman
import java.util.*;
import java.awt.*;
import javax.swing.*;
import javax.swing.border.*;
import java.applet.*;
import java.awt.event.*;
import java.net.*;
public class MyMusicApplet3 extends JApplet implements ActionListener
  AudioClip[] acSounds= new AudioClip[9];
  public void init()
    try
        acSounds[0] = getAudioClip(getCodeBase(),"seashore21"  + ".mid");
        acSounds[1] = getAudioClip(getCodeBase(),"seashore22" + ".mid");
        acSounds[2] = getAudioClip(getCodeBase(),"seashore23"  + ".mid");
       acSounds[3] = getAudioClip(getCodeBase(),"seashore24" + ".mid");
       acSounds[4] = getAudioClip(getCodeBase(),"seashore25"  + ".mid");
       acSounds[5] = getAudioClip(getCodeBase(),"seashore26" + ".mid");
       acSounds[6] = getAudioClip(getCodeBase(),"seashore27"  + ".mid");
      acSounds[7] = getAudioClip(getCodeBase(),"seashore28" + ".mid");
        acSounds[8] = getAudioClip(getCodeBase(),"seashore29" + ".mid");
   catch (Exception e)
    System.out.println("Error here " );
        Container myContentPane = getContentPane();
        myContentPane.setLayout(new FlowLayout(FlowLayout.RIGHT));
        myContentPane.add(getButton("1", Color.orange, Color.blue));
        myContentPane.add(getButton("2", Color.blue, Color.yellow));
        myContentPane.add(getButton("3", Color.black, Color.white));
        myContentPane.add(getButton("4", Color.black, Color.pink));
        myContentPane.add(getButton("5", Color.white, Color.red));
        myContentPane.add(getButton("6", Color.blue, Color.green));
        myContentPane.add(getButton("7", Color.black, Color.cyan));
        myContentPane.add(getButton("8", Color.black, Color.yellow));
        myContentPane.add(getButton("9", Color.black, Color.cyan));
    public void actionPerformed(ActionEvent e)
       String command = e.getActionCommand();
       int index = Integer.parseInt(command)-1;
       acSounds[index].play();
   public JButton getButton(String label, Color fore, Color back)
     {          JButton button = new JButton("sound "+label);
                button.setPreferredSize(new Dimension(90,90));
                button.setFont(new Font("Arial", Font.BOLD,14));
                button.setBorder(BorderFactory.createRaisedBevelBorder());
                button.setForeground(fore);
                button.setBackground(back);
                button.addActionListener(this);
                button.setActionCommand(label);
                return button;
import java.util.*;
import java.awt.*;
import javax.swing.*;
import javax.swing.border.*;
import java.applet.*;
import java.awt.event.*;
import java.net.*;
public class MyMusicApplet_1 extends JApplet implements ActionListener
     JButton myJButton;
     AudioClip acSound_1;
     AudioClip acSound_2;
     AudioClip acSound_3;
     AudioClip acSound_4;
     AudioClip acSound_5;
     AudioClip acSound_6;
     AudioClip acSound_7;
     AudioClip acSound_8;
     AudioClip acSound_9;
     JButton myJButtonSound1;
     JButton myJButtonSound2;
     JButton myJButtonSound3;
     JButton myJButtonSound4;
     JButton myJButtonSound5;
     JButton myJButtonSound6;
     JButton myJButtonSound7;
     JButton myJButtonSound8;
     JButton myJButtonSound9;
  public void init()
        try
         acSound_1 = getAudioClip(new URL ("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore.wrk"));
         acSound_2 = getAudioClip(new URL ("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore.wrk"));
         acSound_3 = getAudioClip(new URL ("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore.wrk"));
         acSound_4 = getAudioClip(new URL ("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore.wrk"));
         acSound_5 = getAudioClip(new URL ("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore.wrk"));
         acSound_6 = getAudioClip(new URL ("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore.wrk"));
         acSound_7 = getAudioClip(new URL ("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore.wrk"));
         acSound_8 = getAudioClip(new URL ("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore.wrk"));
         acSound_9 = getAudioClip(new URL ("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore.wrk"));
         catch (MalformedURLException e)
           System.out.println("Error here " );
       Container myContentPane = getContentPane();
       myContentPane.setLayout(new FlowLayout(FlowLayout.RIGHT));
        Dimension buttonSize = new Dimension(190,100);
       Font myFont = new Font("Arial", Font.BOLD,14);
       Border myEdge = BorderFactory.createRaisedBevelBorder();
                //create 1st button's object
                 myJButtonSound1 = new JButton("sound #1");
                myJButtonSound1.addActionListener(this);
               //set the button's border and size, font background and foreground
               myJButtonSound1.setBorder(myEdge);
               myJButtonSound1.setPreferredSize(buttonSize);
               myJButtonSound1.setFont(myFont);
               myJButtonSound1.setBackground(Color.orange);
               myJButtonSound1.setForeground(Color.black);
                //create 2nd button's object
                 myJButtonSound2 = new JButton("sound #2");
                myJButtonSound2.addActionListener(this);
               //set the button's border and size, font, background and foreground
               myJButtonSound2.setBorder(myEdge);
               myJButtonSound2.setPreferredSize(buttonSize);
               myJButtonSound2.setFont(myFont);
               myJButtonSound2.setBackground(Color.blue);
               myJButtonSound2.setForeground(Color.black);
                //create 3rd button's object
                 myJButtonSound3 = new JButton("sound #3");
                myJButtonSound1.addActionListener(this);
               //set the button's border and size, font, background and foreground
               myJButtonSound3.setBorder(myEdge);
               myJButtonSound3.setPreferredSize(buttonSize);
               myJButtonSound3.setFont(myFont);
               myJButtonSound3.setBackground(Color.cyan);
               myJButtonSound3.setForeground(Color.black);
                //create 4th button's object
                 myJButtonSound4 = new JButton("sound #4");
                myJButtonSound4.addActionListener(this);
               //set the button's border and size, font background and foreground
               myJButtonSound4.setBorder(myEdge);
               myJButtonSound4.setPreferredSize(buttonSize);
               myJButtonSound4.setFont(myFont);
               myJButtonSound4.setBackground(Color.pink);
               myJButtonSound4.setForeground(Color.black);
               //create 5th button's object
               myJButtonSound5 = new JButton("sound #5");
              myJButtonSound5.addActionListener(this);
             //set the button's border and size, font background and foreground
             myJButtonSound5.setBorder(myEdge);
             myJButtonSound5.setPreferredSize(buttonSize);
             myJButtonSound5.setFont(myFont);
             myJButtonSound5.setBackground(Color.red);
             myJButtonSound5.setForeground(Color.black);
              //create 6th button's object
               myJButtonSound6 = new JButton("sound #6");
              myJButtonSound6.addActionListener(this);
             //set the button's border and size, font, background and foreground
             myJButtonSound6.setBorder(myEdge);
             myJButtonSound6.setPreferredSize(buttonSize);
             myJButtonSound6.setFont(myFont);
             myJButtonSound6.setBackground(Color.green);
             myJButtonSound6.setForeground(Color.black);
              //create 7th button's object
               myJButtonSound7 = new JButton("Choice #7");
              myJButtonSound7.addActionListener(this);
             //set the button's border and size, font, background and foreground
             myJButtonSound7.setBorder(myEdge);
             myJButtonSound7.setPreferredSize(buttonSize);
             myJButtonSound7.setFont(myFont);
             myJButtonSound7.setBackground(Color.cyan);
             myJButtonSound7.setForeground(Color.black);
              //create 8th button's object
               myJButtonSound8 = new JButton("Choice #8");
              myJButtonSound8.addActionListener(this);
             //set the button's border and size, font background and foreground
             myJButtonSound8.setBorder(myEdge);
             myJButtonSound8.setPreferredSize(buttonSize);
             myJButtonSound8.setFont(myFont);
             myJButtonSound8.setBackground(Color.yellow);
             myJButtonSound8.setForeground(Color.black);
              //create 9th button's object
               myJButtonSound9 = new JButton("Choice #9");
              myJButtonSound9.addActionListener(this);
             //set the button's border and size, font background and foreground
             myJButtonSound9.setBorder(myEdge);
             myJButtonSound9.setPreferredSize(buttonSize);
             myJButtonSound9.setFont(myFont);
             myJButtonSound9.setBackground(Color.blue);
             myJButtonSound9.setForeground(Color.black);
               //add the buttons to the content pane
               myContentPane.add(myJButtonSound1);
               myContentPane.add(myJButtonSound2);
               myContentPane.add(myJButtonSound3);
               myContentPane.add(myJButtonSound4);
               myContentPane.add(myJButtonSound5);
               myContentPane.add(myJButtonSound6);
               myContentPane.add(myJButtonSound7);
               myContentPane.add(myJButtonSound8);
               myContentPane.add(myJButtonSound9);
      public void actionPerformed(ActionEvent e)
         myJButton = (JButton)e.getSource();
        if(myJButton == myJButtonSound1)
          acSound_1.play();
        if(myJButton == myJButtonSound2)
          acSound_2.play();
        if(myJButton == myJButtonSound3)
          acSound_3.play();
        if(myJButton == myJButtonSound4)
          acSound_4.play();
        if(myJButton == myJButtonSound5)
          acSound_5.play();
         if(myJButton == myJButtonSound6)
           acSound_6.play();
                   if(myJButton == myJButtonSound7)
                     acSound_7.play();
                   if(myJButton == myJButtonSound8)
                     acSound_8.play();
                    if(myJButton == myJButtonSound9)
                      acSound_9.play();

Norman-
All outawater suggested is that you lop out the code that you are using
for playing sounds and make sure that works, since that seems to be
where your problem is. The rest of your (copious amounts of) applet-
based code is just a distraction at this point.
No, I have no clues as to your possible error. Though the first step that I would take, if this were my code, would be to isolate the part
that's giving me troubles and get it as simple as possible - i.e. make
sure I can write a console app that plays the midi file I want. Then I
would build up from there - i.e. dump that into an applet with one
button that does that.
Good luck to you
Lee

Similar Messages

  • Logitech USB headphones - microphone works but not sound output

    Seems like the sound output to my Logitech USB headphone has stopped. The microphone inputs but the sound output is blocked. Could be technical issue with the set but was wondering of anyone else has this problem after the last update to 10.14.0

    ChickInVici,
    Having similar issue with iPad 2.  No volume on Apps or Music (except when using headphones).  Just started happening after months of no issues.  Have reset/ restored with no solution.  Can you provide more detail with your solution?  I went to >settings>accessibility>voiceover.....but could not find headphones etc... what am I missing.  Could you be more specific on what you changed to resolve your issue.
    thanks

  • No sound output help

    plz help someone ....
    I have hp g6 2312ax
    there is no sound in my laptop
    I took it to the hp service centre and they said that audio port on mobo is damaged
    motherboard need to be replaced.
    I have two audio device
    1. amd
    2. idt
    is there any way I can get sound output
    This question was solved.
    View Solution.

    Hi legendary92,
    Welcome to the HP Support Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I saw your post regarding the motherboard problems. If the HP service centre has told you that audio port is damaged you will have to replace the motherboard if you want sound. Page 75 of the Maintenance and Service Guide will show you how to replace it. The part number for your motherboard or system board as they are called in notebooks is 683031-501. You can order the part from HP PartsSurfer just search for the part number.
    Thank 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

  • Yosemite is messing with my new Retina Macbook Pro's sound output, help.

    I just got my new Retina Macbook Pro 2 months ago and have been noticing some audio output issues. When I try to connect an external third-party audio device to run my KRK monitors my computer does not recognize the device and will not switch the audio output. After trying to set it manually my macbook won't even revert to the internal speakers for output and then I have to reboot my pro in order to get audio output again. This will happen randomly throughout the day after my computer has been in sleep as well, and sometimes the volume buttons get greyed out as well. Please help me with this issue as this is a new computer and it is becoming a nuisance. Even when connecting through HDMI, my audio output does not function and no sound will come out of the TV. I realize that this is probably a Yosemite glitch, but I just need to know if there is any fixes for this issue. Thanks so much for your time,
    Sam Migliazza
    <Email Edited by Host>

    You are entitled to 90 day telephone support from Apple. Try contacting them.
    Apple Support Contact
    Apple Support contact - Telephone

  • Music Videos - Play, but no sound. HELP?

    I've converted the music videos for the ipod nano 3rd gen. and they play.. But with no sound on the ipod and in the library. When trying to play it in the library after converting, the little icon that shows a speaker doesn't have the 'sound waves' beside like it usually does.
    Any help would be greatly appreciated.
    I've looked through the forums for help and some people have suggested downloading something? I don't want to download random programs that I might not have to.
    Thanks

    QuickTime expects video files with separate video and audio tracks, but many MPEG formats used a muxed (multiplexed) single track that contains both. Therefore, when you convert videos in iTunes to iPod format they only show the video and no sound since iTunes (really QuickTime) is not looking for the audio track within the video track and it gets lost.
    iPod plays video but not audio of some exported files
    http://docs.info.apple.com/article.html?artnum=302588
    One way to work around this is to use MPEG Streamclip to convert the files to fix this issue...
    http://www.squared5.com/
    but there are other applications besides MPEG Streamclip you can try as well.
    Frequently asked questions about viewing and syncing video with iTunes and iPod
    http://docs.info.apple.com/article.html?artnum=302758
    The Complete Guide to Converting Video to iPod Format (Mac)
    http://www.ilounge.com/index.php/articles/comments/the-complete-guide-to-convert ing-video-to-ipod-format-mac/
    See other tutorial articles over at iLounge...
    http://www.ilounge.com/index.php/articles/tutorials/
    Patrick

  • My videos play on my ipod but without sound! HELP!

    i have converted them on itunes and they play with sound on itnues. i synced them on to my ipod fine and they play but without any audio!
    Please help

    Try using MPEG Streamclip to convert the videos; more information on this issue is available in this article.
    (28559)

  • My sub works but no sound plz help audigy

    i have audigy 2zs and 5. sicuro all works but sub

    Go to the EAX panel and shut off all effects, then run the speaker tests. Also, I found (Using an O-scope checking the voltage levels of a properly terminated channel) that the output voltage level of the subwoofer channel is 20% of the other 5 channels.
    My solution was to spend $50 and buy an ARTcessories HEADAMP and some cables/adapters to give it some gain. Even with the?HEADAMP maxed, I'd like more so I could shake the floor apart with my 0W RMS/CH Peavey amps and JBLs. Very close to happy.
    Got some 60 cycle hum out of the 2zs card (very, very low) I can't get rid of though. Even after attaching EVERYTHING (but the mouse and keyboard) to the master grounding block for the entire house with individually run #0 wires. Even when the PC is off. Interesting.

  • Sound output write

    I am trying to generate some 'music' from numerical data received via the TCP port. Data are being read at 100Hz by the TCP read function and placed on a queue in a producer loop, the queue is then being read in a consumer loop and the data are sent continuously to the sound output write function. 
    But that sound output write is causing a delay in the loop. Is there any way I can have that function running continuously in parallel with the TCP read and changing it's frequency value 'every now and then'?

    Yeah I had the same problem, I was reading in an analogue input and then trying to output the same signal. The problem is is that it uses a buffer to store the information before it writes. The sequence goes.... Write the buffer to the output, and on the next loop fills the buffer back up.
    You could try reducing the number of samples and therefore reductions the buffer size, but if your outputting music it will just become distorted.
    I was reading in a electric guitar signal, and it came out distorted.
    The closest I came to getting it to work was increasing the buffer size.. So it "recorded" a larger buffer.. But it was seriously delayed.
    hope this helps a little bit.

  • A FIX for error message: When I try to open Snood (it's a game) I get this message.  Not enough memory {Error # :: 0, in sound.cp@line 101  Can you help?

    After years of playing Snood, w/o problems, I started getting this error message, on my iMac, OS 10.5.8,
    with 4 GB of memory when opening Snood:  Not enough memory {Error # :: 0, in sound.cp@line 101
    My MacBook Pro w. Mac OS 10.6.8 did not have this problem.
    Initially I thought that Snood raised its minimum requirement to Mac OS 10.6.
    I had several correspondences with Snood. Their tech support is great. Quick and thorough responses.
    They thought the issue was in Mac's system preferences/ Sound. It was.
    I didn't realize that my sound input and output devices were gone.
    The fix was resetting the PRAM. I found this advice on MacFixIt.com.
    MacFixIt help with volume:   http://reviews.cnet.com/8301-13727_7-10415659-263.html
    Resetting the PRAM is on Apple support:   http://support.apple.com/kb/HT1379
    My sound (music!) is back, along with Snood. So glad I reset the PRAM before reinstalling the OS software!
    Thank you to Snood, MacFixIt and Apple.
    Happy new year all!

    Good work, nice post/tip, thanks!

  • My audio/sound has been erratic for a while and now I have no output Help!

    My audio/sound has been erratic for a while, both output and input, sometimes one would worked but not the other and sometimes both would be none excitant.
    System preference does not show what I have connected aka external speakers or headset and the sound output in menu is grayed plus the output on system preferences output as well, sound input looks ok now.
    Had Tiger, so I upgraded to Leopard to see if that would helped, Output use to come back after a while, however now input works but output hasn't worked for days, I can hear sound when I am rebooting or starting the computer, but its gone right after.
    Since the Mac its fame for their audio stability, no ones seem to know how to solve the problem, so I am kinda desperate.
    I have tried the following; ran repair permissions, looked for fluff lol!....still cannot fix the glitch. Any new ideas please!!
    Thanks in advance!

    Since the problem existed before installing Leopard, it is clearly a hardware problem. Updating a broken system does not fix it, in fact many times it makes it worse or at least harder to diagnose.
    I suggest you repost in the appropriate hardware forum - in your case the G4-17 forum(s) here:
    http://discussions.apple.com/forum.jspa?forumID=1022
    and the general G4-17 forum here:
    http://discussions.apple.com/category.jspa?categoryID=138

  • I'm having trouble loading photos on my I phone 4s and I pod.  I don't see the photos tab in Itunes?? Prob user error but wanted to get some help.

    I'm having trouble loading photos on my I phone 4s and I pod.  I don't see the photos tab in I-tunes? I'm sure its user error but wanted to get some help.

    What's the origin of this external drive? It sounds very much like it's a Windows-formatted (NTFS) drive which Macs can't write to. If you can, copy the files off the drive, reformat it as Mac format (using Disk Utility) and copy the files back. If you need to continue writing to it from a Windows PC, you should format it ExFAT in Disk Utility.
    Matt

  • Help with sound output via HDMI

    My sound output via HDMI suddenly stopped worked to my TV set. I've reset the PRAM and the SMC. When I go to sound control panel for sound output, the setting is on Headphones. When I try to change it to SV420XVT1A (the tv) it immediately jumps back to headphone. I also tried a different HDMI cable to a different HDMI port on the tv. This just started after the Mac Mini had been turned off for a week. I'm using Lion and it's an 8GB Intel Core 2 Duo. Any suggestions?

    I actually discovered this answer about 5 minutes after I posted the question. Thanks a lot for your help!! Funny thing is that it had worked all along with something plugged in the headphone jack but suddenly stopped working. Again, thanks!

  • No Sound Output but Still Loaded

    Hi guys, this is my first journey with Arch Linux and this introduction process has been fairly trouble-free with the exception of getting my sound system working.
    Right now I'm running a Macbook Pro 6,2 (Mid 2010) with two audio devices: 1) an Intel integrated card(labeled=MID) and 2) a Nvidia HDMI card(label=NVidia). Since I'm not using any HDMI outputs, I'm trying to get the Intel card to output sound but it seems like nothing I do is working. I've combed through both the wiki pages on ALSA and the Macbook#Sound configuration section but so far, it's a no-go. According to /dev/snd, the sound modules are indeed loaded. "speaker-test" has no problem running but there's no sound output. I've tried muting and playing around with volume levels in alsamixer. Right now, I'm guessing that I might have missed something with my .asoundrc? I'm not entirely sure.
    Here's all the relevant information...forgive me if I missed anything.
    aplay -l
    **** List of PLAYBACK Hardware Devices ****
    card 0: MID [HDA Intel MID], device 0: CS4206 Analog [CS4206 Analog]
      Subdevices: 0/1
      Subdevice #0: subdevice #0
    card 0: MID [HDA Intel MID], device 1: CS4206 Digital [CS4206 Digital]
      Subdevices: 1/1
      Subdevice #0: subdevice #0
    card 1: NVidia [HDA NVidia], device 3: HDMI 0 [HDMI 0]
      Subdevices: 1/1
      Subdevice #0: subdevice #0
    card 1: NVidia [HDA NVidia], device 7: HDMI 0 [HDMI 0]
      Subdevices: 1/1
      Subdevice #0: subdevice #0
    card 1: NVidia [HDA NVidia], device 8: HDMI 0 [HDMI 0]
      Subdevices: 1/1
      Subdevice #0: subdevice #0
    card 1: NVidia [HDA NVidia], device 9: HDMI 0 [HDMI 0]
      Subdevices: 1/1
      Subdevice #0: subdevice #0
    cat /proc/asound/modules
    0 snd_hda_intel
    1 snd_hda_intel
    /etc/mprobe.d/alsa-base.conf - setup according to the Macbook page
    options snd_hda_intel model=intel-mac-auto
    lsmod | grep '^snd' | column -t
    snd_hda_codec_hdmi     49213   4
    snd_hda_codec_cirrus   17630   1
    snd_hda_codec_generic  63126   1   snd_hda_codec_cirrus
    snd_hda_intel          26387   5
    snd_hda_controller     26938   1   snd_hda_intel
    snd_hda_codec          108536  5   snd_hda_codec_hdmi,snd_hda_codec_generic,snd_hda_intel,snd_hda_controller,snd_hda_codec_cirrus
    snd_hwdep              17244   1   snd_hda_codec
    snd_pcm                88487   5   snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel,snd_hda_controller
    snd_timer              26614   2   snd_pcm
    snd                    73436   16  snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_hda_codec_generic,snd_hda_codec,snd_hda_intel,snd_hda_codec_cirrus
    and my .asoundrc includes the following according the the ALSA#configuration wiki...(before and after these additions to .asoundrc didn't make a difference)
    pcm.!default {
        type hw
        card 0
    ctl.!default {
        type hw
        card 0
    If someone could lend a hand, I'd greatly appreciate. I know that it can get working since it was working out of the box flawlessly on an Archbang install but I wanted to do things the right way, The Arch Way, this time around.

    Hi
    I have a similar setup with AMD/ATI devices. Try to set the order of the soundcards (Alsa#Set_the_default_sound_card): Look up your "vid" and "pid" values with "lspci -nn" and change the /etc/modprobe.d/alsa-base.conf to:
    # SB [HDA ATI SB]
    options snd-hda-intel index=0 model=auto vid=1002 pid=1308
    # HDMI [HDA ATI HDMI]
    options snd-hda-intel index=1 model=auto vid=1022 pid=780d
    ...or something like that. After that my soundcard worked but the sound quality was poor (no bass).
    Hope this helps.
    Last edited by iceflower (2015-01-04 12:46:41)

  • No sound output from dock connector or headphones but speaker is fine

    I've got a 3GS which I've had since October.
    Recently, there has been no sound output from the headphone socket - or rather, what does come out is very strange, sounding almost electronically distorted.
    I thought that maybe the headphone jack was broken, but now I've found out that the same thing can be heard through a dock when the iPod is connected this way.
    I'm fairly sure the dock connector is still fine as the phone charges and can be controlled by the dock etc
    Most of the discussions I've found relate to sound not coming from the speaker on the phone, but this is absolutely fine.
    Any ideas?

    Hi, and welcome to Apple Discussions.
    Have you tried resetting the PMU?
    I'm not optimistic that this will help any more than the procedures you've already tried, but it won't hurt to try.
    Do you still have your OS 9 installation? If so, try booting into OS 9 and see if the problems with the audio are happening there, too. If so, you can bet it's a hardware problem.
    How big is your hard drive and how much space remains available on it? If you don't have your OS 9 installation in order to check out whether it's a hardware problem and you have enough available hard drive space, you may want to try an Archive and Install of the OS in order to make sure it isn't an OS X system-wide problem. If that doesn't do it, you could back up your hard drive and restore your software.
    All of this may just be spinning your wheels, but it's all stuff you can try before shelling out a lot of money for repairs.

  • I get the picture BUT NO SOUND - HELP!!!

    Hello all,
    I need help just bought apple tv and connected to my flatscreen samsung 1080p to the tv hdmi4 and i get picture but NO SOUND!! Am I missing a cable?? Do I need something else?? What do i do ???

    I'm not familiar with your Denon specifically, but my Onkyo A/V amp has a settings menu for each input. Check the settings for the HDMI input you have the ATV connected to and make sure they are correct for your TV.
    Also, as I mentioned previously, you could connect your ATV back to your TV directly with the HDMI cable, then connect the optical audio output on the ATV to an optical audio input on your Denon, then make sure it is selected when you watch the ATV to get digital sound.

Maybe you are looking for

  • OAS 4.0.8.1 on Linux error

    I installed OAS 4.0.8.1 on RH Linux 6.0 successfully but when I try to start the services this message appears: OWS-08820: Unable to start wrksf process '/home/oracle/admin/ows/ows/4.0/bin/wrksf' Initialization Failure - Exiting OAS... Any ideas ?

  • How to save the image in the form?

    As thread, how to save the image into a file from the pdf form - image box? I have Adobe Acrobat 9 Pro extended.

  • Passing dynamic internal table into ALV

    I have made one ALV report where i had created one button 'GENERATE'.  ON CLICKING THIS BUTTON the data in the ALV report is downloaded to excel file. i have used this:- CALL METHOD cl_gui_frontend_services=>file_save_dialog     EXPORTING       windo

  • Mail Subject getting cut shorted

    Hi frnds In my mail subject i see that the subject is getting cut shorted like "Contract Title 5600000422 Actual Spend is now 91" . I am only getting this message in subject but the original is some what bigger than this . Is there any limitation to

  • BAPI to insert text EENO_DYNP-ZEILE

    Dear All. We are facing an scenario in which we need to insert text in field EENO_DYNP-ZEILE vía BAPI or BATCH for CONNECTION OBJECT AND DEVICE LOCATION. Our question is *¿Do you know the BAPI-FIELD which store this long text? Thanks in Advance. Nico