How can I make iTunes accept an alias as a movies folder?

I love how iTunes organises my media files. But I need to keep my movie purchases on a different, external HD with USB 3.0.
Creating an alias of the folder "Movies" I've copied to the HD and moving the alias back on place into the user's local Library ends in disaster. All movies that have been in the folder before moving it to the new HD are still playable.
All newly purchased movies are downloaded out of the "Movies" folder at top level directory instead on the external HD. I can copy them to the external HD aliased "Movies" folder, but they won't appear in iTunes after dragging the files onto the iTunes window. I get an error message that says, the appopriate folder is missing. What can I do to make iTunes accept the aliased "Movies"-Folder as default for purchased movies?

iTunes is very good, and has been for years, at totally ignoring alises and symbolic links, particularly when another drive is involved.  If you want to keep movies on a separate drive you will have to take a humbler approach and drag them to the external drive, then add them from there (hold down the option/alt key while adding to iTunes so iTunes doesn't copy them back to your main drive).  Maybe some day in the distant future the programmers of iTunes will realize many users have to use external drives since the ones supplied with the computers these days are pretty small (my 12 year old computer has a bigger drive), and if Apple wants people to buy huge media files from the iTunes Store they need to factor this into design.  Send feedback to:
http://www.apple.com/feedback/itunesapp.html

Similar Messages

  • 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 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 iTunes authorize Audible files?

    I downloaded an audio book from Audible.com to my desktop computer at home.  Now I am traveling, using my wife's MBP, and have my iTunes library with me on an external drive. iTunes is pointed at that library and open.  I am trying to sync my iPod Touch and in the books seciton, I have specified the audio books to be copied onot my iPod, but I get the message that “some of the Audible files were not authorized to be used on this computer.”  How can I overcome this?

    Hello bobgoldstein,
    Thanks for the question.
    You may need to authorize your audible account for this computer. To do so, click Store > Authorize audible account.
    iTunes Store: About authorization and deauthorization
    http://support.apple.com/kb/HT1420
    Using Audible spoken word files with iPod
    http://support.apple.com/kb/TA26591
    Thanks,
    Matt M.

  • How can I make iTunes de-authorize my Mac after erasing it's hard drive?

    How can I de-authorize a Mac Mini in iTunes AFTER I have already erased the hard drive? 

    You can deauthorize all then reauthorize it.
    Authorization and Deauthorization
    Macs:  iTunes Store- About authorization and deauthorization.
    Windows: How to Authorize or Deauthorize iTunes | PCWorld.
    In iTunes you use the Authorize This Computer or De-authorize This Computer option under the Store menu in iTunes' menubar. For Windows use the ALT-S keys to access it. Or turn on Windows 7 and 8 iTunes menus: iTunes- Turning on iTunes menus in Windows 8 and 7.
    More On De-authorizing Computers (contributed by user John Galt)
    You can de-authorize individual computers, but only by using those computers. The only other option is to "de-authorize all" from your iTunes account.
      1. Open iTunes on a computer
      2. From the Store menu, select "View my Account..."
      3. Sign in with your Apple ID and password.
      4. Under "Computer Authorizations" select "De-authorize All".
      5. Authorize each computer you still have, as you may require.
    You may only do this once per year.
    After you "de-authorize all" your authorized computers, re-authorize each one as required.
    If you have de-authorized all computers and need to do it again, but your year has not elapsed, then contact: Apple - Support - iTunes - Contact Us.

  • How can i make itunes open on my Windows computer

    I put a password on my ipod and i forgot it and now my ipod says 'Disabled connect to itunes'
    I have now downloaded itunes on to my Laptop and it wont open up so now my ipod is broke unless i can get on itunes How do i fix it ?

    You can't; iTunes doesn't have the code necessary to play DVDs, not even ones you created.
    (65025)

  • How can I make iTunes exclude some songs when shuffling?

    I have several thousand songs on my Ipod.  I want to add several hundred holiday songs and put them in their own playlist.  How can I prevent them from playing when I turn on Shuffle and play everything else on the player except the holiday music?

    Right-click the track(s), Get Info, go to the Options tab, and check "Skip When Suffling."

  • How can i make itunes look like the new version?

    I downloaded the new Itunes 11.4 and it's opening as the old version of Itunes, how do i open itunes to the updated version on my mac?

    Turnb off the left sidebar.
    iTunes menu Viiew > Hide Sidebar

  • TS1389 How can I make Itunes work properly on Windows 8 ? still receive -42110 error !

    Please anyone...help me.

    Some discussion on means of locating the SC Info folder on Windows 8 systems in the following topic:
    TS1389 Re: How can you do this in windows 8?

  • How can I keep iTunes on my Mac but the Movies on an external hard drive and still have them accessible to my Apple TV etc through Home Sharing?

    I have a 2TB external hard drive that I want to store my ripped movies on and free up space on my Mac. How can I do this?

    Is there a reason you don't want to keep your entire iTunes folder on the external.
    Everything will work just fine and it is simpler if everything in iTunes is in one location (the iTunes folder).
    Copy entire /Music/iTunes/ folder to external.
    Hold Option and launch iTunes.
    Select Choose library... and select the iTunes folder on the external.
    That is all you need to do.

  • How can I make iTunes delete songs again?

    When I fist used iTunes and I pressed "delete" it asked me if I wanted to physically delete the file.
    I said no and checked the box for never asking me again because I had a bad day.
    But now I would like that function back and I can't find how!
    I read I must delete the preferences, but either I don't know how or where they are (I tried to search for them in various Itunes folders, but nothing popped ;__;)
    I searched the faq too, but there is no answer to this.
    What I must do? Is there something I'm completly missing that would make this question (and me) silly? __)/

    Resetting the iTunes Preference Files:
    May need to make hidden files visible
    My Documents>Tools>Folder Options>View
    Check Show hidden files and folders
    -- Quit iTunes
    -- Delete C:\Documents and Settings\<your username>\Application Data\Apple Computer\iTunes\iTunes.pref and/or iTunesPrefs.xml
    -- Delete C:\Documents and Settings\<your username>\Local Settings\Application Data\Apple Computer Inc\iTunes.pref and/or iTunesPrefs.xml

  • How can I make iTunes 11 automatically play the next album?

    Before iTunes 11, I could just double-click on a cover art to start the album and everything would flow from there, playing the next album in the library once it was finished and so on.
    Now, if I do that (in Album view or Artist view), it plays only that album and stops. If I press que Play button at the top of the Artist view, it plays all the albums. But I can't just start listening to an artists' albums from, example, the third one or fourth one. It's either all or one at a time.
    And yeah, I know about playlists. I didn't used them before because I didn't have to.

    I agree, this is a ridiculous change.  The "play" arrow next to the title of the album on the expanded view does nothing; neither does the play option from the context menu when I right click on an album cover.  I'm using iTunes 11 on a Windows 7 laptop.  Does anyone else have this issue?  Very lame.

  • How can I make iTunes icons smaller?

    Using my mini with a full-size monitor, when I open iTunes and try to look at my music library via "album," I get gigantic icons of albums. this takes up way too much room on the screen. Changing it is evidently done by a preference somewhere, but neither the system preferences (in Finder) nor the iTunes preferences seem to take up this matter. Thank you.

    Hi, I've never found a way to do it, best I can do is use View>List instead of Grid or Coverflow.

  • How can I make ITunes downloading again?

    Dear all
    ITunes stops reacting when I download e.g. apps or podcasts. It starts normally but after a while it just stops. This happens since a couple of days. Never had any problems before.

    Resetting the iTunes Preference Files:
    May need to make hidden files visible
    My Documents>Tools>Folder Options>View
    Check Show hidden files and folders
    -- Quit iTunes
    -- Delete C:\Documents and Settings\<your username>\Application Data\Apple Computer\iTunes\iTunes.pref and/or iTunesPrefs.xml
    -- Delete C:\Documents and Settings\<your username>\Local Settings\Application Data\Apple Computer Inc\iTunes.pref and/or iTunesPrefs.xml

  • 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.

Maybe you are looking for

  • DVD slot-loading not working

    Guys, Please help me. Tried to insert a DVD but slot-loading failed to suck in the disc. I was worried that the disc might clog or be stuck up inside. Its a good thing a portion(very tiny) of the disc is protruding from the slot. I carefully(using pl

  • Unable to reach Target Service issues after receiving message

    Hello everyone, I am working on a demo for my devs/dba at work regarding the use of service broker, why we should start using it, and other fun facts that just go above initial implementation.  Part of this demo includes the routing capabilities for

  • How to install elements 11 without a disc drive

    Help, I bought photoshop elements 11 and no disc drive in my lap top, they told me at the shop that i would be able to install with just the serial number ???

  • Change request btw 2 different BW systems version.

    Hi all, can I export a change request between an development BW 3.5 system and other production system BW 7.0? The system don't actually have an RFC connection and the change requests have been made like local ($TMP). Thank U for answers. FP

  • Auction extension

    Hi: I want to make an auction for my website that the users can sell their products there. Is there any Dreamweaver Extension that makes me auction. cartweaver is a a great shopping cart builder but as I said I need an auction that users sell their p