How to turn off iphone when display issue

HOw can i turn off the iphone 4S when there is an issue with the screen and i cannot get to swipe it off

Hold down power and home together. When the screen goes dark, let go. It should be powered off. If you continue holding them until the Apple appears, it will re-boot.

Similar Messages

  • How to turn off sound when taking a video

    How to turn off sound when taking a video

    debrafromusa,
    This would be an extremely bad idea, the start up tone is there for a reason. It tells you when your system is attempting to  boot, it is also necessary in the even resets like a PRAM reset are done. There is software to mask the sound however as stated it is a very poor idea.
    Also, why turn it off. Why not simply put the display to sleep when the machine is not in use. You can easily do that in System Preferences - Energy Saver

  • How i turn off the cinema display?

    How i turn off the cinema display?

    Unfortunately there is no on off switch.
    The best you can do is sleep the display or
    unplug it.
    I don’t know what unplugging it will do/cause.
    You can try it.
    Thanks ... Ken

  • How to turn off notifications when "Actions" and "Notifications" don't let you do anything?

    How to turn off notifications when "Actions" and "Notifications" don't let you do anything?

    So what happens if you go to each of your posts here on ASC with this account (assuming you only have one) and click the Stop Email Notifications button in the upper right hand corner?  Is it grayed out for all of your posts? 
    Perhaps you'll get most assistance in the Using Apple Support Communities forum.
    https://discussions.apple.com/community/using_apple_support_communities
    B-rock

  • How to turn off sound when iMac starts up

    how to turn off or turn down sound when my imac starts up

    debrafromusa,
    This would be an extremely bad idea, the start up tone is there for a reason. It tells you when your system is attempting to  boot, it is also necessary in the even resets like a PRAM reset are done. There is software to mask the sound however as stated it is a very poor idea.
    Also, why turn it off. Why not simply put the display to sleep when the machine is not in use. You can easily do that in System Preferences - Energy Saver

  • How to turn off iphone 5 apps in ios 7?

    How do I turn off iphone aps in ios 7?

    Hey there moleary47!
    I have an article for you that can tell you how to force close apps in iOS 7:
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    Thanks for using the Apple Support Communities!
    Cheers,
    Braden

  • How to turn off alarms when iCal is not running

    iCal-Version 4.0.4 (1395)
    Imagine giving a lecture supported by powerpoint in front of an audience, all applications turned off except of powerpoint, and suddenly popping up the iCal alarm message "meet her (xy) in the pub". How can I turn off alarms when iCal is NOT running?
    cheers
    knatterton

    Hey!  I was DJ'ing and an iCal alarm went off even though I'd selected to have alarms not go off when iCal is not running.  Now that option isn't there anymore!  Can I revert to the previous version of iCal?  I don;t see any other new features that are worth not having interruptions during DJ'ing and presentations!  I know that if I turn off all alarms, I will forget.  I'd create an alarm to remind me to turn it back on, but...  This is REALLY annoying.
    Rob

  • How To Turn off iPhone 5 camera composition

    Hello,
    I want to know how to turn off camera
    Composition at my iPhone5 please reply me
    Thank you
    Like this iOS 7.1.1
    http://imgur.com/7Jc83dx

    Thank You Buddy

  • How to turn off lumia520 time display on the scree...

    How do i turn it off? I just want to have the date display on the block screen. I have a watch so i dont want to look at the time on the phone. Also, how do i turn the lady's voice off when i am receiving a call? She keeps saying: call from ####.

    As far as I know the time display is built into the lockscreen although it could be alternative lockscreen allow you to modify how it shows.
    To turn off voice;
    Settings > ease of access> Narrator > OFF
    Although I am not a 100% sure on this..
    Click on the blue Star Icon below if my advice has helped you or press the 'Accept As Solution' link if I solved your problem..

  • How to turn off measurements when using the line tool

    Hello.  I'm sorry to trouble you with this small thing but its driving me nuts.  I'm using a shared computer at a university and we just upgraded to CS6.  When I use the line tool while making a mask a box pops up which measures the line's length and angle.  I want to turn it off, and it blocks being able to see what I am trying to mask.  I've tried looking this up online and in Photoshop help but I just don't know the correct terminolgy, i.e. what to call it, to find out how to turn it off.  Thank you so much so much for any help!
    here is a jpg screenshot: https://www.dropbox.com/s/njena5x9ppajzqq/linetool.jpg

    That looks like the on-image displays that were added to photoshop cs6
    You should be able to turn that off in Photoshop>Preferences>Interface>Show Transformation Values and set Never as the value.

  • How to turn off wireless when docked ?

    We have lenovo thinkpads (T410,410, 420, x200,210,200,X1). How can I turn off the wiress nic when the laptops are docked ?

    Set up an Access Connections profile with both WiFi and LAN devices in it and select "Best Available Network" mode.
    Cheers,
    Bill B.
    I don't work for Lenovo

  • How to turn off validation when compiling Packages...!

    Hello,
    How do I turn off the validation when compiling Packages in SQLPLus?
    Thanks
    Rao

    I'm guessing at what you're after here, but maybe this?
    ME_XE?create or replace procedure one
      2  as
      3  begin
      4     null;
      5  end;
      6  /
    Procedure created.
    Elapsed: 00:00:00.73
    ME_XE?set feedback off
    ME_XE?create or replace procedure one
      2  as
      3  begin
      4     null;
      5  end;
      6  /
    Elapsed: 00:00:00.61

  • How to turn off validation when creating XMLType

    Hi all,
    I have XML data stored in a CLOB field in a relational table. When generating an XMLType from the CLOB input I get the following error on certain XML documents only:
    select XMLTYPE.CREATEXML(CLOB_DATA)
    into XML_Type1
    from LOGS
    where ID = 32;
    ERROR:
    ORA-01001: invalid cursor
    ORA-21700: object does not exist or is marked for delete
    ORA-06512: at "SYS.XMLTYPE", line 0
    ORA-06512: at line 1
    I eventually figured out that the 'object' referred to is the xsd against which the XML doc must be validated. This happens for documents which have the attribute xsi:schemaLocation="http:/myURI myxsd.xsd".
    My question is how do I prevent the parser from trying to reference the XSD when generating the XMLType.
    The following does not work:
    select XMLTYPE.CREATEXML(CLOB_DATA).createNonSchemaBasedXML()
    into XML_Type1
    from LOGS
    where ID = 32;
    Please help.
    Thanks
    Abdul

    You might try specifying a null schema with:
    XMLTYPE.CREATEXML(xmlData => yourdata, schema => null)
    Failing that the validated & wellformed parameters default to zero, setting one of them to 1 may turn off the validation.
    If neither of the above work I'd be selecting into a CLOB and creating the XMLTYPE in my code.

  • How to turn off NVIDIA when on battery?

    Hi Folks,
    I have the Optimus thing, and the NVIDIA chip is staying active when I'm on battery (as verified by NVGPUStateViewer64). Is there any way to have it automatically turn off when I'm on battery, or are apps that were attached to NVIDIA while plugged in keeping NVIDIA awake when I switch to battery? Any thoughts?
    Thanks!
    T410 2516-CTO
    Optimus: NVS 3100M + Intel HD (most recent optimus driver installed)
    Win 7 Pro x64 SP1

    I think the point is that there are programs using the NVIDIA chip.  In my case, when I go on battery, firefox.exe and mediamonkey.exe are still using the NVIDIA processor.
    Of course, it would be nice to be able to kick those processes off the NVIDIA chip and onto the Intel HD chip (like switchable graphics used to do), but sounds like that might not be possible to do automatically (and I'm definitely not going to hunt around for applications using NVIDIA each time I unplug the computer).
    Any ideas, or are those of us with Optimus stuck with an NVIDIA processor sucking our battery power?
    thanks!

  • How to turn off audio when scrubbing in the timeline

    Hi
    how do i turn off the audio whilst scrubbing in the timeline?
    thanks

    View>Audio Scrubbing. Uncheck it.

Maybe you are looking for