No Sound Or vol

I have A problem with Audigy 2 NX USB When I Load intervideo 5 Gold I get No Volume I have two turn off the sound via the remote than turn it back on. ( Than I get Volume) Note I leave the siund card on all the time
Johnny

It would have been helpful if you had just said that to begin with. The people at the repair center should know more about the situation that somebody on a support forum would know. If they believe it's a hardware problem, there isn't going to be anything that you can do about it.
You could try things like plugging and unplugging headphones a few times. If you use a dock, dock the iPad and undock a few times like with the earphones. Close all apps and see if that helps. Maybe an app is causing a problem. Is there any app that you installed right before the sound disappeared? If there is, try deleting that app.
The only other thing that I can think of would be to restore the device to factory settings and then restore from a backup, and if that doesn't work restore as new.

Similar Messages

  • Audigy 2 ZS - no sound, no vol ctrl, no "windows sounds" --Fixe

    Ive tested the card in another system. The card worked a couple weeks ago fine, then I had to RMA my video card and so didnt use the system for awhile.. now that Ive reinstalled the video card.. no sound.
    OS is XP Pro SP2.
    Ive followed the "clean sweep install" procedures to the letter in the creative knowledgebase..
    Ive installed the latest drivers for my card, downloaded them last night from the site..
    I have no sound, though if I open the volume control through the Control Panel I can hear the level of faint background hiss go up n down if I raise and lower the volume.. In Sounds and Audio Devices, Show Volume Control in Taskbar is selected.. but theres no Volume Control in the system tray. The weird bit is, if I go to the Windows Sounds tab, the little play arrow at the bottom that would let me listen to the sample sounds is greyed out..
    Device Manager tells me the Audigy WDM driver is operating ok..
    suggestions please?
    thanks,
    nopkMessage Edited by nopk on -29-200705:00 PM
    Message Edited by nopk on -29-200708:22 PM

    In case someone ends up with the same problem I did.. and doesnt want to waste 5 hours hunting for the answer like I did..
    This relates directly to no volume control appearing (despite turning the option on-off-on in Sounds and Audio Devices) and having --no windows noises-- ..
    http://www.johntimney.com/blog/No+Sound+On+YouTube.aspx
    cheers,
    nopk.

  • Livestream works with "livetest" only

    Hi everyone. I have a rather strange problem I need some help with.
    I can get my livestream working with the livetest application included in my FMS v3.0 application folder.
    When I try to connect to the livestream using any other flashplayer with the right settings, it simply wont work.
    I am currently using FLME 3 and FMS 3. Both are run on the same machine, hence connecting to "rtmp://localhost/live/livestream" as per default.
    The stream works flawlessly with the livetest swf, even tried with an external connection outside my LAN.
    Using Windows 7.
    I tried creating a new flashplayer in Flash CS4 and got the following error message when starting the .swf-file:
    SecurityError: Error #2028: The SWF-file Untitled-1.swf in the local filesysten cannot access the internet-URL rtmp://localhost/live/livestream.
        at flash.net::NetConnection/connect()
        at fl.video::NCManager/http://www.adobe.com/2007/flash/flvplayback/internal::nextConnect()
        at fl.video::NCManager/http://www.adobe.com/2007/flash/flvplayback/internal::connectRTMP()
        at fl.video::NCManager/connectToURL()
        at fl.video::VideoPlayer/http://www.adobe.com/2007/flash/flvplayback/internal::_load()
        at fl.video::VideoPlayer/load()
        at fl.video::FLVPlayback/doContentPathConnect()
    Any help in this matter would be greatly appriciated. Thanks in advance.

    This is the actionscript code I am using, this is from a prewritten player, not made by me.
    I am sure you will find what you need somewhere here, I am not good at coding.
    class player extends MovieClip {
        var video_playback:Video;
        var net_nc:NetConnection;
        var net_ns:NetStream;
        var sound:Sound;
        //variables
        var playStatus = false;
        var videoBytesLoaded;
        var videoBytesTotal;
        var videoTotalTime;
        var videoTimePlayed;
        var videoTotalTimeText;
        var videoTimePlayedText;
        var playState = true;
        var FLVuration;
        var file;
        var playComplete = false;
        static var FLVduration;
        static var replay = false;
        var vol = 50;
        var bg_mc:MovieClip;
        var snd:MovieClip;
        static var conn;
        static var con = "Connecting";
        var cont;
        var connect = false;
        function player() {
            net_nc = new NetConnection();
            net_nc.connect("rtmp://localhost/live/livestream"); // <--- This one is right
            net_ns = new NetStream(net_nc);
            video_playback.smoothing = true;
            video_playback.attachVideo(net_ns);
            net_ns.setBufferTime(1);
            snd.attachAudio(net_ns);
            sound = new Sound(snd);
            sound.setVolume(vol);
            statusnet();
        function onEnterFrame() {
            videoBytesTotal = net_ns.bytesTotal;
            videoBytesLoaded = net_ns.bytesLoaded;
            videoTimePlayed = net_ns.time;
            videoTotalTime = FLVduration;
            playComplete = replay;
            connect = conn;
            var minutes2:Number = Math.floor(videoTimePlayed/60);
            var seconds2 = Math.floor(videoTimePlayed%60);
            if (seconds2<10) {
                seconds2 = "0"+seconds2;
            videoTimePlayedText = minutes2+":"+seconds2;
            var minutes = Math.floor(videoTotalTime/60);
            var seconds = Math.floor(videoTotalTime%60);
            if (isNaN(minutes)) {
                minutes = 0;
                seconds = 0;
            if (seconds<10) {
                seconds = "0"+seconds;
            videoTotalTimeText = minutes+":"+seconds;
            if (replay) {
                playStatus = false;
                net_ns.seek(0);
                pauseVideo();
                bg_mc._visible = true;
            cont = con;
            //trace(videoTotalTime);                 
        function statusnet() {
            net_nc.onStatus = function(info) {
                if (info.code == "NetConnection.Connect.Success") {
                    //connect_mc.gotoAndStop(2);
                    conn = true;
                    con = "Server Connection success";
                if (info.code == "NetConnection.Connect.Rejected") {
                    con = "Server Connection Closed..Please refresh page";
                    replay = true;
                    conn = false;
                if (info.code == "NetConnection.Connect.Closed") {
                    con = "Server Connection Closed..Please refresh page";
                    replay = true;
                    conn = false;
                trace(info.code);
            net_ns.onStatus = function(infoObject:Object) {
                trace(infoObject.code);
                //con = infoObject.code;
                if (infoObject.code == "NetStream.Seek.Notify") {
                    playStatus = true;
                    /*bg_mc._visible = false;*/
                if (infoObject.code == "NetStream.Play.InsufficientBW") {
                    con = "Poor Bandwidth";
                    net_ns.setBufferTime(1);
                if (infoObject.code == "NetStream.Play.Start") {
                    con = "Playing";
                if (infoObject.code == "NetStream.Buffer.Full") {
                    con = "Stream Playing";
                    net_ns.setBufferTime(2);
                if (infoObject.code == "NetStream.Buffer.Empty") {
                    con = "Buffering";
                    net_ns.setBufferTime(1);
                if (infoObject.code == "NetStream.Play.Failed") {
                    con = "Stream Connection failed";
            net_ns.onMetaData = function(infoObject:Object) {
                FLVduration = infoObject["duration"];
        function playVideo() {
            bg_mc._visible = false;
            replay = false;
            if (playState) {
                net_ns.play("livestream");  // <--- This one is right
                playState = false;
            net_ns.pause(false);
            playStatus = true;
        function pauseVideo() {
            net_ns.pause(true);
            playStatus = false;
        function seekVideo(val:Number) {
            if (val<=videoTotalTime) {
                net_ns.seek(val);
        function setSound(val) {
            if (val>100) {
                val = 100;
            vol = val;
            sound.setVolume(vol);
    I have no idea why I get the security error on this one, its a livestream and should have no problem displaying this stream.

  • Pause function works, but I loose soundTransform

    I am stumped on pausing a sound and keeping the volume sound transform on play again.  Pause works, but when I play again it plays correctly from pause position; however, the sound transform vol reverts to 1 (100%)
    //soundbed vars
    var mySound:Sound = new theme();
    var sndVol:SoundTransform = new SoundTransform(0.2);
    var channel:SoundChannel = mySound.play(0,2,sndVol);
    /pause function
    musicOn_mc.musPause_mc.addEventListener(MouseEvent.CLICK,togMus);
    function togMus(e:MouseEvent) {
    var pausePosition:int = channel.position;
        if (musOn) {
            channel.stop();
            musicOn_mc.musPause_mc.gotoAndStop("off");
            musOn = false;
        } else {
    //THIS IS THE PROBLEM
           channel = mySound.play(pausePosition);
            // ???? any idea how I would re-apply the sound transform?
    //END OF PROBLEM
            musicOn_mc.musPause_mc.gotoAndStop("on");
            musOn = true;
    Thanks

    If you look in the Help you will see that each time you call play a new channel object is created and assigned the variable - so you lose the old transform. You just need to reassign it...
    channel.soundTransform = sndVol;

  • Nokia 5800XM : How to increase vol. alert sound wh...

    Hello all, I've installed Green Charging on my 5800XM, when the phone was fully charged, the application alert a mp3 sound but the volume heard so weak about 50%. In my profile setting (general) I've set it to full level.
    Anybody know, how to make increase vol so I can hear it loudly?

    There is no setting available for this...
    --------------------------------------------------​--------------------------------------------------​--------------------------------------------------​--If you find this helpful, pl. hit the White Star in Green Box...

  • New 2.4Ghz odd electrical buzzing & no vol up sound

    Hey guys. I just picked up the brand new base model MacBook Pro today (2.4GHz). I've noticed a few things already...
    When I scroll up and down on webpages (either in Safari or Firefox) I get a electrical buzzing sound that comes from the middle back (below the keyboard). I get this same sound, only louder, when I use the iTunes visualizer. I also have notices the sound a bit when launching an app (but they launch so quick I hardly notice it) and when i move the cursor back and forth in the dock.
    Any idea what this may be?
    Also, When I turn the volume up and down it doesn't make the neat volume "plop plop PLOP" sound that Macs usually make. What could this be about?
    Thanks everyone!

    While I am not sure this is the same buzzing you are talking about, I am also having buzzing issue right out of the gate with my new 2.5Ghz MBP. It is on the right side and is a constant low pitched buzzing that sounds either like a fan or hard drive. The best analogy to a sound would have to be the noise a loose wire, on a home audio system for example, sounds when not properly connected. This noise is pretty annoying in a quite environment and not something I could say sounds appropriate. I have never heard such a consistent noise in the in the nine years I have been using apple notebooks.
    I called apple care today and they said it is increased fan speed due to the smaller chips and higher processor speed, which is total bs considering I just had a 2.4Ghz MBP. I am slightly irked by the fact that customer support would come up with pretty pathetic explanation such as that and obviously bothered by this noise even more.

  • Firmware limited Sound Vol

    I read a while ago that the sound output level in the EEC ws different from the rest of the world due to some health and safety laws; ie dont blow yer ears up. Does anyone know what the firmware version and country is to get a hold of it please.

    The firmwares on the www.nomadworld.com site are the international versions and won't have the limited volume level of the EU versions. In fact I believe that any of the versions you find on the Creative websites are not limited, only the version pre-installed on the EU players are.
    You'll have to pick the firmware for your player yourself - you didn't mention which player you are using.
    PB

  • Sound distorted at medium-high vol

    When playing music, I have to keep the main volume slider under about 25% or the sound gets very distorted. This is fine most of the time, but if in order to listen to music semi-loud I have to turn my speaker all the way up. Is there anything I can do to be able to go about about 25% on the volume control without distortion? I have a sound blaster li've 24-bit, on a dimension 500 with a clean install of windows xp. Thanks

    I highly doubt the speakers are the source of your problem... I would blame either the sound card or the game. The game might have it's volume turned to max, and that might be distorting the signal. Or it could be with the card, with it being turned up. It could also be that you're hearing the infamous "snap crackle pop" which can sometimes sound like distortion. That's not really distortion at all, just the card being retarded. I'm not sure of any fix for that as of yet.
    distortions happens when the signal exceeds the signal to noise ratio of what it's being sent through. If the signal has a dB range of 00 Db, and the sound card (for instance)has a signal to noise ratio of only 85 dB, then you'll get distortion. This means that the sound waves are literally being cut off at their peaks...so they somewhat resemble square waves. Distortion can occur at low volumes, too. For example, if you could indefinitely turn up your system volume, and kept your speaker volume very low, you would have distortion, but the sound still wouldn't be loud. You would be distorting the sound at the sound card, and that sound is then passed on to whatever device is next int he chain.
    SO in short, find what's distorting, if something is indeed distorting.

  • [SOLVED] Alsamixer always on 0 vol. when plugging in USB sound card

    Hi.
    I have another newbie question!
    This time my problem is about sound.
    Every time I plug in my USB sound card, alsamixer forgets its previous volume and sets it to 0.
    I tried "alsactl -f /var/lib/alsa/asound.state store" as said in the wiki for storing the settings, even tried to delete the file before doing so.
    I even tried simply "alsactl store" or something like that.
    No matter how many times I set it to  100, alsa just forgets it. In pavucontrol I see the volume meter showing that the sound is okay (I guess I mean the sound stream?), but I have to start alsamixer every time I want to use my USB sound card. And because it's a notebook, I usually plug/unplug it like 5 times a day, so keeping it plugged in is not an option.
    Just because of curiosity I tried it on a Fedora 15 live and it was working like a charm so I know there is a solution, I just can't find it.
    What should I do?
    Thanks in advance!
    Last edited by fema (2011-06-20 13:06:55)

    Sorry, but I failed.
    First, I tried "ls -ltr /dev/$(find /dev -type f)", output:
    [martin@faye ~]$ ls -ltr /dev/$(find /dev -type f)
    ls: cannot access /dev//dev/shm/pulse-shm-1778335859: No such file or directory
    -r-------- 1 martin users 67108904 Jun 18 21:10 /dev/shm/pulse-shm-1367368951
    -r-------- 1 martin users 67108904 Jun 18 21:11 /dev/shm/pulse-shm-1888875678
    -r-------- 1 martin users 67108904 Jun 18 21:11 /dev/shm/pulse-shm-4171981922
    -r-------- 1 martin users 67108904 Jun 18 21:11 /dev/shm/pulse-shm-926606275
    -r-------- 1 martin users 67108904 Jun 18 21:11 /dev/shm/pulse-shm-84854996
    -r-------- 1 martin users 67108904 Jun 18 21:44 /dev/shm/pulse-shm-2211428343
    The first line seems to be wrong, so the command modified to this: "ls -ltr $(find /dev -type f)", output changed to this:
    [martin@faye ~]$ ls -ltr $(find /dev -type f)
    -r-------- 1 martin users 67108904 Jun 18 21:10 /dev/shm/pulse-shm-1367368951
    -r-------- 1 martin users 67108904 Jun 18 21:11 /dev/shm/pulse-shm-1888875678
    -r-------- 1 martin users 67108904 Jun 18 21:11 /dev/shm/pulse-shm-4171981922
    -r-------- 1 martin users 67108904 Jun 18 21:11 /dev/shm/pulse-shm-926606275
    -r-------- 1 martin users 67108904 Jun 18 21:11 /dev/shm/pulse-shm-84854996
    -r-------- 1 martin users 67108904 Jun 18 21:26 /dev/shm/pulse-shm-1778335859
    -r-------- 1 martin users 67108904 Jun 18 21:44 /dev/shm/pulse-shm-2211428343
    To be honest, I don't even know what I should see here... :S
    Typing "udevadm control --log-priority=debug" haven't told me anything, so I don't know if it was okay or not.
    Afterwards I started Fedora live, went to the udev rules, the only suspicious file was "90-alsa-tools-firmware.rules", but it was about loading some firmware for some specific sound cards.
    After reading that, I tried this rule:
    SUBSYSTEM=="usb", RUN+="/root/alsa-usb.sh"
    - It was a failure.
    After searching in the above mentioned link and the Arch udev Wiki I tried this:
    KERNEL=="sd*", SUBSYSTEM=="usb", RUN+="/root/alsa-usb.sh"
    - Failure as well. Kernel "sd*" because I don't know what else.
    Then I google'd some more and the closest I could find was the following:
    KERNEL=="audio1", SUBSYSTEM=="sound", RUN+="/root/alsa-usb.sh"
    - Failure.
    At this point I don't know what to do. (Strange, eh?)
    I guess my udev rule is incorrect in 2 points: kernel and subsystem. How could I check those? I tried lspci, because I've heard about it somewhere, but I don't think it is useful for me.

  • Distorted sound at high vol

    This usually only occurs while playing games. If my system volume is set at max, the sound either cuts out or is distorted. Keeping the system volume around medium (and using speaker volume) works well enough that this is not really a big deal. But I would still like to know if this is normal. I have an Audigy notebook card with latest drivers.

    I highly doubt the speakers are the source of your problem... I would blame either the sound card or the game. The game might have it's volume turned to max, and that might be distorting the signal. Or it could be with the card, with it being turned up. It could also be that you're hearing the infamous "snap crackle pop" which can sometimes sound like distortion. That's not really distortion at all, just the card being retarded. I'm not sure of any fix for that as of yet.
    distortions happens when the signal exceeds the signal to noise ratio of what it's being sent through. If the signal has a dB range of 00 Db, and the sound card (for instance)has a signal to noise ratio of only 85 dB, then you'll get distortion. This means that the sound waves are literally being cut off at their peaks...so they somewhat resemble square waves. Distortion can occur at low volumes, too. For example, if you could indefinitely turn up your system volume, and kept your speaker volume very low, you would have distortion, but the sound still wouldn't be loud. You would be distorting the sound at the sound card, and that sound is then passed on to whatever device is next int he chain.
    SO in short, find what's distorting, if something is indeed distorting.

  • Visualizing sound over a period of time/comparing 2 audio files graphically

    Hello, this question might be a bit abstract, but I would love it if anybody could offer some insight or ideas. Apologies if there is anything related to this on the forum--I did a search but couldn't find anything. I suppose it's not entirely Logic related, but it's what I've been working with and don't really know where else to turn. Okay, so here goes:
    I'm studying graphic design, and as part of a project, I need to create some information graphics to basically represent visually two similar sound sources over a period of a couple seconds. Basically, one will be an audio sample of a three second drum intro, and the second will be an approximation of that using a sampler (Logic's EXS24).
    Now I have an idea in my head that I would like to explore, but I can't figure out how to get the raw data I need to illustrate it. I think what could work for me would be to take a certain number of samples, say about thirty per second, and get the raw data, say like, the amplitude of each frequency at that exact moment. Then I could draw or graph that out. And layer them. I'm sort of envisioning something along the lines of this:
    I'm not really trying to be too scientific or accurate in this. It's more an attempt to sort of create a physical, or almost 3D representation of the sound, and give a sense of the physical form and time in a 2D graphic. In doing so, I hope to show some difference between the original sample (old analog recording, drenched in reverb, etc) and the dry MIDI-based one.
    I'm not sure if any of this is making sense, but I hope someone might be able to offer some ideas. I've been going crazy trying every single Mac shareware audio analyzer product I can find. The problem seems to be that most of them are designed for real-time audio analysis, or that they don't really offer a way to export the data over a period of time (I think I found one that can export something that Excel can read, but it's just for one split second of audio, and not a duration.)
    Sorry this is so convoluted. I'm sort of new to the audio game. Oh ya, and I have Logic Pro 7 and also have Ableton Live 5 so that's what I'm working with. Thank you so much!

    call fadeSoundF() and pass the movieclip where the sound is instantiated, the sound, the end volume and the number of seconds over which you want to fade.  nothing below should be changed.
    function fadeSoundF(mc:MovieClip,s:Sound,vol:Number,sec:Number):Void{
    clearInterval(mc.fadeI);
    var volumeInc:Number = vol-s.getVolume()/(10*sec);
    mc.fadeI=setInterval(fadeF,100,mc,s,volumeInc,vol);
    function fadeF(mc:MovieClip,s:Sound,inc:Number,endVol:Number):Void{
    s.setVolume(s.getVolume()+inc);
    if(Math.abs(s.getVolume-endVol)<inc){
    clearInterval(mc.fadeI);

  • My ipad is no longer playing sounds on some games

    My ipad is not playing sounds for most of my games but for apps like netflix it does. i have checked settings and vol is all the way up. i also noticed that when i slide the bar to unlock after it goes into rest mode i don't hear the clicking sound anymore. anyone have anything like this happen? i tried shutting it down and started it back up its still not working

    You have system sounds muted.
    If you lose sounds for keyboard clicks, games or other apps, email notifications and other notifications, system sounds may have been muted.
    System sounds can be muted and controlled two different ways. The screen lock rotation can be controlled in the same manner as well.
    Settings>General>Use Side Switch to: Mute System sounds. If this option is selected, the switch on the side of the iPad above the volume rocker will mute system sounds.
    If you choose Lock Screen Rotation, then the switch locks the screen. If the screen is locked, you will see a lock icon in the upper right corner next to the battery indicator gauge.
    If you have the side switch set to lock screen rotation then the system sound control is in the task bar. Double tap the home button and in the task bar at the bottom, swipe all the way to the right. The speaker icon is all the way to the left. Tap on it and system sounds will return.
    If you have the side switch set to mute system sounds, then the screen lock rotation can be accessed via the task bar in the same manner as described above.
    This support article from Apple explains how the side switch works.
    http://support.apple.com/kb/HT4085

  • No sound or recording in windows 8.1 on parallels 9 OS 10.9.2

    I really hope someone can help me here.
    I have a MacBook air 13" (purchased new in 2014), running Mavericks Mac OS 10.9.2, parallels desktop 9, build 9.0 24229 and windows 8.1, all installed in march 2014.
    built in microphone and speakers on macbook air (no mic-in option)
    sound and recording audio work fine on mac OS
    No sound out or mic recording in on the Windows 8.1 side when all audio drivers set to parallels audio drivers
    When set to 'built-in' or 'default' for speakers and/or mic in Windows I get an echo even from ambient sound which gets louder without me doing anything and I have to switch to parallels audio drivers to stop the echo.
    I am unable to record, or hear audio or Skype on the Windows 8.1.
    Everything is ticked green, device drivers say they are installed, up to date and working fine.
    When try to do the 'set up mic' option, nothing happens when I do the test recording, whichever type of mic I try to set up (headset/desktop/other)
    Apple Store Genius bar said they cant help as problem isn't with the Apple side but with 3rd party software
    Parallels say I am past the 30 day support and will have to pay for any further tech support
    Microsoft say that because it is an Apple device it isn't their problem.
    I am stuck, having bought the machine specifically to record into a Windows based programme and have followed all troubleshooting option on all three websites.
    Can anyone help please?

    I reinstalled Parallels Tools. I followed kb 112477, checked sound on my Mac (it is set as output - internal speakers - built in; input - internal microphone - built in)
    Went into Parallels desktop/preferences/hardware/sound
    'connected' is ticked
    When setting to input-built in mic and output-built in output I get an increasing crescendo echo from ambient sound, and I have to press mute to stop the sound
    Same increasing crescendo echo happens when I set input and output to default input and default output respectively.
    Audio configuration checked in Windows virtual machine - shows parallels audio controller. another section in device manager shows that audio inputs and outputs are set to Parallels audio controller for microphone and speaker.
    The MBA has built in mic, no separate mic input, but it seems to be interfering with a loop of sound
    KB article 114055 - sound is fine on Mac OS X side, no yellow exclamation marks. As stated in response to trying KB 112477, with built-in as input and output I get a crescendo of ambient echo, only way to silence it is to mute sound on keyboard.
    3rd solution (Parralels, Maheeshwar)
    Please try the steps as provided below which may help you in resolving the issue :
    1. Start virtual machine.
    2. Take a Snapshot (virtual machine -> Take Snapshot).
    3. Press "cmd"+"R" combination, type 'regedit' and Return (Enter) to run Registry Editor.
    4. Locate and highlight 'HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\C lass\{4d36e96c-e325-11ce-bfc1-08002be10318}' key and look for 'UpperFilters' value in the right box.
    5. Highlight 'UpperFilters' value and delete it:
    6. Expand 'HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\C lass\{4d36e96c-e325-11ce-bfc1-08002be10318}' key and check every subkey for 'KS' value. If you find it, delete it.
    7. Re-install Parallels Tools (in Parallels Desktop menu bar: Virtual Machine -> Reinstall Parallels Tools) and reboot your virtual machine.
    Also: - Start -> in the search box type "Control Panel" -> in View by choose "Small icons" -> Sound - Browse to "Communications" tab - Select "Do Nothing" - Press "OK" -
    In the recording tab -> Right-click Microphone -> Properties -> switch to Volume tab and set it to 100% -In the Lync options also set Microphone vol. to the maximum.
    Okay, so this last option made the mic work! Thanks, I did see that solution but it looked too complicated to try - I don't know what I've done, but it has worked and the mic works now.
    BUT, when I playback there is the same crescendo echo - it seems to record sound, play it out and record what's playing at the same time
    So now the problem is
    "eching sound when audio played" - I will re-post under a different heading.
    Thanks for the help,

  • Vol issues

    i have a 80 g classic and when the vol is all the way down i still get sound from them does anyone have the same problem or a fix is it a fermware problem or is my ipod already broken

    i have the same problem as the thread starter..
    however a friend of mine has the same ipod and the same problems !
    so i guess it's a software issue that will be fixed with the (next) firmware update..
    Till then we'll wait and see...
    if anyone else has this problem please.. do your thing..

  • Problem with Sound Visualization

    Hello I'm trying to add sound visualization to my flash mp3 player. I found some samples but when adding the script to my project it doesn't work.
    The code for my mp3 player is:
    import caurina.transitions.*;
    volume_mc.slider_mc.buttonMode = true;
    var xOffset:Number;
    var xMin:Number = 0;
    var xMax:Number = volume_mc.track.width;
    var yOffset:Number;
    var yMin:Number = 0;
    var yMax:Number = list.masker.height - list.sb.thumb.height;
    var myXML:XML;
    var thb:Thbs;
    var myThumbs:XMLList;
    var totalThumbs:Number;
    var thumbHeight:Number=50;
    var i:uint = 0;
    var preloader:LoaderAnim;
    var yCounter:Number = 0;
    var container:MovieClip;
    var musicReq:URLRequest;
    var music:Sound = new Sound();
    var sc:SoundChannel;
    var currentSound:Sound = music;
    var pos:Number;
    var songPlaying:Boolean = false;
    var songlist:XMLList;
    var currentIndex:Number = 0;
    mc_sound.mute.visible=false;
    var xmlLoader:URLLoader = new URLLoader();
    ///////////////////////////PLAYLIST//////////////////
    function initMediaPlayer(e:Event):void{
         myXML = new XML(xmlLoader.data);     
         myThumbs = myXML.*;
         totalThumbs = myThumbs.length();
         trace("The total thumbs are "+totalThumbs);
         createContainer();
         callThumbs();
    xmlLoader.load(new URLRequest("audio.xml"));
    function createContainer():void{
         container = new MovieClip();
         list.ch.addChild(container);
         container.y = 0;
         container.x = 0;
         container.buttonMode = true;
    function onOver(e:MouseEvent):void{
         var t:Loader = Loader(e.target);
         Tweener.addTween(t, {alpha:.5, time:1});
    function onOut(e:MouseEvent):void{     
         var t:Loader = Loader(e.target);
         Tweener.addTween(t, {alpha:1, time:1});
    function callThumbs():void{
              var thumbURL = myThumbs[i].@thumb;
              var thumbTitle:String = myThumbs[i].@title;
              var thumbDesc:String = myThumbs[i];
              trace("Loading "+thumbURL);
              trace("Title "+thumbTitle);
              trace("Desc "+thumbDesc);
              var thumbLoader = new Loader();
              thumbLoader.load(new URLRequest(thumbURL));
              thumbLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded);
              thumbLoader.name=i;
              thumbLoader.x=5;
              thumbLoader.y=5;
              thb = new Thbs();
              container.addChild(thb);
              thb.thb_title.htmlText = thumbTitle;
              thb.thb_desc.autoSize = TextFieldAutoSize.LEFT;
              thb.thb_desc.htmlText = thumbDesc;
              thb.y = (thumbHeight+2)*yCounter;
              preloader = new LoaderAnim();
              preloader.x = thb.x + 20;
              preloader.y = thb.y+ 20;
              container.addChild(preloader);
              yCounter++;
    function thumbLoaded(e:Event):void{
         var thbx:Loader = Loader(e.target.loader);
         thb.addChild(thbx);
         thbx.addEventListener(MouseEvent.MOUSE_OVER, onOver);
         thbx.addEventListener(MouseEvent.MOUSE_OUT, onOut);
         thbx.addEventListener(MouseEvent.CLICK, nextSong);
         container.removeChild(preloader);
         i++;
         if (i<totalThumbs){
              callThumbs();
         if (i==totalThumbs){
              startAudio();
              activateScroll();
    xmlLoader.addEventListener(Event.COMPLETE, initMediaPlayer);
    ///////////////////////////////////////AUDIO//////////////////////////
    function startAudio():void{
         songlist = myXML.*;//this is the same as myXML.*;
         trace("This is the first song "+songlist[0].@song);
         musicReq = new URLRequest(songlist[0].@song);
         music.load(musicReq);
         sc = music.play();
         sc.addEventListener(Event.SOUND_COMPLETE, nextSong);
         activateSoundVolume();
    next_btn.addEventListener(MouseEvent.CLICK, nextSong);
    prev_btn.addEventListener(MouseEvent.CLICK, prevSong);
    pause_btn.addEventListener(MouseEvent.CLICK,pauseSong);
    stop_btn.addEventListener(MouseEvent.CLICK,stopSong);
    function nextSong(e:Event):void
         trace("The btn clicked was "+e.target.name);
         if(e.target.name!="next_btn"){
              currentIndex=e.target.name;
         }else{
              if (currentIndex < (songlist.length() - 1))
                   currentIndex++;
              else
                   currentIndex = 0;
         var nextReq:URLRequest = new URLRequest(songlist[currentIndex].@song);
         var nextTitle:Sound = new Sound(nextReq);
         sc.stop();
         sc = nextTitle.play();
         songPlaying = true;
         currentSound = nextTitle;
         sc.addEventListener(Event.SOUND_COMPLETE, nextSong);
    function prevSong(e:Event):void
         if (currentIndex > 0)
              currentIndex--;
         else
              currentIndex = songlist.length() - 1;
         var nextReq:URLRequest = new URLRequest(songlist[currentIndex].@song);
         var prevTitle:Sound = new Sound(nextReq);
         sc.stop();
         sc = prevTitle.play();
         songPlaying = true;
         currentSound = prevTitle;
         sc.addEventListener(Event.SOUND_COMPLETE, nextSong);
    function pauseSong(e:Event):void
         pos = sc.position;
         sc.stop();
         songPlaying = false;
         play_btn.addEventListener(MouseEvent.CLICK,playSong);
    function playSong(e:Event):void
         if(songPlaying == false)
              sc = currentSound.play(pos);
              sc.addEventListener(Event.SOUND_COMPLETE, nextSong);
              songPlaying = true;
              play_btn.removeEventListener(MouseEvent.CLICK,playSong);
    function stopSong(e:Event):void
         sc.stop();
         pos = 0;
         songPlaying = false;
         play_btn.addEventListener(MouseEvent.CLICK,playSong);
    ///////////////////////////////VOLUME/////////////////////////////
    function activateSoundVolume():void{
         volume_mc.slider_mc.addEventListener(MouseEvent.MOUSE_DOWN, sliderDown);
         stage.addEventListener(MouseEvent.MOUSE_UP, sliderUp);
    function sliderDown(e:MouseEvent):void{
         stage.addEventListener(MouseEvent.MOUSE_MOVE, sliderMove);
         xOffset = mouseX - volume_mc.slider_mc.x;
    function sliderUp(e:MouseEvent):void{
         stage.removeEventListener(MouseEvent.MOUSE_MOVE, sliderMove);
    function sliderMove(e:MouseEvent):void{
         volume_mc.slider_mc.x = mouseX - xOffset;
         if(volume_mc.slider_mc.x<=xMin){
              volume_mc.slider_mc.x = xMin;
         if(volume_mc.slider_mc.x>=xMax){
              volume_mc.slider_mc.x = xMax;
         var vol:Number = volume_mc.slider_mc.x*.01;
         var st:SoundTransform = new SoundTransform(vol,0);
         sc.soundTransform = st;
         trace("The volume is "+vol);
         if(vol==0){
              mc_sound.mute.visible=true;
         }else{
              mc_sound.mute.visible=false;
         e.updateAfterEvent();
    //////////////////////////SCROLLBAR////////////////////
    function activateScroll():void{
         list.sb.thumb.buttonMode = true;
         list.sb.thumb.addEventListener(MouseEvent.MOUSE_DOWN, thumbDown);
         stage.addEventListener(MouseEvent.MOUSE_UP, thumbUp);
    function thumbDown(e:MouseEvent):void{
         stage.addEventListener(MouseEvent.MOUSE_MOVE, thumbMove);
         yOffset = mouseY - list.sb.thumb.y;
    function thumbUp(e:MouseEvent):void{
         stage.removeEventListener(MouseEvent.MOUSE_MOVE, thumbMove);
    function thumbMove(e:MouseEvent):void{
         list.sb.thumb.y = mouseY - yOffset;
         if(list.sb.thumb.y<=yMin){
              list.sb.thumb.y = yMin;
         if(list.sb.thumb.y>=yMax){
              list.sb.thumb.y = yMax;
         var sp:Number = list.sb.thumb.y/yMax;
         var ymove:Number = -sp*(list.ch.height-list.masker.height);
         trace(ymove);
         Tweener.addTween(list.ch, {y:ymove, time:1});
         e.updateAfterEvent();
    Can anyone help me create a simple sound visualization?

    Yes it works. The script I found is:
    var ba:ByteArray = new ByteArray();
    addEventListener(Event.ENTER_FRAME, loop);
    function loop(e:Event):void{
         SoundMixer.computeSpectrum(ba, true);
         graphics.clear();
         graphics.lineStyle(1, 0xFFFFFF);
         for(var j:uint=0; i<256; i++){
              var num:Number = -ba.readFloat()*200 + 40;
              trace(num);
              graphics.drawCircle(i*2, num, 1);
    The thing is that I don't know where to put it on my script. If I put it like that there is an error:
    TypeError: Error #1010: A term is undefined and has no properties.
    at audio_fla::MainTimeline/callThumbs()
    at audio_fla::MainTimeline/initMediaPlayer()
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/onComplete()

Maybe you are looking for

  • Can no longer get album artwork

    Just got a new iPhone and wanted album artwork for all the songs I have loaded. Last night I found that some of the older songs I had loaded in my library had no album listed, so I would just find the correct album name, add it into the "Get Info" se

  • Hard disc not recognised on hp 625

    hi all, i have an hp 625 laptop which ive had for a month or so.went to power it up yesterday (working perfectly the night before,powered down properly etc.) and no joy  8 ( i get a windows logo briefly then it just restarts with same again. if i use

  • Web Logic Server Administration Console

    Hi All, I loged into Admin Console of Oracle Web Logic Server Administration Console For DeployingP6WebServices:: Created aWebLogicdomain for the WebServices application. DeployingP6WebServicesintotheWebLogicdomain. giving an error: In Deployments Ta

  • Numbers-freezing columns and rows

    Can you freeze columns and rows in numbers although they are not designated as headers?

  • Question about drop shadow...

    Hi, I need the drop shadow to still be visible around a cut out box shape. Can anyone tell me how to achieve this effect? (Please see attached picture). It may involve a compound clipping path but I'm not sure... I would need detailed step by step in