Need help playing sound via AS3

Hi all,
First time I have tried playing a sound through AS3. I found an example from kirupa, but for whatever reason I can not get it to play the sound. I'm not getting any errors etc, and I have my .wav file inside the same directory as my .fla/.swf I have tried playing from inside the flash pro interface and from a personal webpage server.
Is there something that I am missing? I just have a action layer with the below code inside the first from of the movie.
var soundClip:Sound;
function init() {
soundClip = new Sound();
soundClip.load(new URLRequest("mysound.wav"));
soundClip.addEventListener(Event.COMPLETE, soundLoaded);
soundClip.addEventListener(ProgressEvent.PROGRESS, soundLoading);
init();
function soundLoaded(e:Event) {
soundClip.play();
function soundLoading(e:ProgressEvent) {
// preloader information goes here
Any help would be great

thanks for that kglad that solved that problem. what I am trying to do is play the sound 1 time for a session only. I'll have multiple pages that use the same .swf, I just want the sound to play 1 time when the user first visits and then not to play for all other requests.
This is an example I found, to you does it look right? I'm not getting any errors, but I'm not getting the sound to play either.
import flash.net.SharedObject
//Use anything in place of "sounds"
var so:SharedObject = SharedObject.getLocal("sounds");
//Check if the sound has not been played
//Use anything in place of "specificSoundPlayed"
if(so.data.specificSoundPlayed == false)
//Play the sound
var snd:Sound = new Sound();
snd.load(new URLRequest("my.mp3"));
snd.play();
//Set the shared object property so we know the sound was played
so.data.specificSoundPlayed = true;

Similar Messages

  • Need help with Sound Methods

    Hi, I am new to java and need help with sound methods.
    q: create a new method that will halve the volume of the positive values and double the volume of the negative values.
    Message was edited by:
    Apaula30

    duplicate message #2

  • Takes a while to play sound via audio interface on iMac

    I purchased iMac along with Focusrite Scarlett 6i6 USB audio interface and started having following problems from the beginning.
    When I play video/music on itunes, logic or whatever apps that plays sound, it takes a while(about 20 sec) to play sounds. Sometimes it does not play sounds at all until I turn the volume halfway up on Focusrite Scarlett 6i6. It happens all the time when I play sound for the first time after turning the computer on. It happens when I start using the computer after a while. Sometimes it turns off the sound even when the music/video is being played. I had problem with latest Scarlett driver and still happens after switching to class compliant mode. It seems like it takes time for the computer to wake 6i6 via USB, but I am not sure. Please help!
    computer Specifications:
    - late 2013 iMac / flash 1TB / GTX 780M / 32GB RAM
    - mavericks 10.9.2
    - Just Scarlett 6i6 connected directly via USB
    - no other devices connected, just apple bluetooth keyboard, magic mouse and touchpad
    Softwares:
    - Logic pro x latest version, Kontakt 5.3.0
    - sample rate 44
    Product Info:
    - was using latest 6i6 driver but recently switched to class compatible mode

    Well I have done the disk cleanup and it still didnt fix it. I just got this player yesterday too I have about 3.5 gigs on it. I didnt get my usb 2.0 system yet, but im just really worried about these long load times for the songs on the player. Im gona try loading some mp3s and see how those go.
    edit... I just loaded up some MP3s and they start in about 3-4 seconds. A lot faster then my WMAs from yahoo, but still I was expecting mp3s to play instantly pretty much.Message Edited by Johnwashere on 05-2-2005 2:26 AM

  • What software do i need to play sound for MPEG-1 Muxed or MPEG-2 Muxed?

    i converted one of my video files
    but it only plays the vidoe but no sound.
    according to "article" on this webpage,
    I need speical software to play sounds for
    MPEG-1 Muxed or MPEG-2 Muxed files.
    WHAT SOFTWARE DO INEED?!
    Please and thank you

    Hello!!
    Actually, you need Oracle Spatial or Oracle Locator. Oracle Locator is free on Oracle Express, and you could start with it. Otherwise, if you want to know more, Oracle Spatial comes with Oracle Enterprise, and Oracle 10g gives you a schema that allow you to store, manage and query spatial data through Oracle functions, etc.
    To start using MapViewer, considering that you already have some spatial data stored on the database, you could download the MapViewer kit at http://www.oracle.com/technology/products/spatial/index.html.
    You could buy the Pro Oracle Spatial book. It´s very good.
    Good Luck!
    Regards
    Carlos Eduardo

  • Need help finding Sound and Vibration Toolkit Example Files

    I need help finding some Sound and Vibration Toolkit Example Files?
    http://www.ni.com/white-paper/3779/en
    From this link you get:  getting_started_otb.llb
    The missing files are:
    OAT Truncate Time Indices.vi
    Speed profile.ctl
    oa_Config Time or RPM Segment.vi
    svl-Complex Datatype Default.vi
    Running Windows 7, LabVIEW 2011, 32bit
    Sound and Vibration Measurement Suite
    Sound and Vibration Toolkit
    Thanks,
    -SS
    Solved!
    Go to Solution.
    Attachments:
    License S and V.png ‏4 KB

    SS,
    You can find these files here:
    C:\Program Files (x86)\National Instruments\LabVIEW 2011\vi.lib\addons\Sound and Vibration\Order Analysis\Resample Order Tracking\SubVIs
    C:\Program Files (x86)\National Instruments\LabVIEW 2011\vi.lib\addons\Sound and Vibration\Order Analysis\Tach Process\SubVIs
    C:\Program Files (x86)\National Instruments\LabVIEW 2011\vi.lib\addons\Sound and Vibration\Order Analysis\Resample Order Tracking\SubVIs
    svl-Complex Datatype Default.vi changes to svc-Complex Datatype Default.vi
    C:\Program Files (x86)\National Instruments\LabVIEW 2011\vi.lib\addons\_NISVFA\_Shared subVIs\Common
    Make sure you are license activated, and you will have to dig through the *vi and relink a subvi.
    Then you should get a white arrow.
    -SS 

  • Need help playing multiple songs in an applet

    Hello,
    I have been working on this problem for about a week now and am losing my mind. I have a Applet that plays 5 somgs and displays 5 images, but only 2 songs are playing. Here is were the problem is;
    SongPlaying = Song.getSelectedIndex()== 5 ?
    Song1 : Song2;I know i am only specifying Song1 and Song2, but I dont know how to change this with out dramatically altering my code(atleast that is what I have been trying).
    Any help would be greatly appriciated, I am very new to JAVA

    OK, I cant find the problem here is my code, any ideas would be a great help. It just does not seam to recognize the correct ComboBox selection and the Stop button does not always work
    import java.applet.Applet;
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.net.URL;
    import java.io.*;
    public class TeamProject extends JApplet implements ActionListener 
    private AudioClip SongPlaying, Song0, Song1, Song2, Song3, Song4, Song5;
    private JButton playSong, loopSong, stopSong;
    JComboBox Song;
    JLabel picture;
    public void init()
    resize(650, 500);
    Container container = getContentPane();
    container.setLayout( new FlowLayout());
    String Songs[] = { "Please Select Song", "MatchBox 20-Unwell", "Maroon 5-Harder to Breathe",
    "3 Doors Down-Duck & Run", "U2-Vertigo", "Goo Goo Dolls-Slide"};
    playSong = new JButton("Play");
    playSong.addActionListener(this);
    container.add(playSong);
    loopSong = new JButton("Loop");
    loopSong.addActionListener(this);
    container.add(loopSong);
    stopSong = new JButton("Stop");
    stopSong.addActionListener(this);
    container.add(stopSong);
    Song = new JComboBox(Songs);
    Song.addItemListener (new ItemListener ()
    public void itemStateChanged(ItemEvent e)
    String strTemp = Song.getSelectedItem().toString();
    System.out.println(strTemp);
    showStatus("Playing sound " + strTemp );
          if (Song == null)
          showStatus("Sound " + strTemp + " not loaded yet.");
          return;
    picture = new JLabel();
    container.add(Song);
    container.add(picture);
    Song0 = getAudioClip(getDocumentBase(), "Please Select Song.wav");
    Song1 = getAudioClip(getDocumentBase(), "MatchBox 20-Unwell.wav");
    Song2 = getAudioClip(getDocumentBase(), "Maroon 5-Harder to Breathe.wav");
    Song3 = getAudioClip(getDocumentBase(), "3 Doors Down-Duck & Run.wav");
    Song4 = getAudioClip(getDocumentBase(), "U2-Vertigo.wav");
    Song5 = getAudioClip(getDocumentBase(), "Goo Goo Dolls-Slide.wav");
    SongPlaying = a;
    public void stop()
    SongPlaying.stop();
    public void actionPerformed(ActionEvent e)
    if (e.getSource() == loopSong)
    SongPlaying.loop();
    String image = (String)Song.getSelectedItem();
    image(image);
    if (e.getSource() == stopSong)
    SongPlaying.stop();
    if (e.getSource() == playSong)
    image = (String)Song.getSelectedItem();
    image(image);
    SongPlaying.play();
    int indx = Song.getSelectedIndex();
    if (indx == 0)
    SongPlaying = Song0;
    else
    if (indx == 1)
    SongPlaying = Song1;
    else
    if (indx == 2)
    SongPlaying = Song2;
    else
    if (indx == 3)
    SongPlaying = Song3;
    else
    if (indx == 4) 
    SongPlaying = Song4;
    else
    if (indx == 5) 
    SongPlaying = Song5;
    public void image (String name)
    ImageIcon icon = createImageIcon("images/" + name + ".jpg");
    picture.setIcon(icon);
    if (icon != null)
    picture.setText(null);
    else
    picture.setText("Image not found");
    public static ImageIcon createImageIcon(String path)
    java.net.URL imgURL = TeamProject.class.getResource(path);
    if (imgURL != null)
    return new ImageIcon(imgURL);
    else
    System.err.println("Couldn't find file: " + path);
    return null;
    }

  • Loader (Need help to convert from AS3 to AS2)

    Since I know this code works fine and that I use it into one of my AS3 flash, I need it in one of my AS2 flash and I don't know how to adapt it. I've searched in over 100 threads and I can't find something similar... Thanks to help me get it to work in AS2! Since I need it in AS2, I thought it would be the right place to post it.
    I posted all the loading process code, but I would need help mostly with the Loader part. How to do it in AS2? Thanks!
    var img = 0;
    var image_total = 0;
    var myImages_array:Array = new Array();
    var myBitmaps_array:Array = new Array();
    function Init();
    // Images urls are loaded into an array before this call
    LoadImage();
    function LoadImage()
        if (img < myImages_array.length) // img is the current image index and myImages_array is my array of URLs
    // I need help with this part please
            var loader:Loader = new Loader();
    // returns the image full path and load it
            loader.load(new URLRequest(my_site_url + myImages_array[img]));
            loader.contentLoaderInfo.addEventListener(Event.COMPLETE, imageLoaded);
        else
            if (count == 0)
    // When everything's loaded, I'll start loading my Bitmaps into a small slideshow
                count += 1;
                init_slideshow();
    function imageLoaded(e:Event):void
        var image:Bitmap = e.target.content;
    // Bitmap manipulation here (removed)
        image_total = myBitmaps_array.push(image);
        if (img < myImages_array.length)
            img += 1;
    // Call next image
            LoadImage();
    function init_slideshow():void
    // Reserts the current index for the first one
        img = 0;
    // Start the slideshow since everything's loaded
        animate_slideshow();

    If you look at the Flash help documentation for the addListener metod of the MovieClipLoader class, there is an erxample there that you should hopefully be able to work from.  It will be better if you get your stuff coded into AS2 before you pursue more help with it.  IT is difficult to tell you how to fix something if you don't show what you are using.

  • Wrt54g i need help playing c&c online it keeps losing connection

    i need help bad with getting command and conquer generals to play online because i never had a problem before with connection prior to getting the router but now i can't stay on for more then 30 seconds and i am really frustrated, can u please help me?

    Hi…Every game works on different TCP or UDP ports.  You need to forward these ports on your router and reduce the MTU to 1365. So get the port no required by your game, forward the port for the IP address of your PC.

  • Need help playing video in elements 9

    I have windows 7 and just got priemiere elements 9.  When it plays my .mov videos it only plays sound for a few seconds then stops.  The video continues to play with no sound.  If I open the same video in Quicktime or in photoshop elements 9 it plays fine.  The whole reason I got this program was to edit my video and make movies of family events.  What am I doing wrong and how to I fix it.

    Welcome to the forum.
    The MOV file extension is but a "wrapper," and almost anything can be in that wrapper. This ARTICLE will give you some background, and will also tell you how to "peek inside" the wrapper. What is the CODEC of your MOV files?
    Also, note that there is a big difference between using a simple player to play an AV file, and editing that same file.
    Good luck, and please let us know more,
    Hunt

  • Need help with Sound Problem

    If you have 1 sound file playing on say frame 1, how do you
    get frame 2 to play a different sound, without playing frame one's
    sound as well? Right now 'frame 2' is playing both sound files. If
    I use the commande 'stopAllSounds' the frame 2 sound file will not
    play either.
    Please help. Thank you.

    nwbgator wrote:
    > If you have 1 sound file playing on say frame 1, how do
    you get frame 2 to play
    > a different sound, without playing frame one's sound as
    well? Right now 'frame
    > 2' is playing both sound files. If I use the commande
    'stopAllSounds' the
    > frame 2 sound file will not play either.
    The sound once started will play for as long as you loop it
    or as long as its length
    is (if not loop is define). Even sound run independent to
    timeline so if you enter
    frame 2 it will simply play another sound.
    You need to make some on/off switches on frames or actions
    that will control the
    sound. Entering another frame won't do it and using
    stopAllSounds works like purge
    and clear player from all its sounds. The only way to get
    sound back will be by
    reloading the entire movie. One of these actions that not
    many of us are using.
    Best Regards
    Urami
    !!!!!!! Merry Christmas !!!!!!!
    Happy New Year
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Need help with sound scubber

    Could someone please help me out. I am so close to having
    this sound scrubber work.
    Here is what is not working:
    --The slider thumb does not move when the music is playing
    and it should.
    --Also when you slide the slider thumb, the musical score
    (frame) should change and it doesn't.
    This is a bit different from scrubbers for Mp3 or other SWA
    files.
    You can go to
    http://www.bachharpsichord.com/AudioCD.zip
    and get the <1Meg file and xtra (they have to be in the same
    folder and the extra is in demo mode (which is free for all to
    try)).
    When you try to run the program you need to put a music CD in
    your CD drive. The first track should be around 3 minutes. I have
    cuepoints in the program which move to the next frame(page) while
    the music is playing.
    Thank to all you geniuses!!

    Something like this?
    http://nonlinear.openspark.com/tips/sound/panvolume/

  • Please i need help with sound application! please?

    hey there people heres the deal I need to complete this before 5 today but im completely stumped...we have to make a sound file player with a swing interface I have it playing(kind of!) but where now...I would be forever in your debt as my masters degree hangs in the balance! de de duhhhh! cheers
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.event.*;
    import java.io.File;
    import java.io.IOException;
    import javax.sound.sampled.*;
    import javax.sound.sampled.AudioFormat;
    import javax.sound.sampled.AudioInputStream;
    import javax.sound.sampled.AudioSystem;
    import javax.sound.sampled.Clip;
    import javax.sound.sampled.DataLine;
    import javax.sound.sampled.LineEvent;
    import javax.sound.sampled.LineListener;
    import javax.sound.sampled.LineUnavailableException;
    public class AudioPlayer extends JFrame implements ActionListener, ChangeListener{
    boolean playing;
    boolean looping;
    String filename = File.separator+"tmp";
    File selFile;
    Clip clip;
    JFileChooser fc = new JFileChooser();
    JButton btnOpen = new JButton("Open");
    JButton btnPlay = new JButton("Play");
    JButton btnStop = new JButton("Stop");
    JButton btnPause = new JButton("Pause");
    JButton btnLoop = new JButton("Loop");
    JSlider volume = new JSlider(SwingConstants.HORIZONTAL,0,100,0);
    JSlider panning = new JSlider(SwingConstants.HORIZONTAL,0,100,0);
    public AudioPlayer(){
    Container contentPane = getContentPane();
    contentPane.setLayout(new FlowLayout());
    contentPane.add(btnOpen);btnPlay.addActionListener(this);
    contentPane.add(btnPlay);btnPlay.addActionListener(this);
    contentPane.add(btnStop);btnStop.addActionListener(this);
    contentPane.add(btnPause);btnPause.addActionListener(this);
    contentPane.add(btnLoop);btnLoop.addActionListener(this);
    // Show open dialog; this method does not return until the dialog is closed
    fc.showOpenDialog(this);
    selFile = fc.getSelectedFile();
    volume.addChangeListener(this);
    panning.addChangeListener(this);
    volume.putClientProperty("JSlider.isFilled", Boolean.TRUE);
    volume.setPaintTicks(true);volume.setPaintLabels(true);
    volume.setMajorTickSpacing(20);volume.setMinorTickSpacing(10);
    contentPane.add(volume);
    panning.putClientProperty("JSlider.isFilled", Boolean.TRUE);
    panning.setPaintTicks(true);panning.setPaintLabels(true);
    panning.setMajorTickSpacing(20);panning.setMinorTickSpacing(10);
    contentPane.add(panning);
    addWindowListener(
    new WindowAdapter () {
    public void windowClosing(WindowEvent e){
    setVisible(false);
    public void actionPerformed(ActionEvent e){
    int returnVal = JFileChooser.APPROVE_OPTION;
    //Handle open file action.
    if (e.getSource() == btnOpen)
    System.out.println("FA1");
    returnVal = fc.showOpenDialog(AudioPlayer.this);
    if (returnVal == JFileChooser.APPROVE_OPTION)
    { selFile = fc.getSelectedFile();
    //This is where a real application would open the file.
    else
    if(e.getSource() == btnPlay)
    playAudio();
    public void stateChanged(ChangeEvent e)
    public static void main(String[] args)
    AudioPlayer audioPlayer = new AudioPlayer();
    audioPlayer.setSize(400,400);
    audioPlayer.show();
    public void playAudio ()
    playing = true;
    AudioInputStream audiosource = null;
    try
    audiosource = AudioSystem.getAudioInputStream(selFile);
    System.out.println("here");
    //System.out.println(audiosource.getFormat());
    DataLine.Info dataLineInfo = new DataLine.Info(Clip.class,audiosource.getFormat());
    clip = (Clip)AudioSystem.getLine(dataLineInfo);
    clip.open(audiosource);
    catch (UnsupportedAudioFileException e)
    catch (LineUnavailableException e)
    catch (IOException e)
    //catch (Exception e) {}
    if (looping)
    clip.loop(clip.LOOP_CONTINUOUSLY);
    else
    clip.loop(0);
    playing = false;
    }

    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.event.*;
    import javax.sound.sampled.*;
    * Description of the Class
    *@author rsmazara
    *@created 28 February 2003
    public class AudioPlayer extends JFrame implements ActionListener, ChangeListener {
    File selFile;
    JFileChooser fc = new JFileChooser();
    JButton btnOpen = new JButton( "Open" );
    JButton btnPlay = new JButton( "Play >" );
    JButton btnStop = new JButton( "Stop" );
    JButton btnPause = new JButton( "Pause ||" );
    JCheckBox btnLoop = new JCheckBox( "Loop" );
    JSlider volume = new JSlider( SwingConstants.HORIZONTAL, 0, 100, 0 );
    JSlider panning = new JSlider( SwingConstants.HORIZONTAL, 0, 100, 0 );
    JLabel label = new JLabel( " " );
    public AudioPlayer() {
    Container contentPane = getContentPane();
    contentPane.setLayout( new FlowLayout() );
    btnOpen.addActionListener( this );
    contentPane.add( btnOpen );
    btnPlay.addActionListener( this );
    contentPane.add( btnPlay );
    btnPlay.addActionListener( this );
    contentPane.add( btnStop );
    btnStop.addActionListener( this );
    contentPane.add( btnPause );
    btnPause.addActionListener( this );
    contentPane.add( btnLoop );
    btnLoop.addActionListener( this );
    btnPlay.setEnabled( false );
    btnStop.setEnabled( false );
    btnPause.setEnabled( false );
    // Show open dialog; this method does not return until the dialog is closed
    // fc.showOpenDialog( this );
    // selFile = fc.getSelectedFile();
    volume.addChangeListener( this );
    panning.addChangeListener( this );
    volume.putClientProperty( "JSlider.isFilled", Boolean.TRUE );
    volume.setPaintTicks( true );
    volume.setPaintLabels( true );
    volume.setMajorTickSpacing( 20 );
    volume.setMinorTickSpacing( 10 );
    contentPane.add( volume );
    panning.putClientProperty( "JSlider.isFilled", Boolean.TRUE );
    panning.setPaintTicks( true );
    panning.setPaintLabels( true );
    panning.setMajorTickSpacing( 20 );
    panning.setMinorTickSpacing( 10 );
    contentPane.add( panning );
    contentPane.add( label );
    addWindowListener(
    new WindowAdapter() {
    public void windowClosing( WindowEvent e ) {
    setVisible( false );
    System.exit( -100 );
    public void actionPerformed( ActionEvent e ) {
    int returnVal = JFileChooser.APPROVE_OPTION;
    //Handle open file action.
    System.out.println( e.getActionCommand() );
    ///open
    if ( e.getSource() == btnOpen ) {
    System.out.println( "FA1" );
    returnVal = fc.showOpenDialog( AudioPlayer.this );
    if ( returnVal == JFileChooser.APPROVE_OPTION ) {
    selFile = fc.getSelectedFile();
    player = new Player( selFile );
    label.setText( "File loaded : " + selFile.getAbsolutePath() );
    btnPlay.setEnabled( true );
    btnStop.setEnabled( false );
    btnPause.setEnabled( false );
    //This is where a real application would open the file.
    } else {
    //play
    if ( e.getSource() == btnPlay ) {
    player.go( btnLoop.isSelected() );
    btnPlay.setEnabled( false );
    btnStop.setEnabled( true );
    btnPause.setEnabled( true );
    // playAudio();
    // pause
    if ( e.getSource() == btnPause ) {
    player.pause();
    btnPlay.setEnabled( true );
    btnStop.setEnabled( true );
    btnPause.setEnabled( false );
    if ( e.getSource() == btnStop ) {
    player.finish();
    btnPlay.setEnabled( true );
    btnStop.setEnabled( false );
    btnPause.setEnabled( false );
    public void stateChanged( ChangeEvent e ) {
    private Player player = null;
    public static void main( String[] args ) {
    AudioPlayer audioPlayer = new AudioPlayer();
    audioPlayer.setSize( 400, 400 );
    audioPlayer.show();
    * Description of the Class
    *@author rsmazara
    *@created 28 February 2003
    class Player {
    Clip clip;
    private java.io.File selectedFile = null;
    private boolean looping = false;
    public Player( File file ) {
    selectedFile = file;
    AudioInputStream audiosource = null;
    try {
    audiosource = AudioSystem.getAudioInputStream( selectedFile );
    System.out.println( "here" );
    //System.out.println(audiosource.getFormat());
    DataLine.Info dataLineInfo = new DataLine.Info( Clip.class, audiosource.getFormat() );
    clip = ( Clip ) AudioSystem.getLine( dataLineInfo );
    clip.open( audiosource );
    } catch ( UnsupportedAudioFileException e1 ) {
    e1.printStackTrace();
    } catch ( LineUnavailableException e2 ) {
    e2.printStackTrace();
    } catch ( IOException e3 ) {
    e3.printStackTrace();
    private boolean work = false;
    public void go( boolean loop ) {
    looping = loop;
    playAudio();
    public void finish() {
    clip.stop();
    public boolean isWorking() {
    return clip.isRunning();
    long pausePosition = ( long ) 0;
    public void pause() {
    pausePosition = clip.getMicrosecondPosition();
    clip.stop();
    public void restart() {
    clip.setMicrosecondPosition( pausePosition );
    playAudio();
    public void loop( boolean loop ) {
    looping = loop;
    private void playAudio() {
    if ( looping ) {
    clip.loop( clip.LOOP_CONTINUOUSLY );
    } else {
    clip.loop( 0 );

  • Need help: playing songs in order, strangewindow message, upgrading I-Tunes

    I have 2 situations I hope someone can help me with:
    1: PLAYING SONGS IN ORDER; WINDOW MESSAGE
    I have CDs of music that when I load them onto my pc laptop the song names don’t come up—each song lists as “track 01” “track 02” etc.
    When I try to play the album thru I-Tunes on my laptop, the songs won’t play in order. i.e. ALL the “track 02”s will play before going to “track 03,” then ALL the “track 03”s will play, etc. So I made a playlist of each CD.
    Now when I try to play the Playlist, I get a window message that says, “The song “Track 01” could not be used because the original file could not be found. Would you like to locate it?” I can choose ‘yes’ or ‘cancel.’ YES takes me to folder selections. I find the song and click on it and then it plays.
    There must be an easier way. I don’t want to search for each song one at a time in order to play an entire CD in order.
    2: UPGRADE
    I need to upgrade. I have I-TUNES 7.0.2. I went online to apple.com and couldn’t find any upgrade option, so I clicked on “download I-tunes”. I got a window that says “download complete.” But how do I tell if it’s really installed? Where do I go on my computer to see what version number it shows?
    Any help is appreciated,
    Carolyn in Las Vegas

    2. Help->About iTunes
    1. You have done something that has confused iTunes about the location of the files in its library. Without knowing what happened, it's hard to make a specific recommendation, but if you moved your files around manually, move them back, and then, if you want to change the location, do it only by setting it in iTunes preferences and then using Consolidate Library.

  • Need to play sound coming from input device on speakers separately ??

    Hi all,
    Under NI examples I found this example called "Continuous Sound Input.vi". I can run that VI and I am able to hear my voice on both speakers.
    My goal is to make a VI that plays my voice either on left or right speaker but not on both. I guess the key here is to find out a way how to
    modify "data" terminal that comes out "Sound Input Read.vi" so that it can play on different speakers independently.
    I would really appreciate if you guys can help me on this issue.
    Thanks

    Stop plastering the forum with the same question. You've already asked this question before. Keep your responses to the original thread so people know what has been discussed.

  • Need help capturing data via JavaPOS

    I am new to JavaPOS. My requirement is to integrate our webapplication with a Hypercom optimum L4250. Users will use this device to enter sensitive numerical data like SSN, Phone number etc. The device is JavaPOS compatible. The idea is to run an applet to read the input from this device and fill the corresponding field on my webpage. I am not sure where to start. I have looked up javapos.com and couldn't find much help. Any one tried or implemented such requirement or can offer any direction?
    Any help would be much appreciated.
    Thanks
    Sridhar

    Thanks for you replies guys!
    I need to use java because the ultimate reporting tool
    is going to be a service developed in Jini.
    The reason I believe the data seem to be wrapped
    around after ftp transfer is because when I edited
    (TSO FSE from MVS) all text data is aligned withing
    the same column.
    After data is transmitted via FTP (converted to ASCII
    during trasmition) and edited with wordpad, text
    characters do not seem to be on the same possition.
    They are scattered all over the display area. Is
    possible this could be a display affect from winword
    but not sure.
    The MVS job to FTP the file follows:
    //STEP01 EXEC PGM=FTP,
    // PARM='FTP.MIAMIDADE.GOV (EXIT'
    //SYSPRINT DD SYSOUT=*
    //OUTPUT DD SYSOUT=*
    //SYSIN DD *
    user-name/password
    CD /storage
    CD UAL
    ASCII
    PUT 'STORAGE.DCOLLECT.TYPV' 'DCOLLECT_TYPEV.TXT'
    ls -l
    close
    quit
    Words of advice appreciated
    Ulises (arsi)
    YES! 1st mistake ... don't use WordPad for this ... your NotePad, Dos, or some other pure text editor.

Maybe you are looking for

  • Is it possible to install voiceover to classic

    Hello, my friends! I have small problem. Im blind, so i cant use i-products without VoiceControl...  so. i try to use iphone of my non-blind friend with voice control.. its ok, but its to much of place,where i touch wrong buttons. and they in differe

  • YAB (yet another bug) hiding subform made impossible, here's how to

    Hi, Create a new empty form, set its language to Javascript and its preview format to dynamic PDF In the master page insert a subform, let's call it Subform1 In the newly created subform, insert a textfield, let's call it Textfield1 In the main page,

  • Playlist icons blink in Music app on my iPad, is this happening to anyone?

    Sometimes when I open the music app on my iPad the playlist icons blink, is this happening to you and what can be done

  • Vertical pictures become horizontal after being imported

    I imported pictures directly from my picture folder. I need the vertical pictures to stay vertical, but many of them, not all of them, become horizontal after being imported into iMovie 06. How do I correct this? Thanks for your help.

  • Viewing Photos on a Nano

    I need some guidance as to where I am going wrong.. I have set iTunes to sync the photos from a folder I have set up for my Nano, it tells me it is syncing the pics etc.. But how do I view them on my Nano?? Under "Photos" I only have "Slideshow Setti