The music control on my command center don't work

Hi, I really like the new IOS7 but I can't use the music section of the command center.
I c'ant pause or change song be it when my phone is lock or open, the only way to do it is to go directly into the music app ??
Anyone having the same bug ??

Hey maude87!
I would suggest that you close the Music app through the steps listed in the article linked below to attempt to resolve the issue:
iOS: Force an app to close
http://support.apple.com/kb/ht5137
If that does not resolve the issue, you will want to reset the phone according to the steps in the following article:
iOS: Turning off and on (restarting) and resetting
http://support.apple.com/kb/ht1430
Thanks for being a part of the Apple Support Communities!
Regards,
Braden

Similar Messages

  • Keyboard Problems, Control-Option-Command Keys Don't work

    Hello and thanks.
    Have a iMac 2.4ghz Intel Core 2 Due with 2GB of RAM running 10.5.8 and suddenly the control-option-command keys are not working on my keyboard.
    Working fine and then suddenly no keys on my last row worked, including space bar. Scoured message boards and tried all fixes. Substituted keyboard with wireless (known working) and usb (known working) with limited results.
    Initially the last row of original keyboard didn't function at all and command keys seemed locked so couldn't type. Only did modifier key functions (open, close, find, et.c)
    The two different keyboards, wireless and USB, typed but the control, option and command keys don't work. Space bar works and the command key no longer locked.
    Things I have tried:
    1. Checked Universal Access settings so no sticky keys, etc.
    2. Check Speech settings, all correct.
    3. Replaced user, universal access prefs from point of which keyboard worked, no change.
    4. Cannot zap PRAM due to no working option or command keys.
    5. Reset SMU. Caused fans to go high speed. Unplugged computer from wall. Waited 10 seconds, replugged, fan now normal.
    6. Repaired permissions.
    7. Tried to repair disk but operation failed in middle of scan. Won't mount from any bootable CD.
    Currently the wireless keyboard works fine except I have no control-option-command key usage. Keyboard types fine and all other keys work fine.
    Suggestions? I'm very frustrated.
    Thanks in advance,
    Annie

    Upgraded to 10.6. Problems resolved.

  • I have my iPhone locked and I don't want the music controls to pop up when I double click the home button. Does anyone know how to make it stop?

    I have my iPhone locked and I don't want the music controls to pop up when I double click the home button. Does anyone know how to make it stop?

    what exactly are you trying to accomplish here? i understand that you don't want to see the music status come up on your lock screen, but what are you trying to do by clicking your home button at all?

  • HT5858 When I swipe up from the bottom of the screen to use control center I am not able to use the music controls for music or podcasts and music controls do not work on the lock screen either is anybody else having this problem???????

    When I swipe up from the bottom of the screen to use control center I am not able to use the music controls for music or podcasts and music controls do not work on the lock screen either is anybody else having this problem???????

    Not really sur easy you would be having that problem.  Mine works.  You might try RESET DEVICE
    Hold down the Sleep/Wake button and the home button together until the apple logo appears (ignore the ON/OFF slider) then let both buttons go and wait for device to restart (no data will be lost). Then try again and see if it makes a difference

  • Anyone else having problems with the music controls in the control center?

    Ever since the iOS 7 post release update (iOS 7.0.2) I've have trouble with the music controls not working properly. Wondering if anyone else was experiencing the same issues....

    IslandPrince89 wrote:
    That actually helped but it seems that there are a lot of bugs in the iOS 7.0.2 ..
    You can use this Link to send your Feedback to Apple
    http://www.apple.com/feedback/

  • How to change a setting in the Java Control Panel with command line

    Hi,
    I am trying to figure out how to change a setting in the Java Control Panel with command line or with a script. I want to enable "Use SSL 2.0 compatible ClientHello format"
    I can't seem to find any documentation on how to change settings in the Java Control Panel via the command line
    Edited by: 897133 on Nov 14, 2011 7:15 AM

    OK figured it out. This is for the next person seeking the same solution.
    When you click on the Java Control Panel (found in the Control panel) in any version of Windows, it first looks for a System Wide Java Configuration (found here: C:\Windows\Sun\Java\Deployment). At this point you must be wondering why you don't have this folder (C:\Windows\Sun\Java\Deployment) or why its empty. Well, for an enterprise environment, you have to create it and place something in it - it doesn't exist by default. So you'll need a script (I used Autoit) to create the directory structure and place the the two files into it. The two files are "deployment.properties" and "deployment.config".
    Example: When you click on the Java Control Panel it first checks to see if this directory exists (C:\Windows\Sun\Java\Deployment) and then checks if there is a "deployment.config". If there is one it opens it and reads it. If it doesn't exist, Java creates user settings found here C:\Users\USERNAME\AppData\LocalLow\Sun\Java\Deployment on Windows 7.
    __deployment.config__
    It should look like this inside:
    *#deployment.config*
    *#Mon Nov 14 13:06:38 AST 2011*
    *# The First line below specifies if this config is mandatory which is simple enough*
    *# The second line just tells Java where to the properties of your Java Configuration*
    *# NOTE: These java settings will be applied to each user file and will overwrite existing ones*
    deployment.system.config.mandatory=True
    deployment.system.config=file\:C\:/WINDOWS/Sun/Java/Deployment/deployment.properties
    If you look in C:\Users\USERNAME\AppData\LocalLow\Sun\Java\Deployment on Windows 7 for example you will find "deployment.properties". You can use this as your default example and add your settings to it.
    How?
    Easy. If you want to add *"Use SSL 2.0 compatible ClientHello format"*
    Add this line:
    deployment.security.SSLv2Hello=true
    Maybe you want to disable Java update (which is a big problem for enterprises)
    Add these lines:
    deployment.javaws.autodownload=NEVER
    deployment.javaws.autodownload.locked=
    Below is a basic AutoIt script you could use (It compiles the files into the executable. When you compile the script the two Java files must be in the directory you specify in the FileInstall line, which can be anything you choose. It will also create your directory structure):
    #NoTrayIcon
    #RequireAdmin
    #Region ;**** Directives created by AutoIt3Wrapper_GUI ****
    #AutoIt3Wrapper_UseX64=n
    #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
    Func _JavaConfig()
         $ConfigFile_1 = @TempDir & "\deployment.properties"
         $ConfigFile_2 = @TempDir & "\deployment.config"
         FileInstall ("D:\My Documents\Autoit\Java config\deployment.properties", $ConfigFile_1)
    FileInstall ("D:\My Documents\Autoit\Java config\deployment.config", $ConfigFile_2)
         FileCopy($ConfigFile_1, @WindowsDir & "\Sun\Java\Deployment\", 9)
         FileCopy($ConfigFile_2, @WindowsDir & "\Sun\Java\Deployment\", 9)
         Sleep(10000)
         FileDelete(@TempDir & "\deployment.properties")
         FileDelete(@TempDir & "\deployment.config")
    EndFunc
    _JavaConfig()
    Now if you have SCUP and have setup Self Cert for your organization, you just need to create a SCUP update for JRE.
    Edited by: 897133 on Nov 16, 2011 4:53 AM

  • Ios 5.1 issue - why have the music controls been disabled when iphone is docked?

    I just updated my iphone 4s yesterday, and immediately I have a huge problem.
    When I dock the phone in my car (using a Denison dock) OR connect it via bluetooth to my car stereo, all of the music controls are locked!
    The Music App becomes a white screen with "device connected" written on it, and there is no way for me to play/pause/skip/browse music on the handset.
    Even double-clicking the home button, the audio controls are greyed-out and don't function.
    I am furious about this, why break something that was working perfectly before?   It's not for safety reasons because the iphone is happy for any other app to be used while docked.  I use my iphone in the car all the time, and it is utterly USELESS if I can't use the Music app normally.
    I have tested with docks at home, and this issue seems to occur only when the connected device can also control the iphone.  I need to stress that no car controls can allow easy use of the Music app - it means you have to take the device off the dock to make any changes in what you're listening to.
    PLEASE can this go back to the way it was!?

    Found another post with a similar issue after upgrading to ios 5 and this worked for him, I might try this tonight and will re-post if it worked for ios 5.1:
    1)Connect phone
    2)Hightlight your phone on the left side of the iTunes window
    3)Click on the music tab towards the top middle of the iTunes window
    4)Uncheck "sync music"
    5) Click "Apply" down on the bottom right  At either this step or the preceding step you might get a
    pop up box that says "you have made changes" or something like that, click okay or apply.
    6)After this is finished, check to make sure there is no music left on your iPhone by double clicking on your
    iPhone in the left hand pane of iTunes and then click on "music" under your iPhone
    7)If there is no music on your iPhone, then recheck the "sync music" and then click "apply" down in the
    bottom righ.
    8)If you have a lot of music it will take hours to sync, but when finished your Dock accesorries should work again.

  • Just installed ios 7 on my 4s, and I have two issues: 1) control centre: the music controls do not work, only the volume adjust slider works; 2) in mail, where do you find the setting to control how many messages you want your inbox to retain?

    Just installed ios 7 on my 4s, and I have two issues: 1) control centre: the music controls do not work, only the volume adjust slider works; 2) in mail, where do you find the setting to control how many messages you want your inbox to retain?

    Same problem here on my 4s: Control center music controls do not work.
    Since this thread has two issues, I'm going to start a new one with only the music control bug. Topic: iOS 7 Control Center Music Controls Not Working On iPhone 4s

  • When I am listening to music on my iPod Touch 5th gen and it is locked I try to double click the home button to bring up the music controls, but it does not work. How can I fix this?

    So, I locked my iPod while listening to music, then pressed to home button to turn it back on, then I pressed it again twice to bring up the music controls so I could pause the song. The music controls came up, but they didn't control the song I was listening to, also the album artwork wasn't showing. How can I fix this?

    Hello,
    I am currently an owner of an Ipod Touch 4th generation. I see you are having problems with your Ipod Touch, so I will try to find a solution to your problem.
    Hold down the Sleep/Wake and Home buttons for at least 10sec. or until Apple logo appears (Nothing will be lost, this is just a "Hard Reset")
    Hope that helps!
    If none of the above solutions work, can you please respond back ASAP as I will try to find another solution to your problem (This might even help others with the same problem!)
    Cheers!
    Pizza98704

  • Why the step-and-repeat function (command+d) isn't working in Illustrator CS5?

    Why the step-and-repeat function (command+d) isn't working in Illustrator CS5?
    I am trying this. Take an object, move it some inches on the right while holding the option key, so I duplicate it.
    Usually, I pressed on command+d to duplicate this action on and on (duplicate the object and moving it some inches away), but now it is not working.
    any idea?

    kwakoo,
    It may be time for the list:
    The following is a general list of things you may try when the issue is not in a specific file, and when it is not caused by issues with opening a file from external media. You may have tried/done some of them already; 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    If possible/applicable, you should save current artwork first, of course.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to at least 5 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible), for CS3 - CC you may find the folder here:
    https://helpx.adobe.com/illustrator/kb/preference-file-location-illustrator.html
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall (ticking the box to delete the preferences), run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • HT1212 I am locked out of my iphone. In resetting my passcode I must have hit a wrong digit, because the 4 digits I thought I used Don't work (and of course not my old passcode).  I have tried the instructions both for "if you have previously synced your

    I am locked out of my iphone. In resetting my passcode I must have hit a wrong digit, because the 4 digits I thought I used Don't work (and of course not my old passcode). I have tried the instructions both for "if you have previously synced your device with iTunes" and "If you have Never synced your device with iTunes" . Neither has worked and I'm in a vicious circle with each time after lengthy downloads it still all ends with the program, & my phone, asking for my passcode to proceed.  I'm not sure if I have ever synced to my mac book (i may have) but my address book seems to automatically update on both devices without the need to plug in. Thank you for any knowledgable help that could efficiently get me  out of this passcode ****!

    Hi DRussell,
    If you have not sync'd your device to your Mac then you will have to force the phone into recovery mode and restore as a new device. Read the information in this link and follow the instructions to recover the phone:
    http://support.apple.com/kb/HT1808
    Hope this helps!
    Cheers,
    GB

  • I updated to the latest IOS and now my passwords don't work.  Reset 4 time which reset for my iPad and iPhone but I cant log into my itunes account using my apple ID it indicates an error, Help?

    I updated to the latest IOS and now my passwords don't work.  Reset 4 time which reset for my iPad and iPhone but I cant log into my itunes account using my apple ID it indicates an error, Help?

    This may sound crazy, but download any free app.  This often "shocks" the other apps into working.

  • The music controls are not working after updating to iOS 7!

    After updating, the main music app is working fine, but the music player accessed through the lockscreen and the menu you pull up by swiping upwards is not working properly!!!!! The fastforward, rewind and play/pause buttons aren't responding at all! Volume and the pace bar works though...Please help!!!

    I had the same bug. Powering off the phone and back on resolved the issue

  • HT4527 All my music is on my old computer, which is broke. I have all the music on my iPod, but I don't know how to move it on to my new laptop. How do I do this?

    How do I move the music from my iPod onto my new iTunes on my new laptop?

    The following user tip is worth checking through:
    Recovering your iTunes library from your iPod or iOS device

  • Qosmio G35-600 - Control buttons and card reader don't work

    Hi,
    So I recently installed windows XP on my Toshiba Qosmio G35-600 and I found all the drivers except for two. If anyone out there could help me find them that would be great.
    1) The first driver I cannot find is for the Toshiba control buttons at the top of my keyboard (I believe that is what they are called). Quosmios have 12 buttons on the top above the F keys, and currently only my power button, the brightness up and down buttons, and the dolby sound buttons work. The analog TV button, the media center button, play, stop, previous, next,record, and s-video out buttons don't do anything anymore. It would be cool if i had an s-video out ability again but mostly what i want is the play, previous, and next buttons to work.
    2)The second problem I am having is with my built in SD card reader. A few times I thought I found the correct driver but after installing it the SD card was not showing up in my computer.
    A preemptive thanks for the help,
    Xamboni

    Hello
    I think you should install the Toshiba controls for Windows XP that you can find on the Toshiba website. Check this!
    http://www.csd.toshiba.com
    The driver for the SD card slot you can find on the Toshiba website too.
    What SD card have you tried?
    Try it with an other SD card and use the Toshiba SD card utility to format the card.
    Greets

Maybe you are looking for