Track selection & playlists

Hi
I have tried a search for this and cannot find an obvious answer?
I have created playlists, how do you uncheck the Library music file but keep the playlists checked for when you sync to your iPod? I do not want the Library music file and the playlists on my iPod at the same time.
The simple answer would be to uncheck them one at a time but that is a bit long winded. I know there is a solution but I just cannot seem to find it.
Help someone!
Thanks
Peter

*how do you uncheck the Library music file but keep the playlists checked for when you sync to your iPod?*
You can't. Playlists are just links to songs in the library, if a song is unchecked then it's unchecked wherever you see it.
If you don't want everything in the library to sync to the iPod you could choose the option 'Sync Music - Selected playlists'. Open iTunes and create a playlist to update your iPod from, call it -My iPod for example (the dash will position it at the top of the playlists in Sources). You can make it a smart playlist that picks the songs for you or just a normal one and drag whatever content you want to have into the playlist. If you are making a smart playlist limit it to just less than the size of your iPod (for example 3700MB for a 4G iPod Nano. Now connect your iPod and when it appears in the Source list click on the iPod icon to bring up the preference tabs in the main pane. Go to the Music tab and choose Sync Music and the Selected playlists radio button. Choose the playlist you just made from the selection and click Apply. You can also sync from any existing playlists by choosing the same setting, you just need to make sure that the size of the playlists don't exceed the capacity of your iPod:
How to create a Smart Playlist with iTunes
Syncing Music to iPod
To make a random playlist go to File>New Smart Playlist.
Uncheck "Match the following rule"
Check "Limit to" put "3700" in the number box, choose "MB" from the first list box, choose "Random" from the next list box. Check "Live Updating"
When you want to change the selection in the smart playlist just delete everything in it and it will add a new selection. When you want to change the normal playlist just delete out what you don't want and drag in a new selection.

