How can I make itunes play not only marked tracks?

Hi,
I've set marks on many tracks in my itunes media storage so I can syncronize them wth an ipod nano 16gb.
But the problem is only with itunes on my windows 7 x64 computer.
I want itunes to play randomly all of my tracks, not only choosen to syncronize with ipod!
But it plays only choosen tracks. I don't want to mark or dismark all tracks, because it will ruin the syncronization with ipod )))
Is there some properties in itunes to solve this? thx in advance

iTunes selects the tracks to play based on the checkmarks. If you want to use all of the music to listen to, you need to have it checked. If you want to only sync selected music with the iPod, you can create a playlist with the music you want, and then as you desire a change, add or subtract to the playlist. That way, it does not interfere  with your random play in iTunes, and still allows you to modify your song list on the iPod.

Similar Messages

  • Please, help!!!!! How can i delete Angry birds not only from my device (iPhone 4), but from my iTunes account,too? I am a new user.

    I am a new user of iPhone 4. I have problems with "Angry birds". I heard that i can fix the problem by deleting the application. So, the question is : How can i delete the game not only from my device, but from my iTunes account,too? Please, help!!!

    You can just tap and hold any icon to put into Edit mode.  There you can delete.
    Or you can just tell iTunes not to sync it.
    To remove from iTunes just click on it in list and press delete.

  • How can I make podcasts play continuously. And Why do I have to sign in to itunes twice every time I open it?

    How can I make podcasts play continuously. And Why do I have to sign in to itunes twice every time I open it?

    its really annoying since nobody uses my computer and its password protected.... But like sometimes it does happen where i have to put it in, and other times it doesn't

  • Sometimes my ipod brings up my sisters apple id even though its mine in my ipod settings how can i make it so it only brings up mine?

    Sometimes my ipod brings up my sisters apple id because shes synced her ipod on my laptop before, but its my apple id in my ipod settings how can i make it so it only brings up mine?

    The usually indicates that you have some media on yur iPod that was purchased using here iTunes account. It usually happens only with apps like when they have to be updated.  Check for that and delete apps purchased with her account.

  • When i try to upload a .mts file from my Sony camera to Premiere Pro CC it refuses to play the audio! Ofcourse i could convert every single clip but it takes tons of time. How can i make Pr play audio track properly?

    When i try to upload a .mts file from my Sony camera to Premiere Pro CC it refuses to play the audio! Ofcourse i could convert every single clip but it takes tons of time. How can i make Pr play audio track properly?

    Does it not play at all or cannot you get the audio in the timeline?
    Did you copy the entire card to the hdd and then imported the file via the Media Browser?
    Did you source patch the audio tracks?

  • How can I make iTunes sort on the first word by default, even though that word is "The" or "A"?

    How can I make iTunes sort on the first word by default, even though that word is "The" or "A"?
    I myself think that (for instance) "A tribe called Quest" should be sorted under "A", not "T".
    Now I can edit the sort options manually per track and/or per selection, but I would really like to just kill this "iTunes-knows-how-you-should-sort"-feature in iTunes.
    Anyone any suggestion on how to do that?
    Thanks

    Here is a modified version of one of Doug's Scripts. My modification was to add Sort Name to the list of tags that could be changed. I tried it on a single track and it worked. I recommend backing up your library first. Select the tracks you want to change (or all tracks) and run the script from the Applescript Editor.  If it works as intended, save it so you can apply it to newly imported tracks.  And, yes, I know this isn't the exact answer to your question, you want to change a preference setting in iTunes (if there is such a setting).
    Original script can be forund at http://dougscripts.com/itunes/scripts/ss.php?sp=thistagthattag
    Modified script is below. Start up Applescript Editor, paste it into a new window.  Start up iTunes and select the tracks to modify.  Click Run in the Applescript Editor.  Follow the instructions.
    (* Put This In That
    v2.0 april 22 2008
    - runs as universal binary
    - adds "Show" tag
    - consolidated code
    - saved as script bundle
    v1.7 October 3, 2006
    - adds "Album Artist" as option
    v1.6 October 28, 2004
    - works around iTunes 4.7 selection bug
    v1.5 ('04/1)-- adds "grouping" tag
    Get more free AppleScripts and info on writing your own
    at Doug's AppleScripts for iTunes
    http://dougscripts.com/itunes/
    This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
    This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
    Get a copy of the GNU General Public License by writing to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
    or visit http://www.gnu.org/copyleft/gpl.html
    -- CONSTANTS
    property allOptions : {"Song Name", "Artist", "Album", "Album Artist", "Composer", "Genre", "Comments", "Show", "Grouping", "Sort Name"}
    property my_title : "Put This In That"
    global thisTag, thatTag, theNewTags, theOriginalTags, yn
    tell application "iTunes"
              if selection is not {} then -- if tracks are selected...
                        set sel to selection
                        set numTracks to (length of sel)
                        set s to "s"
                        if numTracks is 1 then set s to ""
                        display dialog "The data from one tag REPLACES the data in another tag in all the selected tracks, with option to delete data in first tag." & return & return & (numTracks & " track" & s & " selected.") buttons {"Cancel", "Continue"} default button 2 with title my_title giving up after 30
                        if gave up of result is true then return
                        my choose_this_tag()
                        my choose_that_tag()
                        set yn to (button returned of (display dialog "Delete data in " & thisTag & " afterwards?" buttons {"Yes", "No"} default button 2 with title my_title giving up after 45) is "Yes")
                        set oldfi to fixed indexing
                        set fixed indexing to true
                        repeat with t from 1 to numTracks
                                  tell contents of item t of sel
                                            set theOriginalTags to {get name, get artist, get album, get album artist, get composer, get genre, get comment, get show, get grouping, get sort name}
                                            set theNewTags to theOriginalTags
                                            my do_put()
                                            set {name, artist, album, album artist, composer, genre, comment, show, grouping, sort name} to theNewTags
                                  end tell
                        end repeat
                        set fixed indexing to oldfi
              else
      display dialog "No tracks have been selected." buttons {"Cancel"} default button 1 with icon 0 giving up after 30
              end if -- no selection
    end tell
    to choose_this_tag()
              tell application "iTunes"
                        set n to (choose from list allOptions with prompt ("Select a tag to get data from:") with title my_title)
                        if n is false then error number -128
                        set thisTag to (n as text)
              end tell
    end choose_this_tag
    to choose_that_tag()
              set o to {}
              repeat with t in allOptions
                        if (t as text) is not thisTag then copy t to end of o
              end repeat
              tell application "iTunes"
                        set n to choose from list o with prompt ("Use data from the " & thisTag & " tag to REPLACE data in...") with title my_title
                        if n is false then error number -128
                        set thatTag to n as text
              end tell
    end choose_that_tag
    to do_put()
              try
                        repeat with i from 1 to (length of allOptions)
                                  if thisTag is (item i of allOptions) then
                                            set thisTag_sto to (item i of theOriginalTags)
                                            exit repeat
                                  end if
                        end repeat
                        repeat with i from 1 to (length of allOptions)
                                  if thatTag is (item i of allOptions) then
                                            set (item i of theNewTags) to thisTag_sto
                                            exit repeat
                                  end if
                        end repeat
                        if yn then
                                  repeat with i from 1 to (length of allOptions)
                                            if thisTag is (item i of allOptions) then
                                                      set (item i of theNewTags) to ""
                                                      exit repeat
                                            end if
                                  end repeat
                        end if
              end try
    end do_put

  • How can i make my keyboard not to appear on my i pad, how can i make my keyboard not to appear on my i pad

    how can i make my keyboard not to appear on my i pad, how can i make my keyboard not to appear on my i pad? couse i want to play a game and is coming on the screen is really iritating ..

    You cannot have the keyboard gone altogether, because it has to come up when an app needs input. The best way to do what you want to do is make sure that no apps are running when you are to go gaming: double click the Home button, swipe up all pages that show (not the app icon but the app page). then start the gaming. It it then still comes up, you look at what app is asking for it and set push notifiactions and autotarting off for that app in the settings.

  • How can I get iTunes to not launch

    how to get itunes to not to automatically start
    Whenever I'm watching a video DVD, online TV/movie, and I change the volume with the control on the headset or Apple Remote then iTunes will launch.
    How can I get iTunes to not launch when I change volume?

    Krag wrote:
    iTunes is not running ... everything is updated.
    Conflicting info in your profile:  Please update/correct your profile so that you can receive the correct troubleshooting suggestions.  This will assist the users in trying to help you.  Thank you.
    iTunes just launches by itself when I use the Apple Remote or volume buttons on headset/earbuds.
    Will have HOST transfer your post to the iTunes forum.

  • On my Mac desktop I must have changed a setting so that now when I move the mouse the open windows fly off to the sides and I can't see them. They come back when I move the mouse, but it is so annoying. How can I make the windows not disappear like that?

    On my Mac desktop I must have changed a setting so that now when I move the mouse the open windows fly off to the sides and I can't see them. They come back when I move the mouse, but it is so annoying. How can I make the windows not disappear like that?

    Click on the Hot Corners..  button and look at the four definitions.  In the picture below, if you moved the cursor to the right top of the screen, it would slide all the applications off the screen as you describe and show the desktop.  Set it to "-" to deactivate.

  • How can i make quicktime play avi. files?

    pls..how can i make quicktime play avi. files? because i have some avi files on my ipod or data cd but i can't play them on my laptop. pls help me..
    and also, im trying to make a music video but i dont how to select different clips from a movie.

    Hello,
    You can get from Microsoft, the flip4mac free player. Since Windows Media Player for Mac is no longer supported, this is the way to go.
    http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx
    In my opinion, it is by far the best solution for playing .avi or .wmv files, because you get all the advantages of Quicktime.
    regards,
    Jeff
    PowerBook G4 15-inch Double-Layer SD (with lines) 1gb Mac OS X (10.4.6) 3G iPod, iPod Nano, 5G iPod

  • How can I make itunes detect new music added to Music folder

    How can I setup itunes to automatically detect new music added to my music folder? Under the advanced setting I currently have Itunes set to view my music folder where all my music is located. Im using Windows 7, Itunes Version 10.4.1.10. Currently I have to add new music manually and that's *****. I have over 2000 cd's that I need to rip. Please help. Thanks

    If you are ripping CDs, you can rip with iTunes and the tracks will be added to your iTunes library without manual intervention.
    But if you already have the files, or are using something other than iTunes to rip, you will note that iTunes does not automatically detect when new files have been placed in a folder.  You can add this capability by using a 3rd party program such as iTunes Folder Watch.

  • How can I get iTunes to not delete partially listened to podcasts?

    I have Google searched this, asked all my Mac friends (for years) and I just don't know what I'm missing or why this happens....
    I listen to a lot of podcasts, pretty much 8 hours a day and lots in the evenings after I get the kids to bed. So here's what my problem is. Lets say I have an episode that's an hour long. I get through half of it in the evening and when I plug my iPod Touch (gen 1, old school I know) before bed to sync up all new episodes overnight, the episode I have only partially listened to gets deleted.
    From my understanding of things, a podcast that has been played, even if only for a few minutes of an hour long episode, is marked as "Played"....though the little blue icon in iTunes shows a half filled blue circle. Is there no distinguishing between a not listened to episode, a partially listened to episode (that I want to keep on the iPod until I finish it!), and a completely listened to episode? It's either been played or not, despite how much of the episode has been played?
    Ideally I want iTunes to delete from my iPod anything I've listed to all the way to the end. That works great with the current settings I have. I don't want it to delete episodes I've partially listened to and I'd sure like it if it would not only NOT delete it, but leave a marker where I left off so I can sync new episodes over night but pick up at the 28 minute mark where I left off on the episode I was listening to the night before.
    Now, when this occurs, I have to go into that podcast's list, click the partially listened to episode as not having been listened to, resync the ipod and download it to the ipod again...then try to remember where the heck I left off.
    Anyone have any suggestions, fixes, links to forum posts on what to do to get this very simple idea to work?
    Thank you in advance for reading this. I can't believe it's taken me 4+ years to finally post on my frustration...

    After a couple of days, I'm noticing that the repeat(ing) offenders have more than 10 episodes, and seem to keep repeating them every time I sync.
    They only show once in my phone and in the iTunes Podcasts, but through iTunes and looking at what's in my phone is when I see the repeats.
    Even after I've marked a podcast as played, and deleted it from within my phone, as well as telling iTunes to delete the played episodes, it still shows multiples of the played episodes.
    There doesn't seem to be any rhyme or reason to it either. They aren't the newest ones either.

  • How can I make Keynote files read-only (eg: to share with students)?

    I would like to share some keynote files with students, and I would like to set them up as read-only, so that the students can tap the screen, read my presentation, but not alter it.  I've tried to set the files up as read-only on my iMac desktop, but when I load the file onto my iPad, it's still editable.
    Any ideas re: how to make Keynote files read-only?
    I've tried to export the files as PDF and load them into iBook, but some of Keynote's basic "build" functions won't work this way.  Specifically, I have files set up with questions and answers (ie - a question appears, and you have to tap the screen to see the answer, but this "build" function seems to disappear when I get it to show up in iBook).
    Any ideas how to make Keynote files read-only?  I am happy to use another program, but I want the students to tap the screen in order to see the answer to a question.
    Thanks!

    as long as $PATH is set, you shouldn't need to reconnect them (i think).  if you send the list of apps through | awk -F '/' '{print $NF}' | that'll strip the path
    /edit: added the "(i think)" part
    Last edited by brisbin33 (2009-06-02 21:33:06)

  • How can I get iTunes to transfer only the HD version???

    Hello,
    Is there a way I can set iTunes to transfer only the HD version of a video to AppleTV, and not include the SD version, while keeping both versions in the iTunes library?
    Currently, both versions are being transferred when I sync.
    Regards.

    addled cowgirl
    The bottom line:
    ..... please detail what you are seeing in your render dialog when the program is doing a
    Timeline rendering of your red lined Timeline content.
    Longer Detail Version:
    Timeline rendering is a preview feature that does not fix anything. All it does is give you an idea of what you have and wants to give you the best possible preview. You do not have to do this type of rendering. The "but" is that this is your window of opportunity to catch a problem sooner than later.
    When the render dialog comes up, what is it actually saying in the render dialog.......
    Rendering __of___Video Previews
    and underneath that
    Rendering frame _____of_______
    How many clips do you have on that Timeline - 10?
    At first I thought you wanted to know how to render just a selected few of the Timeline clips rather than all of them. I can tell you how to do that and
    go into great detail of that. That involves
    a. in the Edit workspace, setting the gray tabs of the Work Area Bar to span just the clips you want rendered
    The above is from Premiere Elements 11, not 7, but the principles are the same with regard to what I mean
    by render indicator line (in your case red instead of orange) and gray tabs of the Work Area Bar, Your
    version does not have a Render button. You could just hit the Enter key of the computer main keyboard if
    you have Timeline content with a red line over it (that means the program is not giving you the best
    possible preview to let you know what you really have). If necessary, I post some screenshots specific to your version (7).
    But, for now, please detail what you are seeing in your render dialog when the program is doing a
    Timeline rendering of your red lined Timeline content.
    Any questions or need clarification, please do not hesitate to let me know.
    Thanks.
    ATR

  • How can we make SAP system READ ONLY !!!!!

    Hi, we have an SAP R/3 4.6 C Application. We need to take the system for read only state means we don’t want the users to allow any update for the system but they should be able to view the data what they have created. Mean while we don’t want the database to be taken in read only mode as we the administrators or the users might want to update their password information.
    It would be a big help if some one can through some tips on how we achieve this.
    Thanks much in advance.
    Guru

    Hi
             Please make the database in READ ONLY MODE. This will help. If it is an oracle database then.
    Open a Database in Read-Only Mode
    You can open any database in read-only mode to prevent its data from being modified by user transactions. Read-only mode restricts database access to read-only transactions, which cannot write to the datafiles or to the redo log files.
    Disk writes to other files, such as control files, operating system audit trails, trace files, and alert files, can continue in read-only mode. Temporary tablespaces for sort operations are not affected by the database being open in read-only mode. However, you cannot take permanent tablespaces offline while a database is open in read-only mode. Also, job queues are not available in read-only mode.
    Read-only mode does not restrict database recovery or operations that change the database's state without generating redo data. For example, in read-only mode:
    Datafiles can be taken offline and online
    Offline datafiles and tablespaces can be recovered
    The control file remains available for updates about the state of the database
    One useful application of read-only mode is that standby databases can function as temporary reporting databases
    Opening a Database in Read-Only Mode
    Opening a database in read-only mode enables you to query an open database while eliminating any potential for online data content changes. While opening a database in read-only mode guarantees that datafile and redo log files are not written to, it does not restrict database recovery or operations that change the state of the database without generating redo. For example, you can take datafiles offline or bring them online since these operations do not effect data content.
    If a query against a database in read-only mode uses temporary tablespace, for example to do disk sorts, then the issuer of the query must have a locally managed tablespace assigned as the default temporary tablespace. Otherwise, the query will fail. This is explained in "Creating a Locally Managed Temporary Tablespace".
    Ideally, you open a database in read-only mode when you alternate a standby database between read-only and recovery mode. Be aware that these are mutually exclusive modes.
    The following statement opens a database in read-only mode:
    ALTER DATABASE OPEN READ ONLY;
    You can also open a database in read-write mode as follows:
    ALTER DATABASE OPEN READ WRITE;
    However, read-write is the default mode.
    Regards

Maybe you are looking for

  • Mini-dvi to vga adapter

    Anyone know of a site which sells generic adapters which would be cheaper than the 20ish dollars the apple store sells them for?

  • Call voice quality

    Good Morning, I have just bought Iphone 5s, and some times when I call the reciever complain of sound quality, low and shallow, also my screen blinks for few times. i had same problem with iphone 4 s. althoiugh I am hearing other parties very clear.

  • TS3988 help me, i can't sign in iCloud :(

    1 month ago, I bought an iphone4 from a ban.toi want to save all your contacts, photos, notes but are able to log into icloud, error "number of free accounts have been activated up on this iphone".. I restore and try to log in again but still can not

  • Post processing the pulse signals

    I want to do the following post processing for a digital square signal                                                                1) How to get the time interval between two consecutive rising edges of a digital square signal                     

  • ClassCastException when retrieving SOAP content

    I got a java.lang.ClassCastException: com.sun.xml.messaging.saaj.soap.dom4j.TextImpl when retrieving SOAP content. The code looks like: SOAPPart part = message.getSOAPPart(); SOAPEnvelope envelope = part.getEnvelope(); SOAPBody body = envelope.getBod