Default Mail Font ignored when using "Mail this webpage" in Safari

This is not really a problem but more of a puzzling irritant.  I often use the "Mail this webpage" option in Safari (the small envelope icon in the tool bar) which opens a draft email with the then-current webpage's URL already embedded in the text area.  Prior to Mavericks when using this option the draft note triggered by Safari reverted to my default Mail font already selected via Mail's preferences pane.  Just as I would want it.  Ever since Mavericks though, when I click the envelope icon it brings up the draft email with the URL as before, but the text font for that note defaults to Times, not my previously-selected default Mail font (Lucinde Grande just for clarity).  So to stay consistent with my other email styling I have to manually click the draft email's Format button, select Lucinde Grande, and then begin typing.  I can find no place in either Safari's or Mail's preferences or options where I can change the default "send an email triggered in Safari" font. Emails originated in Mail properly use the default Lucinde Grande font.
Once I go through the above and send the note, if I later repeat the same "mail via Safari" acion, the new note is again defulting to Times and I have to go through all of the above again.
A companion oddity is that when I go through this and click the Format button once, nothing happens.  I click it a second time and then the font selection options are presented.  This happens consistently on 3 separate installs of Mavericks in our house (two iMacs and a MBP), and it has been this way from OS 10.9.0 through the updates to the current 10.9.2.  Any ideas, or anyone else experiencing this?  Thanks.

This is very annoying behavior.
I have a sudo work-around, although it's really just a different set of steps. If you use the new Share button (square with arrow icon) than the resulting email consists of a url at the top and text from the page below that. The first line of the email (empty) and the url are in the default mail font. Now just delete the text that was added from the page.
I use this method because it seems like if I do it the other way the new message will sometimes go back to Times when I hit Return a couple times.

