Setting font for mail preferences

anybody have this problem?? when i set lucida sans italic as my email font preference it won't italicize it. it will italicize in all areas of preference except when it comes to using it as a default font. i called support and they were stumped and suggested that i post here. help!!! :-):-)

yes, i want to see the message in that font and have the person on the other end view in that font also. you can change the message font in mail preferences. you select the font under message font and it will create all new mail messages in that font. what i find is that any font that will italicize won't do so when you create a new message. i have it set for comic sans right now and that works fine. go into mail preferences, choose message font, select lucida sans from the font list, then on the right select italics and then close and create a new message. the new message should have lucida sans italics as the message font. mine won't do that. you can select other fonts and it will work, but the italics part doesn't take........

Similar Messages

  • HT1277 Automatic set up for mail isnt working, on the "welcome to mail" pop up its not recognising my password and gives me no option to reset, which password should I be entering? Im assuming its the one for my Mac ? also tried my Yahoo one but no joy...

    Automatic set up for mail isnt working, on the "welcome to mail" pop up its not recognising my password and gives me no option to reset, which password should I be entering? Im assuming its the one for my Mac ? also tried my Yahoo one but no joy.....

       start mail then:
      Preferences> Accounts>  click the  [+] icon and  fill in the blanks.
    select  POP account
      Here are the basic server settings for Yahoo! Mail:
    Incoming Mail (POP3) Server: pop.mail.yahoo.com (Use SSL, port: 995)
    Outgoing Mail (SMTP) Server: smtp.mail.yahoo.com (Use SSL, port: 465, use authentication)
    Account Name/Login Name: Your Yahoo! Mail ID (your email address without the "@yahoo.com")
    Email Address: Your Yahoo! Mail address (e.g., [email protected])
    Password: Your Yahoo! Mail password

  • How to set font for title and message in JOptionPane?

    Hi,
    I have following test code.
    JOptionPane.showMessageDialog(null, "Some Alert Message", "Alert", JOptionPane.ERROR_MESSAGE);In this code can we set font for "Some Alert Message", "Alert"?
    Regards,
    Kalyani......

    roll-your-own?
    import javax.swing.*;
    class Testing
      public static void main(String[] args)
        JDialog.setDefaultLookAndFeelDecorated(true);
        JOptionPane optionPane = new JOptionPane("<html><font size='5'>Your message here</font></html>");
        optionPane.setOptionType(JOptionPane.DEFAULT_OPTION);
        optionPane.setMessageType(JOptionPane.ERROR_MESSAGE);
        JDialog dialog = optionPane.createDialog(null, "Alert");
        dialog.getLayeredPane().getComponent(1).setFont(dialog.getFont().deriveFont(18f));//size = 18/whatever
        dialog.setModal(true);
        dialog.setVisible(true);
    }

  • How to set font for  JOptionPane.showMessageDialog() ?

    Hi,
    I want to set font for JOptionPane.showMessageDialog(). I have tried with following but it did not worked.
    javax.swing.UIManager.put("JOptionPane.font", "Verdana"); Do any one have idea how to do this. Your suggestion would be helpfull to me.
    Thank you.

    Then you'll have to loop over the components in the JOptionPane and setFont for each JButton. My SwingUtils class (search the net using Darryl SwingUtils, I can't give you a link as it's blocked from my office) can make this easier.
    Sample code:import darrylbu.util.SwingUtils;
    import java.awt.Font;
    import javax.swing.*;
    import javax.swing.plaf.FontUIResource;
    public class OptionPaneFonts {
       public static void main(String[] args) {
          UIManager.put("OptionPane.messageFont", new FontUIResource(new Font(
                  "Verdana", Font.BOLD, 32)));
          SwingUtilities.invokeLater(new Runnable() {
             @Override
             public void run() {
                new OptionPaneFonts().makeUI();
       public void makeUI() {
          JOptionPane pane = new JOptionPane("So it's a date?",
                  JOptionPane.QUESTION_MESSAGE,
                  JOptionPane.YES_NO_CANCEL_OPTION,
                  UIManager.getIcon("OptionPane.questionIcon"),
                  new String[]{"Okey-dokey", "Not on your life!",
                     "Let me think about it"
                  }, null);
          for (JButton button : SwingUtils.getDescendantsOfType(JButton.class, pane)) {
             button.setFont(new Font("Tahoma", Font.ITALIC, 18));
          JDialog dialog = new JDialog((JWindow) null);
          dialog.setModal(true);
          dialog.add(pane);
          dialog.pack();
          dialog.setLocationRelativeTo(null);
          dialog.setVisible(true);
    }db
    Edited by: DarrylBurke -- shortened the code

  • Default font for mail messages?

    Is it possible to set up a default font for outgoing mail messages, such as Helvetica 12 point bold in dark blue, without having to click on font and color every time I compose an e-mail?
    Imac G-5   Mac OS X (10.4.3)  
    Imac G-5   Mac OS X (10.4.3)  

    Just a suggestion..........
    Download Thunderbird.  Easier to use when it comes to what you want to do w/your emails. 

  • Transferring set-up for Mail from iMac to iBook

    I just switched from AOL to Mail on my iMac and would like to have the same setup on my iBook. How can I do this without building everything from scratch a second time? I'm not sure where to look for the preferences or whatever that is saved for my Mail configuration. Any help?
    Thanks,
    Joanne

    Joanne,
    One easy way to make the transfer, unless the Mail folder is of extreme size, is to Network the iBook with the iMac. More on this in a moment.
    What you want to do, by network, target disk, or burned media, is REPLACE the com.apple.mail.plist file (Home/Library/Preferences), and the Mail folder (Home/Library/Mail ) on the iBook with a copy of the same files from the iMac. Once you have done this, launch Mail on the iBook, and you will be set. The same can be done with the Address Book (Home/Library/Application Support/Address Book.
    To do this while in direct network link do the following:
    On the iMac, click on System Preference icon in the Dock, and choose Sharing. Next place a check mark in box beside Personal File Sharing.
    Now, on the iBook, open a Finder window, and click on the Network globe in the Sidebar, and you will see your iMac listed. Double click on the iMac icon, and when prompted enter the administrator password for the iMac. At that point choose to connect to your Home folder on the iMac, and then an Icon for that home folder will mount on the iBook. Open it the same as you would open the HD, and then open the HD on the iBook, and locate the files you wish to replace with copies of those on the iMac.
    Hope this helps.
    Ernie

  • Setting Font for converting multiple text files into PDF using VB 6.0

    Dear All,
    Am converting multiple text files into PDF using VB6.0. Currently, am unable to control the font face and size for the generated files. Below is the procedure am using for each file;
    Public Sub proc_convert_to_PDF(srcFilename As String, destFilename As String)
    Dim p_AcroApp As CAcroApp
    Dim p_VDoc As CAcroAVDoc
    Dim p_DDoc As CAcroPDDoc
    Dim IsOk As Boolean
    Set p_AcroApp = CreateObject("AcroExch.App")
    Set p_VDoc = CreateObject("AcroExch.AVDoc")
    Call p_VDoc.Open(srcFilename, "")
    Set p_VDoc = p_AcroApp.GetActiveDoc
    If p_VDoc.IsValid Then
    Set p_DDoc = p_VDoc.GetPDDoc
    ' Fill in pdf properties.
    p_DDoc.SetInfo "Title", Format(Date, "dd-mm-yyy")
    p_DDoc.SetInfo "Subject", srcFilename
    If p_DDoc.Save(1 Or 4 Or 32, destFilename) <> True Then
    MsgBox "Failed to save " & srcFilename
    End If
    p_DDoc.Close
    End If
    'Close the PDF
    p_VDoc.Close True
    p_AcroApp.Exit
    'Clear Variables
    Set p_DDoc = Nothing
    Set p_VDoc = Nothing
    Set p_AcroApp = Nothing
    End Sub
    What I need;
    1) to be able to set the font face of the destination file ( destFilename)
    2) to be able to set the font size of the destination file ( destFilename)
    Am using Adobe Acrobat 7.0 Type Library
    Kindly Help.
    Thanks in advance

    We didn't say it doesn't work. We said it isn't supported.
    There are a number of other ways to make a PDF. The one which would
    give the most control is if your application directly printed to GDI,
    controlling the font directly. This could print to Adobe PDF.
    You could look for an application that gives control of font for
    printing.
    You could use a text-to-PostScript system and distill the result. You
    could even look for a non-Adobe text-to-PDF.
    Working in the unsupported and dangerous world you chose, the font
    size for text conversion is set (and this is very bad design from
    Adobe) in the settings for Create PDF > From Web Page. There is no API
    to this.
    Aandi Inston

  • How to set proxy for mail with Gmail account

    Hi, I'm using mail and set up a Gmail pop account. My mac is behind a proxy, say 192.168.0.1:808. I set the system http and https with the above address and can browse the internet with safari. But the mail app cannot receive or send any mails from the google pop/smtp server. Do you know how I can set the proxy for mail so that it can send and receive mail? Thank you very much!

    I solved this problem myself by using an app called proxifier. It's a tunneling tool I guess.

  • Problems with initial set up for mail and other things

    I am having issues with mail set up and getting printers and other things work with Mac Pro Book, since i am new convert i am feeling really frustrated with these things, anyone out there has experince in mac mail set ups and other instatlations like msn messanger etc.

    Sorry you are having problems but you need to provide more detailed information about the problems such as what type of email account are you trying to set up in Mail - .Mac, IMAP or POP and is this account provided by your ISP used for connecting to the internet or by an email account provider?
    What happens including error messages provided when trying to create the email account in Mail?
    Regarding a printer problem, this is the Mail & Address Book forum. You should post a question about printer issues with detailed information such as the make and model of your printer and what you have tried to this point at the Printer & Faxing forum here.
    http://discussions.apple.com/forum.jspa?forumID=756
    Installing MSN Messenger should be easy. I believe Messenger does not include an installer and is provided as package via a disk image that only requires dragging the application from the mounted disk image to your Applications folder which copies the application package from the mounted disk image to your hard drive.
    What problems are you having with installing Messenger?

  • What is the default font for mail in Yosemite?

    I upgraded from a previous version of OS X and my mail program uses:
    - Message list font: System Font Regular 12
    - Message font: Helvetica 12
    - Fixed-width font: Menlo Regular 11
    Are these the default fonts for a clean install of Yosemite?
    Thanks,
    - JRS

    Yes.

  • JPopupMenu - setting font for entire menu

    I have JPopupMenu which contains menuitems, i would like to set the font for this entire menu...do i have to do .setFont() for each menuitem or can i just do myPopupMenu.setFont()?
    Thanks

    I have JPopupMenu which contains menuitems, i would like to set the font for this entire menu...do i have to do .setFont() for each menuitem or can i just do myPopupMenu.setFont()?
    Thanks

  • Set font for Oracle

    Hi all.
    Can somebody help me?
    I'm using:
    Linux redhat 9 and Oracle for linux: 8.0.5.
    I use a program run on window and insert data into oracle, the font of data show on oracle is true. but when I run a client on linux, also insert data into oracle, but font is failed.
    I exported: NLS_LANG and ORA_NLS33 in .bash_profile file but nothing change.
    How can i config font for oracle client?
    Thank you.

    Hi all.
    Can somebody help me?
    I'm using:
    Linux redhat 9 and Oracle for linux: 8.0.5.
    I use a program run on window and insert data into oracle, the font of data show on oracle is true. but when I run a client on linux, also insert data into oracle, but font is failed.
    I exported: NLS_LANG and ORA_NLS33 in .bash_profile file but nothing change.
    How can i config font for oracle client?
    Thank you.

  • Can I enlarge the font for mails in my inbox?

    I'd like a larger font in my inbox where my list of emails is. Can I do that?
    I'd also like larger fonts for the items in the side bar.

    http://chrisramsden.vfast.co.uk/9_Type_sizes.html

  • Setting Margins for Mailing Labels in Reports 6i

    I would like to know how to configure the margins (vertical/horizontal properties) for different mailing label formats. I am unable to correctly set them to use for Avery labels. MS Access has a great label wizard that brings up a variety of mailing label formats and allows you to choose from the list. I have found nothing similar in Oracle Reports. Have been a DBA/developer of Oracle Applications for 20+ years. Help!

    Where you set the measurement ?
    Did you follow this ?
    @ Report Object Navigator
    1. Select Layout Model >> Main Section then properties
    set Width, Height and Orientation under Section
    Adjust your layout and
    Try...
    Hope this works..

  • TS3899 I use outlook for my email on my home computer.  I bought an iphone 5 and is set up for mail, I am receiving e-mails but they are not sending.

    I use outlook for my e-mail on my home computer.  I bought an iphone5 and set up mail I am receiving e-mails but cannot send.  Not sure what my outgoing mail setting should look like on my phone.

    When you set up the email account on your iPhone you probably did not set up the outgoing mail server correctly. Incoming and outgoing are two separate sets of settings. You need to set up both, and also enter your username and password for both.

Maybe you are looking for

  • Cannot display square root symbol in cvi

    I don't understand why this would be an issue, but if I'm writing in the source window (with the default font of NIEditor), I cannot display a square root symbol "√" - every time I type alt+251, I get "v". Ok, not a huge deal in the source window, bu

  • Vista 64 bit and laserjet 3030 scanner quit working

    My LJ 3030 worked fine until I connected it to a machine running Vista Home Premium 64bit. Now when I plug the printer (USB) in to the computer the Vista OS loads the "driver" and all seems well. The printer prints fine. But I have no tool box to run

  • Issues Syncing Photos to PC from iPad with ios5 with Solution.

    As far as transferring pictures TO your PC FROM the Ipad2 (in my case) with Windows 7, I have a done a lot of testing with the new IOS5. As far as I can tell, only pictures taken with the device can be uploaded. So pictures to the iPad using Dropbox;

  • Abap command doubt

    Hi folks.. One doubt.. In one of my program. I've used one command which is as follows . uom_s[] = uom[]. where uom is a structure like  bapi_marm_ga  and uom_s is a structure like bapi_marm. all the relevant values got copied to uom_s table. but in

  • Java inner class access specifiers

    public class MyClass1 { public static void main(String argv[]){ } /*Modifier at XX */ class MyInner {} What modifiers would be legal at XX in the above code? 1) public 2) private 3) static 4) friend