Itunes won't respond to double clicking on a song once another song is play

hi. i open itunes, double click on a track and then if i want to play another track i double click on it but itunes won't respond and just keeps playing the original track. if i click on the track, it will highlight but won't play when double clicked. it will however play if i highlight with a single click and hit return. why is this happening. it never used to happen and doesn't on my other computer.

QuickTime X wouldn't have given the error message if it could have opened the file.
There are many file formats and codecs it can't view.

Similar Messages

  • My Itunes won't open when I click on the program.

    My Itunes won't open when I click on the icon/program. It will flash like it's going to open on the bottom bar on windows 7 but then doesn't do anything, I have tried deleting it and redownloading it, however this still hasn't done anything. What can i do??? Thanks.

    Can you right mouse click iTunes icon and choose "Run as Administrator"?
    If this fails:
    Try SCAN your Windows system files for possible corruption:
    Go to command prompt (START/ALL PROGRAMS/ACCESSORIES right mouse click "command prompt" and choose "Run as Administrator"
    type in
    sfc /scannow
    let Windows fix any system files that need to be repaired.
    Restart the computer if it did actually repair any files.

  • HOw to make an Object oriented alv respond to double click

    Hi all,
    HOw to make an Object oriented alv respond to double click.SAmple code will be helpful.
    Thanks in advance,
    Alex.

    Hi,
    1. Create a Control (for Custom and Split Containers only)
    2. Instantiate a Container Object (in case of Custom and Split Containers, specify the control which is created by us in Screen painter) CREATE OBJECT
    3. Instantiate an Object of the kind of report that has to be displayed (List, Grid or Tree). CREATE OBJECT . Here we need to specify the Parent Container as the so that it sits in that container.
    4. Call appropriate methods to display the report on the screen. CALL METHOD ->
    DATA : g_dock TYPE REF TO cl_gui_docking_container,
    g_split TYPE REF TO cl_gui_easy_splitter_container,
    g_cont1 TYPE REF TO cl_gui_container,
    g_cont2 TYPE REF TO cl_gui_container,
    g_grid1 TYPE REF TO cl_gui_alv_grid,
    g_grid2 TYPE REF TO cl_gui_alv_grid.
    i_mara is an internal table of structure MARA
    SELECT * FROM mara INTO TABLE i_mara.
    i_kna1 is an internal table of structure KNA1
    SELECT * FROM kna1 INTO TABLE i_kna1.
    To create an Object of type Docking Container
    CREATE OBJECT g_dock
    EXPORTING
    side = cl_gui_docking_container=>dock_at_top
    extension = 200 .
    To Create an Object of Type Split Container. Here we can see that the Docking *Container Created above has been used as a parent .
    CREATE OBJECT g_split
    EXPORTING
    parent = g_dock
    orientation = 1 .
    Easy Split container splits one Control into 2 manageable controls, each of them is used * to handle one GUI Container each
    g_cont1 = g_split->top_left_container.
    g_cont2 = g_split->bottom_right_container.
    To Create an Object of type Grid . Here we can see that the Left Split Container * Created above has been used as a parent .
    CREATE OBJECT g_grid1
    EXPORTING
    i_parent = g_cont1 .
    To Create an Object of type Grid . Here we can see that the Right Split Container * Created above has been used as a parent .
    CREATE OBJECT g_grid2
    EXPORTING
    i_parent = g_cont2 .
    The method of Grid Control Object is used to display the Data.
    CALL METHOD g_grid1->set_table_for_first_display
    EXPORTING
    i_structure_name = 'MARA'
    CHANGING
    it_outtab = i_mara[] .
    The method of Grid Control Object is used to display the Data.
    CALL METHOD g_grid2->set_table_for_first_display
    EXPORTING
    i_structure_name = 'KNA1'
    CHANGING
    it_outtab = i_kna1[] .
    Regards
    Hari

  • Hyperlink in Subscreen - Respond to double click is not responding

    Hi Team,
    I have a requirement - i need to have a Hyperlink in he sub screen , i tried keeping an input box , checked responding to double click , but nothing is triggering when double clicking(I tried debugging but not triggering).
    Please let me know the possible ways to keeping a Hyperlink in the sub screen.
    I don't want to maintain a separate button to go to that link and i want to display this in a label or input box and not in any other UI elements.
    Karthik.S

    Hi.
    I have done a test this morning:
    I have a main screen 250 and a sub screen 550 .
    Screen 250 will play the role of sap standard screen . The OK field name is known and in this case it is OK_CODE .
    sub screen 550 can have PBO and PAI .
    Code & Screens:
    Global:
    Please see if this works in your case.
    Regards.

  • How do I get iTunes to ONLY open in Mini Player? I don't want the entire iTunes interface opening when I double click on an Mp3 file.

    How do I get iTunes to ONLY open in Mini Player? I don't want the entire iTunes interface opening when I double click on an Mp3 file.

    Over 6000 people have downladed the script to get around this after a fashion. Is it still required?

  • Cannot open videos (podcast, itunesU) using iTunes... when I double click a video, there's nothing happens. what should I do? Thanks in deed!

    Cannot open videos (podcast, itunesU) using iTunes... when I double click a video, there's nothing happens. what should I do? Thanks in deed!

    iBooks can not be read on macs, only on iDevices.

  • InDesign files won't open with double click

    InDesign files won't open with double click on my MacPro with Snow Leopard although they do open from external hard drives when I double click.

    Thank you very much,you were correct, it appears the mouse clicks were set too fast. Thank you very much indeed for taking the time to answer my question.
    Regards,
    Mag1975

  • Automator app won't run from double-click

    automator app won't run from double-click in finder or from alert from ical. Will only run if I open in automator editor.
    I found a solution on my own. I opened activity monitor and all the automator apps that I run daily were hanging up and the auromator launch was hanging up. I force quit them from the activity monitor. Now it works again.

    I might have gotten there eventually on my own, but I suspect finding your post saved me a lot of work. Thanks for posting your solution.

  • How to display the calender which responds to double click even module pool

    Hi Experts,
                       I got a  requirement  to display a calender in module pool. when user clicks on any date on the calender i need pick that particular date and i have to display that date with some other information.
    I have displayed the calender using
    data:      my_calendar1           TYPE REF TO cl_gui_calendar,
                  my_calendar1_style TYPE i,
                 container1                  TYPE REF TO cl_gui_custom_container.
        CREATE OBJECT container1
           EXPORTING
             container_name = 'G_CONTAINER1'.
    *---Assing style to calender
        my_calendar1_style = cnca_style_v_navigator.
    *----Creating calender object
        CREATE OBJECT my_calendar1
           EXPORTING
             parent     = container1
             view_style = my_calendar1_style.
    please help me to display the calender which responds to double click event or single click.
    Thanks in advance,
    nag.

    Hi Nag,
    You have to use DATE_SELECTED event. Register it (method SET_REGISTERED_EVENTS), assign an handler (SET HANDLER) in which you know which date has been selected.
    You have to trigger the PAI/PBO so that you can change the list of possible values in the list boxes, so you should register (via method above) by setting APPL_EVENT = 'X'.
    Refer to demo program SAPCALENDAR_NAVIGATOR to see exactly how it works.
    BR
    Sandra

  • ITunes won't recognize my iPod Click

    Hello,
    iTunes won't recognize my iPod click. I bought the iPod used on ebay. It didn't come with software. Does it need it? If so where can I download it.
    Thanks,
    Jim

    See if any of these articles help.
    Windows XP cannot detect an iPod.
    USB drivers are not installed properly or are out of date.
    iTunes 7 doesn't recognize the iPod.

  • ITunes won't install after I click license agreement page

    iTunes won't install after I click license agreement page

    I had the same problem as many are having, I am running Win XP Pro and after installing the latest greatest version fresh no go, tried all the fixes mentiond around the net and no go all you get is the dam agree screen ... so I had enogh, I completly uninstalled the new version and then installed version 10 and it works fine so I think they droped the ball in the programing of the latest release thats my 2 cents. I am so glad i always keep older versions on hand because many times new versions are buggy or just do not work NOTE TO APPLE DO NOT FIX IT IF IT AINT BROKE comes to mind ... the older just work and the new junk fails don't they test the programs anymore? accross the dif supported platforms? whlth all these peole having the same problems I would say they botched the program code or installer.
    It says after the install there is a newer version great after waisting all this time I will not be updating till they claime and prove they have a big prob and fix it and then test it compleatly.
    Important my problem started on first installing Itunes ona newely set up XP comp so I had no settings or anything and did not care a full uninstall worked for me. Not sure with those that have tons of stuff allready in the iTunes system,
    Complete working version 10.0.0.68 works fine in win XP Pro ...

  • On Itunes for Windows 7, when I click the check mark box, the song is quickly deleted and sent to the recycle box. How do I go back to when I click on the check mark box, the checkmark is either turned on or off?

    On Itunes for Windows 7, when I click the check mark box, the song is quickly deleted and sent to the recycle box. How do I go back to when I click on the check mark box, the checkmark is either turned on or off?

    Thanks for replying, but I tried that earlier and had that did not work. After your reply I did it again, shutdown itunes and rebooted system. I thought since it didn't do that earlier that might work but same results it deleted file from Itunes but no second questions to move to recycle bin.

  • I click on one song and another one starts playing.  Cover art for one artist shows up on another album.  All of my music isn't showing up.  Please help.  Why is this happening?  How can I fix it?

    I click on one song and another one starts playing.  Cover art for one artist shows up on another album.  All of my music isn't showing up.  Please help.  Why is this happening?  How can I fix it?

    Sorry for not getting back with you...
    That moves only the iTunes media, not the iTunes library (which is really kinda nebulous).
    iTunes library = iTunes folder and all the media, wherever it is located.
    The /Music/iTunes/ folder contains the iTunes library.itl file, which keeps track of everything in iTunes.
    I do however still have the original MAIN startup drive still in the computer, it's just not the startup.
    This is good you still have it.
    Try this...
    Hold Option and launch iTunes.
    Select Choose library... and select the /iTunes/ folder on the original drive. It should be in /Users/your_user_name/Music/.
    Don't mess with anything. We can get it cleared up.
    Does everything work okay?

  • My Time Machine won't back up and files won't open when double clicked.

    I'm not sure if these are related, but recently my MacBook Pro has been acting much more sluggish than usual.
    To start, I have a 13in MacBook Pro Mid 2012 model with a 2.5 GHz Intel Core i5 processor and 4 GB 1600 MHz DDR3 memory. I've got it new in the summer of 2012, and haven't had any real problems until now. I have a 1TB Hitachi external hard drive with over 600GB left of storage. I'm running Yosemite.
    Lately, as in the past few weeks but more noticeably the past few days, I can't open files if I just double click on them from my desktop or from searching them outside of the application. For instance, if I click on a word document on my desktop, it will cause the work icon to bounce for a while, pretending to open, but it never does. If the application is already running, the file just won't open. If I search from the "open" selection within the application, it works fine. This is true for all of my Microsoft Office apps, Photoshop, Preview, iTunes, and everything in between, all of which I had never had a problem with before.
    Next, anytime I try to backup my system using Time Machine, it simply shows the "Preparing Backup" status and never starts. I've had the hard drive and used it as a Time Machine since I got the computer, and have had zero problems at all.
    I've tried CleanMyMac2, Memory Clean, and I've always kept my Mac very clean and organized, as in no duplicate files, moving my biggest files onto my hard drive, and deleting any of my unnecessary files.  I know I don't have a ton of RAM left, but I'm honestly not completely sure what to do about that, as this model apparently doesn't have RAM updates available.
    Think you all can help?
    Thanks so much.

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your documents or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this behavior; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Please take this step regardless of the results of Step 1.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of Steps 1 and 2.

  • PDF file won't open with double click

    Mac OSX 10.6.8/Acrobat 10.1.3.
    Suddenly pdf files won't open with a double click, I now have to open Acrobat and file>open.
    Also, once they're open, they won't close by clicking the red close dot, I now have to go to file>close.
    Very frustrating!

    Even reinstalling doesn't work with the standard Creative Suite installer. Except for the double-click bug, Acrobat doens't respond to dock-tasks either, like <right-mouse-click> on dock icon and select <quit>.
    In this version of Acrobat, the repair function doen't seem to exist anymore. Sadly....
    So the problem keeps existing, even with the laterst 10.1.4 version.
    ==========================
    OSX 10.8 - Acrobat Pro X 10.1.4

Maybe you are looking for

  • How do I get my mail-icon back on the display-buttom?

    My daughter deleted the mail-icon - how di I get it back on the display?

  • Does time machine "restore" change all subsequent versions?

    Hi all, This evening I some how accidently "restored" a document I had been working on to a version I started about a month ago.  I honestly have no idea how this happened since I hadn't even opened Time Machine when noticed the document was the old

  • Acrobat 8 install forced change to different Windows Default Printer

    Immediately after installing Adobe 8 Pro my Windows default printer changed and I can't get it to stay set to the default that I want. Everytime I restart my computer the Windows default printer is set to the one it changed to after installing Acroba

  • Not opening "home page" tabs

    since being forced to go to version 29, I no longer have a status bar nor does my chosen group of home tabs appear. I am completely unimpressed by how every iteration of Firefox appears to be more and more of other people trying to force me to use it

  • Sent new Router- will I have to do complete re-set up?

    I just got a new router to replace a 12 year old westell(still not sure why I had to PAY for a old one that needed constent reboot) anyways they sold me a ACTIONTEC-GT784WNV - Looks very basic..  I have a security camera system set up with port forwa