Similar Messages

  • Why is Delete greyed out in the Edit menu? (track selected in regular playlist)

    Hi. Starting today, Delete is permanently greyed out in the Edit menu in iTunes. This is with tracks selected in the Music library or in any playlist (not just Smart Playlists). I manage tracks daily, and this just started today. I upgraded to 10.4 about a week back so it was fine for a while. Immediately before the problem manifested itself, I selected "Always Show Artwork" from the View menu (which is available when you're in Album List mode), something I've never done before. But that might be totally unreleated.
    Hitting the Delete key doesn't work either (actually that's my preferred method). However "Cut" and Cmd-X do work, as does the Delete command in the contextual menu. So I have a workaround.
    Quitting and re-entering iTunes didn't help, nor did de-selecting "Always Show Artwork".

    Hmm.  I came to realise iTune Match had downgraded 38 of my tracks, which I'd ripped from my own CDs long ago, with 256kbps versions.  I do have backup for the tracks, so I'd like to delete these 38 tracks (I've made a Smart playlist of them), deleting them from iCloud too; then with Match turned off, recover my originals (Add to Library) from an old Mac.
    Can't do it!  As Richard Tench said at the top, from 27 July 2011, Edit > Delete is permanently grayed out if you have opted for iT Match.  And for me on iTunes 10.6.3 (Lion 10.7.4), that's not all:  Edit > Cut and Cmd-x both just produce the Bonk sound.  My Macbook keyboard has no Del key either. 
    But all the above are only true with Match active.  Store > Turn Off iTunes Match will ungrey Edit > Delete (& fn-bksp etc I imagine).  So I would then be able to delete the tracks locally.  But of course, if you turn off iT Match you can delete all you like locally, but they will still exist in iCloud, and if I turn on iT Match again, the lower-grade 256kbps ones will come down from the clouds to replace my CD-ripped ones again!  Won't they?
    Is that right?  Is there any way to exclude these 38 tracks (out of ~6500) from iTunes Match so I can keep my better quality CD-ripped ones?  (Other than using Alt-Launch & creating a separate iTunes fileset for the 38 tracks - as you might have guessed, some of them fall right in the middle of albums.)   Help!
    dw32

  • Applescript add track to playlist

    I have two variables track_name and selectedpl
    selectedpl is defined with
    set selectedpl to {choose from list x with prompt "Please select the playlist you want to save this song." with title "Playlist Selector"}
    And I'm trying to do this command
    duplicate track track_name to playlist selectedpl
    I tried "quoted form of", "a reference to", " "'" & selectedpl & "'" " but no luck.
    Thanks in advance
    Best Regards

    Okey this is my code
    >>>>>>>>>>>>>>>>>>>>>>
    set userApproved to true
    try
              set addPlaylist to display dialog ¬
                        "Do you want to add this track to playlist now ?" buttons {"No", "Yes"} ¬
      default button "Yes" cancel button ¬
                        "No"
    on error number -128
              set userApproved to false
    end try
    if userApproved is true then
              set newPlaylist to true
              try
                        set newPlaylistMaker to display dialog ¬
                                  "Do you want to make a new playlist and save your track in that playlist ?" buttons {"No", "Yes"} ¬
      default button "Yes" cancel button ¬
                                  "No"
              on error
                        set newPlaylist to false
              end try
    end if
    if newPlaylist is true then
              try
                        set playlistName to display dialog ¬
                                  "What is your new playlist name ?" buttons {"OK"} ¬
      default button ¬
                                  "OK" default answer ""
              end try
              set new_playlist_name to text returned of playlistName
              tell application "iTunes"
      make new user playlist with properties {name:new_playlist_name}
              end tell
              set selectedpl to new_playlist_name as text
    else
              tell application "iTunes"
                        try
                                  set x to get name of playlists
                        on error
                                  display alert ("Can't get playlists from iTunes.")
                                  error number -128
                        end try
                        set itemsToDelete to {"Arşiv", "Müzikler", "Filmler", "TV Şovları", "iTunes U", "Kitaplar", "Purchased"}
                        set prevTIDs to AppleScript's text item delimiters
                        set AppleScript's text item delimiters to "TRICK"
                        set x to "TRICK" & x & "TRICK"
                        repeat with i in itemsToDelete
                                  set AppleScript's text item delimiters to "TRICK" & i & "TRICK"
                                  set x to x's text items
                                  set AppleScript's text item delimiters to "TRICK"
                                  set x to x as text
                        end repeat
                        set AppleScript's text item delimiters to "TRICK"
                        set x to (x's text 6 thru -6)'s text items
                        set AppleScript's text item delimiters to prevTIDs
                        set selectedpl to {choose from list x with prompt "Please select the playlist you want to save this song." with title "Playlist Selector"}
              end tell
    end if
    tell application "iTunes"
      duplicate track_name to user playlist selectedpl
    end tell
    <<<<<<<<<<<<<<<<<<<<<<<
    track_name is defined before with another script
    The result I want to get is:
    track_name is set -- No problem track_name is "Cobrastyle"
    selectedpl is set -- Playlist is selected no problem selectedpl is "test"
    add track_name to selectedpl -- Problem selectedpl needs to be contain track_name
    Thanks in advance

  • Why can i only select playlists from iTunes to play with my slideshows?

    I used to be able to select individual tracks from my itunes library to play with slideshows. For some reason i only seem to be able to select playlists now?
    Anybody know what is going on here? I did recently upgrade my iLife, has this got anything to do with it?
    Any feedback or hints and tips greatly received.
    G4 Powerbook, 1.25 Ghz   Mac OS X (10.3.9)   iPod 5gen 30G, Sony DSC-P7

    hi chris,
    You might just have to fiddle around with the window and the dimple.
    Take a look at the quicktime movies to see if it will help you.
    Music menu for Cinematic Slideshow
    Music menu for "on the fly" Slideshow
    Lori

  • I am unable to synch music from selected playlists in my iTunes library onto my new iPod Classic, despite meticulously following the User Guide.

    I just purchased an iPod Classic, and after making sure I had the latest ver. of iTunes on my Intel MacMini, printed out the User Guide and carefully began learning how to operate the iPod. My first step was to ensure I had manual control (vs. auto synch) because I want only selected songs and playlists on the iPod, not my whole iTunes Library.
    On pg. 24 of the Guide is the topic "Synching music from selected playlists onto iPod Classic." Just what I wanted. OK, I selected iPod "in the source list" (aside: Shouldn't it be "in the device list?" I dispair of imprecision). This brought up the iPod Summary page, showing I had selected Open iTunes when connected and Manually manage music and videos. Next I clicked on the Music tab.
    This presented me with Synch Music next to an empty check box. Below it, and entirely grayed out was:
    Entire music library (showing a checked box)
    Selected Playlists, artists, albums and genres (next to an unchecked box).
    There's also a third grayed out item: Include music videos that is checked.
    When I selected Synch Music, I got the message: "Are you sure you want to removed existing mlusic, movies and TV shows from the iPod and synch with this iTunes LIbrary?   I selected Cancel because:
    1. The grayed option Entire Music Library is checked, not mly preferred option of Selected playlists, artists, albums and genres. .
    2. I can't find anywhere in the User Guide how to "Select the Playlists" I want to synch to my iPod. At present all I have in iTunes is my list of playlists in the left hand side bar.
    OK, my first thought was the checked box in the iPod's Summary window: Manually manage music and videos. So I went there and unchecked it, which immediately brought up an alert  to the effect "Are you sure you want to automatically synch your entire iTunes library, etc. etc...? I quickly cancelled. Thus, I seem to be in a Catch-22 situation. 
    So the questions are:
    How do I resolve the Synch Music issue so I am assured only selected playlists will be sent to my iPod?
    How do I create a list of playlists in my iTunes library to be transferred to my iPod?
    How do I manually move a playlist in my iTunes library to my iPod's lists of playlists?
    Any help much appreciated. Thanks to all.
    John in the Pacific Northwest

    For the immediately problem, you can shut down the computer and disconnect the iPod.
    There may be a process (program) running on your computer in the background that continuously monitors mounted volumes for things like maintenance, data corruption, and malware.  The iPod's storage is a mounted volume.  If you know of any such program, such as an "anti-virus" utility, and it has settings that allow you to exclude certain volumes, you can set it to ignore the iPod "disk" when connected.
    Also, if you are using automatic syncing (not the manual method) to load the iPod, and you have Enable disk use turned ON, turn it OFF.  With Enable disk use turned OFF, iTunes only mounts the iPods disk when syncing, then immediately unmounts the disk.  Thus, other processes you have running on your PC (not iTunes) will have less of a chance to make the disk "in use" and cause this problem.  You won't even have to eject the iPod before disconnecting.

  • HT1386 How can I sync only selected playlists from my library in iTunes to iPhone?

    Option to sync only selected playlists is grayed out in iTunes for my iPhone. How can I make it so I don't have to sync my entire library?

    know this might sound silly
    but make sure that
    1) sync music is checked
    2) you have playlist with songs in them
    3) your songs have some sort of sorting form on them (artist, genre, album, etc.)
    also try
    rebooting pc and device and reconnecting
    if all else fails, redownload itunes

  • Can NOT update video automatically with selected playlists!

    I just bought my iPod today and when I try to put some video on it, the movie does not appear anywhere.
    when I click on the Video button, the "automatically with selected playlist" option is hidden and I cant click on it, and no video title can be observed.
    Do you have to put video in to certain folder to add them?
    And how come the Automatlcally with selected playlist is hidden?

    I had the same issue, however I used this program;
    http://www.videora.com/en-us/Converter/iPod/
    I'm pasting this from the Videora site, the settings worked for me when others didn't, enjoy:
    Configuring videora converter
    0) Start Videora iPod converter.
    1) Click setup in the left nav.
    1.5) Click the profiles tab.
    2) Click new profile.
    3) Now, configure that profile:
    profile name: ipod
    in the video settings section...
    mode: MPEG-4 > CBR
    resolution: 320x240
    passes: one
    bitrate: 768 kbps (384 kbps also works)
    framerate: 29.97 fps
    in the audio settings section...
    bitrate: 128 kbps
    sample rate: Input
    channels: stereo
    4) Click apply to save the profile.
    Now, you're ready to transcode.
    1) Click convert on the left nav.
    2) Click the transcode new video button.
    3) Pick your source video. Mine was an AVI from a torrent.
    4) Under quality profile, choose "ipod", the profile you created using the steps above.
    5) Click start.
    Now you're ready to get the video on your ipod
    1) In iTunes, under the File menu, select add file to library. Find the transcoded one. By default, the transcoded videos pop out under the Videora install directory.
    2) Drag and drop to your ipod.
    Questions/observations:
    1) I haven't been able to get H264 anything to work. Is it broken? How much smaller than MPEG4 is it?
    2) 768 kbps video was about 400 megs/hour; 384 kbps video was about 231 megs/hour. I could readily see a difference in video quality.

  • How can I get the option to make an iPod selection playlist when there is not enough space on my iPod for my whole iTunes library?

    I am trying to sync my iPod with my iTunes library and I recently added more music to my library than there is space on my iPod. Normally, I know iTunes is supposed to give you the option of creating an iPod selection playlist, so you can choose which songs you want to put from your library onto your iPod. However, iTunes won't currently give me that option. It simply gives me an error message saying there is not enough free space to sync my iPod. How can I get it to create the iPod selection playlist?

    Start deleting stuff from your iPod to make room. 

  • PPro CC crashes when using Track Select tool

    This is probaby the most bizzare bug i have encountered so far - everythig works - i can scub, play and adjust footage, apply effects, titles and time remapping, but when i select Treack Select tool and click on the timeline, Premiere Pro crashes.
    This is a new develpment as well - i was able to use PPro CC just fine since i installed it (trial version), until yesterday.
    No new applications or updates for Windows, Nvidia card or Adobe were installed lately, but all drivers are up to date (according to various update managers)
    Premiere CS6 works fine with the same sequence (mixed RED and DSLR footage)
    Problem signature:
      Problem Event Name:    APPCRASH
      Application Name:    Adobe Premiere Pro.exe
      Application Version:    7.0.0.342
      Application Timestamp:    5176598d
      Fault Module Name:    ntdll.dll
      Fault Module Version:    6.1.7601.17725
      Fault Module Timestamp:    4ec4aa8e
      Exception Code:    c0000005
      Exception Offset:    0000000000052fc6
      OS Version:    6.1.7601.2.1.0.256.1
      Locale ID:    1033
      Additional Information 1:    1ce0
      Additional Information 2:    1ce04770b02f823ff20b7f82076eba51
      Additional Information 3:    c192
      Additional Information 4:    c19212ee5e1e8407cb093e848f6cb5d8
    System specs:
    Creative Suite CS6 subscription
    Creative Cloud trial
    Windows 7 x64, SP1
    Nvidia Quadro 4000 GPU
    i7-3039k CPU
    32Gb of RAM
    thank you

    Yep, buggy project..
    New project with same and different footage works fine
    Other project created in CC works fine
    Imported sequence from CS6 works fine
    Imported sequence from a buggy CC project into a new project causes crash on using Track Select tool
    I was able to revert the project in question to CS6 via Final Cut Pro XML, also works fine (for now, at least), just have to redo some time remapping which didn't come through with XML translation, small loss
    I guess i'll wait few more months before switching to PPro CC, maybe mysterious bugs will be worked out by then
    Thank you for your replies!

  • "Sync" is not working correctly.  selected playlists even when the "Sync selected playlists" was selected and playlists were checked in the music iTunes library.  Do I have a defective iPod touch?

    Ever since I bought my ipod touch 4th generation, IOS 4G, 8GB in January 2011, it would not sync selected playlists.
    This is even when I have checked 3 things: 
    1.  Under Summary/Options, I've checked "Manually manage music and videos" and "sync only checked songs and video."
    2.  When I go to the Music tab and attempt to sync, I have already chosen "selected playlists, artists, albums and genres"
    3.  When I click on "Sync" a window comes up and says "Are you sure you want to sync music?  All existing content on the iPod will be removed and replaced with songs and playlists from your iTunes library."
    Do I have a defective ipod?
    5Red5

       Sync should be an automatic feature that can be triggered manually. Although, I have a two Shuffles, which are obviously not Touches, so they might be different.
       If you have your iPod set to manually manage music, the option to sync only checked songs should not do anything. You have to drag songs manually to the iPod on the sidebar to add music (I've created playlists of only songs I want, then I shift-click the whole thing and drag all of the songs at once to update them, that way I don't have to remember what goes where), and you have to manually select and delete songs from the iPod's 'Music' library on the sidebar to remove them.
       As for syncing the files, on my shuffles, they sync individual songs (for Get Info information changes ONLY) automatically every time I plug them into iTunes, and again if I make any changes to the Get Info stuff while they're plugged in. For example, if I added a song to my iPod playlist, it wouldn't sync it, but if I changed the genre of a song that's already on it, it will automatically sync.
       Good luck.

  • I would like to use my deactiveted iPhone 3G for apps and music.  How do I add music?  When I synch with iTunes it won't add the selected playlists.

    I would like to use my deactiveted iPhone 3G for apps and music.  How do I add music?  When I synch with iTunes it won't add the selected playlists.

    See if this link offers any insight,
    Use iPhone as an iPod
    http://support.apple.com/kb/HT3406

  • Can't move tracks in playlists

    Since upgrading I appear unable to move tracks within playlists. Previously I just 'drag and dropped'. Any suggestions?

    I have the same problem about dragging songs within play lists. Things were all great last night as we were making music for our wedding and then all at once it stopped allowing us to drag songs into the order we wanted. Clicking on the number column, as suggested, does not work. Any other thoughts?

  • Using only selected playlists

    I use the auto-sync feature of iTunes and I recently tried going from 'Sync all songs and playlists' to 'selected playlists.' To my dismay, this erased everything that was not on the playlists. Is there a way to sync only the music in my library and not the playlists?

    *Is there a way to sync only the music in my library and not the playlists?*
    No.
    You could create one playlist with everything in it and sync that.
    Or you could delete all your playlist.
    Is there some reason you don't want the playlists on your iPod?

  • Once I've track selected forward a group of clips how do I deselect a single clip?

    Hey gang, recent FCP convert. Really liking Premiere but occasionally having hiccups trying to replicate certain workflows. Here's one that's stumped me and it's so specific I'm having trouble googling it.
    Let's say I "track select forward" (aka use the "A" tool that selects everything after where you click in the timeline) some clips in the timeline, but I accidentally include a clip I didn't want to select. In FCP I'd just hold option and click that one clip and it would get unselected while keeping everything else highlighted. Meanwhile I can't figure out how to do this in PrPro. Any suggestions would be greatly appreciated. thanks!

    Figured this one out myself with a little more googling. In case anyone is having the same issue....
    Just use SHIFT. It serves the exact same function as OPTION in FCP 7. Make sure you switch from the "track select forward" back to the pointer tool.

  • Syncing selected playlists set but get more than are checked

    Recently changed to syncing selected playlists to make room on iPod as library got too big. Problem is that list of playlists on iPod is different from those that are checked in settings for iPod. More are on iPod than are checked.
    I thought it might be because one of my smart playlists uses another as one of the rules but one of the extras is not in any other playlist. Any ideas on what causes this? I opened up 15GB of space on iPod so space is not critical anymore.

    I tried the restore button which returned the error "The iPod could not be restored. An unknown error occured (1418)". After googling this I followed these instructions on the apple website: http://docs.info.apple.com/article.html?artnum=304508
    Completed all steps from 1-5 and tried to restore it again, the same error message ("1418") appears.
    Windows XP Pro

Maybe you are looking for

  • Oracle Financials- Financial Reporting Lead with TCS

    Hello, Good Day, I am very pleased to be writing to you today to introduce a job opening we are aggressively recruiting for. Based on an on-line resume, I believe you may be qualified for the position. Would you please take a look at the job descript

  • FMW patching gets failing

    Hi friends, As a part of BIAPPS-ODI configuration, @ the step of Applying FMW patches biappshiphome patches is getting failed like in the final patching report im getting error like ----------START OF PATCHING REPORT------------------ * BIAPPSSHIPHOM

  • Current swatch in control palette

    I think it would be nice to have the active swatch displayed in the control palette, just like the other information about whatever object is selected. Unless I am mistaken, the only way (in CS4) to see the color of a selected object, or of the selec

  • How to get status of server side

    Dear All, I have developed the client program for communicating with server (Which can be developed again java or any language and on running on any platform ). So now I can connect with server and continue the communication but suppose if server dow

  • LabVIEW 8.5 and building executable (using fxs from Advanced Signal Processing Toolkit)

    Hello out there to NI and Gavin: For for building an executable using LabVIEW 8.5 and functions from the Advanced Signal Processing toolkit, do we still need to manually copy the special set of DLLs related to the toolkit use to the target installati