FMLE No Default Sound in Audio DropDown list

Hi im pretty new to FMLE,
Does anyone know how to get the Default PC sound to show up under the drop down list for Audio? The only the that shows is my USB Mic, but I want to live cast my PC sounds for my game that I will be streaming, not just my voice. I actually want to get both to play.

FMLE only lists what your OS reports is present.
What you are looking for is called "Stereo Mix" and it is NOT enabled on soundcards in Windows by default.  You need to enable it as a recording device: 1. Right-click on the speaker icon in the task bar (next to the clock)
2. Click "Recording Devices"
3. Right-click in the "Select a recording device" window (on white space)
4. Click on "Show disabled devices"
If your driver supports Stereo Mix you will now see it in the list.  You can right-click it and click "enable". If your driver does not support stereo mix you will need to get an updated driver and install it.  Note: usually the Microsoft driver does not include this support.  Go to the soundcard manufacturer's web site (or motherboard manufacture if the sc is onboard) and download it from there. Then repeat the above process to enable Stereo Mix recording.
Now start FMLE and it should show up in the audio devices list.

Similar Messages

  • Dropdown list default value  in Visual Composer

    Hi all  ,
    i have dropdown list in my Visual composer layout  i have values coming like 2001 to 2014 ,everything is fine . i need to display default value in the dropdown list should be curent year like 2009when i deploy the application by default the current year should be displayed in input field.

    Hi Venkatp,   
    To Assign the function into the dropdown inputfield DSTR(NOW(),'YYYY') and you can to display the current year
    Followings links are available to display the dateformat,
    http://www.sdn.sap.com.ngrs.net/irj/scn/index?rid=/library/uuid/60535002-571c-2c10-58b6-cc27faa7be4d&overridelayout=true
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/7556c6b7-0e01-0010-878b-cbf4dbe859eb&overridelayout=true
    Regards,
    Prabha

  • Remove default value from dropdown list

    I am currently working with Acrobat XI Pro version. I want to know whether it is possible to remove the default value from a dropdown list.
    When the list has less than 4 items, it is possible to deselect the default value by pressing the whitespace below. However, when there are more items, this is not possible anymore.
    I have read that you should include a whitespace as item in the item list, however, then you will see an empty list item when people are working with the pdf which is not preferable.
    So, does anyone know how to remove the default value from a dropdown list?
    Thanks!

    Ok, I found a perfect workaround for my problem using FormsCentral for Acrobat. Here is what you should do:
    Step 1:
    -   Open FormsCentral
    -   Create New Form (Choose Blank Form)
    -   Click on the dropdown icon to create a new dropdown
    -   Fill in the list items by clicking on the edit (you also can add a label if you want)
    -   Click: File > Save as PDF Form...
    Step 2:
    -   Open the saved PDF (you now see a blank pdf with a dropdown menu)
    -   Click: Tools > Forms > Edit Form (when a popup shows that you should save a copy of the document in order to make changes, press "Save as a copy" and open the pdf copy file with Acrobat)
    -   Select the dropdown, copy the dropdown and paste it in the desired document
    Now you have a dropdown menu without a default choice. Keep in mind that you cannot edit the items in the dropdown, because a default choice will be chosen and you have to use the pdf copy file again. As long as you don't click on a list item, it doesn't choose a default choice.
    It is not a perfect solution, but it works for me.
    Good luck and thanks!

  • Defaulting value of Dropdown List to the first value of a BI Query

    Hi,
    In my VC application I have a form containing a dropdown list to be used as selection criteria for other data.  The dropdown list is dynamically populated by a BI Query.  When I run the application, the dropdown list is correctly populated with the values returned by the linked query.  However, on initial load of the iView, the default value of the dropdown list is blank.  The requirement is for the first item returned by the linked query to display as the default value.
    I would appreciate any suggestions on how to achieve this requirement.
    Thank you,
    Mustafa Bensan.

    Hi Mustafa,
    I checked your requirement but it is not possible to display first value as default value for a drop down list because the list will be generate when you click the drop down list. You can use a 'list box' instead of drop down list.
    Regards
    Basheer

  • Sound and audio does not show up in device manager hp pavillion dv6500

    No audio output device installed. Sound and audio not listed under device manager hp pavillion dv6500 system bios f.2a-02/22/2008

    Hi @Cynthia0 
    I understand that you have no audio device showing up in device manager.  I am happy to help you with this.
    Please post the full product number for your notebook. See the following, if you need help with that information.
    How Do I Find My Model Number or Product Number?
    Once I have that, I can find the proper driver and support page for you.
    For now check through this page: Resolving No Sound or Audio Problems (Windows Vista)
    Malygris1
    I work on behalf of HP
    Please click Accept as Solution if you feel my post solved your issue, it will help others find the solution.
    Click Kudos Thumbs Up on the right to say “Thanks” for helping!

  • I updated to 3.6, lost bookmarks, have only a default profile so I restored. The bookmarks are now there but I can't get the dropdown list for many folders so I can't access these. Clicking on the arrow to the right of the folder name does nothing.

    When I Click on some of the bookmark folders I do get a dropdown list of sites but not always all of the sites that were bookmarked. If I copy a nonresponding folder, the new copy can be accessed but apparently does not contain all of the sites. If I rightclick on a nonresponding folder and use 'open all tabs' Firefox will tell me the number of sites in the folder and ask if I really want to open so many.

    Sounds like a corrupted places.sqlite file.
    See http://kb.mozillazine.org/Locked_or_damaged_places.sqlite

  • How to set a default value in dropdown list in Wendynpro ABAP? Help!

    Hi Experts,
           I have Webdynpro for ABAP application that shows a DropdownwithKey UI element.
    1. I am able to populate the dropdown list. But by default the list is not showing any value. Only when I select a value from the list then it shows it.
    So how to set the default value to the first value in the list? Any code sample will be really helpfull.
    I have written the following code:
    method WDDOINIT .
      DATA:
        node_category TYPE REF TO if_wd_context_node_info.
      node_category = WD_CONTEXT->GET_NODE_INFO( ).
      node_category = node_category->GET_CHILD_NODE( 'CATEGORY' ).
      data:    LT_VALUESET type WDR_CONTEXT_ATTR_VALUE_LIST,
               L_VALUE type WDR_CONTEXT_ATTR_VALUE.
    L_VALUE-VALUE      = 'V1'.
    L_VALUE-TEXT    = 'yesterday'.
    INSERT L_VALUE into table LT_VALUESET.
    L_VALUE-VALUE      = 'V2'.
    L_VALUE-TEXT    = 'today'.
    INSERT L_VALUE into table LT_VALUESET.
    L_VALUE-VALUE      = 'V3'.
    L_VALUE-TEXT    = 'tomorrow'.
    INSERT L_VALUE into table LT_VALUESET.
    node_category->SET_ATTRIBUTE_VALUE_SET(
                 NAME = 'CAT_VALUE'
                 VALUE_SET = LT_VALUESET ).
    endmethod.
    Note that: I am using webdynpro for ABAP.
    Thanks
    Gopal

    I am not sure how it works in Web Dynpro for ABAP, but in Web Dynpro for Java to set default drop down value you will have to set the value for particular attribute (which is linked to the dropdown element)  in the context
    like
    wdContext.currentContext<nodeName>Element.set<FieldName>(<defalut value>)
    This generally done in Initialization method of the controller.

  • Set default "Dropdown Lists" to "By value"

    Hi ,
    In the WebUI under Personalize / Personalize Settings , the user can setup the parameter "Dropdown Lists" to be "By value".
    We want to setup that at the system level , so every connection to the WebUI will have the Sort in the Dropdown Lists by value . How can we do that ? Nothing seems to be in IMG , maybe that a parameters in a SYSTEM file ? Thank you

    Hi Julie and happy HannuChristmaKwanzaYule to you!
    There is only one place I'm aware of that any slide timing
    default may be set. In Captivate 2, you look at Project >
    Preferences... > Defaults tab.
    In Captivate 3, you look at Edit > Preferences... >
    Project node.
    In both places you will find a place to configure the default
    slide time. This has no effect on any existing slides and I don't
    believe it will factor into the mix when recording. Also it would
    appear the minimum limit is one second. The only places this seems
    to take effect are when inserting Blank slides and when creating a
    Blank project.
    Hopefully this helps a smidge! Rick

  • Generate Comp based on dropdown list and checkbox selection?

    I currently have a dropdown list with three sizing options in it. Then I have two check mark boxes, one if checked ideally would create the template at its normal composition size and if the other checkbox is checked it would inverse the widthxheight of the composition size. Then below that I have a "generate" button that I want to be able to click and depending on my selections it creates the comp.
    It sounds like I need some sort of if then statement but I'm having a hard time putting the two together. See below what I have so far.
    There may be parts missing but I have it all working in a decibel pallate currently. I just don't have the functionality tied to a button yet.
    Any help would be much appreciated!!!
    (also I don't know how to format the extend script on here so apologies for that)
    // palette controls
    templateGen.VerticalCheckbox     = new Object();
    templateGen.HorizontalCheckbox    = new Object();
    // define values for the controls
    templateGen.comLookup            = new Object();
    templateGen.compLookup          = 'Template1';
    templateGen.compLookup          = 'Template2';
    templateGen.compLookup          = 'Template3';
    function templateGen_getHashValues(hash)
      var ary = new Array();
      for (k in hash) {
      ary.push(hash[k]);
      return ary;
    // "composition" menu
       var panelGrp1 = templateGen.palette.add('Panel', undefined, 'Comp Templates');
      compGrp1 = panelGrp1.add('group', undefined, 'Templates List');
      compGrp2 = panelGrp1.add('group', undefined, 'Orientation');
      compGrp3 = panelGrp1.add('group', undefined, 'Generate');
      templateGen.compList                                             = compGrp1.add('dropdownlist', LIST_DIMENSIONS, templateGen_getHashValues(bapple.compLookup));
      templateGen.compList.helpTip                                = "Choose the type device template you want here. All comps are 60fps.";
      templateGen.compList.selection                             = 'Template1';
      templateGen.compList.graphics.foregroundColor  = darkColorBrush;
      templateGen.VerticalCheckbox                           = compGrp2.add('checkbox', undefined, 'Vertical');
    templateGen.VerticalCheckbox .value = true;
      templateGen.HorizontalCheckbox                          = compGrp2.add('checkbox', undefined, 'Horizontal');
      templateGen.HorizontalCheckbox .value = false;
    templateGen.generateBtn1      = compGrp3.add('button', undefined, 'Generate');
      //applyBtn.onClick =????;

    When I work with dropdowns I always like to attach the data they represent (like width and height of the comp in this case) directly to the items.
    I didn't execute the code to really check it, but it should work like this:
    // add templates to your dropdown and store the items in an array
    var templates = [];
    templates[0] = templateGen.compList.add('item','template1');
    templates[1] = templateGen.compList.add('item','template2');
    templates[2] = templateGen.compList.add('item','template3');
    // attach a width and height to each item
    templates[0].width= 1280;
    templates[0].height= 720;
    templates[1].width= 1024;
    templates[1].height= 768;
    templates[2].width= 1920;
    templates[2].height= 1080;
    // choose the item that should be selected by default
    templates[0].selected = true;
    applyBtn.onClick = function(){
            // read the width and height from the selected item
            var width = templateGen.compList.selection.width;
            var height =templateGen.compList.selection.height;
            if(templateGen.VerticalCheckbox.value){
                  // swap width and height
                  var temp = width;
                  width = height;
                  height = temp;
            // now create your comp here with the given width and height

  • [Solved] No sound with ALSA (change default sound card)

    I installed Arch on another laptop and I am unable to get sound working.
    # lspci | grep -i audio
    00:01.1 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] Device 9840
    00:14.2 Audio device: Advanced Micro Devices, Inc. [AMD] FCH Azalia Controller (rev 02)
    Two devices show up in alsamixer. The first (the default, I assume) shows up only an S/PDIF button that I can toggle. If I select the other sound card, I can change volume normally.
    I followed this solution in the wiki with no success.
    How can I make the second sound card the default one?
    Last edited by Gradient (2014-09-09 18:17:14)

    Here is the requested info with the cards in the corrected order:
    $ aplay -lL;
    null
    Discard all samples (playback) or generate zero samples (capture)
    default:CARD=Generic_1
    HD-Audio Generic, ALC3227 Analog
    Default Audio Device
    sysdefault:CARD=Generic_1
    HD-Audio Generic, ALC3227 Analog
    Default Audio Device
    front:CARD=Generic_1,DEV=0
    HD-Audio Generic, ALC3227 Analog
    Front speakers
    surround21:CARD=Generic_1,DEV=0
    HD-Audio Generic, ALC3227 Analog
    2.1 Surround output to Front and Subwoofer speakers
    surround40:CARD=Generic_1,DEV=0
    HD-Audio Generic, ALC3227 Analog
    4.0 Surround output to Front and Rear speakers
    surround41:CARD=Generic_1,DEV=0
    HD-Audio Generic, ALC3227 Analog
    4.1 Surround output to Front, Rear and Subwoofer speakers
    surround50:CARD=Generic_1,DEV=0
    HD-Audio Generic, ALC3227 Analog
    5.0 Surround output to Front, Center and Rear speakers
    surround51:CARD=Generic_1,DEV=0
    HD-Audio Generic, ALC3227 Analog
    5.1 Surround output to Front, Center, Rear and Subwoofer speakers
    surround71:CARD=Generic_1,DEV=0
    HD-Audio Generic, ALC3227 Analog
    7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
    hdmi:CARD=Generic,DEV=0
    HD-Audio Generic, HDMI 0
    HDMI Audio Output
    **** List of PLAYBACK Hardware Devices ****
    card 0: Generic_1 [HD-Audio Generic], device 0: ALC3227 Analog [ALC3227 Analog]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 1: Generic [HD-Audio Generic], device 3: HDMI 0 [HDMI 0]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    $ for i in /proc/asound/card[0-9]*; do echo "--- $i ---";amixer -c $(cat $i/id); done;
    --- /proc/asound/card0 ---
    Simple mixer control 'Master',0
    Capabilities: pvolume pvolume-joined pswitch pswitch-joined
    Playback channels: Mono
    Limits: Playback 0 - 87
    Mono: Playback 87 [100%] [0.00dB] [on]
    Simple mixer control 'Headphone',0
    Capabilities: pvolume pswitch
    Playback channels: Front Left - Front Right
    Limits: Playback 0 - 87
    Mono:
    Front Left: Playback 87 [100%] [0.00dB] [on]
    Front Right: Playback 87 [100%] [0.00dB] [on]
    Simple mixer control 'Speaker',0
    Capabilities: pvolume pswitch
    Playback channels: Front Left - Front Right
    Limits: Playback 0 - 87
    Mono:
    Front Left: Playback 87 [100%] [0.00dB] [on]
    Front Right: Playback 87 [100%] [0.00dB] [on]
    Simple mixer control 'Mic',0
    Capabilities: pvolume pswitch
    Playback channels: Front Left - Front Right
    Limits: Playback 0 - 31
    Mono:
    Front Left: Playback 31 [100%] [12.00dB] [off]
    Front Right: Playback 31 [100%] [12.00dB] [off]
    Simple mixer control 'Mic Boost',0
    Capabilities: volume
    Playback channels: Front Left - Front Right
    Capture channels: Front Left - Front Right
    Limits: 0 - 3
    Front Left: 3 [100%] [36.00dB]
    Front Right: 3 [100%] [36.00dB]
    Simple mixer control 'Capture',0
    Capabilities: cvolume cswitch
    Capture channels: Front Left - Front Right
    Limits: Capture 0 - 63
    Front Left: Capture 39 [62%] [12.00dB] [on]
    Front Right: Capture 39 [62%] [12.00dB] [on]
    Simple mixer control 'Auto-Mute Mode',0
    Capabilities: enum
    Items: 'Disabled' 'Enabled'
    Item0: 'Enabled'
    Simple mixer control 'Internal Mic Boost',0
    Capabilities: volume
    Playback channels: Front Left - Front Right
    Capture channels: Front Left - Front Right
    Limits: 0 - 3
    Front Left: 3 [100%] [36.00dB]
    Front Right: 3 [100%] [36.00dB]
    Simple mixer control 'Mute-LED Mode',0
    Capabilities: enum
    Items: 'On' 'Off' 'Follow Master'
    Item0: 'Follow Master'
    --- /proc/asound/card1 ---
    Simple mixer control 'IEC958',0
    Capabilities: pswitch pswitch-joined
    Playback channels: Mono
    Mono: Playback [off]
    $ lspci -vnn | grep -A 1 -i audio
    00:01.1 Audio device [0403]: Advanced Micro Devices, Inc. [AMD/ATI] Device [1002:9840]
    Subsystem: Hewlett-Packard Company Device [103c:22cd]
    00:14.2 Audio device [0403]: Advanced Micro Devices, Inc. [AMD] FCH Azalia Controller [1022:780d] (rev 02)
    Subsystem: Hewlett-Packard Company Device [103c:22cd]
    emeres wrote:What do you mean 'is visible in alsamixer'? F6 does not list it? Did you use index or enable?
    Yes, that is what I meant; F6 did not list them both when I use your options. I must have done something wrong the first time, because now it does.
    emeres wrote:Read this alsa documentation and 'mad modprobe'.
    Thanks for the link. That was what I was looking for.

  • How do you set a usb sound card as the default sound device for all programs?

    I'm running cmus for a music player and it works fine with the internal speakers on my macbook pro. I'm using a usb sound card for a set of 5.1 surround speakers and cmus won't send it's audio to the usb sound card. I've also tried several other programs for audio and it seems to be hit or miss with being able to use the usb sound card. I'm not sure if I'm overlooking the a setting or if there is a different audio output plugin for cmus that has the functionality I need. Cmus also won't play over any bluetooth audio device while some other sounds will.

    Yes I did and it does not appear there. Only the ringtones I have created myself and the default ones appear in the list.
    In settings>sounds>ringtone however they all appear

  • Cannot set default sound card properly

    Hello, i cant manage to set the default sound card properly.
    The card i'm using is the default pch from my motherboard :
    aplay -l
    **** List of PLAYBACK Hardware Devices ****
    card 0: HDMI [HDA Intel HDMI], device 3: HDMI 0 [HDMI 0]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 0: HDMI [HDA Intel HDMI], device 7: HDMI 1 [HDMI 1]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 0: HDMI [HDA Intel HDMI], device 8: HDMI 2 [HDMI 2]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 1: PCH [HDA Intel PCH], device 0: ALC887-VD Analog [ALC887-VD Analog]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 1: PCH [HDA Intel PCH], device 1: ALC887-VD Digital [ALC887-VD Digital]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 2: Generic [HD-Audio Generic], device 3: HDMI 0 [HDMI 0]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 2: Generic [HD-Audio Generic], device 7: HDMI 1 [HDMI 1]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 2: Generic [HD-Audio Generic], device 8: HDMI 2 [HDMI 2]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 2: Generic [HD-Audio Generic], device 9: HDMI 3 [HDMI 3]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 2: Generic [HD-Audio Generic], device 10: HDMI 4 [HDMI 4]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 2: Generic [HD-Audio Generic], device 11: HDMI 5 [HDMI 5]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    aplay -L
    null
    Discard all samples (playback) or generate zero samples (capture)
    hdmi:CARD=HDMI,DEV=0
    HDA Intel HDMI, HDMI 0
    HDMI Audio Output
    hdmi:CARD=HDMI,DEV=1
    HDA Intel HDMI, HDMI 1
    HDMI Audio Output
    hdmi:CARD=HDMI,DEV=2
    HDA Intel HDMI, HDMI 2
    HDMI Audio Output
    default:CARD=PCH
    HDA Intel PCH, ALC887-VD Analog
    Default Audio Device
    sysdefault:CARD=PCH
    HDA Intel PCH, ALC887-VD Analog
    Default Audio Device
    front:CARD=PCH,DEV=0
    HDA Intel PCH, ALC887-VD Analog
    Front speakers
    surround21:CARD=PCH,DEV=0
    HDA Intel PCH, ALC887-VD Analog
    2.1 Surround output to Front and Subwoofer speakers
    surround40:CARD=PCH,DEV=0
    HDA Intel PCH, ALC887-VD Analog
    4.0 Surround output to Front and Rear speakers
    surround41:CARD=PCH,DEV=0
    HDA Intel PCH, ALC887-VD Analog
    4.1 Surround output to Front, Rear and Subwoofer speakers
    surround50:CARD=PCH,DEV=0
    HDA Intel PCH, ALC887-VD Analog
    5.0 Surround output to Front, Center and Rear speakers
    surround51:CARD=PCH,DEV=0
    HDA Intel PCH, ALC887-VD Analog
    5.1 Surround output to Front, Center, Rear and Subwoofer speakers
    surround71:CARD=PCH,DEV=0
    HDA Intel PCH, ALC887-VD Analog
    7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
    iec958:CARD=PCH,DEV=0
    HDA Intel PCH, ALC887-VD Digital
    IEC958 (S/PDIF) Digital Audio Output
    hdmi:CARD=Generic,DEV=0
    HD-Audio Generic, HDMI 0
    HDMI Audio Output
    hdmi:CARD=Generic,DEV=1
    HD-Audio Generic, HDMI 1
    HDMI Audio Output
    hdmi:CARD=Generic,DEV=2
    HD-Audio Generic, HDMI 2
    HDMI Audio Output
    hdmi:CARD=Generic,DEV=3
    HD-Audio Generic, HDMI 3
    HDMI Audio Output
    hdmi:CARD=Generic,DEV=4
    HD-Audio Generic, HDMI 4
    HDMI Audio Output
    hdmi:CARD=Generic,DEV=5
    HD-Audio Generic, HDMI 5
    HDMI Audio Output
    When i try :
    speaker-test -D default:PCH -c2
    speaker-test 1.0.28
    Playback device is default:PCH
    Stream parameters are 48000Hz, S16_LE, 2 channels
    Using 16 octaves of pink noise
    Rate set to 48000Hz (requested 48000Hz)
    Buffer size range from 2048 to 16384
    Period size range from 1024 to 1024
    Using max buffer size 16384
    Periods = 4
    was set period_size = 1024
    was set buffer_size = 16384
    0 - Front Left
    1 - Front Right
    I hear sound, but i cant found to make it the default output.
    I've tried to change /usr/share/alsa/alsa.conf :
    defaults.ctl.card 0
    defaults.pcm.card 0
    to
    defaults.ctl.card 1
    defaults.pcm.card 1
    and I've tried to make a .asoundrc file in my home :
    pcm.!default {
    type hw
    card PCH
    ctl.!default {
    type hw
    card PCH
    doesn't work either, what am i doing wrong ?
    Thanks in advance,

    Ok, after a lot of try-and-error-and-reboot, i found that the default card is correctly defined ("aplay test.wav" works), but others applications (vlc, chromium) still did not produce sound.
    Apparently, the problem came from pulsaudio, after i removed it, everything seems to work (sound is back on vlc and chromium), not sure what the problem with pulseaudio was.

  • Audigy , Sound and Audio Devices Properties 'No Audio Device' appears

    <p class="MsoNormal">Out of the blue, in the Sound and Audio Devices Properties, on the Volume tab ?No Audio Device? appears.
    On the Sound tab of Sound and Audio Devices Properties, my Default Device says ?Modem # Line play back and is my only drop down choice. I made no configuration changes or installed any new software, it just stopped working.
    I have searched for solutions, to no avail. I have an ?!? next to the Microsoft Kernel Audio Mixer in Device Manager that upon re-install displays a message that there was a problem installing this hardware(MEDIA) I/O operation has been aborted because of either a threadd exit or an application request(both installing from driver folder and recovery CD).
    I don?t particularly care what sound device I have, just one that works again. I?ve uninstalled the sound devices and let them re-install on reboot and have checked the BIO settings (I don?t have any sound related settings there).
    In Admin Tools > Services ?Windows Audio? is started and set to Automatic. When I manually try to play a windows sound in the Sounds tab I get an error message that says my sound card may be in use.
    Under Sound and Audio Devices in Device Manager I currently have(when I ?Show Hidden?):
    -Audio codecs
    -Legacy Audio Drivers
    -Legacy Video Capture Devices
    -Media Control Devices
    -Video codecs
    Don't know what else to try. Any help would be appreciated.

    cesario85 wrote:
    OK The sticky label says SB0240
    Here's the screenshot:
    [img"]http://www.strikeforceguild.com/temp-images/IRQs.gif" width="640" height="45[/img]
    I have since tried putting in a different sound card (another soundblaster, I think a 28 model) and installed its drivers but had the same problems. Im having a go at using the onboard sound though, just to see.Message Edited by cesario85 on 09--2005 06:57 PM
    Audigy shares IRQ with IDE controller and firewire controller. This is not good.
    NOTE: I suppose you're running your PC on "Standard PC" -mode (since IRQ's >5 not showing). If so, you can try to assign IRQ for the PCI slot, Audigy is installed, manually from BIOS. See your motherboard manual page 4-26.
    Can you check if your PC is running as "Standard PC" and not as "ACPI Uniprocessor PC" (Device Manager --> Computer). Make it "ACPI Uniprocessor PC" --> you get more IRQs (virtual) in use.
    NOTE: You may need to reinstall OS to get this done.
    Also you may need to enable APIC mode on BIOS.
    How To:
    A) Go to 'Device Manager' a short cut to get there is "Right Click" on the My computer Icon on your desktop (Control Panel --> System --> Hardware),
    B) Next click on 'Computer', then double click on 'Standard PC'. Then select 'Driver' and then 'Update Driver'.
    C) At this point you will see a screen pop up asking you to do this "Automatically" or Select 'Display a list of the known drivers for this device', - Choose this option.
    D) Next you will see - 'Show all hardware of this device class'. Now you can select "ACPI Uniprocessor PC" in the list shown in the window to the right.
    E) Now Windows needs/will re-start and re-install all hardware/ settings needed to run in this configuration.
    .jtpMessage Edited by jutapa on 09--2005 0:23 PM

  • I want to access the options in the context menu when clicking on a dropdown list in the bookmarks toolbar, but the context menu disappears when I try to click on one of the options. How can I keep the menu from disappearing?

    I have several dropdown lists in my bookmarks toolbar and would like to access the properties for some of the the items. This used to work fine. However, now, when I go to the list and place the cursor on a particular item, the context menu that is usually available on a right click disappears when I try to access one of the options. This is the menu that begins with Open. What can I do to regain this functionality? I really need the information in the Properties section. I'm using Firefox 3.6.8

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    You can use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    You have to close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    Also check the Mouse driver settings in the Control Panel.

  • DropDown list appl  is not working when integrated into Portal

    Hi all,
    In my WebDynpro appl, I have a dropdown list.Which sends data to backend(R/3). This appl is working fine, when it is integrtaed into portal, even before i select from dropdown am getting <b>Access Denied error</b>.
    Help me.
    Thanks a lot.

    Sounds like a PCD Permissions issue. Try assigning Read Access permissions to Everyone group for the following items:
    1) the Folder containing the iView and/or
    2) the application itself
    Read about how to assign permissions using the <a href="http://help.sap.com/saphelp_nw04/helpdata/en/f6/2604db05fd11d7b84200047582c9f7/frameset.htm">Permissions Editor</a>
    Read about <a href="http://help.sap.com/saphelp_nw04/helpdata/en/f6/2604f005fd11d7b84200047582c9f7/frameset.htm">Permissions</a>
    Message was edited by: Umair Salam

