Font styles in Notes

How do you change the font family in the notes? isHTML is set
to true in viewer.xml and vconfig.xml has <uifont
name="FONT_NOTES" value="Arial,11,false,false,false"/> but it
keeps coming out in Times New Roman. This happens in both Firefox
and IE. Also, where do I change the font color for notes?
Thanks.

I see this post was submitted in 2006, it's now 2 years on
and I have the same problem! Has anyone got a solution for this one
since then? I am currently working Presenter v 6.0.432.
Many thanks in advance.

Similar Messages

  • Font style changes not making it to the css

    “I made changes to the text color on my welcome page, and for some reason the style is not making it to the css for that page. I pushed the publish, but the style is not in the css file. I don’t want to have to add it in manually- help!”

    I am having the exact same problem - text that I make bold shows up on the live site as actually lighter in color than the normal text. But it ONLY happens on the Welcome page, which I notice is what your message is about...

  • Font style can not applied with the eye dropper ??!

    I am working with font "not a free one" and it has a problem that I can not take its style with the eye dropper,
    it only gives the same font name but the shape of font did not applied

    It's necessary to know if the text is under Illustrators full control or if the other program interferes.
    Also it's still not quite clear what exactly you are doing in which order.
    Are you using character and paragraph styles?
    Normally if you select words or paragraphs with Illustrators text tool, you can pick up styles from other texts with the eyedropper. So how exactly are you using the tools?

  • Font styles in source xml are not set  on footnote text

    Hi,<br /><br />   could some please help. Not sure what iam missing.<br /><br />Iam using the following code to add footnote for each footnote element in imported xml. Iam running the script after importing xml. footnotes are added successfully but the font styles are not applied to the footnote text. The alerts in the code are as expected.<br /><br />Sample XML:<br /><para>This is begin</para><br /><para>Test footnote one follows<footnote id="f0"><para> FN1 This is<italic>italic</italic> and <bold>bold</bold>.</para><br /></footnote></para><br /><para>This is the second section</para><br /><para>Test footnote two follows<footnote id="f1"><para> FN2 This is<italic>italic</italic> and <bold>bold</bold>.<br /></footnote></para><br /><br />Code:<br /><br />var myGlueCodePath = app.filePath + "/Scripts/xml rules/glue code.jsx"; <br />var myFile = File(myGlueCodePath); <br />app.doScript(myFile); <br /><br />main(); <br />function main(){ <br />     var myDocument = app.activeDocument; <br />     if (app.documents.length != 0){ <br />          var myRuleSet = new Array ( <br />          new processParaBold, <br />          new processParaItalic <br />          ); <br />          with(myDocument){ <br />               var elements = xmlElements; <br />               __processRuleSet(elements.item(0), myRuleSet); <br />          } // End With <br />     } // end if <br />     else{ <br />          alert("No open document"); <br />     } // ende Else <br /><br />     var myXMLElements = new Array; <br />     myXMLElements = myGetXMLElements("//footnote"); <br /><br />     if(myXMLElements.length > 0){ <br />          for(var myCounter = 0; myCounter <= myXMLElements.length-1; myCounter++){ <br />               var myXMLElement = myXMLElements[myCounter]; <br />               var myStartIndex = myXMLElement.texts.item(0).insertionPoints.item(0).index; <br />               var myStory = myXMLElement.texts.item(0).parentStory; <br />               var myFootnoteString = myXMLElement.texts.item(0).contents; <br /><br />               myXMLElement.texts.item(0).contents = ""; <br />               var myInsertionPoint = myStory.insertionPoints.item(myStartIndex); <br /><br />               var myFootnote = myInsertionPoint.footnotes.add(); <br />               myFootnote.insertionPoints.item(-1).contents = myFootnoteString; <br />          } <br />     } <br />} <br /><br />function myGetXMLElements(myXPath){ <br />     var myXMLElements = new Array; <br />     var myRuleProcessor = app.xmlRuleProcessors.add([myXPath]); <br />     try{ <br />          var myMatchData = myRuleProcessor.startProcessingRuleSet(app.documents.item(0).xmlElements.item(0)); <br />          while(myMatchData != undefined){ <br />               var myElement = myMatchData.element; <br />               myXMLElements.push(myElement); <br />               myMatchData = myRuleProcessor.findNextMatch(); <br />          } <br />          myRuleProcessor.endProcessingRuleSet(); <br />          myRuleProcessor.remove(); <br />          return myXMLElements; <br />     } catch (myError){ <br />          myRuleProcessor.endProcessingRuleSet(); <br />          myRuleProcessor.remove(); <br />          throw myError; <br />     } <br />} <br /><br />function processParaBold(){ <br />     var myDocument = app.activeDocument; <br />     this.name = "processParaBold"; <br />     this.xpath = "//footnote/para/bold" <br />     this.apply = function(myElement, myRuleProcessor){ <br />          //myElement.texts[0].applyCharacterStyle(myDocument.characterStyles.item("bol d")); <br />          alert("test bold: " + myElement.texts.item(0).contents); <br />          var myCharacterStyle = myDocument.characterStyles.item("bold"); <br />          if(myCharacterStyle != null){ <br />               alert("bold exists"); <br />               myElement.texts.item(0).applyCharacterStyle(myCharacterStyle); <br />          } <br />          return false; <br />     } <br />} <br /><br />function processParaItalic(){ <br />     var myDocument = app.activeDocument; <br />     this.name = "processParaItalic"; <br />     this.xpath = "//footnote/para/italic" <br />     this.apply = function(myElement, myRuleProcessor){ <br />          //myElement.applyCharacterStyle(myDocument.characterStyles.item("italic")); <br />          alert("test italic: " + myElement.texts.item(0).contents); <br />          var myCharacterStyle = myDocument.characterStyles.item("italic"); <br />          if(myCharacterStyle != null){ <br />               alert("italic exists"); <br />               myElement.texts.item(0).applyCharacterStyle(myCharacterStyle); <br />          } <br />          return false; <br />     } <br />}<br /><br />Thanks

    BTW:
    If you add document xml tag map style, the style process can be ignored.
    Then:
    1. Do myStotry.placeXML(justImportedXMLElement);
    2. iterate the backward in justImportedXMLElement: get the footXMLElement, skip children;
    3.
    var myText = footxmlElement.texts[0];
    var ix = myText.insertionPoints[0].index;
    if(ix == 0){ix = 0;}
    var end = myText.insertionPoints[-1].index;
    myText = myStotry.insertionPoints.itemByRange(ix-1, end+1);
    myText.move(LocatcionOptions.atEnd, myStotry.insertionPoints[ix-1].footnotes.add().insertionPoints[-1])]);
    This will be quicker then the upper.
    jxswm

  • Change font style on iphone????

    I have the new iOS 7 update (love it by the way) but I was curios if you could change the font style in your iphone in your settings or maybe even downloading an app???? If anybody knows anything please let me know:)

    No, changing font style is not an option.

  • Urgent: Custom font style not appearing in PDF output only

    Hi,
    For a customer, I received customer specific font styles(ttf font files) which I installed on my machine and then copied those files in Oracle\BI Publisher\BI Publisher Desktop\Template Builder for Word\fonts as well as in JRE/lib/fonts. Then I created a template in word and font there appears as custom font.
    Now I am getting that font style in all output formats(rtf,ppt,excel) except the PDF output. I am using Oracle BI Publisher desktop alone. Not sure what I missed because of which text font is not changing in PDF version only. I checked the PDF properties and there also custom font is not getting mapped.
    Thanks in advance.

    Here is the link that describes how to set up the font mapping for PDF output: Look for "Font Mappings (for PDF output)"
    BI Publisher Demo Library&lt;/title&gt;&lt;meta name=&quot;Title&quot; content=&quot;BI Publisher Demo Library&quot;&gt;…http://www.oracle.com/technetwork/middleware/bi-publisher/learnmore/demo-library-toc-173301.html
    Thanks,
    Bipuser

  • IPhone email-need to change the font style, not just the size

    My emails are showing in Black Arial, when I just want them to display in normal Arial font. I do not see where I can change the Font setting other than the size of it, I had it on Large but now have it on Small. On the iPhone the font appears in a regular size and not bolded except for the To and Subject lines. But when I look at an email I sent from my iPhone Outlook on my laptop, the whole email's font is darker (not All Caps, just darker), as if the letters are in bold font, but Black Arial versus Arial looks that way, but all my other emails in Outlook are in regular Arial so I would like them to be consistent.
    I called Apple support and they had me re-set my mail settings and re-create my email profile, but it still did not help.

    The iPhone does not support composing email in RTF or HTML, so the font type, size, or style cannot be changed. The iPhone's Mail client supports composing email in Plain Text only.
    When composing email in RTF or HTML, the sender controls the formatting, which may not be displayed the same or identical with the recipient's email client depending on the email client used.
    When composing email in Plain Text, the recipient controls the formatting.
    What is your font setting in Outlook for viewing a received message that was composed in Plain Text?

  • Not able to get font style for some fonts

    Hi,
    I am getting font style(like regular, bold, italic etc) like this-
    while (count < fontCount) {//loop , which iterate throgh used fonts.
                                                      ATE::IFont currentFont = fontRefArray.Item(count);
                                                      if (!currentFont.IsNull()) {
                                                                FontRef fontRef = currentFont.GetRef();
                                                                AIFontKey fontKey = NULL;
                                                                result = sAIFont->FontKeyFromFont(fontRef, &fontKey);
                                                                result = sAIFont->GetUserFontName(fontKey, fontname, 50);
                                                                result = sAIFont->GetPostScriptFontName(fontKey, psname, 50);
                                                                result = sAIFont->GetFontStyleName(fontKey, stylename, 50);
                                                                result = sAIFont->GetFontFamilyUIName(fontKey, familyname, 50);
    For some fonts(not all the fonts) , Style name is comming as empty string, however for other fonts its working. Not sure why its working for some fonts and not for others. Other font properties are coming fine for all fonts.
    When its failing, result is not  kNoErr, but i dont know that how to get the exact error?Please help me in this issue.
    Regards,
    Harsh

    Hi A. Patterson,
    Thanks for your suggestion.
    I tried GetFontStyleUINameUnicode() also but its also returning the emply string for style name for some of the fonts only difference is that error is kNoErr for all fonts. May be there is some problem with those specific fonts(who knows? ).  m keep digging this.
    Regards,
    Harsh

  • Font style not available on select machines (Captivate 5)

    Cap community,
    For most of our projects, I selected Lucida Sans as the default font for most caption types. Internally we would hand a single project file off between 2-3 different people and didn't have any issue until recently my boss does not have the Lucida Sans Regular font style while at least three others of us do.
    Below and left is a screenshot from my machine that shows the Regular font style. Below and right is a screenshot from my boss showing the missing Regular font style.
    The obvious thing to check is that she does in fact have the same font family and not just the Italic, Demibold Italic, and Demibold families. However, we both have the same font on our Windows > Fonts folder. Here is a screenshot of that font from the Windows font viewer. The font name is Lucida Sans Regular (TrueType) and the filename is LSANS.TTF (oddly enough, the font viewer describes it as OpenType even though the name in Windows Explorer reads TrueType... but this is the same for both our machines so it doesn't appear to be a different variable).
    We even carefully uninstalled her Lucida Sans font family and copy/pasted my font file to her machine to ensure we had the same one, and still no joy. Has anyone run across this issue? Seems like it could be either a font issue or Captivate, but leaning toward Captivate since we feel relatively sure that we have the same font.
    BTW, as a result of this difference when she opens the .cpx project file I'm working on it replaces all the Regular font styles with her Demibold or Demibold Italic, which throws everything off if she wants to publish to swf or Word doc.
    Best,
    Danny

    Hi Danny
    Two things:
    First, please submit this as a bug to Adobe using the Wish Form/Bug Reporting Form (link is in my sig)
    I say this because Adobe needs to be aware of this issue. And it relates directly to my second thing below.
    Secondly, I've seen others report missing fonts and such that were present in Captivate 4 but not in Captivate 5. To date, I don't recall seeing anyone from adobe answer any of these threads with a reason or a solution. So I'm hopeful that by all affected reporting this as a bug, someone will finally hear back from Adobe on the issue. If that happens, I'm also hopeful that one of these threads will be updated to advise why this is happening.
    Cheers... Rick
    Helpful and Handy Links
    Begin learning Captivate 5 moments from now! $29.95
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcererStone Blog
    Captivate eBooks

  • Why are some font styles not available in the Typewriter function?

    I would like to use Arial Narrow Bold, however it is not listed. I do have this font style in C:\Window\Fonts but it does not show up when I use they typewriter function. I am able to use this font style in Adobe when in the forms field. Is there a way to update the fonts available for the Typewriter?
    Thanks for any advice!

    I don't have a good answer other than the typewriter functionality was for basic typing, not for fancy topography work. For the latter, you should go back to the original document and do it with a tool designed for that purpose.

  • Web browser is not displaying the right font style which I have chosen in Dream weaver

    Hello frnds,
    I am new to Dream weaver, I dont know much about dream weaver, I am just designing one  for my personal use,
    I have a problem with font.
    I was downloading nice font style from website and I was using that in dream weaver, When I open the browser on the same computer where I have dreamweaver on, it is fine but when I try to open it with a different computer, I cant see my style font, instead of that I can see a different font, like a standard, or default font..
    Some one please help me,,,

    That is because the custom 'nice' font you're downloading to your computer is not available on other computers.
    To overcome this problem, you should embed your font file as a 'Web Font' in your CSS.
    You can use 'Google Webfonts API' to choose from one of many available fonts you can use through Google's CDN. Here's the link: http://www.google.com/webfonts
    You have instructions on how to embed this to your webpage once you visit the URL mentioned above.
    If you want to use your own Custom Font file, there may be a few limitations. You should ensure you are not violating a copyright by using a custom font on your website. Fonts have licenses too just like softwares. Some fonts can be used on the web. Others cant. You should read your font license document to find out if you can use the font on the web. Dont take this lightly. You may be getting yourself in big trouble if the font developer finds out you're using their font on your site without licensing them.
    Once you're sure you're not going to be violating a copyright, visit http://www.fontsquirrel.com/fontface/generator and upload your 'nice' custom font there. Fontsquirrel will generate a 'webfont file' for this font and give it to you that you can download. Font squirrel will also give you instructions on how to use/ embed this code into your website for custom fonts to be visible.
    Trust this helps.

  • Why can't I change my font style, and please don't give me a apple approved generic answer, please give me a reasonable answer as to why, not just because we designed it that way.

    Why can't I change my font style, and please don't give me a apple approved generic answer, please give me a reasonable answer as to why, not just because we designed it that way.i see that we have a choice here but why not in Email

    This is a forum for users to help other users, and there is no Apple presence
    here. Leave your comments at http://www.apple.com/feedback, but do not
    expect a response. Apple does not comment on its internal decisions.
    Check the AppStore to see if there is an alternative mail app that allows what
    you want.

  • How to use different font styles in the same boolean text?

    Hi all,
    As reported here http://digital.ni.com/public.nsf/allkb/6BD344ACA4DEE20A8625692700737E16, it is possible to change font color, size or other font properties of a subtext in a string indicator. This can be applied to a caption too.
    I'd like to apply this properties to a boolean text but it does not work. The boolean control has the Text.selectionStart and End property node but it does not appear to function.
    Can you help me?
    Thanks all

    This is a bug in the development environment (I think it showed up around LV8).
    There's a workaround, but it seems to work intermittently: Place some floating text on your front panel, then edit it's font styles.  Select and copy the floating text.  Select the boolean text (double click on it).  Paste.

  • Font style issue with exporting report in Crystal Reports 2008

    Hi,
    I got stuck on the below issue for a while. Please can anyone help on this?
    When I designed and executed a report in Crystal Reports 2008 on my local PC, the font style and size used in charts were exactly what I was expecting.
    However, after I exported the report to our BusinessObjects CMC and displayed it in InfoView, the font style and size in charts looked quite different from what they were in CrystalReports.
    Any ideas of how to fix this issue?
    Thanks!
    BAI

    Hi Nanda Kishore,
    This is because you do not have proper rights on Business View Manager.  Whenever you create a dynamic parameter in crystal and try to save the report on BO, it creates a Business view automatically.  Now in your case, it is unable to create a business view due to insufficient rights.
    Go in Business View Manager u2013 Repository exploreru2014You will find Dynamic Cascading Prompts folderu2014Right click on that and go in rights and add your user information and give full rights.
    Also make sure that your BO and CR designer on same version and patch level.
    Thanks,
    Sastry

  • Can I set iWeb to automatically use my font/style/size?

    Is there a way to get iWeb to automatically set the font, style and size that I want to use in my iWebpage? I want to use Optima. I went to the iWeb preferences menu but it does not mention fonts.
    Last night I had to first delete all the examples in the iWebpage templates and then, thru the Fonts window, I had to click onto Optima, and then Regular, and then the size. I kept thinking about how lovely it would be if I were able to set some preferences from a different source and have the program automatically do overwrites in Optima.
    — Lorna in Southern California

    iWeb doesn't remember your default choice like that
    unfortunately. Are you finding that you use the same
    template pages though? If so, you can just
    preconfigure one with your choice of fonts and text
    sizes. Then just keep it blank and use it as your
    "template" by 1) removing it from being displayed in
    the navigation menu and 2) by duplicating the page
    (select it in the organizer and right-click or
    control-click to select "duplicate").
    It's probably easier to just make the changes when
    you want.
    James, thanks, and hi. I will end up using the Photo Album and the Welcome templates the most. The Welcome templates I will use as top level theme hyperlinks to all of the examples of said theme.
    iWeb is a lot of fun.
    — Lorna in Southern California

Maybe you are looking for

  • Can't install OSX on iMac DV 400

    I have a Blueberry iMac DV 400 with 512MB/10GB and a clean install of 9.1. The hard drive was formatted journaled with Disk Utility from the 10.3 install CD. I've tried installing 10.3, 10.3.5, and 10.2 with no luck. When trying to install 10.3, I ge

  • How do I open muliple raw files in ACR hosted by Photoshop?

    Hi, This one is annoying the hell out of me.  I used to highlight multiple raw files in Bridge and just press Enter (being the equivalent to File -> Open) and the images would all open together in one ACR interface with the filmstrip down the side. 

  • Archiving files sent by Receiver FTP Adapter ?

    Hello, we search for a solution to archive a file, which was sent by a receiver File/FTP Adapter (via FTP) to a ftp server. in an other directory on the FTP server. (Similar to the standard function of the sender File/FTP Adapter) Any Ideas ? A hint

  • AUC related conceptual problems?

    Hi, I have some question in my mind: Que: We have asset classes with Investment measure checked but system can't let us make the Asset master if we want to. why? Que: How do we collect the cost as investment measure, how do we convert it to AUC and h

  • Keyboard and mouse (connect to keyboard) no respone?

    sometime the keyboard and mouse doesn't respone after get back from sleep. does anyone encounter similar problem?