Continuity sound - my last problem!

Everything seems to be working fine except one silly last thing:
I can place a call using my mac mini if i plug my iPhone headset in. the graphic shows that the mic is receiving sound, and I can hear it fine - but the third party I have called cannot hear me - this is obviously something very simple I have missed - any clues where to look?

In my case it was my Toneport GX - looks like it wasn't relinquishing control of audio when asked

Similar Messages

  • I recently buy an apple iphone 4s.the problem is that when i started music player on my iphone the speaker is not outputting the sound.and when i lock the phone at the same time the sound starts.thos problem is from last 3 days.and i am really confused???

    i recently buy an apple iphone 4s.the problem is that when i started music player on my iphone the speaker is not outputting the sound.and when i lock the phone at the same time the sound starts.thos problem is from last 3 days.and i am really confused???

    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Try each of these in order until the issue is resolved.
    If the issue continues, take the device to Apple for evaluation and possible replacement.

  • When I open FF, it continually recalls the last site, how do I stopt this it's annoying! I want it to open BLANK everytime

    when I open FF, it continually recalls the last site, how do I stopt this it's annoying! I want it to open BLANK everytime

    This did not work and actually was already setup properly. There must be another setting or there is a bug. I have W7 64B so the environment is a little different although it should not be a problem. If a launch from a websit that opens a new browser window it does not launch that window, it open the previous site instead.

  • HT5361 I can't shut down my computer because it says mail is open.  It says to close mail and continue shut down.  Problem is I can't open or close mail now.  Can't shut down my computer at all.  What can I do?

    I can't shut down my computer because it says mail is open.  It says to close mail and continue shut down.  Problem is I can't open or close mail now.  Can't shut down my computer at all.  What can I do?

    If you cannot get mail to quit/force quit, you can always remove power from your Mac.
    NOTE: removing power is a bad idea, and can result in data loss, but sometimes it is the only thing left to do.
    Press and hold the power button for 5 to 10 seconds, and the Mac will power off.
    When you power back on, the Mac should reboot.

  • I have continuously over the last 6 months struggled with syncing my iphone and ipod with itunes  The app continually crashes during the picture import.  AND by the way it takes 10-15 minutes before it even attempts to import photos.  The screen says impo

    I have continuously over the last 6 months struggled with syncing my iphone and ipod with itunes  The app continually crashes during the picture import.  AND by the way it takes 10-15 minutes before it even attempts to import photos.  The screen says importing photoes but doesnt try to optimize or anything for 10 minutes.  I have a 3gs with 16Gb so its not a cheap phone.  I have 10Gb free.  I have 6600 photoes.  This is very frustrating and undermines my confidence in your products.  My ipod is an ipod 4 with 16Gb also.  It does the exact same thing to it.  The last time, I had to import photoes a few at the time and with it taking 10-15 minutes each time for 6600 photos it is a long frustrating process.  But it will import every photo a few at a time.  The error message is just that itunes has stopped working.  no hint as to why. AND of course, my phone is out of use for the entire time.  You guys must not want to believe ur phones are a necessary tool...or maybe you dont want the consumer to believe it is.  I have tried to find solutions on your website as well as through other 3rd party communities.  Ultimately they were of no use.  I stumbled onto my solution by accident since Im a bit of a computer geek...a semi-geek.

    I have this issue too, I went into my Windows event viewer. (should have looked at this a year ago when this started)
    it said this
    Faulting application name: iTunes.exe, version: 11.0.2.26, time stamp: 0x51253247
    Faulting module name: ntdll.dll, version: 6.1.7601.17725, time stamp: 0x4ec49b8f
    Exception code: 0xc0000374
    Fault offset: 0x000ce6c3
    Faulting process id: 0x14d4
    Faulting application start time: 0x01ce194399f166ba
    Faulting application path: C:\Program Files (x86)\iTunes\iTunes.exe
    Faulting module path: C:\Windows\SysWOW64\ntdll.dll
    Report Id: 0eb3c37f-8537-11e2-9351-50465d6737de
    basically whenever I try to sync my ipod touch 4G 64GB it crashes iTunes when it begins the pictures. if im lucky ill get 4-5 on there before it stops responding. its not my system or anything im running win7x64 8GB DDR3 ram (Corsair XMS3) AMD FX Eight core processor.
    It is silly that iTunes cannot add pictures to apple devices. it shatters whatever incline I may have to buy apple products. knda like the Airport Extreem router my dad bought the new firmware, caused my router to not function... why release firmware that breaks a product. -_- <-- off topic but still

  • Last problem in my project!!

    i've intend to open this 'Receipt.class' by clicking button from other class file called 'Main.class'
    Normally we used this statement "Receipt open = new Receipt();" to open,
    but what if the class file is like that??
    Please help me even giving me the clues!! please.. this is my last problem in my project!!!
    import java.awt.geom.*;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    import java.awt.print.PrinterJob;
    import java.awt.event.*;
    import java.awt.*;
    import javax.swing.*;
    import java.awt.print.*;
    public class Receipt extends JPanel implements Printable, ActionListener {
    final static JButton button = new JButton("Print");
    public Receipt() {
         setBackground(Color.white);
    button.addActionListener(this);
    init();
    public void actionPerformed(ActionEvent e) {
    if (e.getSource() instanceof JButton) {  
    PrinterJob printJob = PrinterJob.getPrinterJob();
    printJob.setPrintable(this);
    if (printJob.printDialog()) {
    try {
    printJob.print();
    catch (Exception ex) {
    ex.printStackTrace();
    public void paintComponent(Graphics g) {
         super.paintComponent(g);
         Graphics2D g2 = (Graphics2D) g;
         drawShapes(g2);
    public void drawShapes(Graphics2D g2){
    g2.drawString("Hello world",50,50);
    public int print(Graphics g, PageFormat pf, int pi) throws PrinterException {
    if (pi >= 1) {
    return Printable.NO_SUCH_PAGE;
         drawShapes((Graphics2D) g);
    return Printable.PAGE_EXISTS;
    public void init{
         JFrame f = new JFrame();
         JPanel panel = new JPanel();
         panel.add(button);
         f.getContentPane().add(BorderLayout.SOUTH, panel);
         f.getContentPane().add(BorderLayout.CENTER, new Receipt());
         f.setSize(580, 500);
         f.show();

    I don't quite get your question. What did you mean by open? Did you mean to display it. Receipt is a JPanel, to show it you need to have it inside a Frame or an Applet or some sort of container.
    try this
    import javax.swing.*;
    Receipt receipt = new Receipt();
    JFrame aFrame = new JFrame("Display Receipt Panel"); //create a JFrame
    aFrame.getContentPane().setLayout(new BorderLayout()); //set Layout Manager for the frame
    aFrame.getContentPane().add(receipt, BorderLayout.CENTER); //add panel to the frame
    aFrame.show(); //show the frameThe above block of codes create a JFrame and add the Receipt panel to the Frame. Then call the Frame to show. You can put this code in a method, if you need to use this Frame and panel again, make them instance variables rather than local variables.

  • "New in iTunes" newsletter contents received in iPad email will not produce sound.  Any ideas as to why?  If I go into the iTunes program, I get sound without any problem.

    "New in iTunes" newsletter contents received in iPad email will not produce sound for music samples.  Any ideas as to why?  If I go into the iTunes program, I get sound without any problem.

    Amazing! I'm a dance instructor and am doing the exact same thing as you - and not seeing what I need on my iPad Air ... I can't believe there has been no reply on this! I also can't believe there isn't an easy way of seeing track info in the iPad or iPhone but I've spent hours searching and am not finding anything

  • Continued Yahoo pop access problems

    Like many, I continue to have password problems with Yahoo mail while using Mail 3.0 as the client. When using Thunderbird, the problem goes away. It is not a keychain problem. I'm always asked for my Yahoo password. If I hit cancel, not entering a Psw, and do a send/recieve, the program works fine. Does anyone have a fix for this??
    Thanks in advance,
    cb

    tried talking to the live chat support through yahoo, the guy told me to switch some port numbers around which did nothing. It downloads 22 messages, then the download rate drops from around 120kb/s to 0, and nothing happens. turning the firewall on/off also didnt help
    am I really the only one that has this problem?

  • Everytime I try to open firefox, it just doesnt open up. no matter how many times I click it. I tried uninstalling it and reinstalling it, but it continues with the same problem. what should I do?

    Everytime I try to open firefox, it just doesnt open up. no matter how many times I click it. I tried uninstalling it and reinstalling it, but it continues with the same problem. what should I do?

    You can disable autoupdate by following these steps:
    Go to main menu > Tools > Options > click on Advanced tab > click on Update tab and then click on the round radio button that says ''Never check for updates (not recommended: security risk)''
    Refer the attached screenshot

  • HT5957 iso 7.0.2  continue have lock screen problem in my iphone 4s.

    continue have lock screen problem in my iphone 4s.

    I have got same problem.7.0.2 lock screen bug,i can access my photos from lock screen

  • Continued Sound Problems

    I have been trying to fix the problem of no sound with Flash
    for some time now. I've gone through all the 3 steps listed on the
    Adobe support site and none of them work. I've tried installing new
    Codecs as well. Im new with computers, but i do follow directions
    well. Someone please help!!!!! I have no sound with anything
    associated with Flash, but Windows Media and Quicktime work just
    fine......

    Uhsul,
    What you may want to try doing is to uninstall and reinstall the Multimedia section of the operating system. Under Windows XP this is normally hidden so you will need to edit the sysoc file to do this. Instructions on this are found here (in the section called "How to install/uninstall components that are not shown in the Windows Components):
    http://us.creative.com/support/kb/article.asp?l=2&sid=5339
    Go into add/remove programs into the Add/Remove Windows Components tab. Multimedia is found under the accessories and Utilities tab. Take the checkmark out and click ok. It will uninstall the Multimedia portion of the OS. Reboot the system. When it comes back up go back to the same place and put a checkmark back into Multimedia. This should reinstall and hopefully give you your Windows' Sounds back.
    Jeremy

  • HT4623 Sound and other problems with Ipad 3 after ios 6.1.3 update

    I purchased Ipad 3 last year and got problem of losing sound when I restored the Ipad throgh itunes. The sound came back automatically after I charged the device to 100%. Recently I got the same problem when the operating system was Ios 6.1.2 and then i got updated it to ios 6.1.3. The problem has not been solved while has been added up. Now the Ipad operation is slow, its either freezes and crashes frequently. Once it gets in sleep mode then it does not come back untill i press power button and home button togehter for sometime. I have checked all settings like mute and have restored the ios multiple times on two separate PCs but the problem is still there. Please help me what i need to do next.

    Try a reboot of your ipad. Hold the Sleep/Wake button and Home button simulataneously. Keep holding, ignoring the red slider, until the Apple logo appears. Release the buttons and let the ipad restart. A reboot often fixes numerous problems.
    Also are you aware that by suncing with a different computer it is likely the personal stuff you had on your ipad from your imac will be removed?
    The ipad is designed to sync with only one device.

  • MSI ex600 sound headphones&speakers problem

    Hello all I have MSI ex600 and i have problem with my sound
    When speakers playing some music and i want hear it in my headphones its problem because speakers playing away
    So i hear music on headphones and speakes too
    I try find some solution (and its many problems with this stuff) but for me didnt work
    Some information of me Sound card :
    Sound(a)   : 82801H ICH8 Family HD Audio Controller module: snd-hda-intel
    [root@SilentHill ~]# lsmod | grep snd
    snd_seq_oss            33408  0
    snd_seq_midi_event      7936  1 snd_seq_oss
    snd_seq                55936  4 snd_seq_oss,snd_seq_midi_event
    snd_seq_device          7956  2 snd_seq_oss,snd_seq
    snd_pcm_oss            42400  0
    snd_mixer_oss          17024  1 snd_pcm_oss
    snd_hda_intel         374568  3
    snd_pcm                82312  2 snd_pcm_oss,snd_hda_intel
    snd_timer              22536  2 snd_seq,snd_pcm
    snd_page_alloc          9232  2 snd_hda_intel,snd_pcm
    snd_hwdep               9096  1 snd_hda_intel
    snd                    57320  15 snd_seq_oss,snd_seq,snd_seq_device,snd_pcm_oss,snd_mixer_oss,snd_hda_intel,snd_pcm,snd_timer,snd_hwdep
    soundcore               8096  1 snd
    [root@SilentHill ~]# cat /etc/modprobe.conf
    # /etc/modprobe.conf (for v2.6 kernels)
    # alias wlan0 ndiswrapper
    # --- BEGIN: Generated by ALSACONF, do not edit. ---
    # --- ALSACONF version 1.0.15 ---
    alias snd-card-0 snd-hda-intel
    options snd-hda-intel index=0 model=5stack
    alias sound-slot-0 snd-hda-intel
    # --- END: Generated by ALSACONF, do not edit. ---
    That was my last stuff what i tried (options snd-... in modprobe.conf)
    Thanks and sorry for my bad english

    Add this to your modprobe.conf :
    options snd-hda-intel model=3stack-6ch
    It will add a headphones switch to your alsa control which if you disable will mute the onboard speakers.
    Works on my MSI vr600

  • Keynote sound/picture synchronisation problems

    I am using Keynote '08 for a presentation with 500 photos and a sound track which I created in GarageBand using various music tracks (total time 45min.) The problem is that when showing the presentation the sound track is no longer correctly synchronised with the picture slides, although this was the case when I last quit keynote. I know a lot of you have been having problems with keynote 08. Is this just another unsolved problem that needs to be fixed by apple? Any thoughts / ideas would be appreciated.

    Try a planner rebuild - Sercices 0 0 1 Select Planner Rebuild and follow the on-screen instructions.

  • IMac 20" sound and other problems

    My dad has just bought me a 20" intel iMac for my 18th birthday, and has let me have it 2 weeks early, and I love it!
    But yesterday i ran into various troubles. I turned my mac on, hearing the usual startup chime,but there was no sound at all coming from the internal speakers as soon as I got into Mac OS (fully updated as well as firmware 1.01) e.g. playing a song on itunes. Absolutely nothing.
    When I plugged in my usual external speakers into the headphone jack, the sound was unusually low, and when turning the external speakers up there was a very distinct crackling sound along with the music that was playing.
    This, I thought, was just a minor problem that could be easily rectified. That was until my screen went a dark transparent grey with a multilingual message telling me that I needed to restart my computer. So I did, and mac os booted up again telling me that Mac Os had encountered an error. I sent a report to apple at this point too. Then the screen went transparent grey again telling me to restart.
    This continued, and I decided to quickly back up my files to a nearby pc (I'm recently converted to Macs), and I inserted my Mac Os install disk. I knew what I was doing as I'd formatted a few days ago due to accidently erasing my mac partition whilst trying out bootcamp . I did a full erase of the mac harddrive, and started the install process, when the grey screen happened again! This led me to beleive it wasnt a software fault. I restarted and attempted to install again. This time no grey screen, but a horrible noise came from the under the bottom left of the screen like a violent clicking. I turned the mac off straight away. I booted up again and installed Mac OS without any errors.
    Still, no sound and still the grey screen popped up. I finally decided to phone Apple up with the number from the applecare box. The man on the other end guided me through various diagnostic procedures, getting me to hold applealt+RP, and got me to reinstall mac os, at which point we hung up.
    Mac OS worked fine this time with no grey screens, but the sound still didnt work. I phoned applecare up again and a woman showed me the sound pane in system properties. The Output listing didnt show internal speakers at all and just showed Line Out. Well all in all my mac is in the same state right now, apart from I keep getting more and more grey screens, and it seems to be really unstable when trying to install software updates for example.
    The woman on the phone arranged to have it repaired, but I was wondering whether anyone had any clue as to whats going on with my mac.
    I'd really appreciate any ideas or comments about it. I'm sorry about the length of this post too!
    iMac Intel 20"   Mac OS X (10.4.6)   2x 512mb ram

    hey rob,
    if your machine was okay, up to the point of your 'experiment' with installing windows, it looks like your problems stem from a dodgy reinstall after the bootcamp attempt [i did the same thing, duing the formatting prep for windows, erased the os x partition bahhh]...i reinstalled and i haven't had any problems since[trying to find a slipstreaming scheme with the older xp pro disk i have].
    importantly, though is this clicking sound, not good.
    i'd like to know, through looking in the apple system profiler what brand HDD your machine came with. there would be letters designating western digital, seagate or maxtor.
    it may be, that this component is faulty. imho i'd prefer one brand over another that apple uses, other threads on the subject have different opinions about that...; ^]
    http://discussions.apple.com/thread.jspa?threadID=384923

Maybe you are looking for

  • Error: There is a problem sending the command to the program in Excel 2010

    I'm using Windows 7 and Office Home & Student 2010. This error just started today. The solution in previous versions of Excel is not solving the issue in the 2010 version.

  • G4MX460-VTP TV-Out & Drivers..

    Hello.. Why does TV-Out only works with msi det 27.50 drivers (on cd)? I have tried almost everything and all I get is mixed up stuff on the screen.. or, a white screen.. maybe grey.. I'm currently using det 40.41 and WDM 1.16. Ahh.. i'm running Win2

  • Problem with MDM Setup

    I'm trying to setup an MDM server. Here's what I've done till now. Configured a Windows 2008 server with an SSL certificate from a CA. ie. The server can be accessed ashttps://abc.com Hosted a .Net webservice that listens to PUT. Generated an MDM cer

  • HT5634 Installing Windows 7 on a Imac, late 2009 model

    I have an IMac 24 inch, late 2009 computer.  Which version (32 bit or 64 bit) will I need to run Win 7?

  • Exchange sync just stopped working

    So I set it up last night for the first time and it worked great. I synced my iPhone this morning with iTunes to get my latest podcasts, and I continued to get my Exchange e-mails all morning long. Some time in the middle of the day, I stopped gettin