Sound/Wifi switch buttons not working

Hi,
I just booted my computer (pavilion dv6-1120ek) up today & the tactile board isn't working anymore. The light is glowing, but doesn't react to my touch.
Now I can only control sound via sound panel in Windows, but the real problem is the wi-fi, when I try to activate it through Windows, it says "Use the Switch on the front side of the computer, or function keys if available, to enable wirless capability on this computer".
Please if there's anything troubleshooting, that would be great !
Thanks in advance.
This question was solved.
View Solution.

Hi,
Try a Hard Reset as follows.
Shut down the notebook, unplug the AC Adapter and then remove the battery.  Hold  down the Power button for 30 seconds.  Re-insert the battery, plug in the AC Adapter and start the notebook.
Regards,
DP-K
****Click the White thumb to say thanks****
****Please mark Accept As Solution if it solves your problem****
****I don't work for HP****
Microsoft MVP - Windows Experience

Similar Messages

  • I have a problem with wifi in my iphone 4s, i already try everything and download latest version 7.1(11D167) but wifi switch is not working, its my humble request to Apple support team that pls resolve this problem as soon as possible because

    I have a problem with wifi in my iphone 4s, i already try everything and download latest version 7.1(11D167) but wifi switch is not working, its my humble request to Apple support team that pls resolve this problem as soon as possible because its a prestiage of Apple Company.
    Pls inform me how can i resolve the problem of wifi.

    You have to go to autherized iPhone agent.

  • TS3694 No sound and ringer button not working. I cannot play music but when I put my Iphone 4 on the dock it plays music. This happens when I updated my phone to IOS 6.1.3..The phone doesnt have any carriers we only used this just like Itouch. Please help

    Please help. Since I updated my Iphone4 to ISO 6.1.3...The ringer button not working, can't play any music (but ok with the dock), headphone sound is muffled. What can I do? I tried restoring and downgrading but it won't let me.

    Hi there,
    Thanks for reaching out to the community.
    Please help. Since I updated my Iphone4 to ISO 6.1.3...The ringer button not working, can't play any music (but ok with the dock), headphone sound is muffled. What can I do? I tried restoring and downgrading but it won't let me.
    It appears like you may have a hardware issue with your ringer button and internal speaker that came to light after the update. If you have already restored your iPhone back to factory settings using iTunes, you may need to have your phone serviced.
    Some potential good news... Check your headphone jack for lint. There may be enough to cause a muffled connection. You can try to blow it out with compressed air or very carefully pulling out any solid objects that may affect the connection.
    Best of luck!

  • Satellite A110 - WiFi switch is not working with new WiFi card

    Hello Everyone
    I have a problem with my Toshiba Notebook Satellite A110-178 (PSAB0E). I replaced the original WIFI card Intel 3945abg with Intel Link 5100 and on the new wifi card wifi hardware switch is not working.
    New wifi card is discovered and drivers working correct but when I try to scan for wifi networks with IntelPro/Wireless software I have message to turn on hardware switch but it's turn on and not work. On old wifi card swich is working correct - orange light is on. On new card light is off and swich is not working.
    Please help

    Hi
    Maybe you could enable the Wlan card using different way;
    Go to device manager -> WLan card properties -> Advanced tab
    There you could check if there is a option which would enables the WLan.
    Its worth a try
    Otherwise its a compatibility issue like suggested by PinkPanther
    I read in different threads that this could happens if there is a different pin assignment on miniPCI WLan card and this could not match with the miniPCI slot on the mobo...

  • Wifi switch is not working ios-7.1.1

    iphone 4s
    version: ios 7.1.1
    wifi & bluetooth switch is not working.

    Hello there, pragneshgajjar.
    The following Knowledge Base article provides some great information that can help you with your issue:
    iOS: Wi-Fi settings grayed out or dim
    http://support.apple.com/kb/ts1559
    Additional troubleshooting information is located in these articles as well:
    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/TS1398
    and
    iOS: Troubleshooting Bluetooth connections
    http://support.apple.com/kb/TS4562
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Flash MX - Sound on/off button not working properly.

    I used the tutorial found here. The 3 frames of my button are in a movie clip, within a keyframe in the main timeline. I used the code at the end in the tutorial for the first keyframe, so that the clip begins with music playing. However; I cannot get the buttons to work. I cannot stop the sound. Help please? I desperately need it.

    show the code you used.

  • AS3 sound pause/play buttons not working

    I have three buttons:play_btn, pause_btn; and stop_btn within a movie clip labeled controller.
    I can't make the play button start where the pause button is left. Everytime, the sounds starts from the beginning.
    Please help!
    var mySoundReq65:URLRequest = new URLRequest("sounds/pronouns.mp3");
    var mySound65:Sound = new Sound();
    var mySoundChannel65:SoundChannel = new SoundChannel();
    var lastPosition:uint= 0;
    var isPlaying:Boolean = new Boolean();
    var isPaused:Boolean= new Boolean();
    mySound65.load(mySoundReq65);
    controller.play_btn.addEventListener(MouseEvent. CLICK, playSound);
    controller.pause_btn.addEventListener(MouseEvent. CLICK, pauseSound);
    controller.stop_btn.addEventListener(MouseEvent. CLICK, stopSound);
    // play sound
    function playSound(event:MouseEvent): void{
    if(!isPlaying){
    mySoundChannel65 = mySound65.play();
    if(isPaused) {
    lastPosition=Math.floor(mySoundChannel65.position);
    mySoundChannel65 = mySound65.play(lastPosition);
    isPlaying=true;
    // pause sound
    function pauseSound(event:MouseEvent): void{
    if(isPlaying)
    lastPosition=Math.floor(mySoundChannel65.position);
    mySoundChannel65.stop();
    isPlaying=false;
    isPaused=false;
    else if (isPaused){
    mySoundChannel65=mySound65.play();
    isPlaying=true;
    isPaused=false;
    // stop sound
    function stopSound(event:MouseEvent): void{
    SoundMixer.stopAll();
    lastPosition=0;
    mySoundChannel65.stop();
    isPlaying=false;
    Thanks in advance for any help.

    Kglad:
    Thanks for replying again. I fixed my script and it's working fine now. The final script is as follows:
    var mySound65:Sound = new Sound();
    var mySoundChannel65:SoundChannel = new SoundChannel();
    var lastPosition:Number= 0;
    mySound65.load(new URLRequest("sounds/pronouns.mp3"));
    var isPlaying:Boolean = new Boolean();
    controller.play_btn.addEventListener(MouseEvent. CLICK, playSound);
    controller.pause_btn.addEventListener(MouseEvent. CLICK, pauseSound);
    controller.stop_btn.addEventListener(MouseEvent. CLICK, stopSound);
    // play sound
    function playSound(event:MouseEvent): void{
    if(!isPlaying){
    mySoundChannel65 = mySound65.play();
    isPlaying=true;
    if(lastPosition>0) {
    mySoundChannel65 = mySound65.play(lastPosition);
    controller.play_btn.visible=false;
    controller.pause_btn.visible=true;
    // pause sound
    function pauseSound(event:MouseEvent): void{
    lastPosition = mySoundChannel65.position;
    mySoundChannel65.stop();
    controller.play_btn.visible=true;
    controller.pause_btn.visible=false;
    // stop sound
    function stopSound(event:MouseEvent): void{
    SoundMixer.stopAll();
    lastPosition=0;
    mySoundChannel65.stop();
    isPlaying=false;
    controller.play_btn.visible=true;
    I added a couple of things:
    a) To avoid clicking the same button more than once, I made either pause or play button invisible.
    b) The solution was to include the following conditional in the play button:
    if(lastPosition>0) {
    mySoundChannel65 = mySound65.play(lastPosition);
    Thanks again!

  • After last update the split keyboard option is not working and side switch button option works opposite for mute and rotation lock

    After last update the split keyboard option is not working and side switch button option works opposite for mute and rotation lock.

    Hi
    A long story about your issue... I think the reason of this is why you have deleted some registry keys. If you delete something in the Windows registry you should really know what you do. You can damage the complete Windows system!
    So I think this is the reason why the keyboard doesnt anymore.
    In the user manual I have founded that the CD-ROM booting option is only available with optional optical disk drive.
    So for me it sounds like that your USB CD drive is not compatible to the notebook

  • My wifi button not working

    my wifi button not working. i can't working any body can help me

    Wi-Fi button greyed
    http://support.apple.com/kb/ts1559

  • HT201412 my ipod 4G power button and volume button not working after updated to ios6. i also experience wifi issue. so deppresing!

    my ipod 4G power button and volume button not working after updated to ios6.
    i also experience wifi issue. my ipod can't detect any wifi signal.
    so deppresing!
    what should i do?
    i can't put my ipod to sleep, can't adjust volume, can't shut off.
    should i update to ios 6.1?
    HELP

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:       
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    -  Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar
    When iOS 6.1 comes out I would update.

  • Sound on iPad is not working and I've tried all

    sound on iPad is not working and I've tried all.. Someone HELP me

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.)
    Check your settings. The iPads have a small switch on the right edge. It can be used as a rotation lock to keep the screen from automatically reorienting itself as you move around, but you need to have the tablet’s settings configured properly. That same switch, right above the volume buttons, can also be set to function instead as a mute button to silence certain types of audio.
    If the switch is set to work as a mute button, you can change its purpose to “screen-rotation lock” by tapping the Settings icon on the home screen. On the Settings screen, tap General on the left side, and on the right side of the screen flick down to “Use Side Switch to.” Tap to select Lock Rotation or Mute to set the button’s function. Even if you set the side switch for your preferred use, you can still mute the Mini or lock the screen. Just double-click the Home button, and when the panel of apps appears along the bottom edge of the screen, flick the row from left to right with your finger. Tap the icon on the far left side of the row to either lock the iPad’s screen or mute the iPad’s alerts, notifications and sound effects. Music, podcasts and video are not muted unless you turn the volume all the way down.
    iPhone: Can't hear through the receiver or speakers
    http://support.apple.com/kb/ts1630
    http://www.atreks.com/app-no-sound-on-ipad-4-%E2%80%93-what-to-do/
     Cheers, Tom

  • I had a repair done on my MacBook Pro and had to have a new hard drive installed. The Apple Auth Repair Shop then updated the OS from 10.6.8 to 10.7.5. Now my iPhoto v 9.2.3 will not open and it sounds like it will not work with this OS. Can you plea

    I had a repair done on my MacBook Pro and had to have a new hard drive installed. The Apple Auth Repair Shop then updated the OS from 10.6.8 to 10.7.5. Now my iPhoto v 9.2.3 will not open and it sounds like it will not work with this OS. Can you please advise?

    You may need many other updates to retain compatibility with Lion. I suggest you reinstall Snow Leopard. Unfortunately, you will need to erase the drive first. Be sure to backup your data if you haven't done so already.
    Clean Install of Snow Leopard
    Be sure to make a backup first because the following procedure will erase
    the drive and everything on it.
         1. Boot the computer using the Snow Leopard Installer Disc or the Disc 1 that came
             with your computer.  Insert the disc into the optical drive and restart the computer.
             After the chime press and hold down the  "C" key.  Release the key when you see
             a small spinning gear appear below the dark gray Apple logo.
         2. After the installer loads select your language and click on the Continue
             button. When the menu bar appears select Disk Utility from the Utilities menu.
             After DU loads select the hard drive entry from the left side list (mfgr.'s ID and drive
             size.)  Click on the Partition tab in the DU main window.  Set the number of
             partitions to one (1) from the Partitions drop down menu, click on Options button
             and select GUID, click on OK, then set the format type to MacOS Extended
             (Journaled, if supported), then click on the Apply button.
         3. When the formatting has completed quit DU and return to the installer.  Proceed
             with the OS X installation and follow the directions included with the installer.
         4. When the installation has completed your computer will Restart into the Setup
             Assistant. After you finish Setup Assistant will complete the installation after which
             you will be running a fresh install of OS X.  You can now begin the update process
             by opening Software Update and installing all recommended updates to bring your
             installation current.
    Download and install Mac OS X 10.6.8 Update Combo v1.1.

  • Location switching does not work on Vista

    Hi, my location switching does not work.  I have reinstalled my Access Connection several time but still does not work. I have several profiles and I need to switch manually depending on my location profile. My Access Connetion however seem to know the right profile (dot  next to the profile indicate it picked up the right wireless signal) but never connect to the profile
    Is there any Vista feature that is controlling the access as well? Do I need to disable? I remember the older version of Access Connection will ask to disaable some windows services when using Access connection.
    My Config is
    - R61
    - Intel(R) Wireless WiFi Link 4965AG. File Version 11.1.1.16
    - OS Vista 32 Business - with up to date patches
    - Access Connection 4.42 for Vista Build 7RCN38WW
    Thank you in advance for pointers

    Hi, my location switching does not work.  I have reinstalled my Access Connection several time but still does not work. I have several profiles and I need to switch manually depending on my location profile. My Access Connetion however seem to know the right profile (dot  next to the profile indicate it picked up the right wireless signal) but never connect to the profile
    Is there any Vista feature that is controlling the access as well? Do I need to disable? I remember the older version of Access Connection will ask to disaable some windows services when using Access connection.
    My Config is
    - R61
    - Intel(R) Wireless WiFi Link 4965AG. File Version 11.1.1.16
    - OS Vista 32 Business - with up to date patches
    - Access Connection 4.42 for Vista Build 7RCN38WW
    Thank you in advance for pointers

  • Music buttons not working in lock screen on my iPhone 4 after iOS7 update.

    After I updated my iPhone 4 to iOS7, the music buttons like PLAY, REWIND and FORWARD are not working in the locked screen as well as on swipe up menu. Any resolution please?

    hi there
    i had a problem with my wifes iphone 4s, today morning while travelling to work i changed a setting on repeat option and changed it to repeat artist, it was fine until when i finish my work and on my way back i found songs are not playing anymore, lots of stop signs next to my song list, play/pause button not working, album arkwork keep moving from one to another on its own, so after i reach home i try to do some research on Apple support communities, try to soft reset my phone closing all the apps on background didnt work, also note that control centre music player was not working as well. none of the solutions worked. after trying for two hours i found out that the trouble is in repeat options , so i changed it from repeat artist to repeat off. and the music start playing as usual, but i still have those stop buttons next to the songs i tried to play earlier. At least it fixed temporarily. please also note that in the meantime i tried to sync my phone with the pc and suddenly its start syncing all the songs again assuming there were no songs on my iphone.  so guys i think soft reset might not help all the time but try to remember what settings you changed recently and change it back to the original option, not sure ,but it might help.

  • My sounds and audio is not working. it's not in mute. help please

    i need help. my sounds and audio is not working. but it's not in mute button.

    Hi,
    Can you post back with the following details.
    1.  The full Model No. and Product No. of your notebook - see Here for a guide on locating this information.
    2.  The full version of the operating system you are using ( ie Windows 7 64bit ).
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

Maybe you are looking for

  • RoboHelp HTML 9.0.2.271 crashes when opening .htm files

    Hello. I'm using RoboHelp HTML 9.0.2.271. When opening a certain RH project (I have three that I access regularly), the project opens fine, but when I try to open any of the topic files, RH hangs/crashes. I can perform any other tasks in the project

  • Stupid ArrayLists... or is it me?!

    I have this code in my enqueue class:      int newNode = (_queue.size() + 1);      _queue.ensureCapacity( newNode );      _queue.add( newNode, node ); node is my own node class and queue is defined as ArrayList queue = new ArrayList(); I'm getting a

  • Editing Text in Dreamweaver Display View

    I have just started using Dreamweaver CS4. In older versions of Dreamweaver, I'm used to seeing text in Display view and being able to edit the text directly in Display view, rather than having to edit text in Code view. But when I'm trying to edit t

  • When setting the split-days to "every 15 minutes," the week and comparison views show incorrect time ranges for the day

    When I change the "split-days" interval time, under Options > Settings, to 15, or every 15 minutes, the week and comparison views don't show the correct time range for the day. <P> For example, if I click View to display the calendar and then click W

  • Runtime Error "Cannot find system in table file"

    I need assistance! I have a Blackberry Curve 8310 and have recently installed Version 4.5 I am trying to setup my synchronization.  I have followed the steps to setup my calendar to Outlook 2007.  It tells me Congratulations! You have successfully co