How to Stop Music After Selection Finishes

I would like to play a selection and have the player stop when finished. I cannot find anything in Preferences that allows that. As it is, the next song in the playlist starts up, and I have to press the Stop button. (iTunes v 9.2.1) How can I do that?

Check Dougscripts. I think there's one that does that.

Similar Messages

  • How to read data after select multiple record by checkbox,

    hi experts
    i  m using simple report with check box , and itab whcih contain records
    how to read data after select multiple record by checkbox,
    thanks

    Hi Prashant,
       Try using this logic.This Code displays the list with check boxes. When you check a checkbox and press a button say 'Select All' or 'De Select all' or 'Display'. It will read the data of those records.
    DATA :
      fs_flight TYPE type_s_flight,
      fs_flight1 TYPE type_s_flight1.
    * Internal tables to hold Flight  Details                             *
    DATA :
      t_flight LIKE
      STANDARD TABLE
            OF fs_flight,
      t_flight1 LIKE
       STANDARD TABLE
             OF fs_flight1.
    SET PF-STATUS 'SELECT' .
    PERFORM selection.
    PERFORM displaybasic .
    *                      AT USER COMMAND EVENT                          *
    AT USER-COMMAND.
      PERFORM selectall .
    *&      Form  SELECTION
    *      Select query to reteive data from SPFLI table
    *  There are no interface parameters to be passed to this subroutine.
    FORM selection .
      SELECT  carrid                       " Airline Code
              connid                       " Flight Connection Number                  
        FROM  spfli
        INTO TABLE t_flight.
      DESCRIBE TABLE t_flight LINES w_lines .
    ENDFORM.                               " SELECTION
    *&      Form  DISPLAYBASIC
    *      Display the basic list with SPFLI data
    *  There are no interface parameters to be passed to this subroutine.
    FORM displaybasic .
      LOOP AT t_flight INTO fs_flight.
        WRITE :
             w_check AS CHECKBOX,
             w_mark,
             fs_flight-carrid UNDER text-001,
             fs_flight-connid UNDER text-002.
      ENDLOOP.                             " LOOP AT T_FLIGHT..
      CLEAR fs_flight-carrid .
      CLEAR fs_flight-connid.
    ENDFORM.                               " DISPLAYBASIC
    *&      Form  SELECTALL
    *      To check all the checkboxes with a 'selectall' push button
    *  There are no interface parameters to be passed to this subroutine.
    FORM selectall .
      CASE sy-ucomm.
        WHEN 'SELECT_ALL'.
          w_check = 'X'.
          w_line = 4 .
          DO w_lines TIMES.
            READ LINE w_line .
            MODIFY LINE w_line FIELD VALUE w_check .
            ADD 1 TO w_line .
          ENDDO.                           " DO W_LINES TIMES
          CLEAR w_line.
        WHEN 'DESELECTAL'.
          w_check = space.
          w_line = 4 .
          DO w_lines TIMES.
            READ LINE w_line FIELD VALUE w_mark .
            IF w_mark = space .
              MODIFY LINE w_line FIELD VALUE w_check .
            ENDIF.                         " IF W_MARK = SPACE
            ADD 1 TO w_line .
          ENDDO.                           " DO W_LINES TIMES
        WHEN 'DISPLAY'.
    IF sy-lilli BETWEEN 4 AND w_lines .
        DO w_lines TIMES.
          READ LINE w_num FIELD VALUE w_check INTO w_check
                                     fs_flight-carrid INTO fs_flight-carrid
                                     fs_flight-connid INTO fs_flight-connid.
          IF sy-subrc = 0.
            IF w_check = 'X'
              SELECT  carrid
                      connid
                      fldate               " Flight date
                      seatsmax             " Maximum capacity in economy
                      seatsocc             " Occupied seats in economy class
                FROM  sflight
                INTO  TABLE t_flight1
               WHERE  carrid = fs_flight-carrid
                 AND  connid = fs_flight-connid.
              LOOP AT t_flight1 INTO fs_flight1.
                WRITE :
                  / fs_flight-carrid UNDER text-001,
                    fs_flight-connid UNDER text-002,
                    fs_flight1-fldate UNDER text-007,
                    fs_flight1-seatsmax UNDER text-008,
                    fs_flight1-seatsocc UNDER text-009.
              ENDLOOP.
            ENDIF.                         " IF SY-SUBRC = 0
          ENDIF.                           " IF W_CHECK = 'X'.
          ADD 1 TO w_num.
        ENDDO.                             " DO W_LINES TIMES
        CLEAR w_check.
        w_num = 0.
      ELSE .
        MESSAGE 'INVALID CURSOR POSITION ' TYPE 'E' .
      ENDIF.                               " IF SY-LILLI BETWEEN..
    ENDCASE.                             " CASE SY-UCOMM
    ENDFORM.                               " SELECTALL
    Much Regards,
    Amuktha.

  • How to stop Mail from selecting addresses from the list of Previous Recipients?

    How to stop Mail from selecting addresses from the list of Previous Recipients?

    This is a related question.
    I deleted ALL my previous recipients and when I create a new e-mail it STILL is getting addresses that I don't want - they pop up and I don't know how to stop this!
    I switched from one ISP to another - I deleted the old e-mail account in MAIL - I DID use the same name on the account - is that why it keeps bringing up the old address? 
    ARGH!

  • How to stop music from auto play on car charger?

    I have a USB port in my car and whenever I put my iPhone 5 on charge it automatically starts playing my iTunes music. I don't want it to do this bc it interferes with whatever we are currently listening to in the car. Is there a setting or something I can change?
    Thanks !!

    G,
    You might try downloading Bluetooth Connect & Stop Play from the playstore.
    I found this on the web and it may help:
    How to Stop Music Autoplay when Connected to Bluetooth in Car
    S.

  • How to stop music from auto starting when bluetooth ear piece connects.

    Does anyone know how to keep the music app from auto playing when I connect my blue tooth ear piece? It's driving me crazy because when I'm on a call and switch to Bluetooth the music starts playing. Any help would greatly be appreciated.
    Thanks,
    Gregg

    G,
    You might try downloading Bluetooth Connect & Stop Play from the playstore.
    I found this on the web and it may help:
    How to Stop Music Autoplay when Connected to Bluetooth in Car
    S.

  • How to stop Flash from selecting what I draw

    Hi I'm a total noob at Flash
    Whenever I draw something, it gets highlighted afterwards, in a blue outline
    How do I stop this?

    hi, after selecting the drawing tools. i.e brush tool, line tool.etc.
    press "j". it toggles object drawing mode.
    or you can click here to toggle

  • How to stop music

    i have a program that uses music. how can i stop the music when the user leaves the browser page the program is embeded in?

    k
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.*;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.applet.AudioClip;
    import java.awt.event.KeyEvent;
    import java.awt.event.MouseEvent;
    import java.awt.event.KeyListener;
    import java.awt.event.MouseListener;
    import java.awt.event.MouseMotionListener;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.JOptionPane;
    public class Meganova2 extends JApplet //version 1.1
    public void init()
    setVisible(true);
    getContentPane().setLayout(new BorderLayout());
    getContentPane().add(box,BorderLayout.CENTER);
    getContentPane().add(scores,BorderLayout.EAST);
    run();
    public void stop()
    music.stop();
    public void run ()
    music2=getAudioClip(getCodeBase(),"tink.aiff");
    music=getAudioClip(getCodeBase(),"thats it.aif");
    music.loop();
    ..........

  • How can i get my iPod to stop playing after it finishes an episode?  At one time I could do this and fall asleep listening to my podcast but now it keeps playing and the battery is dead in the morning.

    why won't my iPod stop after finishing episodes.  It keeps playing.

    Thank you for using the Apple Support Communities
    On the iPod you can enable a sleep timer: Settings -> Extras -> Alarms -> Sleep Timer.
    -Zeph

  • Music stops playing after song finishes

    Hi guys..im using a iphone 3gs..3.12 version
    My problem now is that my Songs after each song they stop..even thou the playlist still has songs.I noticed that everytime it try to play the next song,it kicks me back into my home page..and i have to on it back again to select another song..Im not sure what has happen.can anyone help me here?thanks so much

    Check in iTunes to be sure each song has a checkmark in the box to the left of the song's title. Songs without checkmarks are ignored unless specifically selected. If you check songs, sync your iPhone again to transfer the changes.
    To check or uncheck all boxes on a PC with one click, hold down the Control (ctrl) key and click on one of the checkboxes with the mouse. You can use this in a library, a playlist or in search results.
    To check or uncheck all boxes on a Mac with one click, hold down the Command (cmd) key and click on one of the checkboxes with the mouse.

  • Itunes match... how to stop music being part of it

    so 3 weeks ago.. i decided to sign up to itunes match and that was the biggest mistake of my life..
    2/3rds of music was fine.. other 1/3 (approx 1000 songs) didn't sync and wouldn't...
    now got the money refunded back and cancelled itunes match subscription but am still struggling in trying to get itunes library back in a working state before I start syn'cing/backing up my 3 devices.
    have now got my library back from a backup.. but "icloud status" for all my music is showing as "waiting" (and in left hand :column, music, films and tv programmes) still have a cloud symbol next to them...how do i stop the library being part of itunes match..
    when i go to store menu, it says "turn itunes match on".. which makes me think itunes match is off but clearly it does not..
    tried customer support and they have been rubbish..
    please help.
    my recommendation.. dont subscribe to itunes match..

    If you are using the iPod in manual update mode, your iPod is safe from being accidentally erased when you connect to an empty iTunes after reinstalling your operating system. However if your iPod is set to automatically update you will get a message that your iPod is linked to a different library and asking if you want to link to this one and replace all your songs etc, press *No*. Pressing "Yes" will irretrievably remove all songs from your iPod. Before formatting your drive change the iPod update setting to "manually manage songs and playlists": Managing Your Songs Manually
    One thing to remember about manually updating though is that the iPod also has to be manually ejected before the "Do Not Disconnect" message will go away. Safely disconnect iPod
    You can also use a keyboard command to prevent your iPod auto-syncing with iTunes. While connecting the iPod to the computer on Windows hold down the Shift + Ctrl keys (on a Mac hold down the Option and Command (⌥ and ⌘) keys). This will stop the iPod from auto-syncing with iTunes and the iPod will appear in the source list. Wait until you are sure the iPod has mounted, and that it will not auto sync and then you can let the keys go. This may take between 20 to 30 seconds depending on your computer. Then go to Preferences>iPod and check the "Manually manage songs and playlists" box.

  • How to stop music folder from being created when changing media folder

    When I try to change the media folder location, a new "music" folder is created - how do I stop this from happening (I already have a music folder that I want it to default to, but when I try to select it, it creates another music sub folder)
    This is a new issue - I have been using itunes for years without ever having this problem...

    That's how itunes 9 works, now. The top-level folder is considered the "Media" folder and there are music, podcast, movie, audiobook, etc subfolders.
    Which is better in a way, since before itunes 9, everything was dumped in a music folder, even audiobooks that weren't music.
    http://support.apple.com/kb/ht3847

  • How to sync music after purchase

    How do I sync music to my shufffle after purchasing music. My shuffle keeps saying to sync music ?????

    This document describes the ways to put music on a shuffle (and also shows the four shuffle models)
    http://support.apple.com/kb/ht1719
    If the shuffle is the current 4th gen (or 3rd gen), here is one convenient way to do it.
    If the iTunes sidebar (along left side of window) is not visible, from the menu bar, under View, select Show Sidebar.  When connected, the shuffle appears in the sidebar, under DEVICES.  Select the shuffle there.  To the right, the shuffle's Summary screen is shown.  Toward the top, where it says Summary, click Music to the right of Summary.  This Music screen is where you tell iTunes how to sync songs to the shuffle.
    Before you set up that Music screen, create a new playlist in your iTunes library, and put all of the songs you want on the shuffle on that playlist.  (Or you can use an existing playlist.)  Back on the shuffle's Music screen in iTunes, check the checkbox for Sync Music.  Choose the option to sync Selected playlists, artists, albums, and genres.  Below that, find that playlist under Playlists and select (checkmark) it.  You can select other items on those lists if desired.
    When you click Apply, the songs in your selection(s) sync to the shuffle.  Going forward, to update the shuffle's songs, just update that playlist in your iTunes library (add/remove songs).  The shuffle does not need to be connected.  The next time you connect the shuffle (or click Sync if already connected), iTunes automatically updates the shuffle with the same changes.

  • How to refresh page after selecting value from LOV item , in a tabular form

    Hi ,
    I have a tabular form, which contains 2 items(columns), of type "Select List - named LoV".
    Now, couple of issues here.
    1.
    2nd item(column) in tabular form, that LoV should get populated based user's selection value in first item LoV. So how do i refer to the value, that user selected in first item's LoV? I will have to use this reference in LoV query of my 2nd item ( on this tabular form)
    2.
    How can we refresh the page, when user selectes value in first item ( from LoV). As this is a tabular form, here item type is Select List, we dont have an option to pick item type as Select List with Submit. So problem is that when user selects value for item 1, refresh does not happen and item 2 LoV does not get populated as per user's selection in item 1.
    Please help here. Would be really appreciated.
    Thanks and Regards,
    Rave.

    Thanks Ben and Dan for your responses.
    Ben, your solution helped me with refresh of page, as page got submitted.
    This answers to my 2nd question. However, I still need to know first question, which basically is, how do i refer to the value, that user selected in first item LoV.
    Issue is, I selected the value in first item LoV, it got submitted and page fot refreshed. But after page refresh, first item LoV loses its value that I had selected last time. It does not retain the selected value after refresh.
    I have an unconditional process, that on every submit(refresh) of page, I set my items with their corresponding values. But problem is what do i mention there to refer to this item.
    I looked in view source of my page, this item is referred as f03.
    So i used "apex_application.g_f03", to set this item to its value, in my uncoditional submit process. But it did not work. I tried to refer this item as "f03" in this unconditional submit process. But still it did not help, the selected item loses its value after page refresh(submit).
    Any help here would be really appreciated. Please suggest how do we refer to this item's selected value.
    Thanks and Regards,
    Ravi.

  • How to stop jobs after a system copy

    Hi All,
    After doing a system copy from the Production system to some test system, all the jobs that are supposed to be triggered in the production server will also trigger in the test system which is not good.
    For example, If we have a payroll running every month. After i do a system copy the same payroll will also be triggered in the test server which is un acceptable.
    How do we go about it and what are all the steps that we need to follow after a system copy?
    Points will be rewarded.
    Thanks
    Vijay

    Hello Vijay,
    you surely need background processes in a running system.
    But you can start a SAP system without any background processes.
    When the system is up you go to sm37 and delete (or de-release) all the jobs you don't need in the target system. Then set the number of batch processes to the amount you want and restart the system.
    Alternatively you can prepare your source system accordingly with the SAP System Copy Guide - Section 3.2 Technical Preparations:
    "Set all released jobs from Released to Scheduled:
    Tools -> CCMS -> Background Processing -> Jobs - Overview and Administration (transaction SM37)
    You also need to do this for jobs that must run periodically (see SAP Note 16083).
    Select all jobs (include start after event) as follows:
    Job -> Released -> Scheduled"
    I think the best way for you is to read this guide!
    Everything is explained very well there.
    Goto:
    https://service.sap.com/systemcopy
    In the left tree select:
    -> SAP Netweaver
    -> SAP Netweaver in Detail
    -> Software Life-Cycle Management
    -> System Copy & Migration
    -> Media Library
    There are all the Guides for the current releases.
    Regards, Michael
    Message was edited by:
            Michael Teubner

  • How to stop music on iphone4 from automatically turning on

    Many times when i take my phone out of my pocket my music is playing. Ive swtiched the ipod icon to another page., Ive turned off all music, yet I put my phone in my pocket and sooner or later Ill hear music coming frm somewhere, sure neough its my phone in my pocket. How do I prevent my music from automatically turning on. Thanks for your help.

    I think it's something that you're going to have to learn to live with until Apple comes up with a software fix. Mine has been basically doing this since my previous 3GS. I thought they had it fixed and it mostly is for me with the latest IP4 EXCEPT every time I get in my car, the Bluetooth feature kicks in atomically to pair the phone. That's fine except that my Ford Flex radio also streams music from my IP. So, in the pairing process, the ipod music starts playing immediately after my IP pairs. A bit of a PITA. On the other hand, I have the Sirius App on my IP and I can switch from my music to a Sirius station and then "stream away" as I drive down the road.

Maybe you are looking for

  • Transferring Adobe Photoshop 7.0 to new computer

    I know, I know.. what I have is a complete dinosaur, but it's exactly what I need for my unique projects.  I'm afraid of learning new tricks with any other version. And, I'm too broke to buy a new one anyway. Now, being as I am, I have lost the disks

  • Importing unencrypted dvd video files

    I have always brought in video from DVD through a converter and used batch capture. However, I was given the following instructions for bringing in the files without a converter: "Use imovie and do import and select dvd as source, will copy raw dv fo

  • Spry support for IE on Windows 2000

    I am trying to write some online documentation, and I want to use spry. My page works fine in Firefox, but in IE, my table does not populate correctly. Am I doing something wrong, or is this a support Issue. I thought that maybe IE was caching my dat

  • Shared Variable Engine OPC Server & Matrikon OPC Explorer

    Hello All I have a shared variable Engine OPC server running on my IPC. I am querying NI OPC Server through Matrikon OPC Client. My situation is if shared variable engine process is switched forcefully off (NI DSM) or communication between server and

  • Error - I have attempted to login too many times

    Anyone else had this? It asks me wait a few mins, but it has been hours now. It looks like some sort of problem with the app to me.