What are these lists and another question re: iTunes "purchased" playlist.

Hello.
I purchased songs from iTunes tonight, and made a playlist called "purchased" to put them in, not realizing that iTunes was going to do that. I synced my iPod, then I noticed (on my iPod) that I now have 2 playlists called "purchased". One is the one I made, and the other is called "Purchased" (with a capital p) that iTunes made when it downloaded my selections. This iTunes-created playlist appears under the heading "STORE". Can I delete that without removing the songs from my library?
Also...
Under the heading "Playlists" the first two items are
"Music Videos" and "My Top Rated". Why are their icons different...are they not playlists? How do I put music in the "My Top Rated" list? (Right clicking in library and choosing "move to" doesn't show that "my top rated" list.)
Thanks,
Sue

"Top Rated" is a smart playlist and songs/videos, etc. will start appearing as your rate your songs. Pick a few songs in your library in iTunes that are your favorites, click on the rating column for that song and give it four or five stars, then go back and look at your Top Rated playlist.

Similar Messages

  • In my storage summary it says other files. It shows 30GB what are these files and how do I remove them

    I am trying to remove files to get my computer to run better. In the storage summery it shows a category OTHER. What are these file and how can I remove them. I went through my downloads and documents and copied them and then removed them. What else could they be??

    They are files that cannot be put in the other categories. They are documents, email, cache, temp, OS files, etc.

  • What are these processes and how do I prevent them?

    For many years, many have complained of external drives that are in standby/sleep spinning up for no apparent reason.  From the user's point of view this is unnecesssary, but to make matters worse, the system usually stops everything else while waiting for the drives.
    I have a Mac mini that I use as a home theater pc.  The media and backups are on a 5-bay enclosure (no RAID) attached by USB.  While watching a video, the unused drives will go into standby mode, which is good.  But then, with no user activity, they will spin up, freezing the video and everything else, which is not good.  As these are slow drives and spin up sequentially, this can take 10-20 seconds.  This may happen once or twice an hour, but sometimes more frequently.
    In looking into the causes, I have turned off time Machine (after putting these drives into the Privacy section for good measure).  I also prevented Spotlight and fsevents logging with the following:
    mdutil -i off /Volumes/<drive1> /Volumes/<drive2> . . .
    cd /Volumes/<drive1 and then repeat for other drives>
         rm -rf .fseventsd .Spotlight-*
         mkdir .fseventsd
         touch .fseventsd/no_log .metadata_never_index
    As far as I can tell this has worked to stop those processes from accessing the drives after they are mounted, but the problem persists.  To find out what else might be causing them to wake up:
    sudo fs_usage -w | grep -e Volumes/<drive1> -e /Volumes/<drive2> . . .
    and here is what I found last night (actually didn't use the -w last night, thus it is cut off):
    18:35:36  fsgetpath   /Volumes/XBMC         0.000026   SSDragHelper
    18:35:36  fsgetpath   /Volumes/Stuff        0.000006   SSDragHelper
    18:35:36  fsgetpath   /Volumes/DatOptic_3   0.000005   SSDragHelper
    18:35:36  fsgetpath   /Volumes/MacBackUp    0.000003   SSDragHelper
    18:36:15  fsgetpath   /Volumes/XBMC         0.000026   System Prefe
    18:36:15  fsgetpath   /Volumes/Stuff        0.000004   System Prefe
    18:36:15  fsgetpath   /Volumes/DatOptic_3   0.000003   System Prefe
    18:36:15  fsgetpath   /Volumes/MacBackUp    0.000003   System Prefe
    18:55:36  fsgetpath   /Volumes/XBMC         0.000034   GoogleSoftwa
    18:55:36  fsgetpath   /Volumes/Stuff        0.000004   GoogleSoftwa
    18:55:36  fsgetpath   /Volumes/DatOptic_3   0.000003   GoogleSoftwa
    18:55:36  fsgetpath   /Volumes/MacBackUp    0.000003   GoogleSoftwa
    After looking into the Google process, I was surprised to find the tentacles that Google puts into your system, and ripped every bit of it out that I could.  But I have no idea about what's going on with SSDragHelper and System Prefe (presumable System Preferences).  This must be OS X itself?  What are these processes doing, and is there any way to prevent them from accessing these disks in this way?

    Thanks for the reply Hen3ry.  Looks like you've done a lot of investigation.  For me, fs_usage entries accompanying spindown are not problems - I'm happy if the drives spin down.  My problem is the spinups.  But still, I don't think it is necessary to time the fs_usage entries with spinups.  If you grep for the drives you're concerned about, you will see any process that would potentially wake them up.
    Because my understanding is limited, I also am more concerned with the process/application that is accessing the drives than with the functions or commands they are sending.  And the values that are returned by those functions are way beyond what I can deal with.
    It's interesting that you've found a difference between your old and new drives.  Could you specify the enclosure and drives in each case?
    The StorageStatus app looks interesting; thanks for the tip.
    Here's a summary of what I've done so far, which I think is working.  I need a few more weeks to know for sure.
    How to prevent unwanted drive spin-ups
    If you are actively using the computer that the enclosure is attached to, nothing on God’s green earth will stop OS X from waking them up after some user action, even ones that seem to have nothing to do with the external drives.  But if you leave the computer alone while some application is running, like watching a movie or downloading a file, you have a fighting chance of coaxing OS X into leaving the uninvolved drives alone.
    If the drives are shared with any other computers over a network, eject them on those computers
    Otherwise, OS X (AppleFileServer) will poll them every 10 seconds.  This might not be bad if you want to just keep the drives spinning and the other computer stays awake.
    Third-party apps
    Make sure no apps are running that might access your drives.  Google runs some processes that do this (maybe I’m naïve, but I was so shocked I removed chrome and every other trace of Google from my Mac mini system). Another is iStat and any utility that monitors SMART status in the background.
    Don’t let Spotlight index or search the drives
    Spotlight is persistent, and it may be necessary to take a variety of steps to stop its various processes (mds, mdworker) from accessing the drives and waking them up.  In other words, kill it, drive a stake through its heart, then burn the body:
    In System Preferences > Spotlight, add the drives to the Privacy pane.
    Add a file called .metadata_never_index to the root of each drive (note the leading period).  The easiest way to do this is in Terminal
    touch /Volumes/<drive1>/.metadata_never_index
    Tell Spotlight AGAIN to keep away from the drive:
    mdutil -i off /Volumes/<drive1> /Volumes/<drive2> . . .
    Finally delete the Spotlight folder from the drive.
    rm -rf /Volumes/<drive1>.Spotlight-*
    Stop fseventsd from logging in the drive
    This is easy, just putting a no_log file in its folder.  I have found that rarely it still writes some files in there, but it doesn’t seem to do so when it causes problems, so . . .
              rm –rf /Volumes/<drive1>/.fseventsd/*
         touch /Volumes/<drive1>/.fseventsd/no_log
    Finder sidebar
    Some people say that if the drives show in the Sidebar of Finder windows, the Finder will be checking them.  I’m not sure. But to be safe, in Finder Preferences > Sidebar, uncheck External Disks.
    Just say no to Time Machine
    On the home theater mac itself, regular backups shouldn’t be needed.  You should be able to just turn Time Machine off.  However, it is probably sufficient to simply open System Preferences > Time Machine > Options and add the drives to the list of locations to exclude from backup.
    Second, local backups can be disabled with
    sudo tmutil disablelocal
    Look for other culprits
    If the problem persists, use fs_usage, which generates a real-time log of filesystem activity. There is so much going on that you need to use grep to restrict the output to entries that involve your drives. The entries that accompany your drive spin-ups are the ones you really want.
    sudo fs_usage -w | grep -e Volumes/<drive1> -e /Volumes/<drive2> . . .
    Now leave the keyboard and mouse alone, as many things you might do will cause the drives to be accessed. You probably want to find what does it when you’re not actively interacting with the computer.  It’s not really necessary to wait for your drives to sleep and see what wakes them.  Any activity you see would probably wake the drives if they were asleep.  When you see some activity and want to stop and examine, type Control-C to stop the output.  On the far right of each entry is the process or application that accessed the disks.
    I got pointers from http://system-log.tyr.org.uk/2012/01/31/how-to-stop-usb-drives-from-spinning-up- unnecessarily-on-os-x-lion/ and http://www.jackenhack.com/disk-that-refuses-to-sleep-in-mac-os-x-how-to-fix-it/

  • What are these features and how can I use them?

    Why do I have SDM Profile, Dyanmic private IP, Pay per message, Mobile Hotspot provisioning,   My mom is on the same account and does not have these.  Everything I look at points to enterprise stuff and administration.  I'm not aware of any of that.  Verizon seems to act like they don't know but it's right on my bill.  My VM seems to be funky too.  I had to change my phone number because of unknown video texts being sent.  Something is still not right.

    If these are items listed on your account as features, I think there are supposed to be there.
    I know I have that dynamic IP address one for my smartphone. So I suspect it is associated with the smartphone provisioning.
    The mobile hotspot provisioning would depend on what kind of plan you have.
    The pay per message is probably associated with your text messages so your phone will receive and send them.
    The other one I'm not sure about, but it could be something associated with the SIM card.

  • What are these - OBN and PPN?

    Hello Experts,
    Could you please help me clarifying the following doubhts. I did find lot of links but want to knkow the general definition before jumping into them.
        1.what are the uses of Object Based Navigation and Portal Page Navigation?
        2. When do you have to use these two concepts?
        3. what are the differences between them?
    If you would like add anything else please feel free to add.
    Thanks everyone for your great help,
    Regards, RN

    Not free, $15 but highly recommended to remove them so Windows don't see them Mac only system files
    http://www.zeroonetwenty.com/blueharvest4/
    Free TinkerTool will turn on/off invisble "dot something" files in OS X.
    http://bresink.de/osx/TinkerTool.html

  • What are the pros and cons of running iTunes from an SD card with a Retina MBP?

    Hello,
    I'm thinking about getting a Retina MBP, but I think the default storage of 256GB is way to small to be used as a main computer and the upgrade to 512GB is very expensive. I was thinking of ways to reduce bulky files and was considering running iTunes from an SD card. Does anybody have any experience with doing this, what pros and cons did you discover?

    I wouldn't even try storing multiple iTunes libraries on SD cards. Better idea - what I do - is store the majority of my music on an external hard drive and just my 'must have' tunes on my internal SSD. I have a 512GB SSD and use around 170GB for iTunes. On my external drive, I had about 440GB in tunes (last time I checked).
    You can 'switch' libraries by holding down the option key when you launch iTunes. It's the best of both worlds - storage for on-the-go, must-haves, and an entire library of "all" of my music.
    256GB should be plenty of space - I just store so much music on my internal SSD because I can!
    Clinton

  • What are these up and down arrows on a region?

    I'm having a problem with some regions in my project. First, I imported some wav files that were sent to me. These are audio tracks that were individually exported from Final Cut Pro 7. After importing them into Logic X, about 3 of them displayed the same waveforms as each other, but when I played them, I could hear each individual track (i.e. not matching the waveforms). I noticed that the 3 that showed the same waveform had small up/down arrows next to the name of the audio file, and I assume these are indicating something about having different audio files on the same track(???). Here is a screenshot of the arrows (notice them to the left of "Dialogue 1_1"):
    I can't figure out what these are or what to do with them, for the life of me. Can someone guide me in the right direction or let me know what these arrows are indicating?
    Thanks in advance.

    It means there is a family/herd/flock/pride/swarm of loops - it's a dropdown menu.

  • What are these 0501 and 0301 numbers

    I DAILY GET 0501 NUMBER DISPLAYED ON MY PHONE WHEN IT RINGS. I PICK IT UP AND ANSWER, BUT THERE IS NO DIRECT REPLY, SO I IMMEDIATELY RING OFF. I NOW IGNORE THIS CALL. AM I DOING RIGHT? I ALSO USED TO GET AN 0301 NUMBER RINGING. COULD YOU GIVE ANY GUIDANCE TO THESE NUMBERS PLEASE AND WHAT DO YOU SUGGEST.

    Yes, TPS is not used by companies outside the UK and quite a few UK companies ignore it. (See this article: http://www.telegraph.co.uk/technology/news/10989292/Telephone-Preference-Service-fails-to-block-cold-calls.html). We get many annoying calls every day, some of them have caller ID from numbers which might be valid, many of them have made-up rubbish numbers like '000010' - obviously not real caller ID. Many others withhold their numbers. I have found one of the best things was to prevent our phones from giving a ringtone for any international or withheld number (some handsets allow you to do this). Sounds drastic but any legitimate caller can leave a message or contact us another way, if they don't, it probably isn't a call I care about.  Banks, doctors, hostiptals, schools etc can leave messages to call them back or write if it's important. We still often get the blank automated messages though and have to wade through and delete them every week.

  • Disk Inspector reports that 260 GB of files are 'hidden.' What are these files and why is this so large??

    I have iMac with 1 Terabyte storage. I just ran "Disk Inspector" and I have 260GB of "Hidden Items."
    Have no clue what this is and why this is so large. Any help is appreciated.

    They are required system files which are normally hidden to prevent accidental deletion.

  • What are these Gray and blue parts on the Timeline?

    I have no idea what they are for,I've looked for a few minutes. I've looked all around,but there is no way to delete them I've come across. I'll show you what I mean,this would help alot! Answer Some Time Soon! I need it right now kinda...

    That is the cache indicator. Blue = disk cache, green = RAM cache. Anyway, this is basic stuff required to understand how AE works and you need to read up.
    Getting started with After Effects (CS4, CS5, CS5.5, CS6, & CC) | After Effects region of interest
    Mylenium

  • Quick care detected 36,658 history and servaes trace from my computer, What are these files and are they all realy neccessary size was 171.09 MB?

    Firefox/Mozilla -Internet(33831 items)
    Firefox/Mozilla -History (2687 items)
    How files were identified.
    When these were removed I recovered 430MB of disck space.

    Just an update... A rep contacted me and we did a screen share. They were convinced that I wasn't full of <insert proper word here>. They promised to get back to me in a few days, and now? A few months later? Nothing.
    Still no files. Still no correction... Still no nothing from Adobe.
    The person I spoke to was kind, saying he'd make sure I got CC for free for a while...
    Still though, no follow up.
    Adobe, are you going to correct this or just let your customer suffer at your mistakes?

  • What are these guides and how can I hide them?

    Thank-you in advance!

    shift + O will get you to artboard editing mode, from there on the control bar above there will be a preference icon towards the end. you can also change the view options from the icon to the left of that but it's not very quick.
    the artboard editing tool can also be reached from the toolbar right above the slice tool towards the bottom of the tools.

  • What are these ports 989, 1021, 1033 and why are they always ON?

    I have noticed unknown network traffic on Activity Monitor, even I close all application, AM still shows there's about 1~2 KB (Data received).
    So, I open a Terminal and check by 'netstat' command. I notice there's some unknown tcp connections established. Is there anyone know what are these ports, and is it normal to have them ON all the time ?
    $ netstat -n | grep EST
    (..omited)
    tcp4 0 0 127.0.0.1.1033 127.0.0.1.989 ESTABLISHED
    tcp4 0 0 127.0.0.1.989 127.0.0.1.1033 ESTABLISHED
    tcp4 0 0 127.0.0.1.1033 127.0.0.1.1021 ESTABLISHED
    tcp4 0 0 127.0.0.1.1021 127.0.0.1.1033 ESTABLISHED

    These ports are some of those used by the NetInfo subsystem which keeps track of your computer's users, groups, and some other information about its configuration. Since the IP addresses listed for those connections are all 127.0.0.1, your computer is connecting to itself; having these open isn't a cause for concern.
    (16141)

  • What are these old files?

    I am going through old folders and found several of the following:
    Cache folder containing Timeline Movie Data.plist, Timeline Movie.mov
    Media folder containing Clip 01.dv,
    What are these files and can they ever be used to recreate some old project? Should I just delete?
    Thanks.

    Cache folder containing Timeline Movie Data.plist, Timeline Movie.mov
    Media folder containing Clip 01.dv,
    These look as though they are or were associated with iMovie HD 6.
    The Media folder containing Clip01.dv will be original source material, which you say you do not want to delete.
    This media will most likely have been imported from a DV tape camcorder ( or an analogue to digital converter).
    Do you still have the old version of iMovie  ? (iMovie HD 6, if I am correct).
    If you no longer have the version of iMovie that generated your above files, but have a later version that you wish to use this .dv media in, then you may well be able to import it into the later version.
    I would be curious to see if you can also import the "Timeline Movie .mov" into a later version of iMovie.
    If the Timeline Movie.mov had still been within the iMovie HD 6 project then you can carry out this import into say iMovie versions 8 and 9 (iMovie 09 and 11) and most probably iMovie ver. 10 (iMovie 13).Try it anyway.

  • While in Add/Remove Prog. in computer, I found apps named: iPOD for Windows 2006-03-23 (138 Mb) and another 2005-09-23 (106 Mb).  I'm trying trying to free up computer HD space.  What are these and can I delete either?

    While in Add/Remove Prog. in computer, I found apps named: iPOD for Windows 2006-03-23 (138 Mb) and another 2005-09-23 (106 Mb).  I'm trying trying to free up computer HD space.  What are these and can I delete either?

    Those are outdated iPod software updaters which can be safely deleted.
    (58627)

Maybe you are looking for