New mail button does not respond so can't write mail. help please?

New mail button does not respond so can't write mail. help please?

I am no expert, but open your mail, go to the top of your apple bar click the apple sign then force quit mail, restart and it may work.
I had this issue before and it was resolved.

Similar Messages

  • My ipod's home button does not respond, how can i fix it?

    3 days ago my ipod home button stop working correctly and now it does not respond at all and i cant neither open or close an app
    how can i fix it?

    Try restarting you iPod Touch, if that don't solve the problem you should take it to the Apple store for service. 

  • I can't sync my iphone on my itunes. It says to authorize my computer, and it just stays loading. It does not respond back to me.. Help please!

    My itunes is just on "authorizing computer." I left it on for an hour and it just still loads. It shouldn't take this long.

    Have you had a look here >  http://support.apple.com/kb/TS1368
    Also...
    Temporarily disable your firewall and antivirus software and try again...
    http://support.apple.com/kb/TS1379
    See iTunes Connection Issues here...
    iTunes for Windows: Troubleshooting security software issues

  • My Iphone 4's home button does not respond

    My Iphone 4's home button does not respond most of the time. Help! Is this a hardware problem or a technical problem?

    Use the "More Like This" box to your right to get your question answered.

  • "Add New Tab" button does not exist in the Window -Customize Toolbar, and not on my Navigator toolbar. Where can I find one to put on my Navigator toolbar, please?

    I see "Add New Window" but..."Add New Tab" button does not exist in the Window -Customize Toolbar any longer, and not on my Navigator toolbar. Where can I find one to put on my Navigator toolbar, please?
    Thanks

    It's the "+" on the Tab bar. You can move it to the Navigation Toolbar if you prefer. When you start Customize, the + moves to the far right end of the Tab bar. You can drag it where you want (see attached image).
    Any luck?

  • I have the iphone 5 and my lock button does not work. Can apple fix it or give me a new one. Can they still give me a new one even if I didn't buy my iphone 5 from them I bought it from verizon

    I have the iphone 5 and my lock button does not work. Can apple fix it or give me a new one. Can they still give me a new one even if I didn't buy my iphone 5 from them I bought it from verizon

    Alread asked and answered in your previous post - please do not post the same thing multiple times in multiple forums.
    https://discussions.apple.com/thread/5164919

  • I have 2 people in my contacts that I'm unable to text. The SEND button does not respond

    I Have 2 contacts that I'm unable to text to. The SEND button does not respond. Other contacts will send message.

    Hi Gaylene1949,
    So the issue is isolated to two contacts only.
    There are a couple sections in this article for troubleshooting contact specific issues.
    iOS: Troubleshooting Messages
    If you still can't send or receive an iMessage, follow these steps
    Make sure that the contact trying to message you isn't blocked in Settings > Messages > Blocked.
    Make sure that the contact you're trying to send a message to is registered with iMessage.
    If the issue occurs with a specific contact or contacts, back up or forward important messages and delete your current messaging threads with the contact. Create a new message to the contact and try again.
    If the issue occurs with a specific contact or contacts, delete and recreate the contact in the Contacts app. Create a new message to the newly created contact and try again.
    and
    If you still can't send or receive SMS, follow these steps
    Make sure that the contact who's trying to message you isn't blocked in Settings > Messages > Blocked.
    Make sure that you're using the area code with the contact's phone number. When sending messages internationally, you also need to use the contact's international code.
    If you're using a "Pay as you go" SMS plan, make sure it has enough available balance. Contact your carrier if you're unsure of your SMS plan or the available balance.
    If the issue occurs with a specific contact or contacts, back up or forward important messages and delete your current messaging threads with the contact. Create a new message to the contact and try again.
    If the issue occurs with a specific contact or contacts, delete and recreate the contact from the Contacts app. Send a new message to the contact.
    Thank you for using Apple Support Communities.
    Nubz

  • Button does not respond (with attachment)

    Hi,
    I'm trying to develop a LV program for a psychology experiment to record a participants mouse movements whilst drawing or tracing a picture using the mouse.
    My program uses an event structure to generate an event each time the mouse is moved or the mouse button is pressed or released. Upon each of these events the coordinates and button position is recorded to an array.
    When they have finished drawing there is a button "Stop & Save" that allows the user to save the coordinate data to a file. This can then be opened by a sister program I'm developing that allows the movements to be replayed and shows where the mouse button was down and up.
    At the start of the program there is the option of loading a background jpeg picture to trace over on the screen.
    The program then waits for a 'Record' button to be pressed before moving on to record all coordinates there after until the 'Stop & Save' button is pressed.
    The problem I have is that the record button does not respond. It doesn't even change state when pressed, even though at that stage it's just sat in a while loop waiting for it to be pressed before moving on to the event structure.
    I attach the program for you to look at.
    Any help/hints much appreciated.
    Thanks,
    Dave.
    Attachments:
    MouseCoordinatesForPW.vi ‏178 KB

    altenbach wrote:
    Your overall program design is higly flawed. This calls for a single state machine with an event structure that handles all FP events. All your locals can be handled by shift regsters. Get rid of that useless stacked sequence!
    Frame 0: Initialization belongs to the left of the state machine. CoordinatesArray should initialize a shift register (no locals needed). Use a boolean shift register to set state to either recording or not. Event for "record, value changed" will switch the boolean to be used on the other states.
    Frame 1: "Clear" and "stop" need to be inside their own events. Running it parallel to the event structure is a no-no! Do you really want to record mouse movements on the entire FP or only on the picture area?
    Frame 2: Why waste an entire frame on this? Here you clear it and in the next frame you prepend the cleared string to your data. Makes no sense.
    Frame 3: An autoindexing FOR loop would be the right choice. A single formating operation can handle multiple values.
    Frame 4: Writing the "coordinate string" seems useless, since you just cleared it two frame earlier. You are writing an empty string to a file! Right? Why invert the "canceled?" output, just swap the cases instead.
    Frame 5: Unecessary! Once the VI runs out of code, the VI will stop automatically. The "stop" function also does not "close the program window" as you seem to indicate with a diagram comment. Check the online help.
    Message Edited by altenbach on 05-22-2007 09:23 AM
    Hi, thanks for your reply.
    The reason for the main stacked sequence was to get some order to the program, my programming background's text based and as such I like to think of a program running in a list/sequence order. LabView seems strange when you've been used to programming in asm or C. Does anyone know of any books or online documentation for people migrating from text languages to LV? - I haven't found any.
    "Frame 2: Why waste an entire frame on this? Here you clear it and in the next frame you prepend the cleared string to your data. Makes sense."
    - The string 'CoordsArray' is cleared to make sure it's empty before chars concatanated to it in the next frame. Call me old fashioned but is it not good practice to clear out any junk in a variable rather than just assuming it's empty?
    "Frame 3: An autoindexing FOR loop would be the right choice. A single formating operation can handle multiple values." - not sure what you mean by that?
    "Frame 4: Writing the "coordinate string" seems useless, since you just cleared it two frame earlier. You are writing an empty string to a file! Right? Why invert the "canceled?" output, just swap the cases instead."
    - No, it's not an empty string since in the previous frame the coordinates array is converted to numbers and concatanated to it. Trust me, it generates a file with lots of data in so no way is it an empty string!!
    - Yes, you could just swap the cases instead of inverting the 'canceled' output but sometimes it reads better to say 'if NOT cancelled then DO theTask, ELSE DO nothing' rather than 'if cancelled DO nothing ELSE DO theTask'. Not sure if that makes sense but I guess it's just personal prefference there.
    "Frame 5: Unecessary! Once the VI runs out of code, the VI will stop automatically. The "stop" function also does not "close the program window" as you seem to indicate with a diagram comment. Check the online help."
    - I wasn't sure how that one would work. I wanted the final exe version to close the program window when the program comes to the end, what's the best way to do that? In the past I think I used the 'Exit' function but this would annoyingly quit LabView at the end of each trial run whilst still in the development stage.
    Thanks,
    Dave.

  • The "open a new tab" button does not open a new tab.

    The "open a new tab" button does not work. Neither does "file; new tab", or Control T. Can you please tell me how to fix this?
    Thank you.

    This issue can be caused by the Ask<i></i>.com toolbar (Tools > Add-ons > Extensions)
    Your system details show that toolbar in the user agent as AskTbBCPA/3.13.1.18107
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Ipod touch 2nd gen home button does not respond

    I have tried restarting my ipod several times but my problem still trmains.
    The home button does not respond. I can get to the screen with all my apps, but once I get into an app, I cannot exit it. What can I do?

    See:
    fix for Home button
    Fix a broken, unresponsive or sticky iPhone Home Button
    You can also go to Settings>General>Accessibility and turn on Assistive Touch It adds the Home button to the iPod's screen.
    Yes, if you get it fixes, the iPod will likely be erased. Apple will not repair your old iPod, they exchange it for a refurbished one and do not transfer data.

  • HT201412 My home button does not respond on my iPad 3.  Any ideas on how to solve this problem?

    I just received a new iPad 3.  The home button does not respond.  Any ideas?

    return it to have it checked for malfunction. Might be a transport defect . ( Although I never heard of such a severe case on brandnew Apple Hardware )

  • Options OK button does not respond

    Firefox 5. Tools/Options window OK button does not respond. (I changed from FF4 for same reason, among others!).

    To help other users find solutions, please return to this Thread and '''Sign-in''' to the forum with your Username and Password:
    click on '''"Solved It"''' next to the reply ABOVE that '''BEST''' solved your question
    '''DO NOT click "Solved It" next to this reply

  • My iPhone 5 lock button does not respond anymore I have heard this is a common fault with the iPhones?

    My iPhone 5 lock button does not respond at all I have heard that it's quite a common problem with the iPhone are apple fixing them or do I have to pay to get it done?

    As long as the iPhone is a UK ( I assume you are in UK ) purchased iPhone from the normal authorised Resellers ,Apple and the UK carriers and those selling the Carrier's  products like CPW or Phones -4 -U etc

  • My IPHONE 4 toggle button does not respond sporadically. What's the fix when this happens?

    My IPHONE 4 toggle button does not respond sporadically. What's the fix when this happens?

    This is the official troubleshooting doc that covers that issue:
    http://support.apple.com/kb/TS2802
    The relevant steps are:
    The Home button is slow to respond
    If the Home button is slow to respond when exiting one application, try another application.
    If the issue exists only in certain applications, try removing and reinstalling those applications. For further assistance in installing and troubleshooting applications see this article
    If the issue continues, Try turning iPhone off and then on again. If the iPhone will not restart, try resetting it.
    If the issue is still happening, try to restore the iPhone
    Seek service is the issue is still occurring.

  • Iphone 5 home button does not respond, brightness reduces by itself, wont charge and its one week since i got it!

    one week since i got the iphone 5: screen blacks out, when i finally get it to light up the light brightness turns low.
    problems charging phone, just doesnt want to charge unless i reset the phone.
    the main home button does not respond at times, approx 3-5 times a day this occurs
    phones touch screen does not respond at times...whole touch screen, no response!
    signal always drops out, this could be a network issue though i doubt it.
    speaking to quite a few peopl i know, they are havng the same issues with there 5 but not as often as myself.
    if i knew the 5 had so many issues i would not have chosen it, the 4s was fine!

    Then take it back!  If you've only had it for a week, you still have 51 weeks of warranty.  If you are in the USA, you are also within your 14 day unconditional return for full refund period.  If it has that many problems, just return it and get another one, or get your money back and buy something else.  There is no reason to live with a faulty device after just one week.

Maybe you are looking for

  • BAPI_SALESORDER_CHANGE: Error-Item not found

    Hi, I am calling BAPI_SLESORDER_CHANGE from an enhancement in the include MV45AF0B_BELEG_SICHERN. This will be called after the commit work of sales order. Im using this BAPI for the purpose of changing/updating the Inquiry line item from which the S

  • Creation of View

    hiiiiiiiiiiiii alllllll, i want to create a view when i press buton on form. plz tell me it is possible. Regards Tayyab

  • Distorted audio on Mac but not on PC

    Hi everyone, My colleague recorded audio to a Captivate project on his PC and it sounded great. When I opened and previewed the project on my Mac, the audio came in with microphone distortions for certain phrases (sounds like he was too close to the

  • Has anyone had a problem centering labels from microsoft word 2007 using the hp photosmart 7510? my

    Has anyone had a problem with printing labels centered on HP Photosmart 7510 e-All in one?  My labels are printed from Word 2007 and appear on the screen to be centered, however when I print, they are too high on the label.  Also when printing an e-m

  • Play buttons on some sites are not fuctional

    On sites like Bandcamp, and other video sites, items are not showing or playing. I have reinstalled and updated Firefox, scanned my computer for malware (even tried your fix by changing exe to firefox1.exe) reinstalled Adobe Flash, disabled plugins a