Headphones with microphone, only works at a time

So I have a few pairs of headphones with a microphone attached. There is that one helmet on any of them. They all work, I tested on other computers. However, when I have more of them in the headphone jack on the PC, they produce the sound, but the microphone does not work. The reverse is also true - if I plug into the microphone jack, the microphone works, but they make no noise. Can someone help me with this? Thank you!

You need an adapter to divide your headset to separate microphone and headphone Sockets. Something like this:

separator http://www.Amazon.com/STARTech-MUYHSFMM-headset-splitter-adapter/DP/B0058DOWH6/ref=sr_1_2?ie=UTF8&QID=1389596413&SR=8-2&keywords=headphone+mic+

The other PC probably has a making of (3 rings) combo that allows the microphone and headphones to work using the single plug.

Hope this helps

Tags: Windows

Similar Questions

  • Microphone only works with external headphones... not by laptop

    I'm used to be able to talk directly to the laptop of communication via Skype.  Now, I have to use a headset with microphone so that your caller to hear me... a real pain... What can I do to fix this?  Thank you!

    Hi JennaM,
     
    Check sound settings in Skype to use the built-in microphone.
     
    a. open SKYPE--> Tools--> Options--> sound settings.
     
    More information on:
     
     
    For further assistance, you can contact Support Skype settings you need to change in the Skype program.
  • SBH 52 headphones with microphone

    I used this camera and everythink works fine except one thing. When I connect my headset with microphone (romaric Piston 2.0), and then uses SBH52 build-in microphone instead of what is in my helmet. I tried Googling this problem, but without success. I got something misconfigured or this device cannot manage an external microphone? Thanks for the responses...

    Hello

    As a built-in microphone in SBH52, the audio jack in SBH52 is reserved for the headphones and headsets with an external microphone not.

  • Synchronize the dictionary of data with model only works for models imported?

    When I imported data dictionary model (file-> import-> data dictionary) then in relational model the two buttons "Synchronize Data with Model Dictionary" and "Synchronize model with Data Dictionary" works very well.

    But when I model created from scratch and I'm clicking on the buttons "Synchronize data dictionary with the model" or "Synchronize model with Data Dictionary" nothing happens.

    It works only for models imported?

    (Data model EA 3.3)

    Hello

    Yes, Synchronize only works for objects that were imported to the original (like Synchronize uses the information entered during the import to determine which database connection and the database object to compare to).

    If your model is not imported, you can achieve the same effect as follows:
    -Open the template in Data Modeler and also open the relevant physical model.
    -Do an Import of data dictionary, select the objects you want to compare with that.

    After the import phase, this will display the dialog box to compare, showing the differences between the objects imported from the database and your model.

    Note that if you intend to generate the DDL to update your database of the difference (as in "synchronize with Model Data Dictionary"), you must select the "Swap Target Model" option in step 2 (select database schema) data dictionary import wizard.

    David

  • Using headphones with microphone

    If I buy a Logitech G230 helmet. It has two audio jacks of 3.5 mm (one for the microphone) and one for the actual headset

    I have a MacBook Pro (13-inch, mid 2012) that has an audio jack.

    If I bought this headset adapter:

    http://www.eBay.com.au/ITM/311367796790?_trksid=p2055119.m1438.l2649&ssPageName= STRK % 3AMEBIDX % 3AIT

    Would I be able to use a headset with my laptop?

    -Thank you

    I don't know anything about this product but suggests that you can get a USB headset with microphone.

  • My AS3 buttons only work the first time

    I set up my buttons so that are each a movieclip with 'plus' and 'out' States/frame labels. They exist in the main timeline. Their control actionscript code is located in a frame on the main timeline and the holding frame that actionscript is about even in the main scenario where the buttons are introduced. I use actionscript 3.

    The buttons have been implemented so that they navigate to another image in the main scenario and on this frame are a film. The dimensions of the movie are smaller than the main stage so that the buttons are still accessible when each video is played.

    The problem is that my buttons work only once - by that I mean they go to the correct place when you click on the first time, but when they are clicked they still sail elsewhere.

    Totally doing my head in trying to find a solution and if someone can help and show me what I'm doing wrong, what would be really useful. Here is the code I used for the buttons...

    Stop();


    function mainBtnOver(event:MouseEvent):void {}
    event.target.gotoAndPlay ("over");
    }
    /////////
    function mainBtnOut(event:MouseEvent):void {}
    event.target.gotoAndPlay ("out");
    }

    CLICK INDIVIDUAL BUTTON FUNCTIONS
    function mainBtn1Down(event:MouseEvent):void {}
    gotoAndPlay ("01Movie");
    }
    function mainBtn2Down(event:MouseEvent):void {}
    gotoAndPlay ("02Movie");
    }
    function mainBtn3Down(event:MouseEvent):void {}
    gotoAndPlay ("03Movie");
    }
    function mainBtn4Down(event:MouseEvent):void {}
    gotoAndPlay ("04Movie");
    }
    function mainBtn5Down(event:MouseEvent):void {}
    gotoAndPlay ("05Movie");
    }


    Button 1 listeners
    mainBtn1.addEventListener (MouseEvent.ROLL_OVER, mainBtnOver);
    mainBtn1.addEventListener (MouseEvent.ROLL_OUT, mainBtnOut);
    mainBtn1.addEventListener (MouseEvent.CLICK, mainBtn1Down);
    2 button headphones
    mainBtn2.addEventListener (MouseEvent.ROLL_OVER, mainBtnOver);
    mainBtn2.addEventListener (MouseEvent.ROLL_OUT, mainBtnOut);
    mainBtn2.addEventListener (MouseEvent.CLICK, mainBtn2Down);
    Button 3 listeners
    mainBtn3.addEventListener (MouseEvent.ROLL_OVER, mainBtnOver);
    mainBtn3.addEventListener (MouseEvent.ROLL_OUT, mainBtnOut);
    mainBtn3.addEventListener (MouseEvent.CLICK, mainBtn3Down);
    Button 4 listeners
    mainBtn4.addEventListener (MouseEvent.ROLL_OVER, mainBtnOver);
    mainBtn4.addEventListener (MouseEvent.ROLL_OUT, mainBtnOut);
    mainBtn4.addEventListener (MouseEvent.CLICK, mainBtn4Down);
    Key 5 listeners
    mainBtn5.addEventListener (MouseEvent.ROLL_OVER, mainBtnOver);
    mainBtn5.addEventListener (MouseEvent.ROLL_OUT, mainBtnOut);
    mainBtn5.addEventListener (MouseEvent.CLICK, mainBtn5Down);

    I'm sure it's doing me something very stupid - I am very new to AS3. Any help much appreciated.

    Thank you :-)

    If the image labels, you have video clips that have the content of your presentation, you must use gotoAndStop ("frameLabel") instead of gotoAndPlay ("frameLabel"). There is no need to play the main scenario, when you go to and present one of these clips. I don't know if that's your problem, but... Using your code, I had no problem.

    In addition, you can configure your animated buttons in a way that eliminates the need to have your ROLL_OVER and ROLL_OUT event. It is not necessarily better, but just another method. Although I could use other ways to animate a button, I don't want to reduce the code to use the buttons in an interface and use only the CLICK in the majority of cases.

  • Should what noise canceling Earphones/Headphones with microphone I buy laptop computer based XPS?

    I have a Dell XPS Intel core i7 laptop, eager to buy quality headphones even though I am totaling bombarded by all the marketing.

    Appreciate the advice to what really matters! , regarding specifications etc... . They will be used for the web conference online for studies.

    Laptop has already ALC665 controller-Realtek Audio, microphone and camera

    Hi Kylie_Janelle,

    Thanks for your post.  I researched and found good.

    Logitech G35

    There are others on the site Dell.com that you might be interested here , or you can visit the websites as well.

    Kind regards
    Robert

  • Preview only works if the time line is not visible

    I'm having a problem with preview.  My computer plays smoothly if the time line for this model is not visible.  I have to hit play then click the Render what tab or close the window of time line all together.   Why is this happening?

    Assuming you are using El Capitan, Dave is right. It is a known problem. It is listed on this page and a few other places as well. You have found a workaround. Another workaround solution found by the mofxtv user (in this thread) is docked to another court under your control panel mounting.

    Like this:

    Some people use other panels that they use less often.

  • column with the only format of loading time

    My DB, 11 2 on OEL 5.5 GR
    Hi all
    I have a problem with the loading of the external table. I have a txt file with a format of columns HH24:MI:SS
    START_TIME
    00:10:20
    01:15:11
    02:11:10
    And I don't know which data type use in external table because in the future, I'll have to do some calculations on this column, so I should load as a DATE, but miss me "mm/dd/yy" to the front. Any suggestion how to do properly?

    You could use a data type CHAR or date for the outer table and do your math with this column correctly.

    The key is that convert a time string to a date data type will add the current date to it. For example:

    SQL> alter session set nls_date_format='dd/mm/yyyy hh24:mi:ss';
    
    Session altered.
    
    SQL> select to_date('00:10:20', 'hh24:mi:ss') from dual;
    
    TO_DATE('00:10:20',
    -------------------
    01/02/2011 00:10:20
    

    Some examples of code for both cases, by using the DATE and CHAR data type. I tested it on 11.2.0.1:

    CREATE OR REPLACE DIRECTORY ext_tab_dir AS '/tmp';
    
    -- /tmp/info.txt
    1,00:10:20
    2,01:15:11
    3,02:11:10
    
    alter session set nls_date_format='dd/mm/yyyy hh24:mi:ss';
    

    (1) using the DATE data type

    drop table tab_time_date;
    
    CREATE TABLE tab_time_date (
      key VARCHAR2(5),
      start_time date)
      ORGANIZATION EXTERNAL (
         TYPE ORACLE_LOADER
         DEFAULT DIRECTORY ext_tab_dir
         ACCESS PARAMETERS
          (FIELDS TERMINATED BY ','
           (key char(5),
            start_time CHAR(8) DATE_FORMAT DATE MASK "HH24:MI:SS"
           )
          )
          LOCATION ('info.txt'));
    
    select * from tab_time_date;
    
    KEY   START_TIME
    ----- -------------------
    1     01/02/2011 00:10:20
    2     01/02/2011 01:15:11
    3     01/02/2011 02:11:10
    

    (2) using the CHAR data type

    CREATE TABLE tab_time_char (
      key VARCHAR2(5),
      start_time char(8))
      ORGANIZATION EXTERNAL (
         TYPE ORACLE_LOADER
         DEFAULT DIRECTORY ext_tab_dir
         ACCESS PARAMETERS
          (FIELDS TERMINATED BY ','
          )
          LOCATION ('info.txt'));
    
    select key, to_date(start_time, 'hh24:mi:ss') from tab_time_char;
    
    KEY   TO_DATE(START_TIME,
    ----- -------------------
    1     01/02/2011 00:10:20
    2     01/02/2011 01:15:11
    3     01/02/2011 02:11:10
    

    Kind regards.

  • Menu Spry - only works the first time, or two

    I've implemented a Spry menu, according to the book (a half dozen or more main menu items, a couple of those, with three elements of the submenus - of course, it is a model applied to the relevant pages). It works very well in live pages on the web. Then after one or two openings of the menus, the lower two-thirds of the menus stop working! The menus of one or two albums always do their thing, but the rest of them no longer open the linked page. This has happened at the opening of the page on Mac Safari and IE7 Windows.

    At least once, clear the cache on Safari fixed temporarily - then the problem came back...

    Is this a known issue? Are there workarounds?

    Very well, thank you in advance! I need to make this page work, and this problem has me buffaloed.

    Well you helped me a lot, thanks

    Your insight on the code was right, and we had a bad page. Incidentally the model was not correctly updated until what we fixed another problem.
    lmo1

  • How can I add a sennheiser headphones with microphone for my acer running win7?

    Help please:

    I would like to use my gaming headset... I can hear, but cannot use the microphone. Are there drivers or something I need. It's plugged into my laptop, no usb.  A response would be appreciated more sooner rather than later.
    Respectfully submitted

    Just put the default microphone.

  • Problem with script - only works with numbers?

    I hope that someone can help you. I have this script that I use to make bar codes:

    If (event.value! = "")

    Event.Value =

    "*" + event.value + "*" ""

    It works fine when a user enters a number, but it does not accept letters. When I change the font 3 of 9 barcode, the field contains "0." This field is calculated from another field. Any way to have this letters to accept as well? I use Adobe X.

    Thanks in advance.

    I need to see the file. I would be happy to take a look if you can display it somewhere or email me at: acroscript at gmail dot com

  • Xoom allows headphones with microphone to talk?

    I mean the handfree as what iphone used for the application of voip such as tango or the line.

    Thank you all!

  • BlackBerry Z10 headphone only works with the left ear

    My headphones (beats studios) only works with the left ear when connected. The helmet has never had a problem on my old iPhone 4 and currently with my rMBP so I know that's not the headphones. Any suggestions?

    There seems to be a problem with the jacket of the head. They are defective for a few pieces and the jacket cannot recognize the HP in the same case, what makes the phone to give no sounds on the notification.

    Try to use different headphones. If the problem persists try replacing the model.

  • HP 15 r-022TX: how to headset with microphone build installation in hp 15 r-022tx

    Hey,.

    I have hp 15 r-022TX laptop and in this laptop as you know there is only 1 location of jack of 3.5 mm headphone jack.

    I want to use the headphones with microphone in the generation (philips SHM1900) and for that I bought a jack 2 in 1 to connect to the laptop

    Jack details are here ("http://www.flipkart.com/callmate-asc-iphone-audio-split-data-cable/p/itmdh9nfhfjz35fc?pid=ACCDDRSYRH... )

    but using this laptop still jack uses his microphone in the generation not the headset.

    headset works with the plug, but I can't use his microphone.

    I am using windows 7 ultimate (64 bit).

    can someone help me.

    Thank you.

    HI @Rajatsharma_yam ,

    Thank you for your request, I will do my best to help you.

    I understand that when you connect your headphones combo and mic the MIC part does not work.

    You did all your Windows updates?

    Did you run HP Support Assistantto ensure you have the latest HP drivers installed.

    If you look at the physical connector can bands how you see on it?  You should have 3 or 4 strips.

    Are you sure that they are connected in the helmet and the port on the laptop.

    When you have the combined headphone connected go to control panel / sound and open the window.

    Click the recording tab, is the listed microphone?  You should be able to select and configure from this window.

    Here is a link to headphones and headset problems (Windows 8) resolution which can also be of assistance.

    Good luck!

Maybe you are looking for