Play multiple sounds

Hello!
How can I play multiple sounds at once please?
I tried with 2 separate soundChannel vars but they still override eachother.
Thanks

play both sounds through the same sound channel? eg:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
    <mx:Script>
        <![CDATA[
            private var sound:Sound;                       
            private var soundChannel:SoundChannel;   
            private function play1():void
                sound = new Sound();
                sound.load(new URLRequest("sounds/1.mp3"));
                sound.addEventListener(Event.COMPLETE, songLoaded);
            private function play2():void
                sound = new Sound();
                sound.load(new URLRequest("sounds/2.mp3"));
                sound.addEventListener(Event.COMPLETE, songLoaded);
            private function songLoaded(e:Event):void
                try
                    sound.removeEventListener(Event.COMPLETE, songLoaded);   
                    soundChannel = sound.play(0);
                catch(err:Error)
                    trace(err)
        ]]>
    </mx:Script>
    <mx:Button x="140" y="313" label="Play sound 1" click="play1()"/>
    <mx:Button x="229" y="326" label="Play sound 2" click="play2()"/>
</mx:Application>

Similar Messages

  • Lost the ability to play multiple sounds!

    Since switching to archlinux, the only problem that I am unable solve is the inablity to play multiple sounds.. i had this problem when i first installed archlinux. back then i tried installing pulseaudio and found that cumbersome. eventually went back to alsa and found magically i could play sounds at once..
    now again it has reoccurred ever since the module init tools upgrade. i have tried reconfiguring alsa with alsaconf with no avail.
    on trying to play sound file from the 2nd app i get a knotif saying
    The audio playback device HDA Intel (ALC880 Analog) does not work
    Falling back to .
    some of the conf files i have:
    [$]> grep MODULES /etc/rc.conf
    # MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
    # NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
    MODULES=(e100 mii slhc snd-hda-intel snd-mixer-oss snd-pcm-oss snd-hwdep snd-page-alloc snd-pcm snd-timer snd soundcore !snd-pcsp)
    [$]> grep DAEMONS /etc/rc.conf
    # DAEMONS
    DAEMONS=(syslog-ng dbus @network netfs crond alsa hal cups @openntpd)
    [$]> cat /etc/modprobe.d/modprobe.conf
    # /etc/modprobe.d/modprobe.conf (for v2.6 kernels)
    [$]> cat /etc/modprobe.d/sound.conf
    alias snd-card-0 snd-hda-intel
    alias sound-slot-0 snd-hda-intel
    [$]> cat /etc/libao.conf
    default_driver=alsa10
    [$]> lspci | grep -i audio
    00:1b.0 Audio device: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) High Definition Audio Controller (rev 03)

    djszapi wrote:It seems to good. Did you try pulseaudio now too ?
    no i dont want to. it doesn't seem right with kde

  • Installed Ensoniq AudioPCI SB32 - now I cannot play multiple sounds simultaneou

    I started with an el-cheapo on-board sound card (SiS 708). I just installed a Creative Ensoniq AudioPCI SB32 and can no longer play multiple sounds simultaneously.
    For example: if I am playing an MP3, WAV, or otherwise an audio file that uses the sound card's WAV output, other sounds such as the Windows event sounds or sounds assigned in my FTP application. I *could* do this without a problem using the SiS 708 card.
    More info:
    - I did leave the SiS 708 installed. Could this be conflicting?
    - I set the default I/O sound devices to the Creative Ensoniq in the control panel
    How can I play multiple simultaneous audio again?Message Edited by epp_b on 0-07-2006 07:48 PM

    I have tried the following things:
    - Uninstalling and disabling the onboard sound
    - Installing the latest version of DirectX
    I can't think of anything else (there are no updated Creative drivers that I can find)

  • Loading and Playing Multiple Sounds

    I have written a loadSound function which handles loading and playing multiple sounds. This function works fine when I call this function in another keyframe i.e. the frame in which the function is not written. But when I call the function on the same frame in which the function is written the sounds gets mixed up. For example the function is written in 1st keyframe. If I call this function in 2nd, 3rd and 4th keyframe (with different sounds) it works fine. But when i call the same function in 1st, 2nd and 3rd keyframe it all gets messed up.
    In 1st keyframe the sound plays properly. When I move to 2nd Keyframe the 2nd sound plays. But when I move back to the 1st keyframe the 2nd and 1st keyframe sounds all get mixed up. This doesn't happen when I call the function in 2nd, 3rd and 4th keyframes.
    Below is my function:
    import flash.events.Event;
    import flash.media.Sound;
    import flash.net.URLRequest;
    import flash.events.ProgressEvent;
    import flash.events.IOErrorEvent;
    import flash.errors.IOError;
    import flash.media.SoundChannel;
    import flash.media.SoundMixer;
    import flash.events.TimerEvent;
    import flash.utils.Timer;
    import flash.display.MovieClip;
    import flash.media.SoundTransform;
    stop();
    var s:Sound;
    var localSound:SoundChannel = new SoundChannel();
    var req:URLRequest;
    var loadedPct:uint;
    var currentFrameArr:Array = ["One","Two","Three"];
    var urlArr:Array = ["sound/m01_t01_s01.mp3","sound/m01_t01_s02.mp3","sound/page10_11.mp3"];
    function loadSnd(currentFrm:String)
    s = new Sound();
    s.addEventListener(ProgressEvent.PROGRESS, onSoundProgress);
    s.addEventListener(Event.COMPLETE, onSoundLoaded);
    s.addEventListener(IOErrorEvent.IO_ERROR, onIOError);
    localSound.stop();
    for (var i:uint=0; i<currentFrameArr.length; i++)
      if (currentFrm == currentFrameArr[i])
       req = new URLRequest(urlArr[i]);
    s.load(req);
    function onSoundProgress(evt:ProgressEvent):void
      loadedPct = Math.round(100 * (evt.bytesLoaded / evt.bytesTotal));
      trace("The sound is " + loadedPct + " % loaded");
    function onSoundLoaded(evt:Event):void
      localSound = s.play();
    function onIOError(evt:IOErrorEvent):void
      trace("The sound could not be loaded: " + evt.text);
    Call to this function in different frames:
    loadSnd("One");
    loadSnd("Two");
    etc
    If I pass the parameter 'One' in loadSnd it plays the 1st element in urlArray, 'Two' 2nd element and so on.
    I have been scratching my head since long over this.
    Can anybody please pinpoint the error.

    Got the solution. The SoundMixer.stopAll(); statement did the trick. The complete workable function is pasted below:
    import flash.events.Event;
    import flash.media.Sound;
    import flash.net.URLRequest;
    import flash.events.ProgressEvent;
    import flash.events.IOErrorEvent;
    import flash.errors.IOError;
    import flash.media.SoundChannel;
    import flash.media.SoundMixer;
    import flash.events.TimerEvent;
    import flash.utils.Timer;
    import flash.display.MovieClip;
    import flash.media.SoundTransform;
    stop();
    var s:Sound;
    var localSound:SoundChannel = new SoundChannel();
    var req:URLRequest;
    var loadedPct:uint;
    var currentFrameArr:Array = ["One","Two","Three"];
    var urlArr:Array = ["sound/m01_t01_s01.mp3","sound/m01_t01_s02.mp3","sound/page10_11.mp3"];
    function loadSnd(currentFrm:String)
      s = new Sound();
      s.addEventListener(ProgressEvent.PROGRESS, onSoundProgress);
      s.addEventListener(Event.COMPLETE, onSoundLoaded);
      s.addEventListener(IOErrorEvent.IO_ERROR, onIOError);
      SoundMixer.stopAll();
      localSound.stop();
      for (var i:uint=0; i<currentFrameArr.length; i++)
      if (currentFrm == currentFrameArr[i])
      req = new URLRequest(urlArr[i]);
      break;
      s.load(req);
    function onSoundProgress(evt:ProgressEvent):void
      loadedPct = Math.round(100 * (evt.bytesLoaded / evt.bytesTotal));
      trace("The sound is " + loadedPct + " % loaded");
    function onSoundLoaded(evt:Event):void
      localSound = s.play();
    function onIOError(evt:IOErrorEvent):void
      trace("The sound could not be loaded: " + evt.text);
    Calling the function
    loadSnd("One");
    loadSnd("Two"); etc

  • Flash Player playing multiple sound feeds at once...even when browser is closed

    I recently updated my Flash Player to 11.3 (most recent version). When I go to a site which utilizes Flash (e.g. YouTube), I will start the video, and then about 10 seconds later, I get multiple sound feeds at the same time. They all sound like commercials, or tv channels. Even when I close my browser, the sound continues. When I open my sound mixer, there is a "program" listed of "winrscmde" which is playing the various audio channels all at once. When I go into the task manager, "winrscmde" shows as a svchost.exe *32. When I stop that service the sound stops. It will start again when i access a flash site. When I uninstall Flash Player 11.3, this stops.
    I'm running Windows 7 - 64 bit with latest updates. IE 9.0.8112.16421
    Any help would be appreciated.

    Well, I think I fixed the problem.
    I found this topic:
    http://www.bleepingcomputer.com/forums/topic442928.html
    About the second post down, the poster recommends downloading TDS killer as winrscmde.exe is disquised as svchhost.exe in the \windows\system32 folder (you have to click on "Properties", then "Details" tab and check the original filename...if it's bogus, it'll say winrscmde.exe as the original name).
    I also ran the aswMBR program as well as FixTDSS (http://www.symantec.com/content/en/us/global/removal_tool/threat_writeups/FixTDSS.exe).
    That seemed to fix the issue. Just reinstalled Flash and don't get the same issues. The svchost.exe in the \windows\system32 folder is legit!
    Hope that helps anyone else with the same problem.

  • My midi keyboard is playing multiple sounds when I press a key. Like when I play a note on the piano preset, there is a snare hit or a shaker that plays along withe the note. Is there a setting I need to change to get rid of it?

    this recently happened, never had the problem before. I've restored my midi keyboard to factory settings but the problem persists. I go into garage band and click on the piano preset, but when I play a note it plays multiple instruments. Say I hit the C note On my keyboard, it plays the C note, but along with it is a snare hit or a shaker. And this is for every note. It seems as though the keyboard has its own setting, but I've tried resetting it. Again it's never happens before, just recently is there a way to get rid of that background sound? It's very dufficu to make music with multiple instruments playing in one note!

    If it happens again the make sure that you aren't suppressing website colors.
    Make sure that you allow pages to choose their colors and that you haven't enabled High Contrast in the Accessibility settings.
    *Tools > Options > Content : Fonts & Colors > Colors : [X] "Allow pages to choose their own colors, instead of my selections above"
    *https://support.mozilla.org/kb/Options+window+-+Content+panel
    *http://kb.mozillazine.org/Website_colors_are_wrong
    *http://kb.mozillazine.org/Websites_look_wrong

  • Sometimes Sound does not play when playing multiple Sounds simultaneously

    This is also a best practices question, too.
    I built a game that uses a lot of different sounds (about 48 I think). Many are short, less than a second, and a few are longer, music cues, etc.
    Example problem: Sometimes when there are a lot of sounds playing and a music cue is suppose to fire, the music sound doesn't play. I made a trace on the function that plays the music sound, and that function does execute. Are there limits on how many sounds can be playing simultaneously? (This doesn't only happen to a particular sound , could be any sound)
    Also, as far as best practices, If there is a sound that could be played multiple times simultaneously, should  a new instance of that sound be created each time its played? If there is only one instance of that sound, will the previous playing of that sound be cancelled when called to play again?
    Thanks,
    Adam

    Thanks.
    I guess I could add  channels to an array as they start and remove them from the array when they are done playing to keep track. That way when an important sound, like a music cue, is suppossed to play I can check the array stop enough sounds to allow the music cue to play. Hopefully it wont be too much overhead with all those listeners.

  • How do you play multiple sounds simultaneously and synchronized?

    lets say I have two wave files that are similar in play length but not quite the same. I calculate a new frame rate for reach to make their lengths almost perfectly the same. Now I want to play them and have them repeat for a while.. If I don't synchronize them in some fashion, inevitably the slight difference in play time will cause them to unsync.
    what's the best way to keep them in sync? I've been trying playing each sound in it's own thread for the past few days and using thread synchronization, but that isn't working so well.
    thanks for the help.

    I found the answer I'm looking for! version 1.5 came out with the CyclicBarrier class that causea a thread to pause when it calls the barriers await() function until a predetermined number of threads call await().
    So I can create a barrier of size (ThreadCount) and tell all threads to pause at the beginning of a measure until all threads have checked in. That way all threads are out the gate at the same time every measure.

  • Playing multiple sounds at once

    Hi guys,
    I have this problem for some time now (I just havent got time to deal with it) - after latest installation of arch I am unable to play sound from multiple programs at once (eg from firefox and xmms). I tried to figure out alsa configuration for this myself but with no luck at all.
    Could anyone please give me some hints what i should do to make it work?
    Thanks.

    Oss disabled no change at all. Meanwhile I disabled pcsp - just to be sure, that it doesn't mess things, but stil with no luck.
    My sound configuration now look like this:
    $ ls -l /sys/module/snd/holders
    celkem 0
    lrwxrwxrwx 1 root root 0 23. čen 20.33 snd_hda_intel -> ../../snd_hda_intel
    lrwxrwxrwx 1 root root 0 23. čen 20.33 snd_hwdep -> ../../snd_hwdep
    lrwxrwxrwx 1 root root 0 23. čen 20.33 snd_pcm -> ../../snd_pcm
    lrwxrwxrwx 1 root root 0 23. čen 20.33 snd_seq -> ../../snd_seq
    lrwxrwxrwx 1 root root 0 23. čen 20.33 snd_seq_device -> ../../snd_seq_device
    lrwxrwxrwx 1 root root 0 23. čen 20.33 snd_seq_oss -> ../../snd_seq_oss
    lrwxrwxrwx 1 root root 0 23. čen 20.33 snd_timer -> ../../snd_timer
    $ lsmod|grep '^snd' | column -t
    snd_seq_oss         35584   0
    snd_seq_midi_event  9344    1  snd_seq_oss
    snd_seq             58336   4  snd_seq_oss,snd_seq_midi_event
    snd_seq_device      9364    2  snd_seq_oss,snd_seq
    snd_hda_intel       531252  1
    snd_pcm             82952   1  snd_hda_intel
    snd_timer           24720   2  snd_seq,snd_pcm
    snd_page_alloc      11792   2  snd_hda_intel,snd_pcm
    snd_hwdep           10632   1  snd_hda_intel
    snd                 65224   9  snd_seq_oss,snd_seq,snd_seq_device,snd_hda_intel,snd_pcm,snd_timer,snd_hwdep
    $ ls -l /dev/snd
    celkem 0
    crw-rw---- 1 root audio 116, 8 23. čen 20.30 controlC0
    crw-rw---- 1 root audio 116, 7 23. čen 20.30 hwC0D0
    crw-rw---- 1 root audio 116, 6 23. čen 20.31 pcmC0D0c
    crw-rw---- 1 root audio 116, 5 23. čen 20.32 pcmC0D0p
    crw-rw---- 1 root audio 116, 4 23. čen 20.30 pcmC0D4c
    crw-rw---- 1 root audio 116, 3 23. čen 20.30 seq
    crw-rw---- 1 root audio 116, 2 23. čen 20.30 timer
    Does anyone see there anything suspicious? I have no idea what to try.

  • Playing Multiple sound file simultanyoustly

    Is there a Professional audio product that could fit my needs ? I want to have a soundcard that can play a lot of soundfile at the same time. Maybe 10 to 20 wave or mp3 at the same time.
    Shidewa

    Shidewa wrote:
    Is there a Professional audio product that could fit my needs ? I want to have a soundcard that can play a lot of soundfile at the same time. Maybe 10 to 20 wave or mp3 at the same time.
    Shidewa
    You should have wrote little more specific what are you going to do but I assume you're going to make your own music (record different instruments etc.).
    So, you mean multitracker/sequencer, products like Cakewalk Sonar and Steinberg Cubase.
    These I mentioned can play 'unlimited' amount of audio files (all depends on your system capabilities). These can handle MIDI files too.
    If you are going to buy a Creative Pro (E-MU) line product you get LE (limited edition) version of some of this type of recording/mixing/mastering software bundled with the card. I don't know the full capabilities of these stricted applications but I suppose they can fit into your requirements.
    Go to
    E-MU
    site and take a closer look of the cards.
    Specifications for
    Sonar LECubase LE
    which are bundled with E-MU sound cards. See more from Software section on E-MU card sheets on their site.
    If you meant to output frome those 10 - 20 analog (stereo) sources simultaenously and individually then, (almost) every card can handle them internally, but you need atleast two or more soundcards with each having lots of stereo output channels available to get all that sound out (all sources individually, without interferencig with each other). I would recommend then 1 or two PCI cards with external box (like E-MU 1820) and/or types of FireWire (like RME FireFace 800) or USB cards then.
    You can ofcourse split one analog 6.1 output system (eg. 3 output ports) to three stereo output channels using ASIO drivers, but you need then an ASIO compatible player (!! ASIO is not always multiclient driver so there may be restrictions if same model sound cards are used) (i.e. Audigy 2 is a 6.1 card --> I can get 3 separate stereo output channels into use by using ASIO drivers with two of the three players --> I can therefore output from 3 different sources simultaenously to 3 different outputs without they mixes with each other)
    .jtp
    Message Edited by jutapa on 09-18-2005 11:39 PM

  • Play multiple sound files in different frames from library in flash

    My assessment task for college is to create a webpage of my work.  So far it runs brilliantly except for this.  I only need this to be working in like 2 days!  Help!
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Carolyns_Media_Portfolio_Scene1_fla::MainTimeline/frame5()
    at flash.display::MovieClip/gotoAndStop()
    Trying to be able to play sound clips from the library with the option to play and stop the sound file. Each sound has its own frame, with stop and play buttons. I can run the first sound file perfectly being able to start and stop it but when trying to play the next sound it creates the above error on output. I have dead buttons as well on the second sound.
    The top buttons take you to each scene
    The script runs from frame 5.
    import flash.events.MouseEvent;
    **buTrivia.addEventListener(MouseEvent.CLICK,clickListener7);
    function clickListener7(event:MouseEvent):void {
    SoundMixer.stopAll()
    gotoAndStop("trivia");
    buToyRA.addEventListener(MouseEvent.CLICK,clickListener8);
    function clickListener8(event:MouseEvent):void {
    SoundMixer.stopAll()
    gotoAndStop("toyminatorRA");
    buCaroline.addEventListener(MouseEvent.CLICK,clickListener9);
    function clickListener9(event:MouseEvent):void {
    SoundMixer.stopAll()
    gotoAndStop("caroline");
    buServerDown.addEventListener(MouseEvent.CLICK,clickListener10);
    function clickListener10(event:MouseEvent):void {
    SoundMixer.stopAll()
    gotoAndStop("serverdown");
    This was the script I found and edited.  Only Trivia works
    stop();
    var triviaSound:trivia = new trivia()
    var triviaChannel:SoundChannel = new SoundChannel();
    buplay1.addEventListener(MouseEvent.CLICK, playSound1);
    buStop1.addEventListener(MouseEvent.CLICK, stopSound1)
    function playSound1(event:MouseEvent):void
    triviaSound.play();
    function stopSound1(event:MouseEvent):void
    SoundMixer.stopAll()
    gotoAndStop("trivia");
    /*buplay2.addEventListener(MouseEvent.CLICK, playSound2);
    bustop2.addEventListener(MouseEvent.CLICK, stopSound2)
    var toysSound:toys = new toys();
    var toysChannel:SoundChannel = new SoundChannel();
    function playSound2(event:MouseEvent):void
    toysSound.play();
    function stopSound2(event:MouseEvent):void
    SoundMixer.stopAll()
    gotoAndStop("toyminatorRA");
    Basically I want to play all the sounds, from the library, individually in different frames using the option to play and stop that sound.  I found the above script but only works for one sound.  I am new at scripting in flash so any help or even a better script option would be awesome.  Thank you

    The 1009 error indicates that one of the objects being targeted by your code is out of scope.  This could mean that the object....
    - is declared but not instantiated
    - doesn't have an instance name (or the instance name is mispelled)
    - does not exist in the frame where that code is trying to talk to it
    - is animated into place but is not assigned instance names in every keyframe for it
    - is one of two or more consecutive keyframes of the same objects with no name assigned in the preceding frame(s).
    If you go into your Publish Settings Flash section and select the option to Permit debugging, your error message should have a line number following the frame number which will help you isolate which object is involved.

  • Multiple sounds in one button

    would you kindly give me a suggestion that how to make multiple sounds in a button of a windows form application. actually, being a newb i'm trying to develop a piano application by C# for my own interest. the problem is, when i press one button it plays
    too long & i had to wait until the wav file is finished & after that i had to press another button. what's the code for playing multiple sounds together in one button? u know, then i can play chords too. would you kindly explain or give a code?

    Hi Rinku,
    This is an example for you:
    A Piano Key Control in C#
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Noise with multiple sounds

    When playing multiple sounds at the same time through ram preview, everything is fine. However, if I export such a composition, the sound will be all noisy and messed up.
    Example of how it sounds inside after effects:
    http://web.telia.com/~u87309837/Comp%201b.wav
    And after exporting:
    http://web.telia.com/~u87309837/Comp%201.rar
    I'm running After Effects 6.5.
    Any ideas?
    I tried putting the sounds in Premiere (1.5) and exporting, and that was just fine. Unfortunatly, I also want to use time remapping, and premiere doesn't have that feature.
    Thanks

    >However, I want the sound to be that high. It seems, as I said, to work
    >in premiere. Why wont it work in after effects? Now i have to change
    >the volume of the music, for example, to avoid this. Is it really
    >supposed to be this way?
    Please read up on audio processing. The perceived loudness of an audio mix has in large parts nothing to do with the actual level of the separate files. Insisting on them being full volume will never get correct results, even less in a program like AE that only does linear mixing and resampling and does not figure in some of the logarithmic specifics of sound, does not provide functions for interpolating missing samples nor compensates for pitch and shift, which is what happens when you time-remap.
    It would also be interesting to know how you generated the files in the first place - they may already contain clipped samples and other garbage that skews the results.
    The whole matter is further complicated by embedded audio in video files needing to follow certain rules about reference levels - just like the video may need broadcast-safe colors, the audio needs a reference level which can be anything from -18 dB to +3dB. If it is not obbeyed, the audio will get clipped.
    Therefore the files need to be normalized in the context of the final mix volume, which apparently is what AE does not, but Premiere and dedicated audio programs do. So unless you are willing to do the math all yourself and manually adjust the levels in AE so they perfectly level out after the mixdown, it sounds more logical in a program that is tailored to do that much better.
    Obviously this will require some work and you will not be able to do much with your old versions of your programs. As a minor, you should give the free Audacity a spin which allows some time-stretching trickery. Beyond that you will certainly require a commercial sequencing program such as Cubase, Audition or whatever that allow you to load in video and sound for synchronous treatment. As a minor, if you really are stuck with your minimalistic combo of AE and Premiere, use Audacity to double the sampling rate of your source files to 96kHz At least it does some audio antialiasing and the resampled files should behave a tiny bit better when remapping them in AE.
    Mylenium

  • External instrument multiple sounds

    hi. Im having problems with my external instrument well its not a problem i just want to know if i can play multiple sounds or midi notes with my external instrument but in multiple tracks i mean ive benn trying to make a sound with my external instrument but with different sound but it only play the sound that its selected on the external instrument i donst matter if i have two or more different tracks it all plays the same instrument sound.
    so my question in order to have multiple sounds of the same external instrument i have to record and then bounce to audio the external instrument sound one by one so i can have more tan one sound of it? i need help with that cause every time i bounce the external instrument sound it looses quality and every time a little click on the end defect the sample. please help me
    thank you

    We have no way of knowing what external instrument you're talking about...

  • HT1349 My Ipod mini syncs, but when I go to play, no sound.  I've tried multiple speakers and headphones. No Go.  What next?

    My Ipod mini syncs, but when I go to play, no sound.  I've tried multiple speakers and headphones. No Go.  What next?
    My latest problem is that the Apple site will not recognize my equipment by it's serial number.  I know the mini is old, but I like what it did for me and don't necessarily want to "upgrade".

    This is the iPad in the Enterprise forum. You'll be more likely to get help with your issue if you ask in the appropriate iPod forum.
    Regards.

Maybe you are looking for

  • Adobe Media Encoder CS5 Watch Folders

    I'm not sure if this is the right place for this, but I couldn't find an Adobe Media Encoder forum, and since we purchased After Effects to get Media Encoder I figured this might be a good place to start. Basically, we have a dedicated computer set u

  • Website not updating changes made in DW CS3 (though they show up in browser preview) what's wrong?

    this is the website: http://www.bsarchitects.co.uk/epic.html and the only changes made have been to the text, so it shouldn't be that hard? i am taking this website over from someone else and am fairly new to dreamweaver. as far as i can tell, the we

  • Hi i have lost the ability to go full screen

    Hi i can no longer see the arrows at the top right hand corner of imovie  so i can go full screen ,dont know if its something i have done any help would be appreciated thanks

  • Got java.lang.IllegalStateException: IOException: "utf-8"

    Can someone please help me with this? I got a java.lang.IllegalStateException: IOException: "utf-8" error when calling web service. The exception is like the following: javax.xml.ws.soap.SOAPFaultException: java.lang.IllegalStateException: IOExceptio

  • FIOS remote can turn TV off but not on? (Westinghouse LCD TV)

    Westinghouse model  CW26S3CW 26" LCD HDTV.  Weirdest thing happening and that is I am able to get the FIOS remote to do everything but turn the TV on.  I have contacted Westinghouse and they are saying to use the Sanyo or Samsung codes but they don't