How do I keep my name from appearing in all caps?

Since I upgraded to ML, my name in my email address appears in ALL CAPS. I've tried changing it to lower and upper case in preferences and in settings. It works for a while but goes back to ALL CAPS in a day or two.
It's extremely frustrating because having one's name in ALL CAPS comes accross as RUDE and SELF-IMPORTANT!

I'm glad I'm not the only one who feels this is important.  I was able to make it work (get rid of the all caps):
1.  When you're in Mail, go to Preferences.
2.  When you're in Preferences; go to Accounts.
3.  When you're in Accounts; select iCloud and Account Information.  From here, you may see your name in all caps greyed out in the [Full Name] part.  You should also see where it says [Alias] to be a drop down list.
4.  Select [Alias] and change it to (Custom).  This should allow you to edit the way your name appears.
5.  When you finish this part, Save it (by moving to a different section in the preference pane) and it should work.
KT

Similar Messages

  • How do you keep your message from appearring on a locked screen

    how do you keep your message from appearring on a locked screen

    Go to SETTINGS --> NOTIFICATIONS --> MESSAGES
    Change "View in lock screen" to OFF
    That should sort it for you.

  • I have several apple devices - how do I keep my email from syncing to all of them instead of just mine.  Some emails are not appropriate to show up on my kids apple products.

    I have a iphone and a ipad 2 wifi that is mine.  my kids have ipods and a ipad 2 wifi that is theirs.  How can i stop my emails from syncing to all of these devices.  I do want the emails on my device but not on the others.  I also want to clear the email off of the other devices.  Is their a way to do this without physically having the ipad in my possession.  The ipad is with my daughter at college and i do not have access to that now.  They are all syncing under my itunes account if that makes a difference.  I did change the passwords on my email accounts but not sure what to do to fix this.  Can anyone help?

    You need to have a different Apple ID for each of the other devices.

  • How do you keep junk mail from appearing even after I have hit the "junk" button when it appeared the first time?

    I have several email accounts that come to my mac.   When junk appears I hit the junk button.   Does it take awhile to train the junk or is there a way to set up mail so that it automatically goes to junk and does not appear at all in my inbox?
    It's so time consuming to get rid of this stuff.
    Thanks for any suggestions.
    Grammynancy

    Hello, it does take time to train it.
    You can setup rules if there's any constancy, like I find that 99.999% of mail from yahoo is junk, so I have a Rule setup to just get rid of it permanently, I never see them at all...
    But you could have it be If Subject contains Ciagra, Perform the following functions, Mark as Junk... or whatever.

  • How do I keep the buttons from showing up all the time?

    I made several little shapes in Photoshop and imported them, then made buttons out of them. But when I simulate the menu, the buttons are always on top of the motion menu, how do I get the buttons to not show until the entire motion menu has played?

    The loop point is indeed set to 10 seconds in. But as the motion menu starts playing and the words are flying onto the screen, the button (custom key shape) is already on the screen. Is there not some kind of opacity setting where I can make the button invisible until all the words have loaded onscreen?
    And I tried some of Apple's buttons, they do the same thing. The little bracket " >" is sitting there on screen while the words "Play" and "Scene Select" are flying in from off screen. Once it reaches 10 seconds, then the " > " highlights to yellow on "Play". But I do not want that little bracket to show onscreen until the word "Play" is even there yet!

  • How do I prevent iCloud alerts from appearing on all my iOS devices?

    I'm stumped on how to prevent alerts from popping up on all my iOS devices on my account.  I have two iphones on my account (one is my dad's and the other is mine).  I have all of our contacts and events separated in iCloud.  For some reason even though his calendar events are unchecked on my phone, the alerts still show up on my iphone, and even though my events on my dads phone are unchecked, he still gets my alerts on his phone.  I never had this problem when our events were synced with iCal.  The last thing I want to do is create a separate account for my dad.  He never goes onto itunes on his own, and if he needs to then I'll do it for him.  Any help with this would be very much appreciated.

    There doesnt seem to be a way to get around this, some things to try would be: setting your phones up under the same apple I.D. as i take it you already have - and then go into settings-icloud- and change the account so u give him a new icloud account but use the shared one for app purchases etc, i'd also advise doing the same for imessage so u dont recieve each others messages (that could be real awkward).
    Hope this helps or gives u some ideas, let me know if theres anything else?
    Cheers - good luck

  • HT3228 how does one keep an ex from hacking into all of her email accounts on her iphone?

    Someone keeps getting into all of my email accounts on my phone work/icloud/gmail/aol. What the heck is happening?

    Also change your security questions too.  If he knows those he can still get your passwords after they are reset. Also if you have other email accounts associated with the accounts, ie a password reset email different from the account you are trying to reset, you need to change those too. He may have his email set up there to receive the password reset messages. One other thing you can do is dump all of them and start over with new email accounts.

  • I keep getting the message "mail cannot connect to the server-." when it clearly can and does. How do I prevent these messages from appearing?

    See the title
    I keep getting the message "mail cannot connect to the server…." when it clearly can and does. How do I prevent these messages from appearing?
    help

    On your iPad or a Mac?
    You posted in the iMac community but your profile indicates an iPad 2.

  • Re: How do I keep an application from being started morethan once?

    Here are some quick ideas. None of them should be too hard to implement,
    although each has some drawbacks.
    1. Have a login server track who is logged on, and if there is already a
    logon for a given user or a given machine, then deny the application
    startup. The nice thing about this is that a user will not be able to have
    multiple logins even by going to another machine. Then again, this may not
    be so nice, and you also get a possible single point of failure on the
    login server for which you will have to prepare.
    2. Drop to the operating system, and get a list of processes for the client
    machine. If the name of one of them matches the name of application that
    is being run, then deny startup. This avoids a network hit, but requires
    some OS specific code. Also, a clever user could change the name of an
    executable to get around this. Note that a user could have another login
    on another machine.
    3. Write to a file on the local machine. You can hide the file in some
    suitable place, and can also scramble some information so that a user
    cannot get around having this file present by reading from the file at
    startup and then writing to it. Based on the state of your application,
    the file will have some scrambled information indicating if an instance of
    an application can be started. If you retain the write lock (i.e. do not
    close) the file for the duration of the application, you increase your
    security at the risk of a confused user if the application gets terminated
    without releasing the lock. Depending on the OS where the client will run,
    this could be an issue. If you like this option, perform some experiments
    first on all configurations of an example client machine to determine the
    behavior. Again, this only works to prevent an extra login on a single
    machine, not system wide.
    If you are not concerned about your users hacking around too much and don't
    care about a login on another machine, I would opt for some version of
    number 3. Otherwise, I would venture number 1.
    Regards
    CSB
    At 07:47 AM 2/18/98 -0500, Martin G Nystrom wrote:
    A user can launch an application, then launch it again. How do we make it so
    that the user can only run one instance of the application?
    Martin Nystrom
    Eli Lilly and Company
    ([email protected])
    Curtis Bragdon, Senior Consultant, Forte Software
    [email protected]
    Voice Mail: (510) 986-3807
    Paging: (888) 687-6723
    "I've seen dozens of triggering towns." - Richard Hugo

    Yet another quick and dirty solution is to use local ExternalConnections.
    This is a single instance per machine solution.
    Example is attached.
    (See attached file: TestOne.pex)
    [email protected] on 02/18/98 10:01:07 PM
    Please respond to [email protected]
    To: [email protected]
    cc: [email protected]
    Subject: Re: How do I keep an application from being started more than
    once?
    Martin,
    there are two ways to read your question
    (a) no more than one instance of an application per machine
    (b) no more than one instance of an application per "user"
    now if a user has only one machine, and your system has "userids" and you
    only want
    one active "session" per "user" then the distinction is irrelevant.
    However, many systems
    let people share logins, so a token based thing enforcing one login will be
    problematic.
    The downside of #1 approach suggested by Curtis happens when a machine gets
    hosed without "logging" the user off the security system, then they can't
    get in until their ticket expires or a sysadmin gets involved. Should be
    manageable, however. But this enforces one application
    instance per user, unless you check both for the presence of an active
    token for that user as well as the presence of a token tied to that
    particular node name. Otherwise there is nothing to prevent the same user
    from launching the app again and logging in as a different user. This is
    definitely the best approach of the bunch, and can be adapted for either
    (a) or (b).
    Suggestion # 2 won't work unless the application is built as a compiled
    client,
    since the process name will be 'ftexec' and not the "name" of the
    application. And it doesn't
    prevent a user from launching the app from a different machine (or people
    sharing logins). So again it depends on what you are trying to achieve.
    #3 also only prevents multiple instances per machine, not necessarily by
    user. Of course
    most people don't have multiple machines. The point is that you may be
    trying to
    prevent your users from sharing logins. In which case the file thing won't
    do it.
    Some other ideas:
    1. You could, however, enforce one application per machine using the
    installed partition agent's ExecutingPartition instrument name. As long as
    the user doesn't run the app in a different environment, you can have the
    app check at startup time if there is another
    ActivePartition running under the same InstalledPartition name.
    (ActivePartitions are child agents
    of InstalledPartitions).
    2. use the ObjectLocationManager and bind a simple object into the naming
    system using a naming scheme such as
    /MyApplication/MyNode or
    /MyApplication/MyUserId
    the presence of either one would indicate that another instance of that
    application is running on either that machine or that user. Of course
    these have to be cleaned out, and subject to similar downside as
    alternative #1. So you'd essentially be using the forte naming system as a
    distributed lock manager (ouch).
    3. Have the application remove the shortcut to launch it upon startup, and
    recreate it when it is finished, or move it to a hidden place. There it
    is - the worst idea I've ever come up with. Don't
    do this!
    Regards,
    John
    From: Curtis Bragdon <[email protected]>
    Date: Wed, 18 Feb 1998 16:36:58 -0500
    Subject: Re: How do I keep an application from being started more than
    once?
    Here are some quick ideas. None of them should be too hard to implement,
    although each has some drawbacks.
    1. Have a login server track who is logged on, and if there is already a
    logon for a given user or a given machine, then deny the application
    startup. The nice thing about this is that a user will not be able to have
    multiple logins even by going to another machine. Then again, this may not
    be so nice, and you also get a possible single point of failure on the
    login server for which you will have to prepare.
    2. Drop to the operating system, and get a list of processes for the client
    machine. If the name of one of them matches the name of application that
    is being run, then deny startup. This avoids a network hit, but requires
    some OS specific code. Also, a clever user could change the name of an
    executable to get around this. Note that a user could have another login
    on another machine.
    3. Write to a file on the local machine. You can hide the file in some
    suitable place, and can also scramble some information so that a user
    cannot get around having this file present by reading from the file at
    startup and then writing to it. Based on the state of your application,
    the file will have some scrambled information indicating if an instance of
    an application can be started. If you retain the write lock (i.e. do not
    close) the file for the duration of the application, you increase your
    security at the risk of a confused user if the application gets terminated
    without releasing the lock. Depending on the OS where the client will run,
    this could be an issue. If you like this option, perform some experiments
    first on all configurations of an example client machine to determine the
    behavior. Again, this only works to prevent an extra login on a single
    machine, not system wide.
    If you are not concerned about your users hacking around too much and don't
    care about a login on another machine, I would opt for some version of
    number 3. Otherwise, I would venture number 1.
    Regards
    CSB
    At 07:47 AM 2/18/98 -0500, Martin G Nystrom wrote:
    A user can launch an application, then launch it again. How do we make itso
    that the user can only run one instance of the application?
    Martin Nystrom
    Eli Lilly and Company
    ([email protected])
    Curtis Bragdon, Senior Consultant, Forte Software
    [email protected]
    Voice Mail: (510) 986-3807
    Paging: (888) 687-6723
    "I've seen dozens of triggering towns." - Richard Hugo
    John Jamison
    Vice President of Technology
    Sage IT Partners, Inc.
    415 392 7243 x 306
    [email protected]

  • Seasons Greetings. How do I keep firefox 4 from disallowing my most important sites?

    Question
    Seasons Greetings. How do I keep firefox 4 from disallowing my most important sites? All the garbage, it lets sail right in, but my bank accounts and library accounts are not allowed. Why is this? I have looked in the help section and tried the permissions manager, but when I type about:permissions in the location bar, I receive the following error, "The URL is not valid and cannot be located." Thanks for any useful information.

    Thanks for responding. Sorry I wasn't very precise. When attempting to navigate to one of these sites, a message at the top of the screen appears, "Firefox prevented this page from automatically redirecting to another page." Then there is a dialog box which says, "Allow." Once I 'allow' it, the page I'm trying to open does so. This only occurs with certain pages, and usually pages that I need open without any computer interference. I hope this clarifies things. Again, thanks for taking your time to respond.

  • When I import some of my cd's they have multiple album images but have just one song from the cd because of a guest performer. How do I keep the cd from "blowing up" like this? eergh

    When I import some of my cd's they have multiple album images but have just one song from the cd because of a guest performer. How do I keep the cd from "blowing up" like this? eergh

    for purchases from the iTunes store do this:
    connect your device and right-click or control-click it in the iTunes Source list, then choose transfer purchases from the shortcut menu that appears.
    for everything else check out this post by Zevoneer.

  • How do I keep my music from stopping when my ipad autolocks?

    How do I keep my music from stopping when I close my ipad or it autolocks?

    My wife has the same problem. I believe I found the solution. Activate "do not disturb" in settings - do not disturb - manual. Make sure to also go to allow calls from and set it to no one. A moon will appear in the status bar. You will see notifications of missed calls but it does not interrupt Pandora. Let me know if this works for you.

  • How do I keep my iPad from shutting down?

    How do I keep my iPad from shutting down?
    LB

    Try This...
    Close All Open Apps... Sign Out of your Account... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430
    Note:
    Also consider Deleting any Apps you have Purchased / Downloaded but you now never use..

  • How do I keep my sound from fading?

    How do I keep my sound from fading?

    My wife has the same problem. I believe I found the solution. Activate "do not disturb" in settings - do not disturb - manual. Make sure to also go to allow calls from and set it to no one. A moon will appear in the status bar. You will see notifications of missed calls but it does not interrupt Pandora. Let me know if this works for you.

  • How do i keep my phone from ringing when listening to pandora?

    How do I keep my phone from ringing while listening to pandora? I am a massage therapist and want to use my phone for music but even when it is on silent it rings during session!!

    My wife has the same problem. I believe I found the solution. Activate "do not disturb" in settings - do not disturb - manual. Make sure to also go to allow calls from and set it to no one. A moon will appear in the status bar. You will see notifications of missed calls but it does not interrupt Pandora. Let me know if this works for you.

Maybe you are looking for

  • Std Report for incomplete billing document

    Dear experts I want to get the incomplete(such as price error....) billing document in SAP for a secifical customer within a cycle and so on. Does it have any standard report to implement it? TKS!

  • Inspection plan creation error....

    Hello gurus, I am getting error while creating inspection plan.... 'Work center ABC plant ABC does not exist for task list type Q' what should be the solution......?

  • Quicktime problems - not playing videos.

    Every video file I view on QT looks like this: http://usera.imagecave.com/mervingiblet/Slide1.JPG It happened when I updated it a few weeks ago. Now I cant get rid of the problem. I tried uninstall and reload but to no avail. The sound plays but no v

  • Backlight wont shut down when im charging?

    I currently have a problem with my video ipod. The blacklight time is set at 10 second. And whenver I connect the Ipod to computer to recharge it. The backlight won't turn off. It's still bright but not like normal, it just a bit bright. I tried rest

  • Error in CJ02 - Deletion Flag

    Hi Experts, I have closed some WBS and now I want to set a deletion flag for those WBS closed, system is giving me a erro message below : "A purchase requisition still exists" "A Purchase Order still exists " I have run many reports and all of them s