Similar Messages

  • When using the share button in safari, I get a no service message. Where do I correct this?

    when using the share button in safari, I get a no service message. Where do I correct this?

    Follow the instructions in this article released by Apple.
    http://support.apple.com/kb/HT6545?viewlocale=en_US
    Best.

  • How to solve the error message "Could not activate cellular data network: PDP authentication failure"when using 3g or gPRS on safari with an iphone 4 and latest software updates

    Please can someone help me to solve the error message "Could not activate cellular data network: PDP authentication failure"when using 3G or GPRS on safari with an iphone 4GS and latest software updates. I have tried resetting the network and phone settings. I have restored the factory settings on itunes and still the problem persists.

    All iPhones sold in Japan are sold carrier locked and cannot be officially unlocked by the carrier. If you unlocked it, it was by unauthorized means (hacked), and support cannot be given to you in this forum.
    Hacked iPhones are subject to countermeasures by Apple, particularly when updating the firmware. It is likely permanently re-locked or permanently disabled.
    Message was edited by: modular747

  • PostProcessingMethod and serverLocationDir ignored when using fileUploadTag

    I'm puzzled by this one and have been racking my brain for a couple days now, so if anyone can help me I would greatly appreciate it!
    I started by downloading the petstore app and testing the file upload feature. It works with no problems. I can see the postProcessingMethod being called on the server.
    I copied all the relevant pieces into a small test app. When I try to upload a file, it uploads it, but always to the default directory and the postProcessingMethod is never called.
    Here is what I have:
    My .jsp page contains:
                    <f:view>
                        <h1>Test of File Upload</h1>
                        <ui:fileUploadTag id="myFileUploadForm" serverLocationDir="c:/upload" postProcessingMethod="#{FileUploadBB.postProcessingMethod}" progressBarDivId="progress" progressBarSubmitId="submit1x" progressBarSize="40" retMimeType="text/xml" retFunction="testRetFunction">
                            <input type="file" size="40" name="file1" id="file1"/><br />
                            <input type="file" size="40" name="file2" id="file2"/><br />
                            <input type="file" size="40" name="file3" id="file3"/><br />
                            <input type="submit" name="submit1x" value="Submit"/>
                            <div id="progress"></div><br />
                        </ui:fileUploadTag>
                    </f:view>faces.config.xml contains:
      <managed-bean>
        <managed-bean-name>FileUploadBB</managed-bean-name>
        <managed-bean-class>com.mywebsitename.FileUploadBB</managed-bean-class>
        <managed-bean-scope>session</managed-bean-scope>
      </managed-bean>and com.mywebsitename.FileUploadBB contains:
    public class FileUploadBB
        public FileUploadBB()
            System.out.println("FileUploadBB() called.");
        public void postProcessingMethod(FacesContext context, Hashtable htUpload, FileUploadStatus status)
            System.out.println("IN Custom Post Processing method");
    }The progress bar works fine, the file is uploaded properly, and the testRetFunction executes. But my postProcessingMethod doesn't execute and I can't change the upload directory.
    As a side note which might help someone help me...I tried putting a non-existent bean name in the postProcessingMethod
    (for example, setting postProcessingMethod="#iliketurtlesFileUploadBB.postProcessingMethod}" and I don't get any errors...it just appears to be ignored.
    When I do the same with the petstore app, I get the error "The FileUpload process encountered an exception while trying to delegate to a custom post processing method."
    What am I missing here that causes this difference in behavior?
    Please oh masters of JSF, Ajax, and the fileUploadTag component...help me!!!
    Thanks!

    Ok. I finally figured this out myself since no one could help and I had no other choice. I will post the answer here to hopefully save someone the frustration that I experienced.
    Basically, this was my first JSF project. After reading a book on JSF that suggested it is best to use XHTML, I was using XHTML. For some reason using XHTML instead of HTML caused the postProcessingMethod and serverLocationDir attributes to be ignored. I changed
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root version="2.0" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:c="http://java.sun.com/jstl/core" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:ui="http://java.sun.com/blueprints/ui">
        <jsp:directive.page contentType="text/html" pageEncoding="UTF-8" />
        <jsp:output omit-xml-declaration="no" doctype-root-element="html" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" />
        <html xmlns="http://www.w3.org/1999/xhtml">to
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <%@taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <%@taglib prefix="ui" uri="http://java.sun.com/blueprints/ui" %>and that immediately fixed the problem. I've seen other wierd behavior when using XHTML but was able to work around the problems. I guess in this case I will be forced to fall back to HTML for my whole project. Sort of disappointing and it makes me wonder if XHTML will ever catch on with these sort of problems. Anyway, hope this helps someone out in the future.

  • Multiple weight font selection when using STL file importing...

    I am aware how powerful the manual editor is for DSP4.2, but unfortunately a lot of the editing for my subtitles needs to be done outside of DSP. So I came across a little bit of a problem...
    When using a multiple weight font, like Kozuka Mincho Pro (and many others), there are several weights, and some don't even have a "Bold." As an example Light, Thin, Roman, Heavy, Black, etc.
    So, using the STL method of importing, how does one specify a font AND weight that does not correspond to a "Bold" version? i.e., setting "Helvetica Neue Bold" does not bring that weight up when specifying "Bold = False," and you can't possibly get "Helvetica Neue Black," under any circumstances. I've attempted to get around this, but all I get is a message saying that the font is not found, and that the default font will be used. Is it even possible to do this?
    Hand entering and altering kanji in DSP's manual editor will be a nightmare, if I can't figure a way around this (the STL file is re-loaded dozens of times for placement issues during the project, meaning manual edits would have to be re-done every time).
    Hopefully the next version will allow the user to edit the .rtf document with styles and fonts and import them as styled text the way it appears. Multiple fonts per line, so easy integration of various symbol fonts can be dealt with, etc.

    Nope, using "$FontName = Helvetica Neue Black" does not work. And you can't even do anything close to that with fonts whose weights are specified as W3, W5, W7, etc.
    I found another snippet buried in the new manual that states something to the effect that the name must be spelled exactly as it appears in the "Font Panel." If this is so, then you can only access two weights from any font, just like working with good old-fashioned windows...
    So, unless there is a DSP specific trick for the STL format, I'm going to guess it's not possible.
    And I cannot re-compile fonts with new names and data, since most of the fonts I will be working with, with this issue, are full Kanji Unicode fonts, and we would have to purchase a font-editor that, IIRC costs about a grand. I think the SysAdmin would frown over both aspects of that... ^_^

  • Font size when using HOMESITE 5.5 trial version

    Used homesite 4.0 for many years but now with a new computer with vista, I'm using the trial homesite 5.5. The trial version when using the Browse mode displays the font size larger than what was displayed in homesite 4.0 but the size is normal when using the "view in external browser". Is this normal with the free trial version and will be okay when I download the full Homesite 5.5 version? Or maybe, there is some setting I have done causing this. Any help would be appreciated. Thank you.

    I don't think there's any setting inside HS that can cause this. With HS closed open IE (7 or 8) open the menu bar (Tools > Toolbars > Menu Bar) and from the menu bar (View) check that the Text Size and Zoom settings  are both Medium and 100% respectivley, then open HS and see if the problem is still there.
    I'm not using Vista so if it's specific to that platform I doubt I'll be able to give any more help.

  • Fonts Incorrect when using compressor

    When I encode my .motn file straight from Motion, the fonts show up correctly in the finished quicktime. However, I've got about 62 of these motion files that need to be batch encoded, but when they come out of Compressor, the fonts display incorrectly...as if the font is not on my machine and being substituted.
    I've checked several of the motion files and the fonts they are using are installed on my system. What would cause this to happen?

    Ok, now I'm really stumped. So I took Patrick's suggestion and reinstalled the fonts system-wide. I checked the fonts were working correctly by launching a couple of the motion files, checking the fonts, then saving them.
    I then trashed Compressor's pref files (and FinalCut's pref files just for fun). Then I repaired disk permissions and rebooted. Once back in, I launched Compressor and loaded up two of the Motion projects. After choosing the appropriate encode preset, I double checked in the preview window and the fonts were dispalying correctly. Yay! So I submitted the job and waited. I opened the final quicktime file and the fonts are INCORRECT. What in the world??
    So, to recap: fonts show up correctly in Motion, they show up correctly in the Compressor preview, they even show up correctly in the timeline of FCP. But exporting from Compressor results in the wrong font and exporting my sequence from FCP crashes my system every time. I'm so confused.

  • Tabular form default column value bug when using named notation?

    Hi,
    I am using Application Express 4.0.2.00.07
    After exporting and importing an application, the default value of a tabular form column results in an "ORA-00907: missing right parenthesis" error.
    My original application uses named notation while calling my function (no problem here):
    Report Attributes > Column Attributes > Tabular Form Attributes > Default type = PL/SQL Expression or Function > Default = pkg_customers.some_funtion (*in_param =>* :P15_FK_CUSTOMER_ID).
    When I change this in my imported application to ... > Default = pkg_customers.some_funtion (:P15_FK_CUSTOMER_ID) everything works fine again.
    Is this a known bug or is there something I do not see?
    Regards,
    Frederik Van de Velde.

    yes it is
    p_column_default=> 'calpa_pkg_klanten.fun_sm_betreft_default (in_pk_klant_id => :P9_FK_KLANT_ID)',
    p_column_default_type=> 'FUNCTION',
    by default it is set exactly the same, but when running the page the tabular form does not render because of the usage of " =>".
    thx

  • By default my font change when i was browsing the net

    My font changed when i am browsing the login to Gmail /Yahoo mail  and inbox also

    Yes you can  but if it comes again then you will be in a way to bear old version. But i hop that it cannot come again just make shure that you dont unplugged your BB during installation.
    Thanks for your reply if it solved please dont forget to give a kudos. Its not a requirement
    Take care

  • Will the indexes be ignored when using IMPDP...TABLE_EXISTS_ACTION=SKIP?

    Hi guys,
    11gr2
    suppose that i have a .dmp file which has tables, indexes, and data,
    and i also have a schema A which already contains tables and data, without indexes
    is it possible to use IMPDP to import(or say create) all indexes from .dmp to schema A?
    the relevant question is, when using IMPDP...TABLE_EXISTS_ACTION=SKIP, if the table already exists, will IMPDP ignores the relevant indexes creation?
    thank you!!!

    thanks for the reply.
    actually, i have imported over 100G data to the new server, but after look into the new server, most of the indexes are missing somehow, i don't want to drop the schemas and re-import, it will cost me a whole day to finish, any suggestions?
    many thanks.

  • HT2509 How can I use Favorite fonts from Font Book when using e-mail?

    How can I add fonts from Font Bood to e-mail fonts?

    You dont use Font Book to change fonts in Mail.
    open Mail > open a  new message > Show Fonts
    click in the text message pane
    click on the font, size and  colour you want to use
    type your text

  • Font smoothing when using JWS

    Hi, I've noticed something odd while developing a desktop app.
    When I run it via the webstart link, it looks fine, but when I run it inside netbeans or double-click the .Jar file the fonts look non-smoothed and no where near as good. Whats causing this, and is there a way around it, as I'm actually considering not using JWS for distribution.
    I'm using Java 1.5 and on an apple mac and Netbeans 6
    Thanks,
    Scott
    EDIT: Heres a screenshot of with and without JWS deployment of the exact same application. One thing I havn't mentioned, I'm using Substance for the 'skinning' effect, not sure if thats anything to do with it, but its the same version in the /lib folder
    Screenshot

    Ahhh...I found the solution
    adding
    -Dswing.aatext=true to the JM parameters.
    Why isn't that the default? non-AA'ed text looks crap.

  • Form onsubmit ignored when using h:commandLink

    Hi
    I was looking for a way to catch all form submission in javascript by automatically setting a method to each form.onsubmit. But I ran into trouble with h:commandLink.
    I tested using a simple example:
    <h:form onsubmit="alert(123);">
    <h:commandButton value="commandButton"/>
    <h:commandLink value="commandLink"/>
    </h:form>Using this code, clicking the commandButton will display and alert with 123. But when clicking the commandLink, the onsubmit is ignored. The commandLink submit the form by javascript code using the form.submit() method. I tested it out (with firefox) and it seem to be the normal behavior... the onsubmit event is not triggered, unliked at normal <input type="submit"/> (like the commandButton).
    Looking at the javascript used the commandLink, I could see that it is completely ignoring the possibility that the user specified a onsubmit:
    //com/sun/faces/sunjsf.js
    function jsfcljs(f, pvp, t) {   
        apf(f, pvp);
        var ft = f.target;
        if (t) {
            f.target = t;
        f.submit();  
        f.target = ft;
        dpf(f);   
    };Wouldn't it make more sense to verify if a onsubmit method was set on the form and execute it before submitting the form?
    function jsfcljs(f, pvp, t) {   
        apf(f, pvp);
        var ft = f.target;
        if (t) {
            f.target = t;
         if (typeof(f.onsubmit) == "function") {
              var os = f.onsubmit();
              if (os != undefined && os == false) {
                   return false
        f.submit();  
        f.target = ft;
        dpf(f);   
    };The behavior of the commandLink would then match the JSF-API description:
    Tag commandLink : "Render an HTML "a" anchor element that acts like a form submit button when clicked."

    Wow! That worked when I removed the include directive. The only problem is that the include directive for the page is needed. When I use <c:import> or <jsp:include> it doesn't really include it correctly.
    Is there some special way I'm supposed to import JSF pages?
    Thanks again!

  • DocumentFilter Ignored when using Formatter?

    I am shooting myself in the foot but I can't see the bullet.
    I can't use a Formatter and a DocumentFilter in the same class. I want the pattern of the Formatter but want to constrain the individual numbers as well. I can get one or the other but not both.
    The filter works if I comment out the super call in the constructor.
    The mask works if I leave it in but then the filter code doesn't effect GUI output.
    Seems like when I extend JFormattedTextField and use
    JFormattedTextField(JFormattedTextField.AbstractFormatter formatter)
    I lose the ability to get the right Document later.
    The code is something like this:
    public class MyFormattedField extends JFormattedTextField{
    MyFormattedField() {
    super(new MyMaskFormatter().getFormatter());
    AbstractDocument doc = (AbstractDocument) getDocument();
    doc.setDocumentFilter(new myFilter());
    class MyMaskFormatter {
    private MaskFormatter formatter;
    MyMaskFormatter() {
    try {
    formatter = new MaskFormatter("###.###");
    }catch(ParseException pe) {
              // deal with it
    public AbstractFormatter getFormatter() { return formatter; }
    class MyFilter extends DocumentFilter {
    public void replace(DocumentFilter.FilterBypass fb,
    int offset,
    int length,
    String str,
    AttributeSet attr)
    throws BadLocationException {
    str = "1"; // smoke test (do anything, see if it sticks)....
         fb.replace(offset, length, str, attr);

    You could try creating a custom paste action:
    class MyPasteAction extends DefaultEditorKit.PasteAction
        public void actionPerformed(ActionEvent e)
            try
                //  Get clipboard contents
                Clipboard c = Toolkit.getDefaultToolkit().getSystemClipboard();
                Transferable t = c.getContents( null );
                String data = (String)t.getTransferData( DataFlavor.stringFlavor );
                //  Do your stuff
                data = "<" + data + ">";
                //  Paste your new data
                getFocusedComponent().replaceSelection( data );
                //  If above doesn't work then maybe this will
                StringSelection changedData = new StringSelection( data );
                c.setContents(changedData, changedData);
                //  Invoke default paste Action
                super.actionPerformed(e);
            catch (Exception x) {}
    }You install the Action on the text pane using:
    Object key = pasteAction.getValue(Action.NAME);
    KeyStroke ks = KeyStroke.getKeyStroke(KeyEvent.VK_V, KeyEvent.CTRL_MASK);
    textPane.getInputMap().put(ks, key);
    textPane.getActionMap().put(key, pasteAction);

  • Format precision apparently ignored when using read from spreadsheet file

    I hope there is ridiculously simple solution to this problem but so far I can't find it. Using the Read from Spreadsheet File function in LabVIEW7.1, I can't get the floating point format (%f) to work; the decimal (%d) seems to work fine. For example, the first value in the attached file is 399.5853. When I read it in using %.2f format I would think I should get 399.58 but instead I get 399.58529663... Oddly if I use %d as the format, I get an as expected value of 399. Can anyone see what I am missing?
    Attachments:
    ReadFileTEST.vi ‏23 KB
    test.txt ‏1 KB

    The solution to the problem is the internal representation of floating point numbers: with a limited number of bytes only a limited number of the (infinitely many) real numbers can be represented. The nearest representable number to 399.5853 is 399.58529663 if the so-called single precision representation (abbr. SGL in Labview) is used.
    It seems that (ridiculously!) NI has chosen to use SGL as the data format in the Read from Spreadsheet VI which causes the unexpected behaviour you observed.
    You can change the representation from SGL (which uses 4 bytes) to DBL (double precision, using 8 bytes) in the Read from Spreadsheet VI and you will observe a better approximation then, but still not 'exact' since the number now reads 399.585300000000018. (With t
    he EXT representation, 10 bytes, you could go to even higher precision)
    I hope someone from NI reads this and they fix the unnecessary limitation of the precision in the Read from Spreadsheet VI.

Maybe you are looking for