Font style usage for Message Areas

Hi Gurus,
I've a small requirement wherein, I need to make the messages being displayed under Message Area in Bold/Italic/Underline.
Kindly requested to gimme the solution for the same.
Regards,
-Syed.

Hi,
If you have used any of these mehods then automatically the underline will be there for the messages.
IF_WD_MESSAGE_MANAGER->
REPORT_ATTRIBUTE_MESSAGE,
REPORT_ELEMENT_MESSAGE
If message are related/liked  to any attribute or element then underline will be there that links to the message.
Regards,
Lekha.

Similar Messages

  • I have not been able to access my overall usage for messaging nor calls for two days - is this fix in process?

    I have not been able to access my overall usage for messaging nor calls for two days - is this fix in process?

    I'm not sure, but I also have not been able to log into MyVerizon for a day or two. May be related.

  • 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

  • Request focus for message area

    Dear All,
    As my screen is long hence if an error comes we will require to scroll down so I have added a message area UI element and in do modify method of the view i have request focus to my message area but it is not working.  Below is the code which I have written:
    try{
              IWDMessageArea msgarea=(MessageArea)view.getElement("MessageArea");
            msgarea.requestFocus();
            catch(Exception e)
    Is there any other property or changes need to be made.
    Thankyou.
    Regards,
    Santosh

    Hi,
    In would say, create an input field at the top left corner of the screen. Set its width to zero and bind it to a context attribute say Va_ShowMesg of type string. Now insert a MessageArea UI element just below the inputfield to display all the erro message at the top left.
    Now if you request focus for the input field using the following code, the focus will automatically come to the Message Area as well.
    wdThis.wdGetAPI().requestFocus(wdContext.currentContextElement(),wdContext.getNodeInfo().getAttribute(
              wdContext.currentContextElement().VA__SHOW_MESG));
    You can call this code whenever you need to display message to user in the message area and shift focus of the screen to the message displayed.
    Regards,
    Tushar Sinha

  • Styles applied for PrintDataGrid are not getting affected.

    Hi, I have used printDataGrid for printing my data. I have applied css style for the print datagrid. style applied for this printDataGrid is given below.
            mx|PrintDataGrid.printing {
                headerColors: #D8DCDD, #F1F2F2;
                color: #000000;   
                alternatingItemColors: #D2D3D4, #F1F2F2;
    Use of mx:PrintDataGrid  in my application:
    <mx:PrintDataGrid id="ddDataGrid" width="99%" height="100%" styleName="printing" sizeToPage="true"/>
    But in the print document not able get alternatingItemColors for the printed datagrid.

    Hi Bernd Alheit,
              Thank you for your reply.
              I have wrongly selected this Form Location and I have realized it after posting it.

  • Recommended font style settings for subtitles?

    I have various texts on top of some of the videos I'm making.
    I have been using a yellow Verdana font with a Red Outline and a Black Shadow.
    It seems to be taking ages and ages to export the file, which is basically a photo slideshow with extensive subtitling. Is Motion very slow at outputting text? Is it over-doing it, putting on both outline and shadow on to everything?

    If you are outputting via FCP, you might be better doing the subtiltes with Digital Heaven's subtitling plugin.
    An alternative would be to make a template in motion and then use that in FCP to enter the text in.
    Peter

  • Display messages specific to a message area

    Hi All,
    I have an application which has 2 message areas in the same view.
    That view also has 2 buttons. Now the requirement is to display a message in the message area specific to a button.
    For Ex : If i press button 1 Msg area 1 should display the message, same for button 2.
    Is there any way we can achieve this ?
    Best Regards, Pramod

    Hi,
    If you try to set visbile property of message areas to visible, not visible based on button click then this can be achieved.
    If message area 1 is set to invisible if you click on button 2 then messages will automaticlly appar in area 2
    same for message area 2.
    Regards
    Manas Dua

  • Error message: (translated from Dutch) "Cannot find corresponding style page for media query"

    Error message: (translated from Dutch) "Cannot find corresponding style page for media query"(see image)
    I cannot find what is wrong with this page: steun sesem
    This message does not appear on the other pages of this site..
    What do I wrong??
    Thanks in advance!
    Martien

    There are two things that are probably causing this error.
    Line 22 in your HTML looks like this:
    </style><!--[if lt IE 9]>
    You need to remove the closing style tag:
    </style><!--[if lt IE 9]>
    Also in sesem.css, there's a missing closing brace on line 486:
    .footer {
      font-size: 1.1em;
      line-height: 1.4em;
      color: #878787;
      text-align: center;
    }  // <---- Missing closing brace
    /* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */
    There are other problems in your CSS, but fixing those two items should put you back on the right track.

  • Default font size for message buttons

    I am using Office/Powerpoint 2012 and Adobe Presenter 8.
    When a quiz question is created all of the elements use formatting from the theme, default shape, default text box etc. The appearance tab formatting can only be applied AFTER the quiz has been created and these settings are ignored when the quiz question is created.
    I can manage all of the formats using power point formatting EXCEPT for the font size on the message buttons! It is always sized to 18pt. I am forced to navigate back to the appearance tab and "apply formatting to all existing quizzes".
    It's not all that time consuming but it is an extra step that could be eliminated if i could only find how to set this default font size!!
    The font size i am trying to default to is Calibri 16.
    The font that is applied to new message buttons is Calibri 18.
    Any idea how this can be accomplished?
    p.s. Is it also possible to change the position of the buttons?

    Hi,
    You need to change the Quiz message font using the the Appearance tab in Quiz. There is no other way.
    Also , you may change both the orientation as well as the position of buttons using the Appearance tab in Quiz.
    Goto Appearance->button placement->Orientation
    Appearance->button placement->Position on slide
    Thanks,
    Alpi

  • Unable to search for font style Italic

    In InDesign's Find/Change dialog, I click on the Find Format magnifying glass to open the Find Format Settings dialog. I click on the Basic Character Formats tab, and in the Font Style field I select 'Italic' from the dropdown menu. When I release the mouse button, the field displays 'Regular', not 'Italic'. If I key the word 'Italic' in the field, the same thing happens. The only way I've been able to get around this is to specify the Font Family as well, but I want to search for Italic Font Style regardless of the Font Family (there are several in the document). I haven't specified any other search details in either the Find/Change dialog or the Find Format Settings dialog. I'm currently using CS5.5 but I've experienced this problem dozens of times in both CS4 and CS5.5. I have a vague recollection of occasionally being able to do it, but if so it's been very rare.
    Is there a reason why this is happening? Is there any way to search for Italic Font Style regardless of Font Family?

    I'm on Mac OS 10.6.8.
    Thanks for the script, it worked fine, but on top of that it inadvertently revealed what is going on with this issue.
    When I ran the script, the Find Format field in the Find/Change dialog showed '+Italic'. However, when I went into the Find Format Settings dialog, the Font Style field said 'Regular'. When I exited the Find Format Settings dialog, the Find Format field still said '+Italic'. The Find process worked fine, that is, it found text formatted as Italic.
    I then went back to what I was originally doing, without using the script, and exactly the same thing happened. The two fields didn't match up, but the Find operation worked fine.
    I'm currently working in CS5.5, but as I recently purchased CS6, I tried it in that program and exactly the same thing happened. And just to confirm my recollection, I tried it in CS4 and it happened there too.
    I realise also why it has occasionally worked OK. Sometimes I would have entered Italic in the Font Style field and immediately clicked OK to exit the Find Format Settings dialog, and I wouldn't have noticed anything wrong. But once I got used to the problem, I started to make a habit of tabbing out of the Font Style field 'just to make sure'. I would have seen it revert to Regular, and I would have just given up and (unnecessarily) worked my way through the font families one by one.
    Anyway, now that I know what's going on, it's not a problem at all, but it's odd that it's persisted through at least three versions of InDesign. Thanks, Jongware, for your help.
    Does this happen on Windows? Has anyone else on a Mac experienced this strange behaviour?

  • 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

  • Is there anyway to find a new font on Pages for iPad? The letters are hard like a rock when you use foreign languages like Thai. The fonts on device do not support foreign language.

    Is there anyway to find a new font on Pages for iPad? The letters are hard like a rock when you use foreign languages like Thai. The fonts on device do not support foreign language.

    varat_pond wrote:
    Anyone in Apple if you see this message
    These are user to user help forums.  To tell Apple you want more fonts for Thai, go here:
    http://www.apple.com/feedback/ipad.html
    But I suspect this is likely one of those things for which you will always have to use a full computer rather than a iPad.

  • Inconsistent font style behavior on Edge Reflow CC (Preview) for Windows

    Adobe Edge Reflow CC Preview for Windows has wildly inconsistent behavior regarding font styles. Why is there no button for bold in the UI? Why do I have to type "bold" into the Weighting dialog text box to have my styled text render as such in Chrome? Why does text inside a box/div styled with the italics button render in Reflow but not in Chrome?

    Hey there,
    The font weight can be changed here:
    With CSS there are both text values such as "bold" and numerical values from 100-900 usually. We gave you the ability to use either.
    If you are seeing issues with a font rendering set to italic in Reflow and not in previewing properly in Chrome, can you let me know the typeface you are using? I'd like to check it out as well.

  • Yosemite, messages, preferences are grayed out. It opens but the window for messages is blank.

    Yosemite, messages, preferences are grayed out. It opens but the window for messages is blank. Can't click on anything.

    Hi,
    You appear to have the wrong end of the stick as they say.
    Just starting your computer needs certain Fonts to be present to display the text you are likely to see.
    Most of those needed to do this are in the Hard Drive icon/System/Library/Fonts.
    Some apps require different Fonts  and in the case of Messages this is AppleGothic (all one word) and is found in Hard Drive/Library/Fonts.
    You would normally use the Apple App called Font Book to check these Fonts are working properly.
    Prior to the Yosemite version of Messages (still called Messages 8 like th Mavericks version) you could change the Font use in the actual Messages in the app.
    On a Character or word or Sentence basis there was the Format Menu.
    There was also a Pane in th Preferences called Messages that let you choice the Font, the colour of the text and the  colour of the balloons for Out going Messages and also Overriding the incoming ones.
    You can no longer do this as the Preferences Pane and the Format Menu have gone.
    7:20 pm      Thursday; December 11, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • I've deleted all my emails and texts to make room for the 7.1 upgrade but my usage still says I'm using 641MB for mail and 364 MB for messages. Anyone know how to free up this memory? Thank you.

    I've deleted all my emails and texts to make room for the 7.1 upgrade but my usage still says I'm using 641MB for mail and 364 MB for messages. Anyone know how to free up this memory? I have a 16 GB model. Thank you.

    How much space is used by your Other? You may be able to reduce.
    How Do I Get Rid Of The “Other” Data Stored On My iPad Or iPhone?
    http://tinyurl.com/85w6xwn
    How to Remove “Other” Data from iPhone, iPad and iPod Touch
    http://www.igeeksblog.com/how-to-remove-other-data-from-iphone/
    With an iOS device, the “Other” space in iTunes is used to store things like documents, settings, caches, and a few other important items. If you sync lots of documents to apps like GoodReader, DropCopy, or anything else that reads external files, your storage use can skyrocket. With iOS 5/6/7, you can see exactly which applications are taking up the most space. Just head to Settings > General > Usage, and tap the button labeled Show All Apps. The storage section will show you the app and how much storage space it is taking up. Tap on the app name to get a description of the additional storage space being used by the app’s documents and data. You can remove the storage-hogging application and all of its data directly from this screen, or manually remove the data by opening the app. Some applications, especially those designed by Apple, will allow you to remove stored data by swiping from left to right on the item to reveal a Delete button.
    What is “Other” and What Can I Do About It?
    https://discussions.apple.com/docs/DOC-5142
    iPhone or iPad Ran Out of Storage Space? Here’s How to Make Space Available Quickly
    http://osxdaily.com/2012/06/02/iphone-ipad-ran-out-of-available-storage-space-ho w-to-fix-quick/
    6 Tips to Free Up Tons of Storage Space on iPad, iPhone, and iPod Touch
    http://osxdaily.com/2012/04/24/6-tips-free-up-storage-space-ipad-iphone-ipod-tou ch/
    Also,
    How to Clear Message/iMessage Cache on iPhone & iPad And Reclaim Lots of Free Space
    http://www.igeeksblog.com/how-to-clear-message-imessage-cache-on-iphone-ipad/
     Cheers, Tom

Maybe you are looking for

  • Iphone 5 no longer connecting to bluetooth in car?

    My Iphone 5 has been connected succesfully via bluetooth to my car for the past 5 months (Ford Fiesta).  Yesterday I went to use it and it wont connect, I powered off the phone, turned bluetooth on/off still not working. I debonded all phones from th

  • UCM 11.1.1.4 installer required

    UCM 11.1.1.4 installer is not available on oracle links. Can anyone tell me from where can i download this version. Thanks Regards, V.I.D Team Edited by: VID on Mar 29, 2012 5:22 AM

  • WD ABAP: FileDialog in WebDynpro?

    Hi there, i would like to export implement an export function in my webdynpro(ABAP) application. I convert the content of a table into the csv-format and would like to save this file, e. g. on my desktop. Is there anything like a file dialog where i

  • No Music drop down on store page

    I live in Cape Town and just downloaded the iTunes software for the first time on my pc but there is no "music" drop down at the top of the store page just Home, Appstore, Podcasts and Itunes U, thereforeI have no way of finding the downloadable sing

  • Where do MP3s go?

    I can save them to my hard drive, desk top, itunes, no problem, but when you mark a destination and you burn them twice, it says that a file already exists. Where are they stored?