Maybe you are looking for

  • How to install os x mavericks after formatted hard drive?

    Hello. yesterday i bought an Macbook pro of someone else, and today i formatted the hard drive and when i want to reinstall OS X from (OS X Utilies), is asked for apple id and password. my own apple id is not working, and i cannot contact with him, w

  • XL - Reporter - To set current system date as the PARAMETER to run a report

    Hi Version : SAP 2007 B Patch : 10 Using the XL -  Reporter we had designed a stock report as per the client rquested format. In that Report , we use parameter function to get the start date and End date ( 2 PARAMETERS) for which the report should be

  • Help with Premiere Pro

    Hello, I started a project on a trial run of Premiere Pro CC, and then when it expired I purchased Premiere Pro as a CC, and month to month. Thursday I went to open it and got a "this project contained a sequence that could not be opened...." error,

  • Usb drive - ftp connects but no folders/files listed

    I am sure it is something on my end, but I can't get any folders/files to show up when i ftp to my conencted usb drive. In the linksys control panel, I have created users along with passwords. I created one user with read/write capabilities and anoth

  • All preference can be open except the "Acount" in System preference panel??

    Hi all, something wrong with My x10.3.9, pls help!! I just want to creat a new user but I can't open the "Acount"preference in System Preference panel,how to solve this??anyone can help?? many thanks, Jane