HT202213 how can i do sharing between devices with different IDs?

one of my kids has an ipod and an own apple ID and i would like to shara my own music with that device too.
i've tried logging it with my apple ID but got a message saying i would then not be able to share with my own devices for the next 90 days....??
i guess i'm doing something wrong.... appreciate any help!

Does he have his own computer to sync with. Is it separate from yours?
Then you could use Home Sharing to make sure both lots of content are the same on both machines.
He will have to authorise his machine with your Apple ID for any purchased music to be played
Store > Authorise this computer
Then set up Home Sharing
http://support.apple.com/kb/HT4620
When it is up and running you can import from 1 library to the other and then your son can sync whatever he wants from his own iTunes

Similar Messages

  • How can i sync my blackberry device with iCloud

    How can i sync my blackberry device with iCloud

    You can't. iCloud is an Apple service for Apple mobile devices and Macs/PCs.

  • How can I share the home folder with different accounts on the same mac?

    Hi, here's a question:
    How can I share the home folder with different accounts on the same mac?
    The whole point being not to have to install all my apps, and move all my files each time between users.
    The second thing would be to be able to modify one document on one account, and have it changed on the other account without having to copy it.
    I would like to have a pro and a private account on my mac.
    Thanks for you answers,
    Doug

    Your apps should not be installed in your home folder--they should be in /Applications where every user can access them.
    If you want to share things between users on the same Mac, use the /Users/Shared folder. Keep your home folder private. Trying to defeat the protections on the home folder subfolders just gets messy. I've never bothered to figure out all of the problems associated with it so I can't explain how to do it.
    Even with using Shared, you would need to alter the ACLs on the shared folder in order to allow both users to modify the documents.
    You must create a Group in Users & Groups and put each user in that group. Then create a folder inside /Users/Shared where you want to share the various files.
    Then, add an ACL to the shared folder that gives the group special permissions. on that folder.
    sudo chmod -R +a "<sharinggroup> allow delete,chown,list,search,add_file,add_subdirectory,delete_child,file_inherit,directory_inherit" /Users/Shared/<sharing folder>
    Replace <sharinggroup> and <sharingfolder> with the name of your group and your folder. Then, run the command in the Terminal.
    With that ACL, each user in <sharinggroup> will be able to alter the files created by any user in the group in that <sharingfolder>.
    Essentially, the client OS is not designed for true file sharing among the individual users. It is designed to isolate each user account from the others.

  • How can I share applications and softwares with different users of the same computer?

    First question: How can I share applications and softwares with different users of the same computer?
    Second : Can I use 2 different I cloud accounts to synt 2 iphones with one computer?

    Applications installed on the admin account are available to all user accounts unless Parental Controls are enabled.
    Yes.   Separate user accounts, help here >   How to use multiple iPods, iPads, or iPhones with one computer

  • HT202213 How can I make "Shared" appear in my iTunes?

    I don't see "Shared" in my iTunes, so I cannot use Home Sharing. How can I make "Shared" appear in my iTunes?
    Thanks!
    Y

    iTunes: Setting up Home Sharing on your computer - http://support.apple.com/kb/HT4620
    Troubleshooting Home Sharing - http://support.apple.com/kb/TS2972
    Understanding Home Sharing - http://support.apple.com/kb/HT3819

  • HT202213 Can I use home sharing on devices with different apple ids?

    I have my computer set up with my Id. Can my daughter use home sharing on her device with a different Id?

    I do not think so. See:
    Understanding Home Sharing
    Troubleshooting Home Sharing

  • How can I sync my new devices with iOS 5.1 with my itune PC 10.7v previously synchronize with my old devices with iOS 6.0 on it?

    How can I sync my 2 new devices with iOS 5.1 on it with my iTune PC 10.7v previously synronize with my old devices with iOS 6.0 on it. Thanks from Joe

    You can sync as many devices as you like

  • HT1353 How can I turn on my device with out having the software.

    My ipod won't turn on it saids to connect to itunes. I do not have the software that came with the ipod. How can I get my ipod to turn on?

    connect to your computer and restore via iTunes.
    For how to restore:
    iTunes: Restoring iOS software

  • How can i compare two excel files with different no. of records.

    Hi
    I am on to a small project that involves us to compare two excel files. i am able to do it but am struck up at a point. When i compare 2 different .csv files with different no. of lines i am only able to compare upto a point till when the number of lines is same in both the files.
    Eg. if source file has 8 lines and target file has 12 lines. The difference is displayed only till 8 lines and the remaining 4 lines in source lines are not shown.
    Can you help me in displaying those extra 4 lines in source file. I am attaching my code snippet below..
    while (((strLine = br.readLine()) != null) && ((strLine1 = br1.readLine())) != null)
                     String delims = "[;,\t,,,|]";
                    String[] tokens = strLine.split(delims);
                    String[] tokens1 = strLine1.split(delims);
                   if (tokens.length > tokens1.length)
                    for (int i = 0; i < tokens.length; i++) {
                        try {
                            if (!tokens.equals(tokens1[i])) {
    System.out.println(tokens[i] + "<----->" + tokens1[i]);
    out.write(sno + " \t" + lineNo1 + " \t\t" + tokens[i] + "\t\t\t\t" + tokens1[i]);
    out.println();
    sno++;
    } catch (Exception exception)
    out.write(sno + " \t" + lineNo1 + " \t\t" + tokens[i] + "\t\t\t\t" + "");
    out.println();
    Thanks & Regards                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    A CSV file is not an Excel file.
    But apart from that your logic makes no sense.
    If the 2 files are of different sizes the files are different by definition, so further comparison isn't needed, you're done.
    If you want to compare individual records, you need to compare all records from one file with all records from the other, unless the order of records is important in which case your current system might work.
    That system however is overly complicated for comparing CSV files.
    As you assume a single record per line, and if one can assume those records to have identical layout (so no leading or trailing whitespace in or between columns in one file that's not in the other) comparing records is simply a matter of comparing the entire lines.

  • How can I find my registered devices with apple

    Hi,
    I am looking to find what devices I still have registered with Apple. How does one do this?
    Thanks

    Are you looking for a particular product?   I understand only computers are now registered, all other products have their warranties covered by your having a copy of the purchase receipt.

  • How can I associate unique information/ variables with different instances of attachMovie when creat

    I'm creating an interactive animation of an experiment, whereby the user has to detect if there is an oil well lying beneath the surface by selecting and drilling a series of coordination points on a map.
    I've done the first stage by setting up a background image containing a grid of 20 x 20 coordinate points, eg columns 1 - 20 and rows A - T. Over the top of this, I've created a dynamic array of clickable objects (open circles) and the centre of each one is  placed over a coordinate point, so when you mouseover a coordinate point, eg C3,  an open circle becomes visible and when you rollout, it becomes invisible again.
    However, I'm stuck on the next stage. I need to be able to assign unique variables to one or more clickable objects (open circles). Is it possible to do that? For example:
    a)give grid point coordinates to each object (open circle), so for example if someone rolls over the C3 coordinate, the open circle (object) associated with that coordinate, a message will display: "Click on the grid point to drill at C3"
    b)assign a variable to one or more objects, so that when an open circle is clicked, the animation associated with that coordination point will be triggered. There will be different animations, depending upon which object (point is clicked)
    There are other variables that will need to be setup, but if I know how to assign variables to one or more objects, I can probably figure out the rest.
    Here's a copy of my code so far:-
    //set up grid for solid array
    spacing = 5.75;
    cols = 20; // number of columns in grid
    rows = 20; // number of rows in grid
    leftMargin = 154;
    topMargin = 169;
    depth = 100; // starting point for depth
    for (i=1; i<=rows; i++) {                                                                                                        
    for (j=1; j<=cols; j++) {                                                                                                         
    current = attachMovie("openCircle_mc", "openCircle_mc"+i+"_"+j, depth++);
    current._x = leftMargin + ((i-1) * (spacing + current._width));
    current._y = topMargin + ((j-1) * (spacing + current._height));
    //open circle initially invisible, visible on rollOver
    current._alpha = 0;
    current.onRollOver = function() {
               this._alpha = 100;
    current.onRollOut = function() {
               this._alpha = 0;
    Below is the background and a rolled over instance of the 'openCircle' object at 'C3'.
    I'd very much appreciate some help. Thanks very much.
    Pippa

    you can assign properties (and methods) to movieclips:
    //set up grid for solid array
    spacing = 5.75;
    cols = 20; // number of columns in grid
    rows = 20; // number of rows in grid
    leftMargin = 154;
    topMargin = 169;
    depth = 100; // starting point for depth
    for (i=1; i<=rows; i++) {                                                                                                         
    for (j=1; j<=cols; j++) {                                                                                                          
    current = attachMovie("openCircle_mc", "openCircle_mc"+i+"_"+j, depth++);
    current._x = leftMargin + ((i-1) * (spacing + current._width));
    current._y = topMargin + ((j-1) * (spacing + current._height));
    current.row=i;
    current.col=j;
    current.oil = Math.floor(Math.random()*1.1);  // about 1/10 objects have oil=1, 9/10 oil=0
    //open circle initially invisible, visible on rollOver
    current._alpha = 0;
    current.onRelease=function(){
    trace(this.row+" "+this.col+" "+this.oil);
    current.onRollOver = function() {
               this._alpha = 100;
    current.onRollOut = function() {
               this._alpha = 0;

  • How to upgrade AND move between platforms with different Endians...?

    Hi, all,
    I have two databases - one of 500Gb and one of 50Gb - that are currently running on 10.2.0.4 on AIX 64-bit. They are Production systems.
    I have to move them to a brand new Linux (RHEL 5.6 - 64-bit) server that will be running 11.2.0.2.
    For test, I'm OK with this being done with Data Pump. But for the eventual move to 'New Prod', this will result in hours' worth of downtime and it's a business-critical system, so I'm trying to mitigate that as much as I can.
    I was, naively, hoping to use RMAN to both move the databases from one box to the other, but also to upgrade them. I figure I would do the following (as per Metalink 369644.1) as I have a Recovery Catalog, etc, etc:
    Install the binaries on the New Prod server
    Connect to the RCAT and restore the database and recovery to a PiT
    Manually upgrade the database by putting the DB into STARTUP UPGRADE and running the catupgrd.sql
    Unfortunately, I didn't realise the Endian was different between AIX and RHEL (as per 1079563.1). Oops.
    It doesn't look like I'll be able to use Transportable Tablespaces (as per 243304.1) either without first having to migrate the data across as a 10g DB and then upgrading.
    So my options appear to be:
    a) Data Pump and suck the outage up
    b) Move the data using Transportable Tablespaces to 10.2.0.4 and then upgrade to 11.2.0.2.
    Are there any other options? I have hopes that a logical standby would work in this instance a la rolling upgrade, but suspect that the different O/S AND the different Endian would scupper that idea...
    Mark

    Perhaps, I have more experience using concurrent exports/imports using the traditional exp/imp utility than using the parallel option on expdp/impdp. One thing you can do with exp/imp that you cannot do with expdp/impdp is export into a named pipe, start a remove copy of the named pipe to the new server, and then start importing from the named pipe on the new server so that you are importing while still exporting the same objects. We use tables= exports when we did this back when the tables= parameter could only handle 99 tables. We had a separate export for every large table and then a set of exports for 99 tables for each of the other tasks ran 6 to 12 concurrent processes.
    One thing to look at is historic data. Potentially some tables can be moved in advance of the majority of the application objects and replaced with synonym to remote objects.
    Truely static tables could also potentially be moved in advance even if only a day or two before to reduce the number of objects to be moved.
    Build the new database in noarchive log mode to save some processing and switch it over and immediately back it up when you migrate.
    And Yes, if the two platforms appear in the view name I gave you then you can use transportable tablespaces with the rman conversion step. Instructions for using rman to do the conversion are in the rman manual.
    HTH -- Mark D Powell --

  • How can I make my website compatible with different screen resolutions?

    Here is the page that I'm struggling with:
    http://www.starbuckscollect.com/2013.html
    Everything is pinned to the top and center pin except for the cards.
    My problem is on certain screen resolutions that are not 'wide screen' you are not able to see all of the cards when you scroll down. Some of you may not see my problem when you open up the page which is good. For you guys, the way to see my problem is to 'zoom out' of the screen and to do that press 'ctrl' and '-'
    Is there any way of avoiding this?

    Hi
    I believe you want a responsive design for the page where the page elements , similar discussion here :
    http://forums.adobe.com/thread/1198978
    Thanks,
    Sanjit

  • ICloud for multiple devices with different IDs

    I presently have a MacbookPro (10.7.2), iPhone (5.0.1), and an iPad (5.0.1) all on iCloud, linked by my former MobileMe me.com account, that is now my new iCloud ID. No problems with these three.
    What I would like to do (I think, read on...), however, is link my husband's iPhone and MacAir to the same iCloud account, as we share all key programs (calendar, contacts, photos, music, etc) except Mail. We were previously synced up
    He has not upgraded his computer to Lion or his phone to 5.0.1 yet, but before we do that, I'm trying to figure out how we can make them all work together, less Mail, which I believe would mean setting up a new iCloud ID that we use for everything.
    My questions are:
    1 - Is it possible to reset my computer, iPhone and iPad that are already on iCloud to a new iCloud ID/email address, and if so, would I a) lose access to my old MobileMe me.com account that is presently acting as iCloud ID, and b) lose content from the programs (contacts, iPhoto, iTunes, etc)?
    2 - If above is possible, if we create a new 'official' iCloud ID that we use on all devices in the family, would I be able to retain my old MobileMe me.com address, as I've used it for years and have too much saved in mailboxes to easily let it go?
    3 - Also, would the joint syncing of all devices mean that all of my email addresses would be on his devices and vice versa, or would that be controllable (example, if I have new iCloud ID, old MobileMe, Yahoo, etc and he has new iCloud ID, AOL, Hotmail, do all show on both devices??)
    If I am making our sharing of applications more complicated than it should be, please enlighten me. We basically just want to be able to have the same master contact list, calendar, iPhoto and iTunes libraries, Apps, etc..
    Thank you!!!!

    1a You won't be able to re-use your me address.
    1b No you could save the content if done correctly (iTunes is not iCloud)
    2 No, you won't be able to re-use your me address.
    3 The me addresses on a single account can all show up on a device or none show up on a device depending on whether mail syncing is on or off, you can't have some addresses on and some of on a device.
    I believe you have two choices.
    You can both use your existing account and could sync all the things like calendars etc etc, you can have your email address and your husband could have an alias, but you would both see each others mail (and it's not overly clear which is which)
    You can keep your account, he can start his own, that way you would each have your own email address without seeing each others. You can add his account to yours as a secondary account and just turn on syncing on calendars, contacts etc, he could do the same with your account. iTunes isn't iCloud, so you could both use your existing iTunes account and keep access to all your music, movies, apps, books etc. The only thing you couldn't share would be photostream, which is rather unfortunate but there.

  • I made a photo book in iPhoto and would like to transfer the book to my iPhoto on other macs and iPad.   How is this done and can it be synced between devices like photo stream.

    I made a photo book in iPhoto and would like to transfer the book to my iPhoto on other macs and iPad.   How is this done and can it be synced between devices like photo stream?

    You can create a Quicktime movie slideshow of the book's pages and share that. Here's how to get your book into an iPhoto slideshow and then export as a Quicktime video:
    1 - While viewing the book type Command+P to start the print process.
    2  - click on the PDF button and select "Save PDF to iPhoto".
    Note:  If you don't have any of those options go to Toad's Cellar and download these two files:
    Save PDF to iPhoto 200 DPI.workflow.zip
    Save PDF to iPhoto 200 DPI.workflow.zip
    Unzip the files and place in the HD/Library/PDF Services folder and reboot.
    3 - select either of the files above (300 dip is used for photos to be included in a book that will be ordered).
    4 - in the window that comes up enter an album name or select an existing album and hit the Continue button.
    That will create a 200 or 300 dpi jpeg file of the item being printed and import it into iPhoto. Immediately select all of the photos in the new album and sequentially renumber them as "Page  " using the Batch Change ➙ Title to Text with the option to add a sequential number to each title.  This is to let you put the pages back in the correct order in the event they get sorted incorrectly.
    Now you can proceed as follows: create the slideshow in iPhoto and export it out of iPhoto as a QT movie file via the Export button in the lower toolbar.  Select Size = Medium or Large (480p with iPhoto 9),
    Happy New Year

Maybe you are looking for

  • Hard disks memory is full

    Hello all, Now I work only 2 weeks with the SAP BW. Now it came to a mistake. I just encountered some errors while working with this database. So far there was an error while creating new tables because of an lack of hard disk space. For now it's imp

  • My Photo Not Showing Up in Messages

    My photo does not show beside my texts in Messages on my Mac. Only a shadow of a generic person in a rectangle is there. I can see the photos of others who write me, though. I have my photo in Contacts and it does show up in Mail, but not in Messages

  • How to stop logging external jar debug statements

    Hi, I am developing a java app which uses FOP to convert xml to PDF. Log4j is used for logging and in my appender's threshold is set to "debug". I only want debug output of my app not the FOP, how can I achieve that. At this stage I get thousands of

  • Aperture Importer stalls during import - can I resume?

    I tried to import my photos from Aperture to Lightroom using Adobe's tool with no success. Every time I try, the import stalls after about 25-27% complete. To make sure I don't end up with duplicates in my new Lightroom catalog I deleted all the imag

  • How can I reduce total time after deleting a transition

    Hello there ! I recently made a quite long 1:51 minute animation with rather complex timeline. Now, It happened that I want to delete some middle animations (at 0:18 or something)  and reduce the overall video time. I am finding myself at totally los