Im unable to remove songs by swiping left from right or deleting the usage. help please?

I updated my phone to ios7 a while back and manage to fix majority/most of the bugs. Now the music is messed up. i've already tried the swipe thing and deleting the usage and nothing has work. Some of the songs wont come off my phone and i dont know how else i could remove it. Help?

my phone started playing a song randomly while it was tucked away in my bag and I was in a crowded elevator. It was very embarrassing.
Yes, that Barry Manilow elevator music is a bit embarrassing (sorry, just couldn't resist that).
Have you tried resetting your iPhone in iTunes and then restore just those items you want back?

Similar Messages

  • I cannot unlock my screen rotation . I double clicked the home button but no amount of swiping left to right brings up the media control screen,  I have a 4s

    I cannot unlock my screen rotation.  I double clicked on the home button but no amount of swiping left to right brings up a media control screen .  Help!!!

    Make sure that Control Center is enabled. Settings>Control Center. Then, swipe up from the bottom of the screen to access various settings, including Rotation lock.

  • Unable to import or export ratings & labels from PC to MAC...HELP PLEASE!

    I want to copy my cache files from a PC with windows OS to a mac in order to keep labels, ratings etc visible in my mac. But, I can't manage this transfer successfully even though i've tried through tools>build and export cache. Can anyone tell me how to transfer the cache files from the pc to the mac and so that the cache file are actually legible in the Adobe Bridge in the mac?

    Can anyone tell me how to transfer the cache files from the pc to the mac and so that the cache file are actually legible in the Adobe Bridge in the mac?
    Assuming you did use Bridge also on PC the labels and ratings should be available after just copy files from PC to Mac, either directly or via external HD. (Mac reads most of the HD formats but not al of them!)
    Labels, rating and IPTC metadata are stored in the file itself when using common formats like jpeg, PSD Tiff etc. DNG files have the info also written in the file itself. Only Raw files use a side car XMP file to store this data in.
    If you have set the option to save image settings in Sidecar XMP files (on by default in the camera raw preferences in Bridge) all your info is already stored in those files (same filename as the raw but with the file extension .xmp instead of the raw format)
    Bridge handles XMP files as hidden so to see if you have them go to the menu View and select 'show hidden files'. When the sort order is at filename you will see the XMP icons next to the image thumb itself.
    Or just look in the folder where you stored them on your hard drive.
    On your Mac Bridge needs to cache them first so that takes some time but then your rating and labeling should also appear again. ( I don't think it is wise to copy the cache files because the systems are different but that is just a guess, not experience. However new cache build dis not much work and with a lot of files you can do it overnight)
    If you have also build a keyword list you should export the list on your PC (use the little wing menu top right of the keyword panel) and import the list again using the same menu in Bridge. The keywords are also still in the file but will appear in italic until you choose to make them persistent with right mouse click. That is however a lot of work and export import of the keyword list will solve that.
    And feel free to try, you are only copying the files (and you already had made an extra back up, ain't it...) so nothing bad can happen then

  • Despite my best efforts, I am unable to remove iTunes 11.1.4 from my PC, this being made necessary because the original installation had a flaw and did not load properly. Effor to use the control panel, deleting dll. files, etc. all failed. iTune out??

    Despite my best efforts, I am unable to remove iTunes 11.1.4 from my PC, this being made necessary because the original installation had a flaw and did not load properly. Effor to use the control panel, deleting dll. files, etc. all failed. And, of course, on startup, a window opens with the error and tells me find QTMovie.dll and delete it because this may be the source of the hangup. Also, in trying to delete iTunes, I get the additional message that I must get approval from the System Administrator to take this action. I am the System Administrator.
    Any ideas would be welcomed.
    Thank you.
    James
    <E-mail Edited by Host>

    Thank you for asking this question.  I'm having the same issues. 
    Liz

  • CreateChildSymbol on the top left bottom right edges of the window/stage?

    I am creating a particle system and I am trying to generate the particles / CreateChildSymbol on the top left bottom right edges of the window/stage?
    Currently I am generating random X & Y points but thats not really doing what I need.
    // find the stage width & height
    sym.maxWidth = $('#Stage').width();
    sym.maxHeight = $('#Stage').height();
    // randomize the numbers 1-12
    var randomSymbol = Math.floor((Math.random()*12)+1);
    // Pull symbol from lib and add to stage
    sym.mainParticle = sym.createChildSymbol("symbol_ani_" + randomSymbol, "Stage");
    // create jQuery object / Edge Ani element var
    sym.mainParticleElement = sym.mainParticle.getSymbolElement();
    // randomize the stage X & Y coords
    var randomX = Math.floor(Math.random() * sym.maxWidth);
    var randomY = Math.floor(Math.random() * sym.maxHeight);
    // position  based on random stage X + Y position
    sym.mainParticleElement.css({'position':'absolute','top':randomY+'px','left':randomX+'px'} );
    But I am at a loss of how to randomize the top / right / bottom / left X & Y edges of the stage

    Got it working!
    Well to be honest another friend helped me work out the logic for randomizing the sides (top, left, bottom, right) to get it working.
    But I wanted to share since I had a hard time finding anything releated to this topic. Big Ups to Resdesign + Tim Jaramillo for helping me with some logic along the way as well!
    // these variables are global within compReady would need to change to sym. instead of var if needed outside of this
    var moveToX = $(window).width()/2,
         moveToY = $(window).height()/2;
    function spawnParticle() {
         // these variables are only availabe inside this function
         var side = Math.floor(Math.random() * 4),
             offScreen = 100,    // how many pixels off the side of the screen to start
             yRand = Math.floor(Math.random() * $(window).height()),
             xRand = Math.floor(Math.random() * $(window).width()),
             xPos = 0,
             yPos = 0;
         switch (side) {
             case 0:
                 xPos = xRand;
                 yPos = -offScreen;
                 console.log('spawn from top');
             break;
             case 1:
                 console.log('spawn from right');
                 xPos = $(window).width() + offScreen;
                 yPos = yRand;
             break;
             case 2:
                 console.log('spawn from bottom');
                 xPos = xRand;
                 yPos = $(window).height() + offScreen;
             break;
             case 3:
                 xPos = -offScreen;
                 yPos = yRand;
                 console.log('spawn from left');
             break;
         // add to the stage
         sym.mainParticle = sym.createChildSymbol("star", "Stage");
         sym.mainParticleElement = sym.mainParticle.getSymbolElement();
         sym.mainParticleElement.css({'position':'absolute','top':yPos+'px','left':xPos+'px'});
         // simple animation to reveal the particle
         sym.mainParticleElement.animate({ left: moveToX, top: moveToY }, 1000, function() {
             // for this test, I'm removing the particle after it has finished animating
             $(this).fadeOut(function() {
                 $(this).remove();
    // keep spanwing new particles
    setInterval(spawnParticle, 500);

  • I would like to remove a short gray edge from two images. I need help in that I am not yet able to use PhotoShop. Could somebody kindly help me with this?

    I would like to remove a short gray edge from two images. I need help in that I am not yet able to use PhotoShop. Could somebody kindly help me with this?

    I doubt it Doc Maik, but I am certainly happy to learn The image is this one (and a similar one). They would be beautiful portraits if not for the "extra mouth". The grey edge that I would like to remove is the excess of (grey) mouth that is actually my horse's chin, but that in the pictures looks like a wider, looping mouth. Practically, looking at the picture, the "extra mouth" to the left. What I would love it to be able correct that to look like a normal mouth, which means that half of the protruding edge should be removed. I am not sure I was able to explain myself, but here is one of the two pictures. I thank you for you kindness in being available to advise me.

  • CS6: No more Left and right arrow in the timeline

    Hi everyone,
    Adobe removed the left and right arrows in the timeline. I don't understand why because it was a functionnality that I was finding very convenient when comes the time you have to move accurately in a zoomed timeline. The moving bar doesn't work very well in this kind of situation.
    Do you now if there is a convenient way to do the same wihtout these left and right arrows ?
    Thanks

    If you are referring to these arrows in the CS5 interface:
    They have been removed in CS6:
    note:
    If you're new to CS6 from CS5, just wait until you try to select
    a transition vs. a cut point in the Timeline.

  • TS3274 How to remove an old iCloud account from my IPad.  The account (email) was on my dad's name and he resently change it and now i can't  reset or delete his iCloud account without his password.  Please advise on the procedure.  Thanks.

    How to remove an old iCloud account from my IPad.  The account (email) was on my dad's name and he resently change it and now i can't  reset or delete his iCloud account without his password.  Please advise on the procedure.  Thanks.

    If you are trying to activate an iPad or iPhone and it is asking for a previous owners Apple ID and password, you have encountered the Activation Lock. This is a security feature that prevents thieves from setting up and using a stolen or lost iPad or iPhone. You have no alternative. You must use the previous owner's password to get permission to use the device. If you cannot get the password your father put on the iPad you will never be able to activate the device and no one can help you do it.

  • If I've downloaded my music to an itunes library from an external hard drive and I have several duplicate songs, is there an easy way to delete the duplicate songs? Or, do I have to go through my entire library song by song to delete duplicates?

    If I've downloaded my music to an itunes library from an external hard drive and I have several duplicate songs, is there an easy way to delete the duplicate songs? Or, do I have to go through my entire library song by song to delete duplicates?

    In iTunes, File>Display Duplicates

  • I need to remove an AOL email account that is not attached to my Apple ID.  This is on an iPAD.  It is not showing in Accounts.  However, I cannot delete the mailbox,. Please advise

    I need to remove an AOL email account that is not attached to my Apple ID.
    I am receiving email and I cannot delete the mailbox. Please advise.
    the account is not viewable in settings.

    I am assuming that this mail is coming into the Mail App, not another third party app, correct?
    Is the AOL account showing up as its own mailbox in the mail app? (e.g. I see "All inboxes", "iCloud", and a third mailbox that is my second email address.)
    Every "mailbox" except the "all inboxes" are going to be in the settings under mail, Contacts and calendars.
    If the mail is coming into a mailbox that isnt the AOL mailbox, then it sounds like you have your AOL mail being forwarded to another email adress.

  • I purchased an album on the PC and then sync it to my iPhone but in my music in my phone it song appeared twice. Also everytime I deleted the song and reload the song from the phone it reappears twice. How do I fix this problem?

    I purchased an album on my PC and then sync it to my iPhone but in my music library in my phone the song appeared twice. Also everytime I deleted the song from my phone and redownload the song from iTunes to the phone it reappears twice. How do I fix this problem?

    I've had the exact same problem, but with 72 songs that I can't get off of my phone!
    Also, I have the setting set so that my phone does not show music that has been purchase on iTunes but is not synced.
    Any ideas?

  • How do I get page numbers on the left and right side of the page?

    I am finishing up a book in PAGES '08 on my Mac.
    How do I get page numbers on the left and right side of the page.
    I can get them on the page but I'd like them on the left and right sides.
    Evan

    If the icons are from dmg files that were used to install 3rd party apps like this one for VueScan
    Control (right) - click on the open dmg icon and select "Eject  xxxx" from the contextual window.
    Then find the actual dmg file associated with those icons
    and drag to the Trash in the Dock and empty.

  • Hi from few days onwards i found one abnormality in my iphone4s .That is if i observe my phone settings screen from right side of the device top navigation appearing rightside height is more than the left side. In reverse manner from the left side.

    Hi from few days onwards i found one abnormality in my iphone4s .That is if i observe my phone settings screen from right side of the device top navigation bar appearing rightside height is more than the left side. In reverse manner from the left side. I dnt know whether it is default feature of iphone or not but i am really disappointed due to this. So please anyone help me in this issue and let me clear my doubt and make me happy. Thanks in advance.

    I believe what you are seeing is an optical illusion when viewing the screen from the side. Try to align one of the one of the options in Settings, like General, with the navigation bar you'll see it does the same thing.
    Hope that helps

  • How can one remove a raised texture pattern from a scan of the original photo?

    How can one remove a raised texture pattern from a scan of the original photo?
    Have several wedding photos scanned into PS Elements that were printed by the pro, photography studio on a raised pattern paper. Would anyone know how to remove the honey comb type pattern so that the picture canbe printed flat on glossy color photo paper?
    Any help would be greatfully appriciated.
    Thanks,

    The best way to remove a pattern is to use a Fast Fourier Transform.  There's a free plugin (as well as examples and instructions) here:
    http://dl.dropboxusercontent.com/u/6795661/4N6site/improc/fftplugin/examples.htm
    Using the plugin requires editing the individual colour channels, which PSE does not natively allow.  You'll need the reasonably-priced Elements+ addin:
    http://elementsplus.net/
    Here's a crop at 100% of the result I got:
    The pattern is much reduced.  With some experimenting, you can probably do a little better.
    Ken

  • I would like to transfer old reel-to-reel tapes to an iMac. There are different recordings on the left and right channel of the tapes. When I connect the tape deck to the Mac, I get one recording on the left, the other on the right speaker. What to do?

    I was about to transfer some music from a reel-to-reel machione to my Mac. There are different sound recordings on the left and right channels. When I connect with RCA cables and Y-connector, I hear one recording from the left speaker, another from the right side. How do I record only one side, but hear it from both speakers?
    Detlef

    You don't say what end, or connectors are plugged into what. I'm assuming the RCA connectors are on the reel-to-reel end. Since the tape has two different mono recordings, one on each track, you of course only want one at a time during playback. Otherwise, the Mac (or any recording setup) can only treat it as a stereo recording with the standard Left-Right tracks.
    1)  There are multiple ways to connect different types of cables to get a mono signal down to a stereo output at the Mac. Here's one way.
    2) Plug any RCA cable (single cable or stereo) into only the right or left RCA output of the reel-to-reel.
    3) On the other end of the RCA cable, plug in an adapter like this. That will feed the single RCA output into a mono 1/8" plug.
    4) Then plug that adapter into this. That turns the 1/8" mono signal into a "stereo" output with the same single track audio being fed to the Mac on both the left and right channels.
    5) Record either the left or right output of the reel-to-reel. Rewind the tape and switch the RCA connector on the reel-to-reel to the right channel (if you started with the left) and record that mono signal as stereo.
    Or, avoid all of this hardware mumbo-jumbo in the first place and do this:
    1) Record the audio just the way you have it. Two different recordings, one on each channel.
    2) Copy the audio recording to a new name and open it in your editor.
    3) Highlight the left track and copy/paste it into the right track. Presto! Mono recording of the left track on both channels. Save the recording.
    4) Repeat, only copy/pasting the right track into the left track and save the second recording.

Maybe you are looking for

  • How to change colour settings on Satellite Pro P300

    I just got my new laptop and can't for the life of me find how to change the colour settings in the monitor. On my old desktop there was a button on the monitor. Being a first time laptop user im going nuts trying to find how to change my monitor set

  • How to Rebuild after BK and Go from Secured CC's to an Unsecured?

    In 2011 I filed a Chapter 13 BK (I'll spare the sob story since I don't want to get depressed). A year later - after making prompt payments to the trustee, I was furloughed from work due to the economic downtown and no longer met the min income quali

  • HTTP Adapter - Problem sending message to XI.

    Hi,   We have configured a scenario in IR and ID for the HTTP -> XI -> RFC message flow. We have created all the configuration objects (Receiver determination, receiver agreement, interface determination) in ID except the Sender Agreement (There is n

  • Reg ODI variables

    Hi , Can anyone tell me , how to use odi variables in odi procedures and functions . Thanks Bhoopendra

  • No "Context Root field" found under General tab

    The J2EE 1.4 Beta2 tutorial on using the deploytool says, For example, to set the context root of the hello1 application with deploytool: Select the hello1 WAR. Select the General tab. In the Context Root field, enter /hello1. But there is no "Contex