Years ago I added a nickname to my Hotmail account.  Recently I attempted to comment on an MSN article (first time) and it listed my name/email address or my old nickname to use for the comment.  I don't want to use either.  With outlook I've created an alias to post with but it doesn't offer that as a choice.  Is there any way to remove this old nickname from my account so it's not attached anymore?
I want to change my nickname in MSN games, how do I do this? Ive tried but I dont get any answers.
how do I change my nicname on mesenger
In my Windows Live Mail Contacts list, some of the contacts are listed by first name only or nickname. How do I make sure all contacts are listed by the last name first?
Hello,

I'd need assistance writing an AppleScript to extract the first name, last name,  nickname, and sender address from every message in a folder in Outlook for mac:2011 then populate a new Excel spreadsheet. Once in Excel, I'll manually remove duplicates.

I want to rebuild my autocomplete history in Outlook for mac:2011 after migrating from Apple Mail.

Outlook only allows you to Add Sender to Address Book one message at a time.

Here's what I have:

on run {}

tell application "Microsoft Outlook"

set theAccount to imap account "Me"

-- Get the messages selected in Outlook

set currentMessages to current messages

set mailFolders to name of folders of theAccount as list

-- Check to make sure items are selected, if not then quit

if ((count of currentMessages) < 1) then return

-- Iterate through selected messages

repeat with aMessage in currentMessages

-- Get the account for the message

set messageAccount to account of aMessage

set messageSender to sender of aMessage

sender of every message of folder "INBOX" of the theAccount as list

end repeat

end tell

end run



Thank you.