TS2755 Good morning I have a question about my IPhone4 and text messaging screen.

My touch screen is frozen( locked up) when it comes to trying to scroll up and down to check text messages and to delete. I cannot access them at all. The rest of the phone and features are operating and functioning properly. Just issues with the text messaging option. Any suggestions?

Hi JSWhitfield,
Thanks for visiting Apple Support Communities.
If Messages is unresponsive, first force close the application using this method:
Double-click the Home button.
Swipe left or right until you have located the app you wish to close.
Swipe the app's preview up to close it.
These steps come from this article:
iOS: Force an app to close
http://support.apple.com/kb/ht5137
If the correct information still does not appear after you open the Music app and play a song, restart your iPhone next:
iOS: Turning off and on (restarting) and resetting
http://support.apple.com/kb/ht1430
All the best,
Jeremy

Similar Messages

  • A question about how to recover text messages from iPhone

    I don't know how to recover text messages from iPhone,it is trouble for me to solve it,Have you any idea?I'm sorry about my English!!!

    If they have been backed up then restore them
    If not forget about them they are gone.
    Allan

  • Beginer, I have a question about win Xp and java

    I dont know where to start, please help. I can give you a list of the tools I have, and would like to know what else I need to start programing and animation. Thanks

    It probably would be better to start with some language basics before you get over to animation. But that's up to you, of course.
    Anyway, here's what you need:
    Tools
    * The Java Development Kit (http://java.sun.com/j2se/1.4.1/download.html)
    Things to read
    * The Java Tutorial (http://java.sun.com/docs/books/tutorial/)
    * The API documentation (http://java.sun.com/j2se/1.4.1/docs/api/index.html)
    * These forums (http://forum.java.sun.com/)
    Kind regards,
    Levi

  • I have a question about Flash swfs and Scripts

    I have a Flash swf file and it is made up of my logo and stuff going past it and around it, behind it, and such. What can I do to it, so when somebody enters the page the logo will appear at the center of the page and then progressively move up until it hits the page logo and then kills the swf file?

    I wouldn't give up hope on getting some ideas for how to get what you want, trying things can be the best way to learn.   But you should clarify things because your current description is a little hard to follow.  You say you want a logo centered on a page moving up the page towards a logo, but then you say the page fades in when the logos meet (Wasn't the page there already?).  It's hard to differentiate the logos and the pages from your description.  Or maybe it's just me not being able to follow it.
    If you want a splash screen, then typically a splash screen will play thru whatever it does and then initiate a redirect to the home page.  This redirection would be coded into the Flash file.
    If you want the home page to fade into view, then you'd either have to build that page as a movieclip in the Flash file or try to utilize a page transition in the browser.  It has been so long since I even tried using a browser page transition that I couldn't tell you how to set it up, but if memory serves me well, IE was the only browser at the time that supported them, and I don't know if that has changed. (I don't know enough to know if there is a CSS solution to making a page fade in)

  • I have a question about Open GL and Cocoa

    I want to write an application for my desktop MAC that will let you navigate through the aisles of a store.  You will click the mouse to select the path you will follow  through the aisles.  I originally designed the picture of the store aisles using HTML, and used PHP to do the selecting processing.  Is that approach reasonable, or would using OpenGL or Cocoa be the more appropriate approach?  Thanks for any insight on this.

    You are really in the wrong forum to be asking that,  you need to become an Apple developer, I would begin by posting in their forums:
    https://developer.apple.com/devforums/

  • Questions about Collections.shuffel and error message

    I am trying to get my poker game to work but it comes up with an error when it trys to score the hand
    *public class PokerTester{*
    Deck deck *=* new Deck*();*
    public PokerTester*()*
    playGame*();*
    public void playGame*()*
    *{*+//stacks hand+
    Hand hand *=* new Hand*();*
    for(int i*=* 0*;* i*<* 5*;* i*++)*
    hand*.*add*(*deck*.*getTopCard*());*
    System*.*out*.*println*(*"Player's Hand:"*);*
    hand*.*showHand*();*
    public static void main*(*String*[]* args*)*
    new PokerTester*();*
    public class Hand*{*
    ArrayList<Card> hand=new ArrayList<Card>();
    int[] values = new int[5];
    public void add(Card card)
    hand.add(card);
    +
    public String getHandValue()
    +
    String win= "";
    for(int i= 0; i<5; i++)
    *values=values[((Card)hand.get(i)).getValue()];*
    Arrays.sort(values);
    if(checkRoyalStraight()&&checkFlush()) win="Royal Flush";
    else if(checkFlush()&&checkStraight()) win="Straight Flush";
    else if(checkOfAKind(4)) win = "4 of a Kind";
    else if(checkFullHouse()) win = "Full House";
    else if(checkFlush()) win = "Flush";
    else if(checkStraight()) win = "Straight";
    else if(checkOfAKind(3)) win = "3 of a Kind";
    else if(checkOfAKind(2)) win = "Pair";
    else win = "High Card";
    return win;
    +
    public boolean checkOfAKind(int n)
    +
    boolean kind=false;
    if(n==4)
    if(values[0]==values[3]||values[1]==values[4])
    kind=true;
    if(n==3)
    if(values[0]==values[2]||values[1]==values[3]||values[2]==values[4])
    kind=true;
    if(n==2)
    for(int i=0; i<4; i++)
    *if(values[i]==values[i+1])*
    kind=true;
    return kind;
    public boolean checkFullHouse()
    boolean fullhouse=false;
    if(values[0]==values[2]&&values[3]==values[4])
    fullhouse=true;
    else
    if(values[2]==values[4]&&values[0]==values[1])
    fullhouse=true;
    return fullhouse;
    public boolean checkFlush()
    int suit = ((Card)hand.get(0)).getSuit();
    for(int i=1; i<5; i++)
    if(((Card)hand.get(i)).getSuit() != suit)
    return false;
    return true;
    public boolean checkStraight()
    int count=0;
    for(int i=0; i<4; i++)
    *if(values[i]+1==values[i+1])*
    count++;
    if(count==4)
    return true;
    else return false;
    public boolean checkRoyalStraight()
    int n=10;
    for(int i=0; i<5; i++)
    *if(values[i]==10)*
    n++;
    if(n==15)
    return true;
    else return false;
    +
    public void showHand() +
    +
    +
    for(int i= 0; i<5; i++)
    int suit=hand.get(i).getSuit();
    String s="";
    if(suit==0)
    s="Hearts";
    else if(suit==1)
    s="Spades";
    else if(suit==2)
    s="Clubs";
    else s="Diamonds";
    System.out.println(((Card)hand.get(i)).getValue()+" of "+s);
    System.out.println("Hand value: "+getHandValue());
    public class Deck
    Card*[]* cards *=* new Card*[*52*];*
    ArrayList*<*Card*>* deck *=* new ArrayList*<*Card*>();*
    public Deck*()*
    for(Integer i*=*0*;* i*<*4*;* i*++)*
    for(Integer n*=*1*;* n*<=*13*;* n*++)*
    deck*.*add*(new* Card*(*n*,* i*));*
    +
    Collection*.*shuffle*(*deck*);*
    +
    public Card getTopCard*()*
    Card topCard *=*deck*.*get*(*0*);*
    deck*.*remove*(*0*);*
    return topCard*;*
    public class Card*{*
    private int value;
    private int suit;
    public Card(int value,int suit)
    this.value=value;
    this.suit=suit;
    public int getValue()
    return value;
    public int getSuit()
    return suit;
    {color:#000000}
    This is what i get when I run the program{color}
    1 of Hearts
    2 of Hearts
    3 of Hearts
    4 of Hearts
    5 of Hearts
    Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 5
    at Hand.getHandValue(Hand.java:22)
    at Hand.showHand(Hand.java:145)
    at PokerTester.playGame(PokerTester.java:16)
    at PokerTester.<init>(PokerTester.java:6)
    at PokerTester.main(PokerTester.java:21)
    Also I cannot get the Collections.shuffle() to work correctly does anyone know how to use this properly, Thank you

    When you use the letter "i" for an array index without using the code tags, the forum interprets that to mean "start italic" and your code is mangled - converted to italic and changed.
    Repost using code tags:
    [code]
    Put your code here
    [/code]
    This error
    Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 5means that an array index value is greater than the max value allowed for the array.
    If you can't fix this, identify the line where the error is happening (it's line 5)

  • Good morning, I have an Apple Mac Id, now never receive emails confirming purchases.  Can someone kindly explain how to change my Id.

    Good morning,  I have an array of mac products and a very old .mac address which is also an email address.  Since the changeover to iCloud, I no longer get a confirmation email for any purchases.
    Can anyone help please?

    Changing your Apple ID or creating a new one can cause problems in iTunes, the App Store, and anywhere you used your old Apple ID. I unfortunately have two Apple ID's (thanks Apple)  and I have to remember which one to use where - pain in the neck.
    If you still want to change it, click on the link below and use the Manage tab.
    https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/

  • I have a question about MP3 recorders but cannot even get contact us to work

    My question is are the recorders in the Zen MP3 players mono and are they a .025 kHz?
    However, I am disturbed that none of the links to "contact us" work is this a typical problem with
    Creative? If not, how do I reach someone preferably by phone, but even by e-mail when I have a question about a product and even worse if I buy one about a problem thanks

    As far as I know the "contact us" links are some sort of guided tour to some documents that might help, and otherwise an e-mail form. I don't know if you can phone them, but you can e-mail them and for general questions there is this forum.
    The X-Fi 2 saves recordings as IMA ADPCM 6000Hz mono 64kb
    ps.
    I'm not sure about other Zens, although I believe they all are mono, I think my Vision recorded in regular wave (uncompressed PCM) but since I don't have that one anymore I can't check.

  • Question About Color's and Gradients

    Hi all,
    I have a question about color swatches and gradients.
    I am curious to know, if I have 2 color swatches that I make into a gradient color, is it posible to change the tint of each indivdual color in that gradient and have that applied to the gradient without having to adjust the gradients opacity.
    The reason that I'm asking this is because in creating a project I found that the colors that I chose for to make my gradient from my swatches were to dark, and while I can adjust each one's tint to my liking (if the object they were applied to was going to be a solid color) but that doesn't seem to apply to the overall gradient.
    I hope that makes sense, I know that this was something that was able to be accomplished in quark and was wondering if I can do something similar.

    If you double click your gradient swatch (after adding it to the swatches)
    Then click a colour stop in the gradient, and then change the drop down menu to CMYK (or rgb)
    And you can alter the percentages there. It's not much use for spot colours but it's a start.
    But making tint swatches would be a good start anyway.
    At least then when you double click the gradient (in the swatches) to edit it you can choose from CMYK, RGB, LAB, or Swatches and adjust each colour stop to your liking.

  • Question about clear page and reset pagination

    Hi,
    I have a question about clear pages and the reset pagination in an URL. What is the reason why a clear page doesn't also trigger a reset pagination on the pages which are cleared?
    I can't really imagine a business case where it makes sense to clear all data of page items on a page and don't reset the pagination of reports on that page which probably use a page item in there where clause...
    The drawback of this behavior is that a developer always has to set the reset pagination checkbox when he clears the target page and the even bigger drawback is that if you specify other pages to clear, you can't reset pagination for them, because reset pagination only works for the target page.
    Thanks for your input.
    Patrick
    *** New *** Oracle APEX Essentials *** http://essentials.oracleapex.info/
    My Blog, APEX Builder Plugin, ApexLib Framework: http://www.oracleapex.info/

    Enhancement request filed, thanks,
    Scott

  • The question about portlet customization and synchronization

    I have a question about portlet customization and synchronization.
    When I call
    NameValuePersonalizationObject data = (NameValuePersonalizationObject) PortletRendererUtil.getEditData(portletRenderRequest);
    portletRenderRequest.setPortletTitle(str);
    portletRenderRequest.putString(aKey, aValue);
    PortletRendererUtil.submitEditData(portletRenderRequest, data);
    Should I make any synchronization myself (use "synchronized" blocks or something else) or this procedure is made thread-safe on the level of the Portal API?

    HI Dimitry,
    I dont think you have to synchronize the block. i guess the code is synchronized internally.
    regards,
    Harsha

  • A question about item "type and release" of  source system creation

    Hello expert,
    I have a question about item "type and release" of  source system creation.
    As we know,when we create a web servie source system,there will display a pop-up which includes three items as "logical system","source system"and "type and release".
    About the item "type and release",when we push "F4" button,there will be three default selections as below:
    "ORA 115     Oracle Applications 11i
    TLF 205     Tealeaf 2.05B
    XPD 020     SAP xPD".
    Who can tell me when and how should I use the three selections.
    And also I attempted to input the item by some optional letters except the default three selections and it seems that I can input it freely.
    Thank you and Best Regards,
    Maggie

    Hello DMK,
    Thank you very much for your answer.It is very helpful for me.
    Can I ask you further about it?
    I got that it is a semantic description item.
    You said the default selections are set by our basis people.Would you like to tell me how should we creat a new value except the default ones for item "type and release"?Only by inputing the value in the item directly?But you see we canot see the new value item we created by ourself when we push "F4" button next time ,is that ok?Or do we have to ask basis people to define one new value item just like the default seletions before we use it.
    Also if possible would you like to describe detail about "This becomes important when you are troubleshooting certain issues especially when RFC connection problems."
    Thank you and Best Regards,
    Maggie
    Message was edited by: Maggie

  • Just setting up my iphone 5, and its syncing everything from my previous iphone, except my photos and text messages. Ive been trying to fix this now for about 4-5 hours. Help!!!!!!

    So, I backed up my iphone 4. Set up my iphone 5, pressed sync and it did its job. However, its seems to have synced everything except my photos and text messages. Basically the most things I use on my phone! Ive searched for solutions all over the internet, tried them all and still no luck. this is driving me crazy, been working on it for hours now. someone please help!
    Much appreciated

    You do not sync text messages.
    Did you restore the iPhone 5 from a backup of your old phone?
    If not, do so to put everything back.  This is assuming you want/need you sms messages.
    Pictures should already be on the computer, then they can be synced to the device.

  • HT204053 Good Morning, I have 2 Apple Account, will be possible to integrate each other in one account ? And if is possible, How can I do that ? Thanks, Fabio.

    Good Morning, I have 2 Apple Account, will be possible to integrate each other in one account ? And if is possible, How can I do that ? Thanks, Fabio.

    You don't have to do anything with the first iPod that you don't use anymore. If you are planning on keeping it, put in a drawer in your house and forget about it.
    You don't need a second account to use with the new iPod. I use one Appl e ID and iTunes library for two iPods, and two iPad. I have different content on all four devices. You can select exactly what you want to sync to each device and it can be different content on all devices.

  • I have three questions about managing my music library

    Hello,
    I have three questions about managing my music library, I hope you can help me with them:
    1) Is there a limit of how many entries, songs, albums, art work, can iTunes handle? I have a hunch iTunes is like a database program and am curious about its capacity. I have two 2-TB drives and am wondering what is going to happen when I fill these two drives up. Other than disk space, what are iTunes limitations?
    2) Talking about these two drives. How can I use both as a source for my iTunes library. Can I have two folders selected as the source of my library? I am not sure if I have enough disk space to hold all my music, but I do also have a 1TB almost empty drive is need be.
    3) OK now comes te real question. I am sure that I have duplicates in my library and I sure would love to clean my library up.Possiby if I do get to clean it up, I can save some disk space and that is always a good thing. Any good techniques, software, techniques to follow while ripping music to help keep my library organized. Please be as detailed as you can.
    Thanks and I can't wait to hear from you.
    Waseem

    Wassimn wrote:
    Hello,
    I have three questions about managing my music library, I hope you can help me with them:
    1) Is there a limit of how many entries, songs, albums, art work, can iTunes handle? I have a hunch iTunes is like a database program and am curious about its capacity. I have two 2-TB drives and am wondering what is going to happen when I fill these two drives up. Other than disk space, what are iTunes limitations?
    As far as I know you're going to run out of disc space before you hit any limits. Each object in iTunes has a 64-bit key to access it. That said as your library grows it will get less responsive as bigger indexes take exponentially longer to process.
    2) Talking about these two drives. How can I use both as a source for my iTunes library. Can I have two folders selected as the source of my library? I am not sure if I have enough disk space to hold all my music, but I do also have a 1TB almost empty drive is need be.
    iTunes wants to manage everything inside one big folder. Some idiosyncrasies with the way it manages things if you have to move to a new drive means it is best if you can stick to that plan. If your library grows larger then you'll have to take manual control of where some or all of your content is stored. I use a variation of a script called ConsolidateByMoving which you could adapt for your needs.
    3) OK now comes te real question. I am sure that I have duplicates in my library and I sure would love to clean my library up.Possiby if I do get to clean it up, I can save some disk space and that is always a good thing. Any good techniques, software, techniques to follow while ripping music to help keep my library organized. Please be as detailed as you can.
    When it comes to deduping I've written another script for that called DeDuper, see this thread for background.
    And for some general tips on getting organized in iTunes see Grouping tracks into albums.
    tt2

