No sound - help

Hello, I have a laptop Inspiron 1501 and there is no sound from the speakers... I don't know how it happened... I'm not very technical, can anyone advise?


Tags: Dell Laptop

Similar Questions

  • Windows XP no sound help,

    I have windows xp and no sound, when I checked in Control Panel "sounds and devices or audio", he said that it was working properly, but whenever I play video or music is not there no sound coming. I install and download a lot of things, but will not work.

    Please help me

    I have windows xp and no sound, when I checked in Control Panel "sounds and devices or audio", he said that it was working properly, but whenever I play video or music is not there no sound coming. I install and download a lot of things, but will not work.

    Please help me

    ====================================
    The following links may be worth a visit:

    No sound in Windows
    http://Windows.Microsoft.com/en-us/Windows/help/no-sound-in-Windows
    (Win XP / Vista / 7)

    (307918) how to troubleshoot sound problems in Windows XP
    http://support.Microsoft.com/kb/307918/en-GB

  • I have windows xp d310 and no sound help

    no help sound dell a310 and that they want to work with me to resolve the problem.

    The following article might be worth a visit:

    Windows 7 - no sound in Windows
    http://Windows.Microsoft.com/en-us/Windows/help/no-sound-in-Windows
    (valid for XP - Vista - 7)

  • Windows media CTR. No sound, but the rest of the programs have sound - help

    I can listen to music through WMP, listen & play YouTube videos on the internet with sound. the only time where the sound does not work is when I use windows media center?

    Hello

    1 are there any changes or updates made on the computer?

    2. the problem occurs for all video and sound clips in windows media center?

    I suggest you to return the item and check if it helps.

    Audio problems in Windows Media Center

    http://Windows.Microsoft.com/en-us/Windows-Vista/troubleshoot-audio-problems-in-Windows-Media-Center

    See also:

    When you use Windows Media Center to play live TV or a DVD on a Windows Vista-based computer, you do not hear sound after you wake the computer from sleep mode

    http://support.Microsoft.com/kb/942364

    Let us know if it helps.

  • No sound help please - driver is not compatible with my version of windows

    Original title: no noise don't please help

    While UN-installing some I have programs no longer use i accidentally uninstalled my driver audio soundmax. I have a dell optiplex gx520 with the 32-bit version of windows 7 Home premium. I tried to find and re - install the driver sound max and I find one and download each time it says that the driver is not compatible with my version of windows. I would really like my back her again. also, I went into the start menu and click on the sound devices and game controllers, and all that shows is my webcam. I know that I have an internal sound card and a speaker and I know that they do not work, but when I searched for the pilot, he was gone and so I know that it is uninstalled by me when I remove other programs, I no longer use. any help you could give me would be greatly appreciated. Thank you.

    Hi Bill,

    See the link to install the drivers for the Dell OptiPlex GX520. The drivers are not available for the Windows 7 operating system. Therefore, I suggest you to install in compatibility mode and check if it works:

    Make older programs in this version of Windows

    http://Windows.Microsoft.com/en-us/Windows7/make-older-programs-run-in-this-version-of-Windows

    Let us know the results.

  • Video appearing as a sound, help

    When I download my video clips, they appear as a "audio" and just sound and no video clip

    Please help, I am new on this

    When you download to?  YouTube, Vimeo, somewhere else?  The files play fine on the computer before you download?

  • Addition with sound help please

    additional assistance with the sound.

    I have a noise in the way of step 1 that I want to play as soon as the movie starts. the user is able to control by pressing the pause key

    pPaused property

    on beginSprite me

    pPaused = 0

    end

    on mouseUp me

    If pPaused then sound (1) .play)

    of another sound (1) .pause)

    pPaused = not pPaused

    end

    I have other sounds in songs (2 sounds) and nursery rhymes (4 sound) with the behavior added to the buttons below etc..

    on mouseDown me

    Sound (5) .play (member ("ABCSong"))

    end

    on endSprite me

    Sound (5). Stop()

    end

    This stops the sound when I get out of the framework, but does not stop the noise in the channel from step 1.

    I don't want to play 1 sound a perferly of time when the button is pressed and stop

    could someone please indicate how to solve this problem. only using lingo of basic/intermediate I need to understand.

    any help is very appreciated

    Thank you

    Try:

    on mouseDown me

    Sound (1) .pause)

    Sound (5) .play (member ("ABCSong"))

    end

    on endSprite me

    Sound (1). Play()

    Sound (5). Stop()

    end

  • Discoloration Flash movies and sound-HELP NEEDED

    Hey guys I need help

    first of all if you want to help me could u please visit this site

    http://www.thetimemovie.com/

    This site is what I want to do

    Note pictures of discoloration which can be controlled and the sound bar at the bottom left


    Any help would be GREATLY frequented b


    Thanks in advance

    BUTCH101

    PS: email [email protected] if you have any info thanks

    What I see in the test site is that the "sound bars" are not sync was at all. They are just a looped clip which stops in diagonal form when you click it. And the sound is not really be stopped, when you click on the bars. Rather, the ActionScript is actually turn the volume down, little by little. The sound plays always continuously, you just can't hear it. This is evident in the fact that when you restart the sound, he not pick up where you left it, but at the point where it would have been anyway, had you not clicked the button.

    I think that the sound is set to streaming and can thus be processed image by image. So, your quest is to have someone (more knowledgeable than me) provide examples of code that would begin to reduce the volume of the sound increments object as the film passes through the images. Something like:

    {onFrame (95)
    mySound.setVolume (80);
    }
    {onFrame (110)
    mySound.setVolume (60);
    }
    {onFrame (120)
    mySound.setVolume (40);
    }
    {onFrame (130)
    mySound.setVolume (20);
    }
    {onFrame (140)
    mySound.setVolume (10);
    }
    {onFrame (150)
    mySound.setVolume (0);
    }

    Obviously, you would use numbers of images, but a variable that represents the current frame compared to the plot of the film was on when you clicked the button.

  • Sound help

    I need to make a sound play when I press a key. any help would be good. I'm using the mouse click buttons to trigger sounds. Make an interactive drum set.

    file .fla HERE

    Press a key or press a button? Aid has lots of good info, FWIW.

    Here is a small sample of play a sound library if you press the button "a":

    var mySound = new Sound();
    var myListener:Object = new Object();

    myListener.onKeyDown = function () {}
    var k = Key.getAscii ();
    If (k == 65 | k == 97) {}
    mySound.attachSound ("Sunda");
    mySound.start ();
    }
    }

    Key.addListener (myListener);

    --
    Dave-
    www.offroadfire.com
    Developer leader
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.Adobe.com/communities/experts/

  • PC - TV sound help... URGENT

    Hi guys, set up my PC on my new Sony TV today, via the blue cable (the one that you connect the PC to a monitor), and when I tried to watch community earlier, there is no sound

    EDIT: I think that the cable is RGB or something

    So, how can I get my TV to play the sound from my PC via this cable?

    Thank you

    Hi guys, set up my PC on my new Sony TV today, via the blue cable (the one that you connect the PC to a monitor), and when I tried to watch community earlier, there is no sound

    EDIT: I think that the cable is RGB or something

    So, how can I get my TV to play the sound from my PC via this cable?

    Thank you

    =======================================
    Perhaps the following links will propose a few ideas:

    How to connect my computer to a TV
    http://hookpctotv.com/

    How to connect your PC to your TV
    http://en.kioskea.NET/FAQ/Sujet-228-how-to-connect-your-PC-to-your-TV-set

    PC to TV cables and adapters
    http://www.SVIDEO.com/PC2TV.html
    Volunteer - MS - MVP - Digital Media Experience J - Notice_This is not tech support_I'm volunteer - Solutions that work for me may not work for you - * proceed at your own risk *.

  • sound help AS3

    Hey people,

    I'm a guy more old as2, switch to full as3. Now, I want to do everything I can in as3. My final hurdle is healthy. I can get sound to play, but I can't add a delay to the sound. So, when I picked up the item to drag, it lifts and I delay using a Tween Oregon to make it appear more life like. I would like to delay the sound piece for the duration of the item down. I have attached the section of the code. Any ideas would be great. I know that I could add sound space for the mp3 itself but as part of my project that would be crazy.

    var I: Object;

    function grabMe(e:MouseEvent):void {}

    = me e.currentTarget;

    me.removeEventListener (MouseEvent.MOUSE_DOWN, grabMe);

    me.startDrag ();

    e.target.parent.addChild (e.target)

    var tweeny:Tween = new Tween (me, "y", Regular.easeIn, me.y, me there - 75,.04, true);

    var scaley: Tween = new Tween (me, "scaleY", Regular.easeIn, me.scaleY, 1.3,.09, true);

    var scalex:Tween = new Tween (me, "scaleX", Regular.easeIn, me.scaleX, 1.3,.09, true);

    var my_shadow:DropShadowFilter = new DropShadowFilter();

    my_shadow.color = 0x000000;

    my_shadow.blurY = 3;

    my_shadow.blurX = 3;

    my_shadow.angle = 90;

    my_shadow.alpha =. 2;

    my_shadow.quality = 15;

    my_shadow.distance = 75;

    var filtersArray:Array = new Array (my_shadow);

    me.filters = filtersArray;

    stage.addEventListener (MouseEvent.MOUSE_MOVE, Drachma);

    stage.addEventListener (MouseEvent.MOUSE_UP, dropMe);

    }

    function dropMe(e:MouseEvent):void {}

    stage.removeEventListener (MouseEvent.MOUSE_UP, dropMe);

    stage.removeEventListener (MouseEvent.MOUSE_MOVE, Drachma);

    me.stopDrag ();

    me .filters = undefined;

    var tweenydown:Tween = new Tween (me, "y", Regular.easeIn, me.y, me there + 90,.4, true);

    var scaley: Tween = new Tween (me, "scaleY", Regular.easeOut, me.scaleY, 1,.9, true);

    var scalex:Tween = new Tween (me, "scaleX", Regular.easeOut, me.scaleX, 1,.9, true);

    me.addEventListener (MouseEvent.MOUSE_DOWN, grabMe);

    my_channel = my_sound.play)

    }

    function dragMe(e:MouseEvent):void {}

    e.updateAfterEvent ();

    Using TweenLite or Max, you just make your tween and add an onComplete parameter as follows:

    TweenMax.to (me, 2, {onComplete, scaleX:2:playSound});})

    This will tween me is scaleX for more than 2 seconds and call the playSound function when it ends...

  • Need help with audio sound

    Hello, my sound has stopped working one day to the other & no idea why. When I go to my info to speaker icon it says "No Audio" and the volume control is greyed out so cannot set or click on anything that is.   Anyone would be interested to help me with this remote computer assisstance through please?  Thank you.

    Ilona

    Hello Ilona,

    Thanks for joining us out on Microsoft Community Forums.

    It seems that the sound has stopped working suddenly. We will analyze and identify the cause of the problem.

    He would be grateful if you could answer a few questions to refine the question.

    1. What is the brand and model of the computer?
    2. are you aware of changes to the computer before the show?
    3. do you receive any error messages?

    This problem normally occurs when the audio drivers are corrupt. We will perform some troubleshooting steps and try to resolve the issue.

    Method 1:

    Run the fixit from Microsoft Fixit article and if that helps.

    Diagnose and automatically repair audio playback problems:

    http://support.Microsoft.com/mats/AudioPlayback/

    Method 2:

    If the problem persists, you mast perform the steps described in the article.

    No sound in Windows

    http://Windows.Microsoft.com/en-us/Windows/no-sound-help#no-sound=Windows-XP&V1H=win8tab1&V2H=win7tab1&V3H=winvistatab1&v4h=winxptab1

    Hope this information helps. Get back to us if you have more queries about Windows.

  • LOST laptop computer SOUNDHave WITH WINDOWS. His lost after automatic updates for VISTA operating system. Don't KNOW HOW TO GET sound BACK. CAN SOMEONE HELP ME?

    Have a laptop with the Windows Vista operating system.  After an automatic update of 3 steps software, I had sound.available and can not hear anything when I use Media Player.   I don't know how to get the sound to my laptop.  Can someone give me some advice on what I can do to get

    my sound back on my laptop?

    Thanks for your help, I appreciate it.

    Rmartinehp

    Hi rmartinehp,

    Thanks for posting your query in Microsoft Community.

    I understand that you are facing the issue with sound, after the automatic updates, you have lost the sound.

    Before you start the troubleshooting steps, I need the information required.

    1. this problem occurs with particular application?

    2. (http://windows.microsoft.com/en-US/windows7/Back-up-the-registry)

    I suggest you to see the links and check.

    No sound in Windows

    http://Windows.Microsoft.com/en-us/Windows/no-sound-help#no-sound=Windows-Vista&V1H=win8tab1&V2H=win7tab1&V3H=winvistatab1&v4h=winxptab1

    See also:

    Tips for solving common audio problems

    http://Windows.Microsoft.com/en-us/Windows-Vista/tips-for-fixing-common-sound-problems

  • sound not working - can't lift, I tried to fix it with Mgr. device but it did not help.

    I have trouble with Device Manager, but it did not help. I'm afraid to win 10 because of new problems, I do not want to download.

    Hello

    See if that helps you.

    Do a system restore to a date before you had this problem:

    "How to make a restore of the system in Windows 8 and 8.1" . "

    http://www.eightforums.com/tutorials/4692-System-Restore-how-do-Windows-8-a.html

    __________________________________________

    Or go to the website of your computer/laptop or the manufacturer of the sound card > looking for drivers and downloads Section > equip your laptop model number > find your operating system > download and install the drivers etc you will find Audio.

    Also read this information from Microsoft and follow the steps there.

    'No sound in Windows.

    http://Windows.Microsoft.com/en-us/Windows/no-sound-help#no-sound=Windows-8&V1H=win8tab1&V2H=win7tab1&V3H=winvistatab1&v4h=winxptab1

    See you soon.

  • Volume / sound

    The sound on my laptop no longer works... with or without a helmet. How can I fix it? Help!

    The sound on my laptop no longer works... with or without a helmet. How can I fix it? Help!

    Hello

    The steps to fix are similar for most operating systems.

    Adjust this for your information.

    See if that helps you.

    Do a system restore to a date before you had this problem:

    "How to make a restore of the system in Windows 8 and 8.1" . "

    http://www.eightforums.com/tutorials/4692-System-Restore-how-do-Windows-8-a.html

    __________________________________________

    Or go to the website of your computer/laptop or the manufacturer of the sound card > looking for drivers and downloads Section > equip your laptop model number > find your operating system > download and install the drivers etc you will find Audio.

    Also read this information from Microsoft and follow the steps there.

    'No sound in Windows.

    http://Windows.Microsoft.com/en-us/Windows/no-sound-help#no-sound=Windows-8&V1H=win8tab1&V2H=win7tab1&V3H=winvistatab1&v4h=winxptab1

    See you soon.

Maybe you are looking for

  • Increasing memory Satellite A100-036

    Hello! I would like to increase the memory of my Satellite A100-036 (psaan), as 1 GB appears to be insufficient to run Vista. The problem is, I can't know which would support my A100. Now I have 512 x 2 Samsung DDR2 (533). I'm sure than 1x2GB (DDR2,

  • Satellite C660 - display driver stopped responding

    I have a 3 years old Toshiba Satellite C660 and whenever I play on the Sims 3 the game freezes and the screen flashes white and displays an error message that reads 'Display driver no longer' and sometimes he eventually even be a blue screen saying t

  • Y40 hibernation without giving low battery notification

    I bought laptop 1 year ago. Recently I clean installed windows on my lenovo Y40 10. Laptop will now put into hibernation when the battery reaches 30% without first informing! All my drivers are up to date. I fade this problem what should I do? pls he

  • need graphic card

    I have Compaq SG3153IL desktop. I have install need for speed Hot Pursuit 2010 in my pc. But there is an error in video graphics card because I have no graphics card. So please tell me what graphics card hould I have to install in my pc. My budget is

  • "Enter the password or power on password"

    Same problem as all the world, but my stop code is 96019538