Broken volume control

I bought the closure zipper Sansa clip not but a month ago and everything works fine...

Until yesterday, when I went to use it, I realized that the volume would not turn upward. Inspect that closely, it appears that the volume control is broken and will not do anything but lower the volume and now is permanantly stuck on mute and I see no other way to lower or raise the volume. Everything on the player seems to work perfectly well. Its very frustrating thing that little makes this useless player.

Please let me know if anyone knows how to solve this

It cannot be "fixed". Return it to your dealer for another (if possible), or contact the Support technology SanDisk to 1-866-SANDISK (726-3475) on a replacement under warranty.

Tags: SanDisk Sansa

Similar Questions

  • Volume Control Center does not work during a Skype call

    Volume Control Center does not work during a Skype call.

    That's exactly what I got after upgrade to 9.0.2 and 6.3 of Skype iOS

    I use Control Center to adjust the volume in applications. I can't use the volume button of material - it's broken.

    I thought that I could go back to the previous version of Skype (because I remember the working software volume slider), but the AppStore suggests none of the previous versions. I can't find another Skype.ipa than 6.3 anywhere. I tried to restore my ipad support Skype, but the program hangs for hours saying "Installation."

    Any help, please?

    Well, found a solution for the broken button by activating AssistiveTouch under settings > general > accessibility > AssistiveTouch.

  • my volume control on my taskbar does not work... why?

    Volume controls in Control Panel work very well... it's just that the bottom right does not work?

    Hi Rick Carabin77,

    1. what operating system is installed on the computer?
    2. don't you make changes to the computer before the show?

    Method 1
    I suggest you to run the fixit from the following link:

    Difficulty of broken desktop shortcuts and common system maintenance tasks
    http://support.Microsoft.com/mats/system_maintenance_for_windows/en-us

    Method 2
    Turn off and turn the volume of the notification area icon.

    (a) click the start ORB

    (b) in the search line type TASKBAR and STARTMENU

    (c) of the list of programs select bar TASKS and STARTMENU

    (d) select the tab under the system section icons and Notification area, uncheck the option next to VOLUME.
    (e) restart the computer.
    (f) after the computer restarts, select the tab area of Notification and under the system icons section, place a check next to VOLUME.

    (g) click apply and then click OK

  • I need to reinstall Windows XP games and also my icon for the volume control in the taskbar... all are missing

    Remote assistance in cleaning up my computer files broken (probably accidentally) deleted all my games that come with XP and also removed my volume control icon in my taskbar, which I just can't go back.

    You can install the games of Panel > Add / Remove Programs > Add/Remove Windows components> Accessories and utility . Boulder computer Maven
    Most Microsoft Valuable Professional

  • Bose and microphone volume control does not not with 3.5 mm adapter lightning

    Is it possible to do the volume control button and the microphone works with the adapter supplied with the iphone 7?

    Try to go to apple and see what they say because you might need new wireless headphones or those that fall into the adapter of the lightning.

    Hope this helped you a bit.

  • Earpiece volume control

    All started to use the brand new pair of iPhone headphones.  The earpiece volume control works with my iPad 2 but not with my iPhone 6.  I tried to restart the phone and looked at the settings but nothing stood out.  The Atria will work fine with the phone. I can control the volume with the phone.  Just impossible to control the volume with headphones or make other controls work. Any ideas?

    Fixed.  Cleaned jack carefully with a paper clip.

  • IOS App Remote - Volume control issues

    OK, so I downloaded the app recently released for Apple TV IOS. Everything works as expected, except the inconsistent Volume control.

    I have two Vizio TVs in my house - E701i-A3 and models M401i-A3. The volume via IOS app works perfectly on my E701i-A3 - pressing iPhone volume buttons triggers change in volume on the soundbar attached to this set.

    No luck with my M401i-A3 not set - by pressing the volume iPhone buttons does cause changes in local ringtone volume iPhone... that tells me something is not right with audio control EAC between ATV4 and the TV set. I do not use soundbar with this set - internal speakers only.

    Both sets are running the latest firmware of Vizio and CEC/audio is enabled. No problem to control the volume or turn the sets/turn off via the remote Siri material.

    Kind of ideas here... anyone have any ideas as to what the problem may be with my Vizio M401i-A3 defined? Someone at - it got IOS volume remote control works with other models of TV?

    Volume control requires HDM - CEC to ensure compatibility. It is quite possible that only one of your TV is compatible.

  • the volume control on background music

    I finished my first iMovie composed of video clips.  I have two questions:

    How to lower the volume of the background music for a few seconds only

    How to disappear the music of a song before the end of the song.

    Thank you

    Hi, grosen25,

    There are two ways to adjust the volume in the latest version of iMovie (10.1.2).

    One way is to select the audio clip, and then click on the speaker icon in the toolbar at the top of your screen.   This will reveal a scroll bar

    allows you to adjust the volume from 0 to 400%.

    Another way is to first click on the settings button in the right middle of your screen and select 'Show waveforms' in the dialog box that results.  Then select the audio clip.  You will see a horizontal volume control line that runs through the clip.  Place your cursor on the line and move it up or down to increase or decrease the volume.

  • How can I reinstall the volume control for vista/firefox?

    I've always had control of volume at the bottom of my computer vista laptop and it is now gone. How can I get that back?

    See this - http://www.vistax64.com/vista-general/121116-help-my-volume-control-gone.html

  • HTML5 audio player has no volume control

    G ' Day,.

    The HTML5 audio player not support since apparently version 11 volume control. We are now at version 26. Is there a plan to restore a volume control

    Here is a variation on the script. Two major differences. First, it inserts a little bubble with a character and only shows the cursor when you hover over that. Second, it is designed to add the controls next to any audio < > without any customization, so there is a chance that it will work on your PBX page, assuming it is the space for the cursor.

    var players=document.getElementsByTagName("audio"); for (var i=0; i<players.length; i++){var slider=document.createElement("input"); slider.setAttribute("type", "range"); slider.setAttribute("min", "0"); slider.setAttribute("max", "100"); slider.setAttribute("step", "10"); slider.setAttribute("value", players[i].volume*100); slider.setAttribute("style", "width:100px;height:2em;display:none"); slider.setAttribute("oninput", "this.parentNode.previousSibling.volume=this.value/100"); var sNew=document.createElement("span"); sNew.innerHTML='<span style="color:#fff;font-weight:bold;vertical-align:top">&nbsp;&Delta;&nbsp;</span>'; sNew.appendChild(slider); sNew.setAttribute("style","padding-top:1em;margin-left:6px;background-color:#aaa;border-radius:8px"); if(players[i].nextSibling) players[i].parentNode.insertBefore(sNew, players[i].nextSibling); else players[i].parentNode.appendChild(sNew); sNew.setAttribute("onmouseover", "this.children[0].style.display='none'; this.children[1].style.display='inline'"); sNew.setAttribute("onmouseout", "this.children[0].style.display='inline'; this.children[1].style.display='none'; this.children[0].blur(); this.children[1].blur(); this.blur()");}
    

    Does it work?

  • the volume control is grayed on and no sound

    I use a Mac Pro, purchased in mid-2010, with a 2.8 GHz Quad-Core Intel Xeon Processor, 13 GB 1066 MHz DDR3 ECC memory, which I've recently updated to El Capitan version 10.11.4.

    I had a few glitches to mail to work but got there. Then I realized that I had no sound. The volume control is grayed and the button is at MAX, but there is no sound.

    I can't try to find where a control can be hidden which let me re - turn on the volume. Nobody knows what it takes to turn on the sound?

    Hello

    Try resetting your NVRAM memory.

  • Satellite Pro U400-SP2804 - Microphone is not listed in the volume control

    Hello
    I can't listen to the microphone from the speaker, because does not appear micro in the Volume control

    On the start menu< control="" panel="">< audio="" devices="">< advanced="" properties="">< volume="" control="">< properties="">

    Mixing: Conexant HD Audio output

    Volume controls:
    Volume control
    Wave
    SW
    CD

    But n - t apeear option microphone or line

    My sound card is Conexant High Definition SmartAudio 221

    I was reading, and I think the problem is: it doesn't have a key in the windows registry value, someone help me, thanks

    I did: reinstall the driver, uninstall the driver and put another card sound, change the operating system, works wth 2 sound cards, portable computer, import registry values from the other laptop. but does not solve the problem.

    My problem appears with Winodws XP 2002 SP3 and Windows Vista professional

    Hello

    The port microphone or line is not because you are looking for this audio * output parameters.
    The microphone is a device of entry so it s not who listed there.

    If you go into the volume settings > options > properties you can switch to HD Audio input.
    Now you can change the volume of the microphone! :)

    Good bye

  • Satellite P300 - steering wheel Volume control writing a series of C

    Good day to you all,.

    I have a satellite P300 and the wheel of the front volume control no longer work as before. Unable to adjust the volume, unless openind sound icon control. In addition, if I try to adapt (volume) while working with a word processor, a series of C is written on the page to the screen.
    What is happening and how to get it working properly again?

    Thanks a lot
    JCP34

    Hi JCP34,

    I found a similar thread on the same behavior on Satellite A300 and the solution was very simple: it's the dirt on the inside and with jet of compressed air, blow it. After that, it s working again.

    Check this thread:
    http://forums.computers.Toshiba-Europe.com/forums/thread.jspa?MessageID=155238𥹦

  • Qosmio G35-600 - controls volume control

    Hello

    I have a Qosmio G35-600. I could be wrong, but I'm sure that my volume control provides advanced controls and I had access to the entry monitor, which is now gray. I reinstalled my SigmaTel Audio Driver (qg600audiox.exe), but who return advanced controls or to provide access to the input screen. The volume control is Microsoft volume control version 5.1 (Build 2600.xpsp_sp3_odr.101209 - 1647: Service Pack 3).

    Any ideas?

    Thanks in advance

    Hi watson123,

    What input screen you mean exactly?

    On the right side of the Qosmio G35, you have the volume control wheel to adjust the volume. Using this wheel, you can increase or decrease the volume of the internal speakers or headphones but it doesn t offer more options. It s just to adjust the volume.

    The sound card is in the Device Manager correctly and you have any yellow exclamation points or unknown devices?

  • HP slate 7 volume control does not

    Volume control stopped working a few days ago.  She slips back on the screen and volume button forces to do the same.  The volume never changes.

    Hello and welcome to the HP support community!

    Have you tried to reboot the device?

    You see a headphones icon in the corner?  Try to insert and remove a headphone jack.

    Does the device he uses a Bluetooth audio device?  Turn BlueTooth off, restart the device, and then try again.

    WyreNut

