Getting rid of mail names

I use various psuedonyms when browsing the net and use different names like in comments etc. Some how the names get attached to my email address. eg. my email addess is: David Smith<@xmail.com> and I have internet name of JollyOne, my email is now tagged as JollyOne<@xmail.com> in my Apple mail. How do I get rid of this. There is nothing in address book. Where do I look and get rid of this.
<E-Mail Edited by Host>

yeah...I'm pretty sure that's what I did. When I previewed the slideshow in iDVD I didn't see anything. But after I burned the DVD and played it on a different computer, each slide was named chapter 1, chapter 2 and so on...kind of takes away from the photo. I am trying it again, however...in case I'm remembering incorrectly.
Thanks -

Similar Messages

  • A friend gave me an older Nano 3rd generation. Can anyone tell me how to delete what is on there and how to get rid of his name. It does not connect to my itunes. I cannot even find the source or the place to restore it as suggested in the owners manual.

    I have a 3rd generation ipod that a friend gave me. I cannot find anything on how to get rid of his name and music on it. This is what the owners manual says:
    "Select ipod nano in the soiurce list and click the summary tab" I cannot find the source or the summary tab on itunes. Can any one help me? I would like to delete everything on it and start over but I am afraid I cannot add anything back on it. I know this is detailed and a lot, but I really need help.

    Restore
    Note: Because Restore erases all of the songs and files on iPod, make sure toback up any files you've saved on the iPod disk. All of your songs, videos, podcasts, audiobooks, and games can be loaded back to your iPod provided that you have them stored in your iTunes Library.
    How to restore your iPod:For Windows:
    1. Make sure you've reinstalled the latest version of iTunes.
    2. Open iTunes, and then connect your iPod to your computer.
    3. After a few moments, it will appear in the source list in iTunes. If the iPod's display doesn't show "Connected" or "Do not disconnect" you may need to put the iPod into disk mode to proceed.
    4. Select your iPod in the source list and you will see information about it appear in the Summary tab of the main iTunes windows.
    5. Click the Restore button. You will be prompted with one or more restore options that may prompt iTunes to automatically download of the latest iPod Software. The 4 possible restore options are:
    Restore Option 1: Restore - Restores with same iPod Software version already on iPod.
    Restore Option 2: Use Same Version - Restores with same iPod Software version already on iPod even though a newer version is available.
    Restore Option 3: Use Newest Version - Restores with the latest iPod Software on your computer.
    Restore Option 4: Restore and Update - Restores with the latest iPod Software on your computer.
    6. A progress bar will appear on the computer screen indicating that the first stage of the restore process has started. When this stage is completed, iTunes will instruct you to leave iPod connected to your computer to complete restore.
    7. During the stage 2 of the restore process, the iPod will show an Apple logo as well as a progress bar at the bottom of the display. It is critical that the iPod remains connected to the computer or iPod Power adapter during this stage. Note: The progress bar may be difficult to see since the backlight on the iPod display may be off.
    8. After stage 2 of the restore process is complete and the iPod is connected to the computer, the iTunes Setup Assistant window will appear asking you to name your iPod and choose your syncing preferences similar to when you connected your iPod for the first time.
    For Mac:
    1. Make sure you've reinstalled the latest version of iTunes.
    2. Open iTunes, and then connect your iPod to your computer.
    3. After a few moments, it will appear in the source list in iTunes. If the iPod's display doesn't show "Connected" or "Do not disconnect" you may need to put the iPod into disk mode to proceed.
    4. Select your iPod in the source list and you will see information about it appear in the Summary tab of the main iTunes windows.
    5. Click the Restore button. You will be prompted with one or more restore options that may prompt iTunes to automatically download of the latest iPod Software. The 4 possible restore options are:
    Restore Option 1: Restore - Restores with same iPod Software version already on iPod.
    Restore Option 2: Use Same Version - Restores with same iPod Software version already on iPod, even though a newer version is available.
    Restore Option 3: Use Newest Version - Restores with latest iPod Software version on your computer.
    Restore Option 4: Restore and Update - Restores with latest iPod Software version on your computer.
    6. A message will appear prompting you to enter an administrator's name and password.
    7. A progress bar will appear on the computer screen indicating that the first stage of the restore process has started. When this stage is completed, iTunes will instruct you to leave iPod connected to your computer to complete restore.
    8. During the stage 2 of the restore process, the iPod will show an Apple logo as well as a progress bar at the bottom of the display. It is critical that the iPod remains connected to the computer or iPod Power adapter during this stage. Note: The progress bar may be difficult to see since the backlight on the iPod display may be off.
    9. After stage 2 of the restore process is complete and the iPod is connected to the computer, the iTunes Setup Assistant window will appear asking you to name your iPod and choose your syncing preferences similar to when you connected your iPod for the first time.
    Source:
    iPod nano (3rd generation) Troubleshooting Assistant
    Message was edited by: michael08081

  • To get rid of Schema name in output using DBMS_METADATA

    Hi all,
    Would someone be able to tell me how to get rid of the schema name output given by the below select stmt.
    Query
    Select Dbms_metadata.Get_ddl('FUNCTION','ACCOUNT_CODE')
    from dual;
    Result
    CREATE OR REPLACE FUNCTION "GOINGLIVE"."ACCOUNT_CODE" (PTransCode VarChar2,.............
    I checked for the documentation, but could manage to eliminate only storage clauses, tablespace etc. but not teh schema name.
    Please provide your advise on this.
    Thanks
    - Sandeep

    Which version are you on?
    In 10g, you can use DBMS_METADATA.SET_REMAP_PARAM to get rid of schema name:
    SQL> create table md_test(x int, y varchar2(10));
    Table created.
    SQL> declare
      2    l_ctx number;
      3    l_ctxt number;
      4    l_ddl sys.ku$_ddls;
      5  begin
      6    l_ctx := dbms_metadata.open('TABLE');
      7    dbms_metadata.set_filter(l_ctx, 'NAME', 'MD_TEST');
      8    l_ctxt := dbms_metadata.add_transform(l_ctx, 'MODIFY');
      9    dbms_metadata.set_remap_param(l_ctxt, 'REMAP_SCHEMA', user, null);
    10    l_ctxt := dbms_metadata.add_transform(l_ctx, 'DDL');
    11    dbms_metadata.set_transform_param(l_ctxt, 'SEGMENT_ATTRIBUTES', false);
    12    l_ddl := dbms_metadata.fetch_ddl(l_ctx);
    13    dbms_output.put_line(l_ddl(1).ddltext);
    14    dbms_metadata.close(l_ctx);
    15  end;
    16  /
    CREATE TABLE "MD_TEST"
       (    "X" NUMBER(*,0),
            "Y" VARCHAR2(10)
    PL/SQL procedure successfully completed.In 9i, you have to resort to some manual tricks (with REPLACE, probably):
    SQL> create table md_test(x int, y varchar2(10));
    Table created.
    SQL> declare
      2    l_ctx number;
      3    l_ctxt number;
      4    l_ddl sys.ku$_ddls;
      5  begin
      6    l_ctx := dbms_metadata.open('TABLE');
      7    dbms_metadata.set_filter(l_ctx, 'NAME', 'MD_TEST');
      8    l_ctxt := dbms_metadata.add_transform(l_ctx, 'DDL');
      9    dbms_metadata.set_transform_param(l_ctxt, 'SEGMENT_ATTRIBUTES', false);
    10    l_ddl := dbms_metadata.fetch_ddl(l_ctx);
    11    dbms_output.put_line(
    12      replace(l_ddl(1).ddltext, '"' || user || '".'));
    13    dbms_metadata.close(l_ctx);
    14  end;
    15  /
    CREATE TABLE "MD_TEST"
       (    "X" NUMBER(*,0),
            "Y" VARCHAR2(10)
    PL/SQL procedure successfully completed.
    SQL> select * from v$version where rownum = 1;
    BANNER
    Oracle9i Enterprise Edition Release 9.2.0.6.0 - ProductionHope this helps,
    Andrew.

  • How do I get rid of group names

    How do I get rid  of group names in contacts, I seem to have loads of group names ??

    Those are not users. They're computers or printers on the network. Your Wi-Fi network may be insecure. Check the router settings to make sure you're using WPA 2 security, and if you are, change the password to a random string of at least ten upper- and lower-case letters and digits. Any password that you can remember is not good enough.

  • Get rid of domain name

    Hi all,
    How to get rid of domain name from global_name?
    db_name = test
    db_domain =
    select * from global_name
    global_name
    test.oracle.com
    Is there any parameter to set so that only "test" will be displayed in global_name not "test.oracle.com"?

    Try:
    db_domain="" ;
    edit the network files:
    sqlnet.ora - delete the entry for the default domain
    tnsnames an listener : edit the service_name
    Cheers,
    Dobby

  • In Mail I have a "no name" card in email address list that has a known address but when I click on "no name" all adresses in email list go to relevant out going address box-can't get rid of "no name" in email address list

    In Mail email list I have a "no name" card with a known email address. When I click on this card all names on list go to outgoing address box-I cannot get rid of this card

    In Mail email list I have a "no name" card with a known email address. When I click on this card all names on list go to outgoing address box-I cannot get rid of this card

  • How do I get rid of my name in Lion Login ID on Top Right of Menu

    In Lion, my user id (My full name) is at the top right of my menu screen - next to spotlight.  Im trying to figure out how to get rid of my full name because
    a) Theres only one user on this computer & I know who I am
    b) I have other apps with menu icons and I cant use them because there's not enough space due to my name.
    I basically need to clear up some real estate space, and cant figure out how to do it.  Ive kept checking system preferences but can't find out where this resides.  I want my full name to continue being my account admin id/user.  I just dont want it to be on the screen so that my apps' icons can live on the top menu bar.
    Thanks

    Thank you..  I knew it was something simple but I just couldnt figure out how to get it.  I remember the 'expert' technician setting it up had to ask someone how to make the name appear...and now I was realizing that I dont really need it up there and it's taking up valuable real estate.
    One other thing in case you know since it's somewhat related.  Ive got my computer set up so I can type foreign languages so Ive got virtual keyboard options from my menu bar.  For some reason, whenever Im asked to put my system ID password in -  like the steps you just told me to follow -  the virtual keyboard automatically pops up at the same time as the window asking me to put in my password.  Its not a big deal but its just frustrating that its there, and Im wondering why as I know its not supposed to be.  I dont see anything in Keyboard Preferences That would Be causing this.  Any thoughts?
    Thanks again for your help  Im constantly surprised at how much more helpful Support Communites has been than Applecare of the so-called trainers at the retail stores.

  • How to get rid of file name that pops up with mouseover?

    When a user is on my website and mouses over a link to another page, the name of that page comes up - for example, if I mouse over the link to the Mums Night Out page (while on the home page) the file name pops up (mumsnightout.html)
    Any idea on how to get rid of that annoying issue?
    Thanks,
    roxpat

    Is this question now solved?
    Excuse me if it is, but I am really freaking out about this and don't know what to do.
    I don't want to launch my website before everything is perfect and I really want the yellow-pop-up-box-bstrd to go away.
    I am using this code which works fine in ff and safari but not in ie:
    <script type='text/javascript'>
    function clearTooltip() {
    _links = parent.document.links;
    for (i=0; i<_links.length; i++) {
    _links.setAttribute('title', '');
    chkFooter = setInterval('checkFooter()', 100);
    function checkFooter() {
    if (parent.document.getElementById('footer_layer') != null) {
    clearTooltip();
    clearInterval(chkFooter);
    </script>
    Should I modify it in some way? Any ideas?

  • How to get rid of mail number on e-mail icon?

    How do I get rid of the red mail count number from e-mail icon?

    Normally the number that appears in the red circle on your Mail app refers to the number of unread emails you have. Sometimes though the Mail app gets confused and doesn't work properly. If you are seeing that big number and are sure that you have no unread emails, then I suggest quitting the Mail app like I describe and then reset your device. Double click the Home button to show the screen with running and recently used apps. Each app icon will have a sample page above it. Flick up on the page (not the app icon) and the page will fly away and the app icon will disappear. This quits that app. Then reset your device. Press and hold the Home and Sleep buttons simultaneously until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.

  • I can't get rid of layer names from the Ultiboard PCB properties-General layers tab

    A bunch of DXF layer names were erroneously entered into Ultiboard 10.1 a few years ago during a DXF importing operation. I upgraded to 12.0 recently and hoped that the old layers would be eliminated. I have been wanting to get rid of them for a long time. I tried deleting the ub_config file in AppData, but it didn't remove them. Is there anything you can think of to extract them from the program's grasp? Thanks, Tod
    Solved!
    Go to Solution.

    Hi Tod,
    I suspect one of your design file is causing this.  If you go to Options>>PCP Properties>>General Layers, do you see the DXF layers in here?  If you see the layers, can you select it then press the Delete button?
    Tien P.
    National Instruments

  • How to get rid of Mail stuck in Apple Mail Exchange Inbox?

    I have my Exchange 2007 Account set up in Apple Mail.  Recently, there is one email (duplicated about 10 times) that I can't delete.  Every time I try to delete, I get an ambigious Exchange error message.  I've tried deleting and re-provisioning the account, but that doesn't work.  I don't have this issue when accessing my Exchange account from a PC or other Apple Devices, only from my MacbookPro Apple Mail.  How can I clear this and delete these stuck emails?  Thank you.

    Click and hold an icon until they all start jiggling and a X appears. Click the X to delete the partial download.

  • HOW TO GET RID OF MAIL?

    I have updated to Snow Leopard. If I go into Mail and delete the stuff I don't want and then empty the trash it disappears. If I then log out of Mail and log in again it all reappears in my InMail box. Is this a bug or am I misunderstanding something?

    One of the Mail quirks in my (former) iMac G5 was that an old email from a folder of saved emails (2005) insisted on residing in the Inbox. If I deleted that one, another one from the 2005 folder took its place. I finally gave up and ignored it.
    The G5 crashed last week, and I am the excited/frustrated owner of a new iMac (24"). The hard drive from the iMac G5 was fine (thank goodness), so everything was transferred over.
    I have had problems with Mail (mostly regarding sending) but think they've been resolved... except that instead of one 2005 email lingering in the Inbox, I have multiple copies of the same one!!! I have tried deleting them in a variety of ways and finally deleted the entire 2005 folder. If I leave the Inbox, I return to find usually 5-7 copies, but it can be 4-9.
    I also cut and pasted all the desired emails into a new 'Inbox backup' folder to see if that would help in some way. It didn't.
    The email is listed in the Inbox as being from me (to an unknown recipient), but when I click on it, it's completely blank.
    Another problem, and I don't know if it's related or not, is that when I had to go thru the server web site to send emails, I could see all the emails just fine. Two days ago, I noticed that the font was goofy on the emails, but when I clicked on 'Reply,' they were fine. I've also noticed that the font has been a bit goofy on a couple of blogs.
    I went to the Fontbook and verified all the fonts. There was one with 'severe' problems and several with likely problems, and I deleted them all.
    Is there anything else I should try? Compared to others' problems, this is pretty dinky, but I'd love to get it fixed if possible!!!
    Thanks!

  • Ive deleted alot of movies off my mac but the file name of every movie still remains in all files? how do i get rid of the name? it wont let me delete :(

    i deleted alot of movies off of my mac they are gone and cannot be opened but the movie names still remain in all files in finder? it will not let me delete the names saying alias cannot be found and when i click delete alais the message only comes back up?? help please!!

    Select  ▹ System Preferences ▹ Spotlight ▹ Privacy. The list of items excluded from Spotlight indexing is shown (it may be empty.) Click the plus (“+”) icon to add an item to the list. Select your boot volume (under DEVICES) and add it to the list. Then remove it from the list by selecting it and clicking the minus (“-“) icon.
    Spotlight will rebuild the index. If you try to do a Spotlight search now from the magnifying-glass icon in the top right corner of the display, a pulsing dot will appear in the icon. When the dot disappears, the indexing is complete.

  • How do I get rid of "Mail"?  Every time it appears I have to switch to my usual mail server.

    This crops up as the default application whenever I attempt to send Email via a website I'm looking at, and I have to copy the address and paste it into my regular Email server (Charter.net).  Can I just delete the application from my hard drive?

    Change your default Mail application in Mail's Preferences > General.
    Can I just delete the application from my hard drive?
    No. Mail is a required OS X component.

  • Getting rid of chapter names

    I created a DVD in iDVD, with music. I know each photo is a chapter, but how do I keep from the chapter name (in my case the photo name) from displaying on each photo in the slideshow? Feeling dumb.

    yeah...I'm pretty sure that's what I did. When I previewed the slideshow in iDVD I didn't see anything. But after I burned the DVD and played it on a different computer, each slide was named chapter 1, chapter 2 and so on...kind of takes away from the photo. I am trying it again, however...in case I'm remembering incorrectly.
    Thanks -

Maybe you are looking for