TS1702 Has anyone had any issues with the app scramble with friends after updating to iOS 6. The touch screen is not responding properly when selecting the tiles but worked fine before the update

Has anyone had an issue with the app scramble with friends after upgrading to iOS 6. Tapping the screen will not select the tiles and hold them.

Yes I am having the same problem. I can't find any info about it and nothing seems to help. I am just posting this in hope that if it's a wider problem, there will be a quick solution.

Similar Messages

  • Has anyone had any issue with opening a new tab and the address bar not connecting to websites in 33.1.1?

    I think ever since we moved to v33, I've been having an irritating issue that whenever I open a new tab that isn't connected to a website yet and try to enter a website address, it won't connect to ANY website. Doesn't matter if I hit Enter to try to make it go, doesn't matter if I click the right-pointing arrow button to make it go, doesn't work. I can go into a tab already connected to a website, type in a new website there and it'll create a new tab and take me to the new website, but not if I use new tab button.
    Anyone else had this issue? Any fixes?

    Sorry, that didn't help as I'm able to connect to websites, just not in a particular way.
    For instance, I am able to type in and connect to websites IF the tab is already in use with a website (i.e. if I were to type "yahoo.com" in the address bar of this tab FF would open a new tab and take me to yahoo.com) but not when it is a completely new tab.

  • Has anyone had any issues with the sleep indicator light?

    I have a 15.4-inch MacBook Pro 2.8 GHz (Late 2009) and recently I have noticed some issues involving the sleep indicator light and my Mac sleeping.
    I learned that the sleep indicator light is supposed to be on when you press the power button until the chime sounds and then its supposed to be recognized when the computer sleeps or when the lid is closed.
    Lately, the sleep indicator light has not be working when the computer boots (it still chimes), when the computer shuts down or when the computer is sleeping. The computer still sleeps if you close the lid, but it acts up when you don't and use the Apple menu (Apple > Sleep), keyboard shortcuts (CmdOptionMedia Eject) or use the power button and select "Sleep". Usually when I use this method instead of closing the lid, the authentication login window appears and when I click "cancel", the computer sleeps.
    But still the sleep indicator light does not appear any time. I'm wondering if I need to get my Mac serviced. I still have a 2-year Best Buy Geek Squad warranty on the MacBook Pro.
    +It is weird that this is happening to me, cause my computer is only 1 year and 4 months old.+
    Is there anything you know that would help fix this issue.
    Message was edited by: studabaker
    Message was edited by: studabaker

    The microUSB cables are fairly common... most portable electronics today use them for file transfer/charging.
    If the user does not own one, they can be purchased from most retailers fairly inexpensively.

  • Has anyone had any issues with the most recent update?

    I just did the latest software update for my Apple TV, and now the little light is blinking fast, and the only picture on the screen is of the Apple TV with a white cable leading to the iTunes icon. Any ideas what's going on with my Apple TV? I tried unplugging it, but it didn't change a thing.. Any ideas or suggestions on the way ahead are much appreciated!
    Thanks

    The microUSB cables are fairly common... most portable electronics today use them for file transfer/charging.
    If the user does not own one, they can be purchased from most retailers fairly inexpensively.

  • Has anyone had any issues with updating iphoto?

    update doesnt show the update, but iphoto is asking for it

    error 1140 - https://discussions.apple.com/message/19986149  - iPhoto needs updating

  • Has anyone had any problems with their charger blowing out?

    Has anyone had any problems with their charger blowing out? mine blew, there's now a charred pin on the charger and in the socket of the macbook. The plastic around the charge socket is also cracked & distorted from the blow-out. It wasn't a power surge as no other electrical items were affected. It wasn't liquid or dust, as I'm the only person who uses it & I'm very careful. I'm concerned that the consequences could have been terrible. I wasn't present when it happened though, I can just see the evidence after the event.
    I have a mid 2010 13" Macbook running the latest software & use the original magsafe charger that came with it.
    Will I have to fork out for a costly repair or is there a safety issue that Apple will sort out for me?
    Any advice would be much appreciated.

    Everything in the box with iPhone is covered by the iPhone warranty ,go  to Apple genius bar before warranty expires

  • Has anyone had an issue with group addressing in OS X 10.9 Mail

    Has anyone had an issue with group addresses in Mail after installing Mavericks?  Both my MBP-15 and my Mac Pro stopped automatically filling in the addresses when I typed the name of the group that I have in Contacts, after updating to Mavericks.  Prior to updating they worked just fine.

    Hi,
    I just found these work arounds.
    https://discussions.apple.com/thread/5490015?tstart=0
    The first is appropriate if you want to send as an undlisclosed resicpient. The second method shows all addresses.

  • Has anyone had any problems with fusion drive?  If so, what kind of problems, and were they easily corrected?

    I'm looking at buying a new computer.  Has anyone had any problems with fusion drive on iMac?  If so, what kind of problems, and were they easily corrected?

    NOPE!
    I better not!  My iMac is only a week old.  And, if I did have any problems with it, I would let Apple deal w/it!  I do not troubleshoot when I'm under warranty.  That's Apple job!

  • Has anyone had any problems with the latest upgrade for iPad?

    I have an iPad 1 and am being prompted to upgrade to the latest version software. Has anyone had any problems when doing this? Our PC runs on Wndows 7.
    Having just resolved iTunes not connecting to the store after the recent upgrade, I'm reluctant to do something that could potentially screw up the iPad which does what we want as it is.

    bobtheblob wrote:
    Ok, thanks for that. I'll hang fire for the moment & see if anyone else has any comments.
    That's probably a good idea.  If you are happy with the system as is, I'd wait to upgrade.  I can report that my friends and family have mostly upgraded to iOS 5 without any problems, but as you can probably tell from other posts on this board, lots of people have run into problems. 
    As the old saying goes, if it ain't broke, don't fix it!

  • Has anyone had an issue with FindText not scrolling in Acrobat X?

    I wrote some code for Acrobat 8 using C# that used AcroAVDoc 's FindText method to search for a particular phrase so that I may find the page the text it was on and its location on the page so that I can insert an image at that location.  This worked great, the FindText method returned true when it found the text, scrolled to the page it was on and selected  the text.  In Acrobat X, I can not reproduce this.  It finds the text but does not scroll or select.
    Has anyone had this issue?  If so, how did you resolve it?
    Below is the code snippet that worked in Acrobat 8:
      try
                    Acrobat.CAcroApp app = new AcroApp();
                    Acrobat.CAcroAVDoc doc = new AcroAVDoc();
                    object jso;
                    app.Show();
                    //Open  For Searching
                    if (doc.Open(PdfDocument, ""))
                        Thread.Sleep(AcrobatDelay); //WaitForAcrobatToLoad
                        bool found = doc.FindText(SearchTerm, 0, 0, 0);
                        if (found)
                            CAcroAVPageView pv = doc.GetAVPageView();
                            int PageNum = pv.GetPageNum();
                            CAcroPDDoc pdDoc = (CAcroPDDoc)doc.GetPDDoc();
                            jso = pdDoc.GetJSObject();
    Thanks in advance for any help.

    Hi,
    I just found these work arounds.
    https://discussions.apple.com/thread/5490015?tstart=0
    The first is appropriate if you want to send as an undlisclosed resicpient. The second method shows all addresses.

  • Has anyone had any experience with using 'MacKeeper'?

    Has anyone had any experience using 'MacKeeper'?

    I am afraid its worsen then THAT!!. I bought two licences from those fraud spammers, liftetime with "satisfaction or moneyback guarentee".
    Both my Imac and MacPro kept crashing after installing it. All the helpdesk from zeobit did for me was sending me mails i should re-install osx and mackeeper.
    When that didnt help, the gave in. I asked my money back, as in the guarentee. Thet denied flat out. "Sir this is not OUR software causing the problem, but OSX. Go there with your complained!"
    Alsoo there newsletter......i UNLISTED 9 times now and still i get 5-8 spam mails a week.
    It´s a fraud a company !!
    Swindlers!! Alsoo see :
    https://discussions.apple.com/thread/2786697?start=0&tstart=0

  • Has anyone had any problems with the 10.0.3 upgrade?

    I'm running WinXP and presently have Adobe Reader 9.4.3.  Before I upgrade I would like to find out if anyone has had any problems with the new release?  The last time I upgraded an Adobe product (Flash) it screwed up my ability to watch videos on my browser.
    Any information would be appreciated.
    Thanks,
    Spin45

    Adobe Reader has the original 10.0.0 with its associated vulnerabilities and the patch of 10.0.1 which seems unable to run in protected mode in my environment or any that have roaming profiles.  The vulnerabilities that prompted the last two patches (would have been 10.0.2 and 10.0.3) have been forgone by Adobe, because "Protected Mode mitigates those vulenrabilities".  See here:  http://www.adobe.com/support/security/bulletins/apsb11-06.html
    and here: http://www.adobe.com/support/security/advisories/apsa11-02.html
    In my opinion, Reader X is not ready, they are soliciting for testers for a new release.  Version 9 with its attendant problems seems to be the only viable solution for me, if I can get the patches to apply properly, and the installer to work properly.

  • Has anyone had any issues using Adobe CS or Pro Tools on the LATEST MacBook

    I am about to purchase a new MacBook Pro and would like to know if there has been any issues with the latest MacBook Pro with programs such as Pro Tools, Adobe Creative Suite, or any programs that have anything to do with rendering. Please let me know what's up.

    No problems with CS5, the only suggestion is that if you're going to do a lot of rendering get the i7 CPU, max out the RAM (not necessarily from Apple, OWC have very good quality and prices) and get the 7200rpm hard drive.

  • SOLVED - Has anyone had any problems with xorg 1.11.14-1?

    Last night I had a double catastrophe. The first was nothing to do with Linux, but was the result of a rogue drive trashing my sata ports and killing both Arch and Windows. I managed to rescue Windows, but since Arch was running at the time (and updating) nothing I tried could bring it back. After restoring from a backup (10 days old) I started the updates again (a gargantuan 415Mb) which completed, though after a reboot X failed to start. Nothing in the logs, and no activity at all. My usual fix is to remove xorg.conf and reboot, which will generally get me to the desktop to troubleshooting stage using vesa drivers instead of catalyst, but even this couldn't get me to a desktop. I tried removing catalyst altogether from single user mode, but nothing would fix.
    I restored the backup again, and did all updates except kernel, catalyst, and xorg. Everything worked fine, so next I updated catalyst - still working. A fresh backup and I updated the kernel. Still working, which means the only thing not updated at this point (and in my mind the most likely culprit for the failures) is xorg.
    Now I'm not daft enough to try updating before I make a fresh backup (I've remade several tweaks to my system that got lost after the original crash), but before I go to the trouble, I wondered has anyone else had any problems with the updated xorg?
    For info, I'm running on a Phenom X4 965BE, AMD 4670HD with catalyst 12.1, kernel 3.2.2-1.
    TIA
    Last edited by Roken (2012-02-06 00:30:59)

    Any idea where the problem was?
    X also fails to start for me now, when the catalyst driver is loaded. It used to work before, but after recent upgrades and changes to the system it's somehow broken.
    (Same catalyst and xorg versions as you mentioned, but with kernel 3.2.4-1)
    Switching to the open-source radeon driver makes X start fine, switching back to catalyst breaks it again.
    Last edited by sas (2012-02-07 16:02:50)

  • Has anyone had any problem with the multi choice tick boxes on a windows computer?

    I have just created a form with check boxes on my iMac, emailed it to a windows based account and found that the check boxes don't work in windows explorer. Has anyone else had this problem?

    If your Mac is truly running MacOS 10.2.x, you are limited to using 128-bit WEP security - WPA is not supported.
    On the Linksys router, select 128-bit WEP and enter a passphrase. The router will generate, from the passphrase, four hexadecimal-format WEP keys. Copy down the FIRST of those four WEP keys - and use that WEP key on your Mac when prompted.

Maybe you are looking for