2 kids one ID (Father) and game name problem.

Hi,
We've 2 kids with both their own iPod Touch working on my account, now on both iPod's they have the same name when they play games...
How can we change this, because they have their own e-mailaddres? There is always "Welcome back and the name" from the first iPod I installed.
Thanks
Tom

Hi
This is because their username for playing games, or Game Center username, is tied to your Apple ID. The easiest solution to this would be to sign out of your Apple ID on your kids' iPods and give your kids an Apple ID each. Anything they downloaded through your ID would stay on their iPods.
To do this, open Settings on the kids' iPods, swipe down and tap Store, then tap 'Apple ID: [Your email address here]'. It should pop up with 4 options, tap 'Sign Out'. Tap 'Sign In' then tap 'Create New Apple ID' and fill out the details for your kids' IDs. Once this is done, they can make their own usernames in Game Center.
I hope this helps!

Similar Messages

  • Is there any infotype to add father and mother name etc..

    Hi experts,
    Is there any infotype to add father and mother name like any other personal data which are not there in infotype 2.
    Regards,
    Dolly

    Any relationships data can be created as subtype in IT 0021 .
    You can create father mother brother sis chiild spouse anything
    cheers
    AJ

  • Path and file name problem when I want to download files from html

    Hi all,
    I want to write a small program to allow users download files from jsp file
    but the following files don't work .
    <%@ page language="java" import="java.net.*,java.io.*"%>
    <%@ page import ="java.util.*"%>
    <%
    try
    String SContent = request.getParameter("click");
    String SDocName = "temp.doc"; //  out put file File Name
    ServletOutputStream stream= response.getOutputStream(); // Getting ServletOutputStream
    response.setContentType("application/msword"); // Setting content type
    response.setHeader("Content-disposition","attachment;filename=\"" +SDocName+"\""); // To pop dialog box
    BufferedInputStream in = new BufferedInputStream(new FileInputStream(SContent));
    int c;
    while ((c = in.read()) != -1){
               stream.write(c);
    in.close();
    stream.flush();
    catch(final IOException e)
    System.out.println ( "IOException." );
    catch(Exception e1)
    System.out.println ( "Exception." );
    %>I am so confuse, what is the path and file name I sould give ? for example my click should equal to http://******/Test/display.jsp?click=00-1

    Hi all,
    I got error at
    java.lang.IllegalStateException: getOutputStream() has already been called for this response
         org.apache.coyote.tomcat5.CoyoteResponse.getWriter(CoyoteResponse.java:599)
    if I want ot download file from html file.
    String SContent = request.getParameter("click");
    if I hard code like follow it work fine.
    String SContent ="C:/Project Coding.doc";
    what mistake I make.
    Thank you!

  • Which Language is known by only one programmer? and their names. If possible all details

    This is my table structure
    PNAME DOB DOJ GENDER PROF1 PROF2 SALARY
    ANAND 12-APR-66 21-APR-92 M PASCAL BASIC 3200
    ALTAF 02-JUL-64 13-NOV-90 M CLIPPER COBOL 2800
    JULIANA 31-JAN-60 21-APR-90 F COBOL DBASE 3000
    KAMALA 30-OCT-68 02-JAN-92 F C DBASE 2900
    MARY 24-JUN-70 01-FEB-91 F CPP ORACLE 4500
    NELSON 11-SEP-65 11-OCT-89 M COBOL DBASE 2500
    PATTRICK10-NOV-65 21-APR-90 M PASCAL CLIPPER 2800
    QADIR 31-AUG-65 21-APR-91 M ASSEMBLY C 3000
    RAMESH 03-MAY-67 28-FEB-91 M PASCAL DBASE 3200
    REBECCA 01-JAN-67 01-DEC-90 F BASIC COBOL 2500
    REMITHA 19-APR-70 20-APR-93 F C ASSEMBLY 3600
    REVATHI 02-DEC-69 02-JAN-92 F PASCAL BASIC 3700
    VIJAYA 14-DEC-65 02-MAY-92 F FOXPRO C 3500
    and title of this question is my question. How can i get the info. Please tell me with simple logic and efficient query.
    I am enjoying sql queries...

    IF OBJECT_ID('dbo.[test]','U') IS NOT NULL
    DROP TABLE [dbo].[test]
    CREATE TABLE [dbo].[test](
    [PNAME] [varchar](10) NULL,
    [DOB] [date] NULL,
    [DOJ] [date] NULL,
    [GENDER] [char](1) NULL,
    [PROF1] [varchar](30) NULL,
    [PROF2] [varchar](30) NULL,
    [SALARY] [decimal](8, 2) NULL
    INSERT [dbo].[test] ([PNAME], [DOB], [DOJ], [GENDER], [PROF1], [PROF2], [SALARY]) VALUES
    (N'ANAND', '1966-04-12', '1992-04-21', N'M', N'PASCAL', N'BASIC', CAST(3200.00 AS Decimal(8, 2)))
    , (N'ALTAF', '1964-07-02', '1990-11-13', N'M', N'CLIPPER', N'COBOL', CAST(2800.00 AS Decimal(8, 2)))
    , (N'JULIANA', '1960-01-31', '1990-04-21', N'F', N'COBOL', N'DBASE', CAST(3000.00 AS Decimal(8, 2)))
    , (N'KAMALA', '1968-10-30', '1992-01-02', N'F', N'C', N'DBASE', CAST(2900.00 AS Decimal(8, 2)))
    , (N'MARY', '1970-06-24', '1991-02-01', N'F', N'CPP', N'ORACLE', CAST(4500.00 AS Decimal(8, 2)))
    , (N'NELSON', '1965-09-11', '1989-10-11', N'M', N'COBOL', N'DBASE', CAST(2500.00 AS Decimal(8, 2)))
    , (N'PATTRICK', '1965-11-10', '1990-04-21', N'M', N'PASCAL', N'CLIPPER', CAST(2800.00 AS Decimal(8, 2)))
    , (N'QADIR', '1965-08-31', '1991-04-21', N'M', N'ASSEMBLY', N'C', CAST(3000.00 AS Decimal(8, 2)))
    , (N'RAMESH', '1967-05-03', '1991-02-28', N'M', N'PASCAL', N'DBASE', CAST(3200.00 AS Decimal(8, 2)))
    , (N'REBECCA', '1967-01-01', '1990-12-01', N'F', N'BASIC', N'COBOL', CAST(2500.00 AS Decimal(8, 2)))
    , (N'REMITHA', '1970-04-19', '1993-04-20', N'F', N'C', N'ASSEMBLY', CAST(3600.00 AS Decimal(8, 2)))
    , (N'REVATHI', '1969-12-02', '1992-01-02', N'F', N'PASCAL', N'BASIC', CAST(3700.00 AS Decimal(8, 2)))
    , (N'VIJAYA', '1965-12-14', '1992-05-02', N'F', N'FOXPRO', N'C', CAST(3500.00 AS Decimal(8, 2)))
    ;with mycte as (
    select PNAME,DOB, DOJ,GENDER,SALARY, count(PNAME) Over(partition by PROFs) cnt
    FROM test t
    CROSS APPLY (VALUES(PROF1),(PROF2))p(PROFs) )
    Select PNAME,DOB, DOJ,GENDER,SALARY FROM mycte
    WHERE cnt=1

  • CF9 struct key and variable name problem

    Running CF 9 on Linux, the following produces unusual results:
    <cfscript>
        a = { '99' = "that", '8X' = "this"};
        writedump(a);
    </cfscript>
    The dump shows only the keypair with the key '99' and the value 'this'. #a['99']# produces "this". #a['8X']# produces "this" as well. It's as though CF cannot distinguish between the tokens '99' and '8X'. Note that implicit assignment is not implicated:
    <cfscript>
        blah['GNQ'] = 'bad struct';
        blah['H02'] = 'worse struct';
    </cfscript>
    This yields a struct with one member per structcount(), with a key-value pair of GNQ='worse struct', but the key 'H02' accesses the same value. structkeyexists(blah, 'H02') returns true.
    On our systems (we've tried CF 9 on separate RH 4 and RH5 machines) the problem is not limited to structs per se, and seems to persist even when other characters are involved in variable or struct key names:
    <cfscript>
        testb0 = "test";
        testao = "test2";
    </cfscript>
    This produces an error page with the message "can't load a null". However, the following is possible:
    <cfscript>
        testb0 = "test";
        writeoutput("b0 = #testb0#<br/>");
        writeoutput("ao = #variables['testao']#<br/>");
        writeoutput("#structkeyexists(variables, "testao")#");
    </cfscript>
    The above produces the output 'test' for the undeclared variable 'testao', and also thinks that variables.testao is in the variables scope, even though it hasn't been declared.
    A quick loop or two and we've found that our CF 9 installations cannot distinguish between 340 two letter sequences, in matched pairs, as in the following example:
    ao = B0
    ap = B1
    aq = B2
    ar = B3
    as = B4
    at = B5
    au = B6
    av = B7
    aw = B8
    ax = B9
    Case does not seem to matter, and as mentioned above, this 'blindness' appears to persist even when the strings are embedded in other strings. E.g., when used as key or variable names, the following are being treated by CF as equal:
    slap = slb1
    tape = tb1e
    apes = b1es
    Has anyone else experienced anything like this? Could there be some strange setting that is causing CF to interpret the templates using some otherworldy codepage in which these characters are equivalent? Could there be something wrong with our installation, and/or our OS?
    Any hints, confirmation of our findings, and/or refutation of same would be greatly appreciated - we were hoping to move to CF 9 from CF 8 this week, but this is quite a showstopper for us.

    I did restart but turns out I fed the updater the zip file (hf900-81860.zip) instead of the jar file (hf900-81860.jar).  Now it returns the correct results, "abc" (not "123").  I also confirmed that this problem was not fixed by "Cumulative Hot Fix 1 for Coldfusion 9".  And, I verified that it fixed the more widespread issue in my application.  Thank you guys!
    HotFix (thanks buglug):
    http://kb2.adobe.com/cps/825/cpsid_82547.html
    Related bugIDs:
    81860
    81884
    82491
    Related posts:
    http://stackoverflow.com/questions/2164472/bug-in-cf9-values-for-unique-struct-keys-refere nced-and-overwritten-by-other-key

  • High cpu usage and game lag problem

    i have a hp 15 d103 tx
    windows 8.1 64 bit
    inel i5 4200m 2.5ghz
    anti virus installed avast fee antivirus
    im using nvidia 820m geforce 344.75 version  driver
    ram installed 8gb
    im experiencing  huge amount lag in games  and software (autocad)
    whenever i run a game (for eg batman origins)    it run smooth  till 2 or 3 minutes after it lag horrribly
    for sake first im getting 45 frames per second then suddenly frame drop to 13 or even to 10
    i have to press alt + tab to check task manger it show cpu usage 30%
    after that when again i press alt tab to back to game it runs fine for 20 seconds and again lag
    i dont what the problem high cpu uasge
    system idle process sometime shows around 82%
    with 8gb of ram still expericing lag
    this problem is with  all game that i have played and software like photoshop and auto cad
    my cousin own hp 15 r007tx and having same gpu nvidia 820m  game runs for on his laptop without a lag
    is it window 8 problem or something else??

    wow finally got the solution by updating bios
    just updated the bios  from 2.7 to 2.8
    no lag now
    i guess different cpu load gpu switching on off was problem
    but now everything is running good

  • Testing with Business one 2005 B and GL Account problem

    Hi Every body !
    first time i am posting my query please repply Me emd, i using BI 2005 B and i entered the all master data and i crated all G/L Accounts then i started to test the system,
    1) First i Create Puchase Order
                            It is out put is ok
    2) Then i create one GRPO
    3 ) Then i go for creat excise inboice that time error ocquer that is as follows;
    The excisabe item can not set CENVAT Code.
    So pleae help me about this problem.
    and sume time it sho No Maching records found in G/L Account(OACT)
    4) A/p Down Payment Request that time following error
    Down payment recivable / payble not defined.
    These problems are there so gibe me guide
    Regads
    Nagesh- Padamgonde

    You would get an error in Incoming Excise only if you have not defined Excise RG 23A Credit & Excise RG 23A Payable A/c in ADM>Financials> G/L Account Determination.
    & also RG 23C account is to be determined in Purchase--> Tax tab in same path.
    Also if you have not made the Item in Item Master data as excisable then you cannot use excise code for that item in either Purchase or Sale.
    if you have made the item as excisable & not selected tax code as excisable then also it will prompt that you have not selected excisable code for excisable item.
    The Error No Matching records found in G/L means all accounts in G/L Account determination has not been defined.(the path is given above)
    These answers are relevant for SAP B1 2005B PL 05 as in Indian Localization
    Hope this help
    Edited by: Nilesh Zambhuria on Jan 12, 2008 4:05 PM

  • Apple ID and Game Center problems... Can't connect to my old Game Center.

    I went to play a game and it said I was disconnected from my Game Center account. I go to sign in with my normal username and it tells me I need my apple Id. But my account for Game Center wasn't connected by an apple Id account. It won't let me sign into my old Game Center account now... Any solutions?

    It is fixed!

  • Lenovo G550 one key recovery and wi-fi problem

    Hello all,
    I have recently upgraded Vista to Win 7 on my G550 and I have a problem with the wlan connection. I get connected, but there's no internet access, only "limited connectivity". The driver's installed correctly, I've checked each and every setting and cannot find the source of this problem.
    My OneKeyRecovery is not working anymore, I looked at the drivers site and saw there is no Recovery driver for Win 7. How can this be?
    Anyone care to help me, please?

    Could be a problem with the Lenovo ReadyConn-software, as described here:
    http://forums.lenovo.com/t5/Lenovo-3000-and-Value-line/Lenovo-G550-Wi-fi-Problems/m-p/153935;jsessio...
    Not sure if it applies to w7, but it could be worth a try...

  • Fbl1n and fbl5n line item wise display the cutomer and vendor name

    Hi,
    My user is asking report for fbl5n and fbl1n line itemwise dispaly vendor and customer.See the report for one time vendor and customer name displaythe line item wise display in FBL!N/FBL5N. but not the display the regular vendors/customer.So one time table name BSEC
    Please advise
    Regards.
    Edited by: yps y on Nov 13, 2008 1:26 PM

    Hi,
    line item reports FBL1N/FBL5N are reading the line items (wow, what a big surpise ) and displaying information on line item level.
    As the vendor/customer name is NOT stored in the line items, you cannot display this in the lines (along with other item level information., like amount, posting key, doc.type, etc.). You may find a field called "Name 1) in the field catalog when configuring the ALV layout but this is empty for normal customers/vendors. It is only filled in for one time (Cpd) customers - the reason is as explained above: for these special accounts, the name IS stored on line item level (it varies from item to item),, that's why it can be read and displayed in the items.
    Now how about normal customers/vendors?
    You have to activate Business Transaction Event 1650 and implement a simple code so that depending on the account type (D = customer, K = vendor), you get the business partners name from table KNA1 / LFA1 and put it into field Name1.
    Hope that helps, points welcome
    Csaba

  • My USB CF Card reader is not mounting on my 2.5 GHZ Intel Core i5 iMac anymore. It was last week and worked fine to get pictures from my camera. Now it won't mount. I have tried another card reader and the same problem exists. Also tried different cards..

    Hi
    My USB CF (Compact Flash) Card reader is not mounting on my 2.5 GHZ Intel Core i5 iMac anymore.
    Last week it worked fine to get pictures from my camera but now it won't mount at all.
    I ejected it in the correct way rather than just disconnecting it but now i cannot get it to remount!
    I cannot even see it in the disk utility or system profiler.
    I have tried another card reader (a brand new one bought today) and the same problem exists. I've also tried different cards to see if that made a difference and they still arent being picked up on the Mac. 
    I have done all the usual things like rebooting, unplugging all other USB devices and then trying but nothing has worked.
    I'm a photographer and I'm at my wits end here. I know the cards are fine as i have been using them without issue and they are also new.
    Note: If I plug the camera in directly to the Mac, the Mac picks it up just fine as it always has done. Its just the card readers that it wont pick up anymore.
    If anyone has any ideas at all other than the following (my so called friends advice) you'd earn my undting love:
    Buy a PC
    Use the camera (Thats why i bought the reader in the first place - importing RAW files from the camera is SLOW!)
    Replace your CF cards (I have three 8GB cards two of which i had never used til today and they dont work either!)
    Buy a new card reader (this is the 5th one in two days - none work on the Mac)
    Many thanks in advance!
    LIsa

    OK, restart in Safe Mode, this will clear some caches. It's possible one or more is corrupt. To restart in Safe Mode when you hear the start up tone hold down the Shift Key until you see a progress bar. Let it fully boot then restart normally and test.
    Also I am assuming you have checked Finder - Preferences  - General and see what boxes are checked in "Show these items on desktop." You can also mount an item in Disk Utility, simply highlight it and then look in the File menu for Mount.....

  • How do I add multiple Game Center accounts with one Apple ID and one device(I phone 4s)

    I Need help  adding more then one Game Center account to my iphone and I don't want to make a new Apple ID please help and thanks to all who answer.

    After 2 hours worth of searching with no answer, I decided to run a test and it worked. This is what I did to have multiple Game Center IDs on iOS7. (People responding may have over looked this detail because they assumed it was obvious, but it wasn't)
    Answer: you MUST have multiple Apple ID accounts, however, you use the main one to log in to SETTINGS > ITUNES & APP STORE.
    1. I deleted the Alternate Email Address associated with my account
    2. I created an entire new Apple ID with this email address
    3. I login in to SETTINGS > ITUNES & APP STORE with my original Apple ID (credit card on file)
    4. I login to Game Center, iCloud, etc... with my kid's NEW Apple ID
    So purchasing still goes under our shared account and game center, iCloud, etc... go under my kid's Apple ID.
    ^ ^ ^ ^ This is the simple straight forward answer I was looking for ^ ^ ^ ^

  • My ipod nano was synced by itunes and removed all of my music and game files. I am in the process of adding my music back one cd at a time, but there is no history of tetris that I paid for from the itunes store. How can I get this game back for my ipod?

    My ipod nano was synced by itunes and removed all of my music and game files, and replaced my music with my kids music that they have put into the current itunes library. My music is nowhere to be found on my computer, so now  I am in the long, forever process of adding my music back one cd at a time, but there is no history of tetris that I paid for from the itunes store. How can I get this game back for my ipod?

    Contact iTunes support and explain your situation to them.  They may let you redownload it at no cost.
    http://www.apple.com/support/itunes/contact.html
    If they don't, I'm afraid you'll have to purchase it again.  Sorry.
    B-rock

  • I purchased a game name Einstein and I can't see it , it doesn't show up in the menu!?

    I purchased a game name Einstein and I can't see it , it doesn't show up in the menu!?

    This may be related to the "feature" that displays all Greatest Hits albums as one album, or it may be that the tracks are marked as compilations. Find one of the missing artists in iTunes and select the tracks from the album. Make sure the Compilations flag is set to No. Change the album title to something unique, e.g. if it's called *Greatest Hits*, rename it to *Greatest Hits, Artist*. Resync your iPod and see if it helps. If so, repeat the treatment.
    tt2

  • HT5622 I have been using one apple ID for my family as it makes it easier to manage itunes purchases/rentals on all of our devices.  Now that my kids are getting old and my wife has recently purchased an Iphone, I can see that I need to change my strategy

    I have been using one apple ID for my family as it makes it easier to manage itunes purchases/rentals on all of our devices.  Now that my kids are getting old and my wife has recently purchased an Iphone, I can see that I need to change my strategy. I plan to add a few more iphones to the family very soon.  What is your recommendation to manage all of our devices (iphones, itouch, apple tv) for my family?  Can I continue to function with one apple ID or is it time to take the leep into attempting to manage multi-apple ID's? 

    There's a few ways of managing multiple devices on a single computer (and keeping seperate content on each). The following document is worth checking through:
    How to use multiple iPods, iPads, or iPhones with one computer

Maybe you are looking for

  • UserName and password check with sessions..

    Hai all, i hav sent username and password to login.jsp page to next servlet page, in servlet file create session and i will bound the username and password.so i will create for each user session and set the attributes..its working fine. but problem i

  • Calling Portal Service using result as Java Bean Model impossible?

    Hello folks, we try to achieve to call a portal service (working) which gives as a result a list of object of type com.foo.Report. We want to make use of this class as a model class, so we have the class as a model node in the context. The class itse

  • IDoc for PSM Earmarked Funds

    Hi @ll, We are currently connecting two SAP-Systems. One of them uses PSM (Public Sector Management) the other doesn't. The PSM is used for billing with FI, the other is the central purchasing system. The purchasing system needs to check earmarked fu

  • Camtasia flash files in Robohelp

    I am trying to add camtasia video clips (swf or html) into my RoboHelp project. I add them as baggage files then link them in the document. When I go to view them online the video plays but there are no controls (play, stop pause, volume control). I

  • Can I share Power Query's queries to Public ?

    Can I share Power Query's queries to Public ? I want to share my queries on my friends. Now, I share my queries by sharing Excel files by OneDrive. My friends copy and paste queries from my Excel files. It hard to search and update rather than Power