Whole touchscreen stops responding - major problem!

phone is one month old, has had no bumps or knocks, and suddenly today the touchscreen stopped working. no software updates had been done. all other buttons worked fine, but whole touchscreen behaved like an ordinary piece of glass. reboot only temporary fix, kept freezing within minutes or less, but home button & sleep button always worked - eventually reset whole phone with fresh software in itunes, took hours to set up again, lost all apps layout which is a total pain - and same problem is occuring!
anyone with a fix please reply (hint: this means YOU apple) as i just can't afford my super expensive phone to keep acting like a brick when i'm trying to use it!

thanks for the heads-up re:apple... silly me thinking apple techs might read this thread on an apple website
weekend here now so will head into the store if still doing it on monday... ive read a lot of 3GS users having this problem but not come across any other iphone 4 users as yet. if this problem sounds familiar, please comment, & state what you did to resolve it

Similar Messages

  • My touchscreen stopped responding to my finger and I can't unlock the screen...any idea how to remedy this problem?

    My touchscreen stopped responding to my finger and I can't unlock the screen...any idea how to remedy this problem?

    Have you tried a soft-reset ? Press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider if it appears), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Iphone 4s touchscreen stops responding after a minute or so, I then have to wait at least a minute before the touchscreen works again but soon after it stops responding. I have tried hard reset, turning it off over night, etc

    Iphone 4s touchscreen stops responding after a minute or so, I then have to wait at least a minute before the touchscreen works again but soon after it stops responding. I have tried hard reset, turning it off over night, etc

    Hello,
    I had that problem as well and the apple support suggested to turn off the LTE-mode to have a running system and try to exchange the micro-sim by my provider.
    THAT was not an option!
    BUT it seems to solve my problem in the following way after trying a lot of possibilties:
    In the menue properties/help (don't know the exact english word, because I run my phone in german)
    I switched on the nice feature 'flash LED' by incomming calls, msgs, and push infos.
    Today the flash feature was responding to different push notes very slowly.
    By switching this feature off the LTE-mode-tochscreen-not-responding-problem disappeared.
    We tried this on a other iphone, not having the metioned problem, and switched the LED-flash:
    the problem appeared. Switching the LED-flash off: problem disappeared!
    It seems to be a bug that the LED will hint Calls and MSGs in combination with the LTE mode!
    treated my phone very hard today to double check, but its still ok.
    @Apple:
    Please fix that issue in the next update.
    Hope, this helps you guys as well.

  • Pre2 gets hot; touchscreen stops responding

    I'm finding that my Pre2 gets 'warm' particularly when using the touchstone charger. Once it gets warm, the touchscreen stops responding. Restarting the device doesn't typically help, but normal service is restored once the 'phone cools down again having been removed from the touchstone.
    By 'warm' I mean 'pleasantly warm in the hand' rather than 'frighteningly hot', but I've never noticed a 'phone get particularly warm before.
    Is this a common fault / feature? Any advice gratefully received ...
    Post relates to: Pre 2 p102ueu (Unlocked EU)

    Thanks for the replies ... at least it's not just me!
    As you say, Internet access is also an issue - five minutes of use seems to require five minutes of rest to cool down again. It's just not usable like that ...
    The 'unresponsiveness' appears to afflict the keypad as well as the touchscreen - altogether pretty disappointing.

  • Iphone Touchscreen stopped responding when a call came. weird problem.....

    My iPhone was working fine. A call came and the touchscreen was not working. Touchscreen replacement was advised. I pressed the top right buttom and home button simultaneously for a restart and touchscreen was not working. I didn't have money so I brought it back home. After 3 weeks I put it for charge on my PC and first it showed charging sign...and then suddenly it asked for my password to unlock and the touchscreen was working fine. I charged fully and the iPhone worked perfectly fine for a day.
    When I put it for charge the other day, the touchscreen stopped working. Same problem. I tried to restore factory setting option in which everything will be erased and copied again but error 1604 is coming.
    Do I have to change the touchscreen? I don't think the touchscreen is damaged. Maybe software problem. Please help me, guide me.
    Thank you in advance!

    Well, the dropping may have damaged something, perhaps related to the lock mechanism. Just have it checked in a Care Center.
    If you find my post helpful please click the green star on the left under the avatar. Thanks.

  • IdeaCentre B530 Touchscreen Stopped Responding

    Hello, 
    I've had my B530 for roughly a month and a half, and suddenly, today, the multi-touch feature has completely stopped responding. I have tried restarting the system, calibrating Pen and Touch, troubleshooting, using my fingernail, etc. Unfortunately nothing seems to work. Does anyone have any suggestions? 
    Thanks. 
    KayNev

    Hello, 
    I've had my B530 for roughly a month and a half, and suddenly, today, the multi-touch feature has completely stopped responding. I have tried restarting the system, calibrating Pen and Touch, troubleshooting, using my fingernail, etc. Unfortunately nothing seems to work. Does anyone have any suggestions? 
    Thanks. 
    KayNev

  • Touchscreen stops responding in Mail app?

    This started happening yesterday - haven't recently updated iOS (still on 5.1.1) or installed any new apps etc....
    I'll open the Mail app, be browsing messages etc, and all of a sudden I can't type or click any of my messages or any other buttons in the app, however if I press the home button I can use everything else as normal... if I quit the process and then re-open the Mail app it works fine again for a little while but then stops......??
    Any ideas?

    I also bought a Dell Inspiron 15 7537 and I had the same problem as OP, but on Fedora 21 64-bit with Gnome 3.14. I haven't tried any other distros or DEs. However, both Arch and Fedora run systemd, so I think my solution work the same on both systems. I fixed it by doing the following steps:
    1. Create a script that reloads the kernel module hid_multitouch.
    $ sudo mkdir /opt/touchscreen-fix
    $ cd /opt/touchscreen-fix
    $ echo '#!/bin/sh
    /sbin/rmmod hid_multitouch && /sbin/modprobe hid_multitouch' | sudo tee resume.sh
    $ sudo chmod +x resume.sh
    Executing this script after a resume will make the touchscreen work again. However, it will of course not run automatically after a resume.
    2. Schedule the script to run after resume.
    Create the systemd service file:
    $ echo '[Unit]
    Description=Fix touchscreen after resume
    After=suspend.target
    [Service]
    Type=simple
    ExecStart=/opt/touchscreen-fix/resume.sh
    [Install]
    WantedBy=suspend.target' | sudo tee /etc/systemd/system/touchscreen-fix.service
    Enable it:
    $ sudo systemctl daemon-reload
    $ sudo systemctl enable touchscreen-fix
    Done! And that's all! I'm not sure if you also might need to restart the computer for it to work.
    To accomplish this I used the following resources:
    https://wiki.archlinux.org/index.php/Po … leep_hooks
    http://unix.stackexchange.com/questions … -at-resume
    https://bugs.launchpad.net/ubuntu/+sour … omments/28
    Last edited by MaTachi (2014-12-16 13:35:21)

  • TS1702 Touchscreen stops responding on fast movements

    Hi guys,
    I'm using the latest IPad and I am very happy with the device ) But I noticed a strange behavior: When I'm moving my finger very fast on the screen it sometimes "loses" contact - as if my finger (still on the screen) would not be there on screen anymore. Another touch with the same finger and tadaa, it continues to respond.
    For example: When using a painting app and I move my finger very fast from one side of the screen to another side the line I painted only follows half of the way. Or if I'm moving on the home screen very fast from one side to another the screen suddenly stops and does not react on my finger anymore.
    I already rebooted (sleep + home button), but it changed nothing. And it only happens when moved very fast.
    Question: Is this a normal behavior and based on technical circumstances? Or is my device simply... uhm.... "broken"? Hope someone can help me
    Ama

    Sounds like you have VoiceOver (one of the accessibility features) 'on' - if you turn the volume up do you get a voice saying what you are tapping ? If you do then try triple-clicking the home button and see if that turns it off, and if it does you can then change what a triple-click does via Settings > General > Accessibility > Triple-Click Home.
    If that doesn't turn it off then you can either turn it off directly on the iPad (you need to use a tap-to-select and then double-tap to activate/type process and 3 fingered scrolling) to go into Settings > General > Accessibility and turn VoiceOver 'off', or you can do it by connecting to your computer's iTunes : http://support.apple.com/kb/HT4064

  • My touchscreen stopped responding

    Hi,      my touchscreen is not responding after my new update to windows 8.1 i have tried going to the pen and touch setting but it has no option there, i tried the device manager but i dont see the mouse and other pointing device instead i see mice and other pointing device and it only has one option the alps pointing device, i tried configuring it but i need to touch the screen to do that, i dont know what else to do i miss the touch gesture and really need help fixing it. Thanks. 

    Have you tried a soft-reset ? Press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider if it appears), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Why does my iPad 3rd gen. stop responding after 5 minutes of use? The home button still works but the touchscreen doesn't react.

    This is getting incredibly annoying.  I've had this thing for 3 months and I can't use it for more than 5 mins at a time because the touchscreen stops responding!!! I tried restoring it to its factory defaults and it still keeps messing up.

    Make Sure iOS is updated to the latest version
    Reboot the device by pressing and holding down the home and sleep/wake buttons (power) at the same time until the apple logo appears on the screen, then let go.
    If that doesn't work then reset the device by going to settings/general/reset/reset all settings
    If that doesn't work, then update iTunes on computer, backup device to iTunes, then restore the device.
    iTunes: Backing up and Restoring iOS software 
    http://support.apple.com/kb/HT1414?viewlocale=en_US
    Device not responding or does not turn on
    http://support.apple.com/kb/TS3281?viewlocale=en_US&locale=en_US
    Finally, set up  a repair

  • Lenovo Flex 10 touchscreen stops working after 1 hour of use.

    Just bought a new Lenovo Flex 10 from a retail and it works perfectly except that after an hour of use the touchscreen stops working, the computer still works ok, but only with the mousepad. The notebook came with Windows 8.1, and I haven't installed any program on it. I need an urgent response please, since i've been looking for days in the community and other support pages, and still can't get a satisfactory answer and the period to get the a refund are about to expire.
    Thanks in advance.

    hi riglesias,
    Welcome to the Lenovo Forums.
    Once the Touchscreen stops responding, can you check the following:
    1. Open System Properties and see if the Touch functionality is still there 
      - Link to picture (Touchscreen feature is not detected)
      - Link to picture (Touchscreen feature is detected)
    If the Touchscreen feature is detected, proceed to Step 2.
    2. Press the Windows key‌ +R, type devmgmt.msc and press Enter. On the Device Manager, navigate to the Human Interface Devices section and uninstall anything that says HID-compliant device (this is the driver that controls the touchscreen). When finished, reboot the system and observe.
    3. If the Touchscreen is still not working, hold the Shift Key and hit the restart button inside Windows and you should be able to see the image below then try to tap on the screen to test and observe. I
    If the touch capability is still not functioning, I recommend you contact lenovo for service.
      - Link to picture
      - Support phone list
    Regards
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • ITunes Windows stops responding with Airtunes

    Playing music in iTunes works fine.
    When using Airtunes, whole iTunes stops responding after some minutes! Only help is switching iTunes off and restart. But after some minutes same issue.
    Any ideas? Somebody?

    the update might be choking on a song file (or files).
    finding which song file is involved can be tricky. but some folks have been having some success using Roy B's instructions from the following post:
    Roy B: Re: iTunes 7.0.1 crashes every time I open it

  • P6 windows does not start at times. Other times programs stops responding and then whole lot sraches

    p6 windows does not start sometimes at times it does progarams stop responding. The whole lot has crashed twice needing me to do a recovery. What is going on. The computer is slow this time after doing a system recovery

    @Harty, 
    In your very first post you stated, this issue started after a system recovery, how long ago did you do the recovery?
     Please respond back at your earliest convenience.
    Thanks
    Clicking the White Kudos star on the left is a way to say Thanks!
    Clicking the 'Accept as Solution' button is a way to let others know which steps helped solve the problem!

  • I've only had my iphone 5s for a week. I keep getting an error message of "Server has stopped responding."  I need the server to work. Does anyone know if there is a "fix" for the problem? Other wise, I probably best return for a refund and get a Samsung.

    I've only had my iphone 5s for a week. I keep getting an error message of "Server has stopped responding."  I need the server to work. Does anyone know if there is a "fix" for the problem? Other wise, I probably best return for a refund and get a Samsung.  Thanks

    sandyzotz wrote:
    Other wise, I probably best return for a refund and get a Samsung.
    Unlikely.  Based on the complete lack of detail of the issue provided it is entirely possible the same issue would occur.
    Unless and until the user provides some actual details of the problem, there is nothing the indicate that the issue is with the iPhone.

  • Safari stops responding when I try to bookmark (and other slow problems!)

    Two weeks ago my logicboard died, so I sent my ibook out to Apple for it to be fixed. Ever since I got it back this past Tuesday, my Safari has been extremely slow, but nothing else is wrong with my computer. Here are the problems:
    - The biggest issue is that Safari stops responding when I try to make a bookmark. The popup appears to select the bookmark's destination and to enter the name, but when you hit ok, the rainbow wheel comes up and it stops responding, so I have to reset Safari, and now I can't make new bookmarks at all.
    - It lags when it tries to open new windows, especially new tabs.
    - If a new page loads that scrolls at all, and then I try to scroll down, the wheel appears for several seconds until it can load the rest of the page. It's as though it gets stuck before it can scroll.
    - Sometimes when typing, it will also start to lag behind my typing speed, or if I try to click on a new field, it will not immediately allow me to type on occasion.
    All these things have never happened before I sent it out. I have reset my cache, and I have tried entering the open DNS addresses in my networks, which has improved loading speed, but hasn't fixed any of these problems. Does anyone have any idea what could be wrong and how I can fix anything?
    Message was edited by: canyon to the sky

    Try verifying the hard disk.
    Boot from your restore disk while holding down the C key until you see the Apple logo, then let go of the C key. You'll see an Installation window, select English. From the Menu Bar, select Utilities/Disk Utility. Select MacintoshHD 10.x.x in the panel on the left, select the FirstAid tab, then click Verify. If DU reports errors, click Repair. If Disk Utility cannot repair the disk you have several options. One is DiskWarrior or
    TechToolPro If Disk Utility can repair any errors, go back to the Menu Bar, click Utilities/Startup Disk. In the Startup Disk window select MacintoshHD 10.x.x and click Restart.
    If you don't have a restore disk, try booting into Safe Mode
    Carolyn

Maybe you are looking for

  • What are installations material for Solution Manager 7.0 EHP 1

    hi friends, we plan to do installing Solution Manager 7.0 ehp1, can any help me to get the path for installation media for Solution Manager 7.0 EHP 1 in service market place. thanks..

  • Default the payment terms for customer to 30 days

    In the system, payment term R30 is 30 days. How can I configure it to be defaulted to R30 each time a new customer is created in XD01. Please advice,

  • Can I use this animation of svg??

    Can I use this animation of svg?? Elastic SVG Elements | Codrops

  • Why are shapes so difficult to use now?

    I cant see a single way shapes in CC are better.  All extra stages and annoyances, anyone have better workflow method to combat these new things? 1. Cant duplicate easily. Before: select layer, cmd + j = duplicated Now: select layer, cmd + j = blank

  • HP 8600 Ink Cartridge Missing Message?

    HP8600 ink cartridges replaced after printer stopped working - "msg. ink cartridge missing", same msg., then unplugged and replugged, still shows same msg. 8 hrs. later and still no resolve. Third HP printer w/sensor problems. Is HP going down hill?