How can I actually PLAY a game on my iPhone 6?  When I GOTO the Game Center and click games, all I get is the screen with leaderboards, stats, etc

How can I actually PLAY a game on my iPhone 6?  When I goto the Game Center and click on games, then click on a specific game (solitaire, for example), all I get is the leaderboards, achievements and player screen.  All I want to do is launch the game.

Hi Jordanali!!!
Game Center is just simply used for what you are seeing, leaderboards and stats between your friends and yourself.
To launch an app, first download it from the app store, then just tap the icon on the home screen when it is done downloading!!!
I hope that answers all of your questions!

Similar Messages

  • I recently had to disable and enable all add-ons on Firefox. Now when I google something, when I hover over the website preview and click 'cached' it won't highlight the key terms anymore. How can I fix this?

    I recently had to disable and enable all add-ons on Firefox. Now when I google something, when I hover over the website preview and click 'cached' it won't highlight the key terms anymore. How can I fix this?

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • TS3988 I can log into my iCloud account on my iphone but when I try to log in on my pc I keep getting a connection error message.  Any ideas?

    I can log into my iCloud account on my iphone but when I try to log in on my pc I keep getting a connection error message.  Any ideas?

    Same problem. I can see the itunes store so not a problem with windows firewall. The account is active on my iphone so i know i am not locked out. I can connect the PC to my iphone so i know itunes is working ok. It is just logging into itunes on this pc which doesn't work. Only thing I can think of is that the email address I use for my apple id has been offline for a while and is working again now, I'm wondering whether this has been the case for others who are having this issue?

  • Need help when swapping rooms in my point and click game

    Ok i am making my first point and click game in flash to familiarize myself with some of the basics.
    I have set up a room with a 2 walls(rooms) at the moment, and on the first frame there are 4 screws that when clicked play a small animation and are then removed, works fine so far.  But if i leave that room then go back into it the screws are back in their original position.  How do i stop this from happening, i am guessing i have to put an if formula somewhere on my addChild(TLscrew) or put it somewhere else besides in the enter_frame function.  Anyway heres my code any help would be appreciated. 
    import flash.events.MouseEvent;
    import flash.events.Event;
    import flash.display.MovieClip;
    stop();
    myWords.addEventListener(MouseEvent.CLICK, cleartext);
    doorHandle.addEventListener(MouseEvent.CLICK, losehandle);
    doorBit.addEventListener(MouseEvent.CLICK, turnDoorBit);
    tele.addEventListener(MouseEvent.CLICK, turnOnTele);
    skyremote.addEventListener(MouseEvent.CLICK, gotoRemoteBack);
    addEventListener(Event.ENTER_FRAME, loop);
    var TLScrew:MovieClip = new screw();
    var TRScrew:MovieClip = new screw();
    var BLScrew:MovieClip = new screw();
    var BRScrew:MovieClip = new screw();
    var topBattery:MovieClip = new AABattery();
    var bottomBattery:MovieClip = new AABattery();
    var remoteHand:MovieClip = new Hand();
    var TLout:Boolean = false;
    var TRout:Boolean = false;
    var BLout:Boolean = false;
    var BRout:Boolean = false;
    var doorBitStraight:Boolean = true;
    var teleSwitchedOn:Boolean = false;
    var beenToOtherRoom:Boolean = false;
    TLScrew.addEventListener(MouseEvent.CLICK, screwout1);
    TRScrew.addEventListener(MouseEvent.CLICK, screwout2);
    BLScrew.addEventListener(MouseEvent.CLICK, screwout3);
    BRScrew.addEventListener(MouseEvent.CLICK, screwout4);
    function loop(e:Event):void{
    tele.buttonMode = true;
    TLScrew.buttonMode = true;
    TRScrew.buttonMode = true;
    BLScrew.buttonMode = true;
    BRScrew.buttonMode = true;
    doorHandle.buttonMode = true;
    addChild(TLScrew);
      TLScrew.x = 258;
      TLScrew.y = 205.1;
    addChild(TRScrew);
      TRScrew.x = 268;
      TRScrew.y = 205.1;
    addChild(BRScrew);
      BRScrew.x = 268;
      BRScrew.y = 230.35
    addChild(BLScrew);
      BLScrew.x = 258;
      BLScrew.y = 230.35;
    if(TLScrew.currentFrame == 24){
      removeChild(TLScrew);
    if(TRScrew.currentFrame == 24){
      removeChild(TRScrew);
    if(BLScrew.currentFrame == 24){
      removeChild(BLScrew);
    if(BRScrew.currentFrame == 24){
      removeChild(BRScrew);
    function losehandle(e:MouseEvent):void{
    myWords.text = "handle fell off";
    doorHandle.gotoAndPlay(2);
    doorHandle.removeEventListener(MouseEvent.CLICK, losehandle);
    function turnDoorBit(e:MouseEvent):void{
    if(TLout == true && TRout == true && BLout == true && BRout == true && doorBitStraight == true){
      doorBit.rotation = 75;
      doorBitStraight = false;
    else if(TLout == true && TRout == true && BLout == true && BRout == true && doorBitStraight == false){
      doorBit.rotation = 360;
      doorBitStraight = true;
    function gotoRemoteBack(e:MouseEvent):void{
    gotoAndStop(2);
    addChild(topBattery);
    addChild(bottomBattery);
    addChild(remoteHand);
    topBattery.x = 174.8;
    topBattery.y = 134.75;
    bottomBattery.x = 127.8;
    bottomBattery.y = 192.8;
    bottomBattery.rotation = 180;
    remoteHand.x = 360.3;
    remoteHand.y = 143.75;
    arrowBack.addEventListener(MouseEvent.CLICK, gotoMain);
    beenToOtherRoom = true;
    function gotoMain(e:MouseEvent):void{
    removeChild(topBattery);
    removeChild(bottomBattery);
    removeChild(remoteHand);
    gotoAndStop(1);
    function turnOnTele(e:MouseEvent):void{
    if(teleSwitchedOn == false){
    tele.gotoAndStop(2);
    teleSwitchedOn = true;
    }else if(teleSwitchedOn == true){
      tele.gotoAndStop(1);
      teleSwitchedOn = false;
    function cleartext(e:MouseEvent):void{
    myWords.text = "";
    function screwout1(e:MouseEvent):void{
    TLScrew.gotoAndPlay(2);
    TLout = true;
    function screwout2(e:MouseEvent):void{
    TRScrew.gotoAndPlay(2);
    TRout = true;
    function screwout3(e:MouseEvent):void{
    BLScrew.gotoAndPlay(2);
    BLout = true;
    function screwout4(e:MouseEvent):void{
    BRScrew.gotoAndPlay(2);
    BRout = true;

    Here is my new code including the suggestion of taking the false out of my Booleans which has got me a step closer to where i want to be (thanks) but now with this code when i click my TLscrew it plays the movieclip then when it reaches the end of the animation it removes itself(as intended), but none of the other screws are removing themselves when they reach the frame 24 like they are meant to.  Any ideas where i have went wrong?
    Thanks for the help
    import flash.events.MouseEvent;
    import flash.events.Event;
    import flash.display.MovieClip;
    stop();
    var topBattery:MovieClip = new AABattery();
    var bottomBattery:MovieClip = new AABattery();
    var remoteHand:MovieClip = new Hand();
    var TLout:Boolean;
    var TRout:Boolean;
    var BLout:Boolean;
    var BRout:Boolean;
    var doorBitStraight:Boolean = true;
    var teleSwitchedOn:Boolean = false;
    var TLScrew:MovieClip = new screw();
    var TRScrew:MovieClip = new screw();
    var BLScrew:MovieClip = new screw();
    var BRScrew:MovieClip = new screw();
    myWords.addEventListener(MouseEvent.CLICK, cleartext);
    doorHandle.addEventListener(MouseEvent.CLICK, losehandle);
    doorBit.addEventListener(MouseEvent.CLICK, turnDoorBit);
    tele.addEventListener(MouseEvent.CLICK, turnOnTele);
    skyremote.addEventListener(MouseEvent.CLICK, gotoRemoteBack);
    addEventListener(Event.ENTER_FRAME, loop);
    TLScrew.addEventListener(MouseEvent.CLICK, screwout1);
    TRScrew.addEventListener(MouseEvent.CLICK, screwout2);
    BLScrew.addEventListener(MouseEvent.CLICK, screwout3);
    BRScrew.addEventListener(MouseEvent.CLICK, screwout4);
    function loop(e:Event):void{
    tele.buttonMode = true;
    TLScrew.buttonMode = true;
    TRScrew.buttonMode = true;
    BLScrew.buttonMode = true;
    BRScrew.buttonMode = true;
    doorHandle.buttonMode = true;
    if(!TLout){
    addChild(TLScrew);
      TLScrew.x = 258;
      TLScrew.y = 205.1;
    if(!TRout){
    addChild(TRScrew);
      TRScrew.x = 268;
      TRScrew.y = 205.1;
    if(!BRout){
    addChild(BRScrew);
      BRScrew.x = 268;
      BRScrew.y = 230.35
    if(!BLout){
    addChild(BLScrew);
      BLScrew.x = 258;
      BLScrew.y = 230.35;
    if(TLScrew.currentFrame == 24){
      removeChild(TLScrew);
    if(TRScrew.currentFrame == 24){
      removeChild(TRScrew);
    if(BLScrew.currentFrame == 24){
      removeChild(BLScrew);
    if(BRScrew.currentFrame == 24){
      removeChild(BRScrew);
    function losehandle(e:MouseEvent):void{
    myWords.text = "handle fell off";
    doorHandle.gotoAndPlay(2);
    doorHandle.removeEventListener(MouseEvent.CLICK, losehandle);
    function turnDoorBit(e:MouseEvent):void{
    if(TLout == true && TRout == true && BLout == true && BRout == true && doorBitStraight == true){
      doorBit.rotation = 75;
      doorBitStraight = false;
    else if(TLout == true && TRout == true && BLout == true && BRout == true && doorBitStraight == false){
      doorBit.rotation = 360;
      doorBitStraight = true;
    function gotoRemoteBack(e:MouseEvent):void{
    gotoAndStop(2);
    addChild(topBattery);
    addChild(bottomBattery);
    addChild(remoteHand);
    topBattery.x = 174.8;
    topBattery.y = 134.75;
    bottomBattery.x = 127.8;
    bottomBattery.y = 192.8;
    bottomBattery.rotation = 180;
    remoteHand.x = 360.3;
    remoteHand.y = 143.75;
    arrowBack.addEventListener(MouseEvent.CLICK, gotoMain);
    beenToOtherRoom = true;
    function gotoMain(e:MouseEvent):void{
    removeChild(topBattery);
    removeChild(bottomBattery);
    removeChild(remoteHand);
    gotoAndStop(1);
    function turnOnTele(e:MouseEvent):void{
    if(teleSwitchedOn == false){
    tele.gotoAndStop(2);
    teleSwitchedOn = true;
    }else if(teleSwitchedOn == true){
      tele.gotoAndStop(1);
      teleSwitchedOn = false;
    function cleartext(e:MouseEvent):void{
    myWords.text = "";
    function screwout1(e:MouseEvent):void{
    TLScrew.gotoAndPlay(2);
    TLout = true;
    TLScrew.removeEventListener(MouseEvent.CLICK, screwout1);
    function screwout2(e:MouseEvent):void{
    TRScrew.gotoAndPlay(2);
    TRout = true;
    function screwout3(e:MouseEvent):void{
    BLScrew.gotoAndPlay(2);
    BLout = true;
    function screwout4(e:MouseEvent):void{
    BRScrew.gotoAndPlay(2);
    BRout = true;

  • How do I set my I pad back to factory settings?  I tried one method and after, now all I get is the itunes logo.  help please.

    How do I set my ipad back to factory settings?  I did what ipad said to do but now all I get when turned on is the itunes icon.  I can't do anything on my ipad.  Help?

    See Here  >  http://support.apple.com/kb/HT1808
    You may need to try this More than Once...  Be sure to Follow ALL the Steps..

  • How can I actually play iCloud/iTunes on my MacBook Pro?

    I use a MacBook Pro with a 2.53 GHz Intel Core 2 Duo, running Snow Leopard (10.6.8).  I haven't updated to Lion because I'd have to re-purchase ProTools in order to do that, and ProTools was the whole reason I upgraded to a MacBook Pro to begin with. 
    A few days ago, I purchased a subscription to iTunes Match because I store all of purchased music on an external hard drive, and I got nervous when a friend's external drive failed.  I also wanted a way to play purchased music on my laptop when I'm somewhere with wi-fi, but I don't have my external hard drive with me. 
    After a lot of stopping and starting, I finally uploaded or matched all of my music to the cloud.  I feel good knowing it's safe (or as safe as it can be).  But I don't understand how to play it on my computer without my external hard drive.  When I double-click on a track without the external hard drive connected, I get the usual exclamation point and the offer to try to locate the original file. 
    I found a tutorial somewhere that suggested I go to www.icloud.com, but when I enter my Apple ID there, it tells me that I need to set up a device for iCloud, which I obviously have, otherwise where would all of that music have gone? 
    What am I supposed to do here?  Did I just unwittingly purchase membership for a service I could only use if I was using either a Lion-operated laptop or an iPhone? 

    I did find a workaround, but it wasn't precisely what you suggested.  I didn't create a second user account, but I did create a second library.  I saw that a few other people have reported this frustration, so I'll write out what I did. 
    1.  Close iTunes
    2.  Click on the iTunes icon in your dock
    3.  Immediately hold down the "option" key
    4.  You'll be given an option to either choose or create a library in your music folder.  Choose create.
    5.  Name the new library.  I named mine "Magic Cloud Library," because I don't want to mistake it for one of the libraries that my computer automatically creates. 
    6.  Next, turn on iMatch.  You'll be asked to log in.  Do that. 
    7.  I think I was asked one more obvious question, but then my music library loaded, and I was able to stream from the cloud on the computer that was the original source of the music. 
    Now, when I want to listen to my music without the external hard drive connected, I just open iTunes, hold down "option," choose the "Magic Cloud Library," and I'm in business.  I don't have to switch users or identities. 

  • How can I find my serial number for Adobe Acrobat 11. I got a new iMac and I don't want to use the new version at £18.00 per month. I don't need it. Thank you

    I used to use CS5 and I want to use the Acrobat version on my new iMac.
    How can I find my serial number for Adobe Acrobat 11.  I don't want to use the new version at £18.00 per month. I don't need it. Thank you

    Hi Anthony Aduhene
    Please refer : Find your serial number quickly

  • How can I sync bookmarks from my iPad BACK to ie6? My laptop had a rebuild and I lost all of my ie6 favourites, but they ar still on my iPad as bookmarks - just can figure out how to transfer back. I have ipad2 and ios5

    My laptop running ms and outlook had to be re-loaded and as a result I lost all of my Internet explorer favourites. As I run iTunes on my laptop I do have all of th favourites synced through iTunes to my ipad2. How can I reverse synch my ipad2 so that the bookmarks are transferred back to my outlook pc

    Follow the instructions here >  Learn how to set up iCloud on all your devices
    Make sure you select, "Bookmarks" in the iCloud window.
    "Outlook 2007 or 2010 is required for accessing iCloud email, contacts, and calendars. Safari 5.1.1 or Internet Explorer 8 or later is required for accessing bookmarks."

  • When I shut my MacBook Pro, I cannot restart it--I get ablank blue screen with a little flicker like it wants to open but it can't. Is there a way around the problem?

    I did a clean reinstall on my Mac Book Pro and in the process I lost my Espon print drivers. I went to th eEspon site and downloaded what was needed. I installed per instructions. I was told to reboot, but all I got was a blank blue screen. I shut down the computer again all got was a blank blue screen. What should I do> How can circumvent the usual satrtup procedure.
    Tom Ackerly

    Start up in Safe Mode.
    http://support.apple.com/kb/HT1455
    Best.

  • When I want to open the Notes app on my macbook air, the program opens and 1 second later I get a problem report with a lot of text. I tried restarting and everything but it still wont open. What can I do?

    When I want to open Notes on my macbook air, 1 second later the program stoppes and I get the following message:
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Got more than one folder with folderId AAMkAGQwZWFmYWJjLTdkY2EtNDQzYy1iNjM1LTEwN2VjY2RkMmE3ZgAuAAAAAACE8u/dnKl2QrFavLE 7ajTCAQD16rvcIyGQR6i8d7b+zDcTAdQEygtWAAA='
    abort() called
    terminate called throwing an exception
    At least, this is a part of it. I've tried a lot but the program stil doenst work. What can I do?

    Message was edited by: leroydouglas
    better yet, try this solution:
    https://discussions.apple.com/message/12351186#12351186

  • HT4623 HOW CAN I ERASE MY UNWANTED APPS FROM MY IPHONE 3G WHEN CONNECTED TO ITUNES?

    how to erase unwanted apps from my iphone 3G?

    Here's the iPhone User Manual:
    iPhone User Guide (For iOS 6.1 Software)Jan 28, 2013 - 14 MB
    Sync your iPhone 4 using iTunes (which presumably you have been doing ever since you got the iPhone 4).  Then turn on your iPhone 5, and one of the options you will see after setting up a network connection is whether to set up as a new device or restore using a previous iPhone.  Follow the directions.

  • How can i recover my voicemails after updating my iPhone?

    How can i recover my voicemails after updating my iPhone?

    When one restores an iPhone from its own backup, visual voicemail is also restored. However, when one restores a new iPhone from a backup from a previous phone, the voicemails fail to restore. This occurred between my 3G to 4s, and again from the 4s to a 5s. Restoring the 4s once from its own backup resulted in voicemail recovery.
    My only explanation is that when a different SIM card is used, voicemails cannot restore as one would otherwise expect. Perhaps voicemails are inexplicably tied to their SIMs. Unfortunately, newer models of iPhones tend to use exceedingly different sizes, rendering one possible fix unpursuable. iBackupBot is the other possible solution: you can extract the voicemails from the backup and restore them onto the new iPhone individually.

  • Ipod touch is not recognised by the computer or in i tunes and is unrepsonsive. All we get is the apple logo. How can it be restored to factory settings?

    My ipod touch is not recognised by the computer or by itunes. All we get on the ipod is the apple logo and it won't do anything else. How do we restore the factory settings?

    Have you tried everything here?
    iOS: Not responding or does not turn on
    B-rock

  • When I select a title in the iTunes Store and click on Play in iTunes I am sent to the download page for iTunes 10 which I have already. The selected title cannot be found anywhere in my iTunes. How can I get the title in iTunes with possibility to buy it

    When I select a title in the iTunes Store and click on Play in iTunes I am sent to the download page for iTunes 10 which I have already. The selected title cannot be found anywhere in my iTunes. How can I get the title in iTunes with possibility to buy it?

    The issue is that your credit or debit card credentials must be associated with the same country where you reside in order to purchase iTunes content.
    "Although you can browse the iTunes Store in any country without being signed in, you can only purchase content from the iTunes Store for your own country. This is enforced via the billing address associated with your credit card or other payment method that you use with the iTunes Store, rather than your actual geographic location. You can use the iTunes Store in all countries of which you’re a resident, but you’ll either need a separate iTunes Store account for each one, or you’ll need to continually be switching the billing information on your single account. Generally, it’s simpler just to set up an alternative account for these situations, although it’s worth nothing that features like iTunes in the CLoud and iTunes Match are designed to work best when using a single iTunes Store account, as you can only switch accounts with these services every 90 days."
    From here >  The Complete Guide to Using the iTunes Store | iLounge Article

  • How can I re-play the tutorials in iwork?

    I am new to Apple and am enjoying the experience thus far. My only unanswered question is how can I re-play the tutorials that popped up the very first time I opened an application? i.e. The first time I opened "Keynote" a window opened that gave me the opportunity to see some video highlights, I chose not to watch thinking I would get to it later. However, now when I click on the "keynote" icon it takes me directly to the application - no video tutorials offered. This is true of all the applications in iwork. I have found tutorials on-line but can I still get them on my computer?
    Thanks

    The only tutorial videos are online -- if you go to the Help menu and choose "Video Tutorials", that will take you to the appropriate section of the Apple site (and the "Welcome to Keynote" item will give you that window that popped up the first time you ran Keynote).
    If you want a basic overview of iWork (and a very nice demonstration of what Keynote can do), then the Help item "iWork Tour" is highly recommended.

Maybe you are looking for

  • Kernal Panic after mountain lion install

    Tried various solutions on fixing this and its just become annoying and inconvient. Tried doing the Pram reset. Tried reinstalling mountain lion 3 times. This is just crazy. Every time I buy a new OS its always problems. I can't stand it. Next time I

  • Comment Enabled PDF problem

    Hi all, We have a huge design jobs which was done in Indesign, Pdf's which we have creted from Indesign will be comment enabled and send it to client for commenting purpose. Client Message: Acrobat would  freeze up when working with certain documents

  • Two modifiable invoice output types to be generated

    Hi experts, One of my customer has requested us that he need modifiable output types. the first invoice will be like a normal one which he want to keep it for company internal purpose and posting to FI will be done on that basis. the second invoice i

  • How can I work with facing pages in pages ver 5

    I have become very dependant on the facing pages display in older versions of Pages.  For design and page layout for booklets it is most essential. I have downloaded (upgraded) to version 5 of Pages and cannot figure out how to get the facing pages d

  • WOAH! whats this? did anyone else get this?

    i left the at&t store with my new iphone today. i got this weird screen and hit accept but i was just wondering if anyone else got this or just me? also when i got home and activated my first gen under my moms number i got the same message on her pho