Maybe you are looking for

  • image previews are different in the finder

    The problew appears in the screenshot. All images in the same look of different file in preview mode - some with border, some with shade, some appear not at all.  All the photos are saved from Photoshop with the same settings. Why is - it so and how

  • Satellite Pro A120: SD card cannot be detected.

    Whenever I insert a card SD in my Satellite Pro A120 Windows does nothing, nothing changes, it's as if I don't plug. I found that if I reinstall the driver of SD card while the card is connected, then it will be detected, but windows doesn't detect n

  • Question of L50 - B 12 battery of satellite

    I used this laptop for 4 months since I bought it in the store (with warranty ofc), but today when I loaded my laptop computer fully(100%), I unplugged the adapter and I noticed that the level of the battery changed to 95%. I guess that this kind of

  • IRQL_NOT_LESS_OR_EQUAL 0x0000000A after installing Windows updates

    Blue screen with the following information:IQRL_NOT_LESS_OR_EQUAL STOP: OxOOOOOOOA I get this error for the second time in two months on a Lenovo R61 laptop after installation of the latest version of Windows Update there is very little time.  Someti

  • Can I download Windows XP Backup and Restore Wizard?

    When I bought my computer I did not receive the Windows XP disks.  I want to make a backup of the entire system on an external hard drive, as opposed to the individual file backup.  All the help files I've found say to insert the XP disc.  Then I fou