Changing dropdown menu in  Mail "From"

when I send an email from Apple Mail I'm given a drop-down menu of options of who the mail is sent from, i.e., [email protected] or [email protected], etc. --- I'd like to stop using the .mac address' all together but they keep showing up in the drop-down, my question is how do I change the address' in the drop-down to get rid of the .mac address'? I've gone in Mails pref and can't find a way of doing it, I've also changed all of the alias' in MobileMe to .me?
Also, we (MobileMe users) used to have more alias address' available but since the switch to MobileMe all of the address (or should I say what addresses remain) are now doubled, i.e. [email protected] and [email protected] - this takes up two names for every one address? is there a way around this?

You can edit the Server name list in Mail > Preferences > Accounts tab > select any mail account > Us the drop down in Outgoing Mail Server > select edit list.
Regards

Similar Messages

  • Dropdown menue or selectlist from fetched SQL results

    Hello i try to build a selectlist or a dropdown menue from fetched Sql results i tryed many ways to realise this but nothing works is anybody here knowing how to do this?
    heres my code example but it isnt work:
    <?php
    if ($conn=OCILogon($HTTP_POST_VARS['user'], $HTTP_POST_VARS['pass'], $HTTP_POST_VARS['dienst'])) {
    echo "Successfully connected to Oracle.\n";
    OCILogoff($c);
    } else {
    $err = OCIError();
    echo "Oracle Connect Error " . $err[text];
    //fetch
    $stmt = OCIParse($conn,"select Table_Name from User_Tables");
    OCIExecute($stmt);
         while (OCIFetch($stmt))
         print "<select name="Rang">";     
         print "<option>$id</option>\n";
         print "</select>";
    OCILogoff($conn);
    ?>
    Message was edited by:
    LOD
    Message was edited by:
    LOD

    There's a basic error in your sample code. You query for table_name from user_tables, which basically just lists the tables that exist in your schema. Since you're using 'id' further on, I suspect your query would look something like 'select id from users'.
         while (OCIFetch($stmt))
         print "<select name="Rang">";     
         print "<option>$id</option>\n";
         print "</select>";
    }This won't work for 2 major reasons.
    1. the $id variable is not set to anything. Note that OCIFetch does not extract variables. You can retrieve them using OCIResult($stmt, 'id'). I myself prefer to use OCIFetchInto as it is much easier to use and gives code that is better readable:
    while (ocifetchinto($stmt, $record))
      print $record['ID'];
    }2. You've put the <select></select> code in your loop. I assume that you only want to loop options, so the <select></select> should be moved to outside the loop.

  • Creating in DW a dropdown menu/navi-bar from png's created in Illustrator

    Hey All!
    I'm new to Dreamweaver (currently CS5.5) and trying to create webpages for a university-researched based project site.
    I'm totally lost as to how to create dropdown menus from buttons and dropdown menus I've created in Illustrator (CS4). I have made the buttons not particularly custom apart from the appearance. There seems to be no way to import from Illustrator unless using slices which only create html linkpages and/or CSS layers (I have no clue on that).
    I want to do a number of things:
    1. Have a navigation bar
    2. When the cursor hovers over the tab it inverts and
    (for example) the 'Introduction' tab drop-slides down to show the options.
    3. When the cursor hovers over an option the colour changes from light grey to black (?...)
    It's a tall order I know, but I've been searching on the web for the last 4 hours and have had no luck in finding what I'm looking for. It is possible isn't it? Surely at this point its possible to do anything with the adobe software?!
    Many thanks and best wishes,
    James MLM
    p.s. If you need to see an attachment of the exampled .pngs let me know. Cheers

    Thank you Murray *ACP* and Nancy O. for your help.
    I can neither afford to buy such software and nor want to sadly, if I could I would feel I'd learned nothing and have another program do all of the "thrashing" out for me . I'd like to know how it all works, since I'm very new to the whole website design industry (dreamweaver, joomla etc) and I'm keen to learn as much as possible.
    Don't take this the wrong way, but the Spry menu bars are fine for an everyday kind of put-together website, however this website is for an academic institution's project and I'm trying my darndest to make sure it doesn't resemble or fall into the category of excessive substance over style. It's a website meant for anyone to use, from the academics who understand the project to the anybody-joe-josie who can use it to learn from the research and products of the project. User-friendly as possible for an academic project. Harder than you think, unless you have seen any academic websites that have all the understandings of layout, clear project description and understanding and product.
    Surely there is a way of creating these customisable dropmenus and the masters of said software such as yourselves might find it too time-consuming to give me an idea of where to start, it's cool, I get it.
    On paper it's simple; create dropdown menus (slide smoothly) for external links etc, using the .pngs I've designed in Illustrator to give as much aesthetic interaction as possible, that's what I've been assigned to do to replace the quickly-slapped together website there was before. I can't show you the pages I've created from Illustrator using Slices (not a very effective option) since it's under the institution "law" of data protection until ready. I can only provide snippets and the previous website which is being completely updated to meet a brief of "smart, slick, simple".
    My definition of that is to have the style of smart, slick and simple whilst having a little more depth and accessibility. All things wonderful get better and evermore intriguing the closer you look.
    Thank you again for your help, I'm still learning but I put the hours into something that needs full attention. Plus to whinge (sorry) I'm not being paid, and it's a 3 month schedule. "Tene lupum auribus".
    Many thanks and best wishes,
    James MLM

  • Changing sender id for mail from vf03

    Hi Experts,
    When I send a billing document from VF03 to a customer, the e-mail address is read from my sap user (SU01). I would like an e-mail address for each billing type, but I don't now how to change "mail_sender" parameters in the smartforms (ZRLB_INVOICE program).
    Can you help me, please?
    sharing piece of code , where i think could make a difference ,
    PERFORM set_print_param USING    ls_addr_key
                                          ls_dlv-land
                                 CHANGING ls_control_param
                                          ls_composer_param
                                          ls_recipient
                                          ls_sender
                                          cf_retcode
    here the sender is is_sender : DATA: ls_sender             TYPE swotobjid.
    swotobjid - structure contains
    LOGSYS
    OBJTYPE
    OBJKEY
    DESCRIBE
    i dunno how it has 2 b changed. right now i guess it's getting filled with user name data from su01.
    Thanks.
    Arun

    Did you check the subroutine set_print_param. This sub routine should tell you the logic on how the data for sender is used. Use your own custom logic to fill the sender.

  • How to get all the values from the dropdown menu

    How to get all the values from the dropdown menu
    I need to be able to extract all values from the dropdown menu; I know how to get all those values as a string, but I need to be able to access each item; (the value in a dropdown menu will change dynamically)
    How do I get number of item is selection dropdown?
    How do I extract a ?name? for each value, one by one?
    How do I change a selection by referring to particular index of the item in a dropdown menu?
    Here is the Path to dropdown menu that I'm trying to access (form contains number of similar dropdowns)
    RSWApp.om.GetElementByPath "window(index=0).form(id=""aspnetForm"" | action=""advancedsearch.aspx"" | index=0).formelement[SELECT](name=""ctl00$MainContent$hardwareBrand"" | id=""ctl00_MainContent_hardwareBrand"" | index=16)", element
    Message was edited by: testtest

    The findElement method allows various attributes to be used to search. Take the following two examples for the element below:
    <Select Name=ProdType ID=testProd>
    </Select>
    I can find the element based on its name or any other attribute, I just need to specify what I am looking for. To find it by name I would do the following:
    Set x = RSWApp.om.FindElement("ProdType","SELECT","Name")
    If I want to search by id I could do the following:
    Set x = RSWApp.om.FindElement("testProd","SELECT","ID")
    Usually you will use whatever is available. Since the select element has no name or ID on the Empirix home page, I used the onChange attribute. You can use any attribute as long as you specify which one you are using (last argument in these examples)
    You can use the FindElement to grab links, text boxes, etc.
    The next example grabs from a link on a page
    Home
    Set x = RSWApp.om.FindElement("Home","A","innerText")
    I hope this helps clear it up.

  • In Mail can I change my "To" field to From or sender

    In Mail my inbox shows 3 fields "To, Subject, Date Recieved" Can I change the "to" field to from or sender. I know who the mail is to, it's always to me after all it's my mail I'm checking. I would like to know the sender so I can better decide which mail to open and read. Sometimes I'm looking for a response from a paticular person.

    Hi Ubettergetit: Actually it is quite easy to get rid of that little annoyance. With mail open, Right (Control) Click on one one of the headings in Mail. (To, From, Subject....). This will bring up a menu that allows you to select which headings you would like to see, change it as required.
    Enjoy
    Stedman

  • How to select an item from a dropdown menu using Enter key

    A website I frequently use opens with a dropdown menu. Using my former browser, I was able to select the an item from the dropdown list by hitting the first letter with my keyboard and then hitting Enter. (Think of entering an address and selecting TX from a dropdown menu of states. Often you can hit T twice to get to TX and then the Enter key will advance the cursor to the zip code field.) Since converting to Firefox, the Enter key no longer works to advance to the next screen...I now have to move the mouse to a "Go" button and click it after selecting the desired item from the downdown menu. It's a small thing, but constantly switching back and forth between mouse and keyboard is becoming annoying. Is there an option in Firefox to select items simply by highlighting them in the dropdown menu and hitting the Enter key, instead of having to use the mouse to click a "Go" button? Thanks

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    In Firefox 4 you can use one of these to start in <u>[[Safe mode]]</u>:
    * Help > Restart with Add-ons Disabled
    * Hold down the Shift key while double clicking the Firefox desktop shortcut (Windows)
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Dropdown Menu same raw value changes back to top list item

    Ok guys.  I have such a weird issue.  I have some code as follows from a dropdown menu:
    <items>
                         <text>Zeutering</text>
                         <text>Rabies 1 Year (Dog or Cat)</text>
                         <text>Puppy Pack (DAPPv and Dewormer)</text>
                         <text>Kitten Pack (HCP+FeLV and Dewormer)</text>
                         <text>Adult Dog Pack 1 (Rabies, DAPPvL2+CV and Dewormer)</text>
                         <text>Adult Cat Pack 1 (Rabies, HCP+FeLV, and Dewormer)</text>
                         <text>Deluxe Adult Dog Pack (Rabies, DAPPvL2+CV, Bordatella, and Dewormer)</text>
                         <text>Heartworm Pack (Heartworm test + six months of prevention)</text>
                         <text>Microchip (Home Again Chip)</text>
                         <text>Flea and Tick Medications</text>
                      </items>
                      <items save="1" presence="hidden">
                         <text>65.00</text>
                         <text>10.00</text>
                         <text>20.00</text>
                         <text>25.00</text>
                         <text>35.00</text>
                         <text>35.00</text>
                         <text>50.00</text>
                         <text>95.00</text>
                         <text>30.00</text>
                         <text>10</text>
                      </items>
    The problem I am having is this.  When I select  <text>Adult Cat Pack 1 (Rabies, HCP+FeLV, and Dewormer)</text>  from the dropdown menu the option goes to   <text>Adult Dog Pack 1 (Rabies, DAPPvL2+CV and Dewormer)</text>   which is the option above the option I selected as noted above.  The only thing I can think of is that because they have the same value it is causing this to happen.  I've never had an issue like this before with dropdown menus so I'm not sure how to fix it.
    Any help is much appreciated.
    Justin

    Hi Justin,
    You are right, the dropdown only works if the values are unique.  So one fix would be to add something to the value making it unique and then striping it off when selected.  So if your values were;
                <items save="1" presence="hidden">
                   <text>65.00:1</text>
                   <text>10.00:2</text>
                   <text>20.00:3</text>
                   <text>25.00:4</text>
                   <text>35.00:5</text>
                   <text>35.00:6</text>
                   <text>50.00:7</text>
                   <text>95.00:8</text>
                   <text>30.00:9</text>
                   <text>10:10</text>
                </items>
    In the change event you could have some JavaScript code something like;
    var valueId = this.boundItem(xfa.event.newText);
    app.alert(parseFloat(valueId));
    The parseFloat function will stop parsing when it hits an invalid character like the colon.
    It is tempting to use a natural key (as you have) but I would probably have used a surrogate key (that is something only the form knows about, like 1,2,3, etc) and then look it up in some structure maybe as simple as a JavaScript array, depends on the complexity of your form.
    Hope this helps,
    Bruce

  • Bug in  9.1.1 release : In mail from iphoto changing size not shown in MB

    Could someone figure out how to report back to apple that we LIKE the 9.1.1 release that fixes it so you can select the size of your photo (smalll, medium, large, actual and optimized now)
    BUT the problem is that when you have preference MAIL FROM I PHOTO - the little "size of this email" indicator that shows under the mail template does not change when you change the size of the photo between the choices above. It always just shows one size (the big one) so they need to fix that next time.
    Thanks. I don't know how to report this to them. Signed - really happy so far with iphoto 11

    It's working for me. No matter what template I choose I get the size menu with 4 sizes to choose from, small, medium, large and full size. Whatever size I select ends up as the size showing in the menu.
    So there's apparently something amiss with your library or iPhoto. Backup the library and delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your User/Library/Preferences folder, launch iPhoto a try again..
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding the the Option key. You'll also have to reset the iPhoto's various preferences.
    Happy Holidays

  • How do I remove the "Dock" option from the Apple Dropdown Menu

    I work for a school district where I am continuosly having to go back into Mac labs and reverting the settings on the dock back to normal.  Students are changing the size, position and content of the dock, as well as hiding the dock.  These computers are used by students k-6 and the younger children are getting confused when they com in and they cannot find the dock or its not where it is supposed to be.  I have been able to lock the sizing, position and content of the dock but am not finding a way to elimante the hiding of the dock.  Preferably I would like to remove the "dock option from the Apple dropdown menu.  Please help!!!!

    This question was asked quite a while ago and the suggestion was to use Server Admin Tools, which I know nothing about. You'll have to look into that. If these Macs are running off a server, then this might work for you. I'm seeing that Server Admin Tools from Apple is still current.
    https://discussions.apple.com/thread/287704?start=0&tstart=0

  • Pdf extension changes to .dat when send a file via e-mail from adobe acrobat 9

    to convert a file from microsoft word 2007 to PDF and send as an attachment via e-mail from adobe 9, the file is received with the extension changed to. dat, so recipients can not open it.
    Can anyone help me with this.

    What is the OS of the sending computer?
    What mail client?
    I receive plenty of files on my PC as .dat files, which come from Mac user(s), rename the extension to what I think they ought to be and have no further problem. (I cannot change the senders email settings where the problem originates)
    If the receiver knows it is a pdf file, they can drag it into Acrobat, but renaming the extension serves future use.

  • Mail -- How can I change the default email account from which my messages go, without having to change it each time I draft a message?  It currently assumes an email account that I rarely use. Thanks.

    How can I change the default email account from which my messages go, without having to change it each time I draft a message?  It currently assumes an email account that I rarely use. Thanks.

    sorry, but I can't find the mail preference in the latest Yosemite OS. Do you know where I can find it?
    Thank you
    Don

  • HT4859 After the i-cloud server issue Nov 26, 2012, I had to change some mail account settings to get my i-cloud mail to work again.  However, all of my received e-mails are gone.  How do I retrieve my e-mails from the server?

    After the i-cloud server issue yesterday, November 26, 2012, my i-cloud mail account on my Macbook Pro stopped receiving mail.  I changed some mail account settings to fix the issue, and was able to start receiving e-mails.  However, all of my historical e-mails are gone.  How do I retrieve all of my old e-mails from the server?

    What settings did you change, what were the changes, have you visited www.icloud.com to see what mail is actually there? and do you have a backup?

  • How can I change a the dropdown menu background according to the text selected?

    How can I change a the dropdown menu background according to the text selected?

    Read here about how to use the color object correctly:
    http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/wwhelp/wwhimpl/common/html/w whelp.htm?context=Acrobat9_HTMLHelp&file=JS_API_AcroJS.88.260.html
    http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/wwhelp/wwhimpl/common/html/w whelp.htm?context=Acrobat9_HTMLHelp&file=JS_API_AcroJS.88.261.html

  • The dropdown menu from the Creative Cloud icon on the menu bar keeps giving me the following message: "Download Error" I quit and restarted the creative cloud app to no avail. Running Mavericks on a mid 2011 iMac.

    The dropdown menu from the Creative Cloud icon on the menu bar keeps giving me the following message: "Download Error" I quit and restarted the creative cloud app to no avail. Running Mavericks on a mid 2011 iMac.

    Try below steps once
    click Gear icon on the top Right corner and Quit Creative Cloud App
    Click on Finder and then hold Command + Shift + G keys on your keypad
    It will open Go to folder window, type  exactly ~/Library and click on Go
    Make sure to open ~/Library not /Library (  there will be two Library folders )
    Then open Application Support > Adobe folders
    Trash AAMUpdater and OOBE folders.
    Then launch Creative Could and check.

Maybe you are looking for