Maybe you are looking for

  • Link in Word to Excel chart stored in SharePoint

    I want to embed chart from Excel in Word document. Both Excel and Word documents are saved in SharePoint library. What I did, was to paste chart from Excel with "link data" option enabled. I also went to Links window and set "Update method for seecte

  • How do I convert a document so others can read it

    Hi I have sent a couple of documents to others one of which has pictures and text and the other just text, and they have said they can't open it and can i send it in a jpeg format but will that work. Please Advise as to the best way to send out so al

  • Firefox 3.5 for Mac not loading Apple Website

    Just wondering why the Apple website won't load at all in Firefox 3.5 for Mac. It works fine in Safari. But not at all in Firefox. It's the only website I know that flat out won't load in Firefox. I want my movie trailers back.

  • Oracle8 + Hibernate3.0.5 + Inheritance with union-subclass

    Hibernate version: 3.0.5 Name and version of the database you are using: Oracle8i (8.1.7.0) Mapping documents: Being.hbm.xml <hibernate-mapping default-access="field"> <class name="persistent.Being" abstract="true"> <id name="id" unsaved-value="0" co

  • ERROR -10810: Finder cannot lauch anything!!!

    My Macbook pro feb 2008 is up to date. I've just reinstalled the OS initializing my HD through the included DVD. As it happened when I first used it (April 2008), the message comes again! When I try starting an app from the Dock it says something lik