Help needed in adding effects of certain HTML tags in Flex spark Richtext

I want to apply the effects of the following HTML tags/ attributes, in my HTML text rendered in Flex Spark Richtext Component.
Superscript - <sup>
Subscript - <sub>
Blockquotes - <blockquotes>
Ordered Lists - <ol><li>
Unordered List - <ul><li>
Horizontal Rule - <hr>
Direction Attribute for <p> - <p dir="rtl">Hello</p>
Background Color for <font>
I have observed that the above tags have no effect in RichText. Is this a limitation?
Any solutions, tweaks and tricks will be appreciated...
Thanks,
Mangirish

check this out . this should be able to answer you question.
http://livedocs.adobe.com/flex/3/html/help.html?content=textcontrols_04.html
Miguel

Similar Messages

  • Help needed in formating the text using HTML tags in reports 10g

    Hi all,
    I have a situation here. We have an application which prints out Reports with a few lines of text in it. This text is entered by the user through our forms application in a field. That particular text is stored in each row of a particular long column. Here I want to modify the text, while printing, on the report like underline, bold, italics etc,.
    As of now I am using the HTML tags, in the forms, to do so as most the times the text in the report is same.
    I want to know if this can be done by the user itself while he is entering the data in the field through the form.
    Thanks in advance . I will explain you more clearly if you need.

    Hi,
    The code did work. But I am not sucessfully able to display the values entered in 2nd page in the 3rd page.Please find the code below:
    <html>
    <head>
    <script language="LiveScript">
    function WinOpen() {
    if (document.form1.cap.value == "")
    alert("Enter value in text box");
    return;
    msg=open("","DisplayWindow","toolbar=no,directories=no,menubar=no, scrollbars=yes");
    msg.document.write("<HTML><HEAD><TITLE>Yo!</TITLE></HEAD>");
    msg.document.write("<CENTER><h1><B>This is really cool!</B></h1></CENTER>");
    msg.document.write('<BODY><form name="form2">');
    for(var i =0; i < document.form1.cap.value; i++)
    msg.document.write("<INPUT type=text name=tbAlphaNumeric>");
    msg.document.write("<br>");
    msg.document.write('<input type="button" name="Button2" value="Steal" onClick="javascript:window.opener.WinShow();">');
    msg.document.write('</form></BODY></HTML>');
    function WinShow() {
    msg=open("","DisplayWindow","toolbar=no,directories=no,menubar=no, scrollbars=yes");
    msg.document.write("<HTML><HEAD><TITLE>Great!</TITLE></HEAD>");
    msg.document.write("<CENTER><h1><B>Display of second page text elements!</B></h1></CENTER>");
    msg.document.write('<BODY><form name="form3">');
    for(var j =0; j < document.form1.cap.value; j++)
    msg.document.write(document.form2.tbAlphaNumeric[j].value);
    msg.document.write("<br>");
    msg.document.write('</form></BODY></HTML>');
    </script>
    </head>
    <body>
    <form name="form1">
    <INPUT type= "text" name=cap>
    <input type="button" name="Button1" value="Push me" onClick="WinOpen()">
    </form>
    </body>
    </html>

  • Help needed  while exporting crystal reports to HTML file format using java

    Help needed  while exporting crystal reports to HTML file format using java api(not using crystalviewer).i want to download the
    html file of the report
    thanks

    the ReportExportFormat class does not have HTML format, it has got to be XML. Export to HTML is available from CR Designer only.
    Edited by: Aasavari Bhave on Jan 24, 2012 11:37 AM

  • Suppressing certain HTML tags before setting text to JEditorPane

    Sir,
    I am setting the text(html format) for JEditorPane using the setText(String) method. But I need to suppress all the <IMG> tags that are present in this text before setting it to JEditorPane. Is there any way in which I can write my extended HTMLEditorKit wherein I can check for specific HTML.Tag and prevent it from getting added to the document.
    Can you please help me out with some example.
    Regards,
    Alex

    Instead of trying to extend the HTMLEditorKit, you don't you add a normal method to scan the text for the <IMG> tag and get rid of it yourself before putting it in the JEditorPane using the setText() method. You can try something like this:
    public String removeImgTag(String text) {
       String tmp=text.toLowerCase();
       int i=tmp.indexOf("<img");
       if (i<0) return text;
       int j=tmp.substring(i).indexOf(">");
       return tmp.substring(0,i-1)+tmp.substring(i+j);
    };o)
    V.V.

  • Arabic characters appear as empty squares when using certain HTML tags or font styles

    Only when HW acceleration is on. Arabic characters appear as empty squares when using "italic" or "oblique" font styles or when using &lt;i&gt; or &lt;em&gt; html tags.
    Try this code to replicate the problem
    <pre>
    &lt;p&gt;مشكلة ظهور المربعات الخالية بدل الحروف&lt;/p&gt;
    &lt;p style="font-style: italic;">Italic مشكلة ظهور المربعات الخالية بدل الحروف&lt;/p&gt;
    &lt;p style="font-style: oblique;">Oblique مشكلة ظهور المربعات الخالية بدل الحروف&lt;/p&gt;
    &lt;i&gt;i tag مشكلة ظهور المربعات الخالية بدل الحروف</i> &lt;br&gt; &lt;br&gt;
    &lt;em&gt;em tag مشكلة ظهور المربعات الخالية بدل الحروف &lt;/em&gt;
    </pre>

    After lots of research, I found the problem. The boxes (squares) show up whenever there is a font in the webpage that does not have Arabic within its Unicode range such as Times New Roman Italic or Oblique. Normally, Firefox will pick another font to display the characters but now, a newly introduced feature is interfering.
    To fix the problem without turning off hardware acceleration.
    Go to about:config
    locate: gfx.font_rendering.directwrite.use_gdi_table_loading
    which is True by default in FF4.0 Beta 10, and change it to False.
    This is a bug that has to be fixed.

  • Setting style for html tags in flex

    I need to add display:inline style property to <p>tag in flex CSS. Is there anyway to do like the below in flex
    p{ display:inline}
    Thanks in advance.

    Hi rizmysl,
    You cannot directly set the backgroundColor to a Label control however you can do it by getting a reference to the underlying TextField control inside the Label, for that you need to write some actionscript.
    Check out the below code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="init()">
         <mx:Style>
              .texfield{ width:300; height:30; background-color:red; fontWeight:bold;}
         </mx:Style>
         <mx:Script>
          <![CDATA[
           import mx.core.IUITextField;
           private function init():void
            //Getting reference to the underlying TextFiled control inside Label
            var tf:IUITextField = (myTextField.mx_internal::getTextField());
            tf.background = true;
            tf.backgroundColor = 0XFF0000;
            tf.width = 300;
            tf.height = 30;
          ]]>
         </mx:Script>
         <mx:Label x="25" y="113" text="My Sample Text Goes Here ...."  styleName="texfield" id="myTextField" />
    </mx:Application>
    Thanks,
    Bhasker Chari    

  • Auto Addition of HTML TAG by Flex

    Hi,
    I just look at my TextArea.htmlText and see that Flex always
    put some HTML Tag in it like <TEXTFORMAT LEADING="2"><P
    ALIGN="LEFT"> in addition to mine... Is there any way to get rid
    off that ?
    Thanks :)

    anyone got some clues ?

  • Help needed for as3 dropdown menu and html

    First of all hello!  I have to create a html website for a company. The design i've made is in photoshop ....and i have to create a dropdown menu. The first question is : Can i create the dropdown menu in flash without having to use html frames? Can i link one of the buttons of the menu in a html page so that it loads in the same browser window another html page (if so .... with what function?)?  Please ... i need to know ... because i simply prefer to implement it in flash rather then html. And the second big question is : Can the stage in flash be transparent? Because if i make the menu in it, it will be impossible to match any dimensions of the stage .... and i would like to embed it into a html page...if possible without the stage color >..... Thanks in advance!!!!    Tudor

    For opening pages you want to look into using the navigateToURL() function.  The help documentation provides information abiout it an how to control the window aspect as well.
    To make the stage transparent is more of an html aspect than a Flash aspect, though you can set it up to publish that way.  The key is to set the wmode paraemter that is in the html embedding code to "transparent".  I am not sure if all browsers supports this feature, but I think more are willing to.

  • Help need in Adding External jar files.

    Hi all,
    Iam developing ADF application using JDEV 11.1.1.3.0.
    I need to move files from one directory to another so i have used external jar "commons-io-1.4.jar" file.
    i did this by going to the project properties -->Libraries and Classpath -->Add Library
    added the jat file.
    In java class i have used the function
    File.copyFileToDirectory(reQueueFile, TargetLocation,false);
    it was working fine when i tried in IntegratedWeblogic server but when i deploy in Standalone Weblogic server its not getting the jar file.
    Its throwing me the exception
    javax.el.ELException: java.lang.NoSuchMethodError: org/apache/commons/io/FileUtils.moveFileToDirectory(Ljava/io/File;Ljava/io/File;Z)V
    at com.sun.el.parser.AstValue.invoke(AstValue.java:161)
    at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:283)
    at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodExpression(UIXComponentBase.java:1303)
    Please let me know is there a way of adding the lib to the project.
    Regards,
    Suresh kumar.k

    First you should check that the library has the checkbox 'Deploy by default' is checked for your library.
    The you open the project properties of the view controller project, select Deployments, edit the deployment descriptor. Select the Node 'File Groups'->'WEB-INF/lib'->'Contributors'. this should give you a list of libraries your project uses. Check if your library has the checkbox checked (is selected fro deployment). If it's not checked, set it.
    This should include the library.
    Timo

  • Help needed on adding 2 new fields.

    Hi gurus,
    I have a existing data model which is from the flatfile to ods to cube. The new user requirement is for 2 new fields which would be based on a existing field that is already there in the data model. the change is going to be based on a existing field that is field A.
    The user have now provided with a new flatfile which is a lookup table, this flatfile this flatfile relates the existing field A with new fields Field B and C. the way in which the fields A,B and C are related are Field A is the lowest catagory in the hierarchy and field B is a sub catagory and Field C is the main catagory.
    i need to bring in these 2 new fields can out there help me out on how to handle this scenario. the lookuptable they have provided me is static and it is a flatfile table.
    FIELD A FIELD B FIELD C
        A                  A1            B1
        B                    A1           B1
        C                   A1            B1
        D                   A2            B1
        E                   A2            B1
        F                   A2            B1
       G                    A3            B2
       H                    A3             B2
    Points will be given.

    Hi,
    Relationship which you are pointing out is like parent-child.
    You can maintain field A as masterdata bearing with Field B & C
    as navigational attributes of it. Even it infoprovider you make it as Navigational.
    Hope this thought will hepl you solve your prob.
    Bobby

  • Help needed in After Effects

    Hey guys, I'm from Holland so my english isn't that good.
    I have a problem (Oh yes.) I have a background, for example(!) the left side of a bridge.
    I want to animate that my background moves to the left, so the right side of the bright is visible.
    I can do that, but now comes the problem. I have other layers, for example a road under the bridge with moving cars. How can i move the background and the other layers at the same time to the left? Without making it one layer.
    thanks for your help, kind regards, Fabian.
    Adobe After Effects.

    I will try your opties. I'll let you know if it worked for me.
    Ok, this works for me!
    To parent one layer to another, just click the dropdown box under where
    it says 'parent' in the composition window and select the layer you want
    it to follow.

  • HELP! Quickstart Help Needed! Any Effect Welcome!

    I have had FCE HD for 3 weeks and would now like to try some simple effects using LiveType.
    However, a cursory examination of the manual put me off completely!
    I would just like to try out some very simple yet spectacular effect which might encourage me to take another look.
    Could some kind soul give me some simple instructions for a stunning effect which would spur me into Reading the Manual!
    Ian.

    Thanks Uwe,
    It looks like a simple to understand set of instructions to get me going. The manual was just too intimidating. This looks great! I can actually understand it!
    I have also passed the hotlink on to another post that was asking for similar help - I hope you don't mind.
    I was joking when I asked for a stunning effect. All I wanted was something to show me how to actually start - and this seems to be it!
    Thanks again.
    Ian.

  • Advice Needed: Filtering/Adding effects to multiple tracks

    I'm writing a dance song, and at one point would like to apply a few filtering sweeps on selected drum tracks.
    Which is the best way to do it? Is it to bounce down the tracks into an audio file, then apply the effects onto that file by itself, or is it better to route the multiple tracks to an effects bus?
    I have been trying using a bus, but have found that as soon as I route the tracks to the bus, the is a change in the sound quality of the track (louder and sometimes slightly distorted), even without any plugins on the bus. Am I doing something wrong?
    Thanks.

    I have been trying using a bus, but have found that as soon as
    I route the tracks to the bus, the is a change in the sound quality
    of the track (louder and sometimes slightly distorted), even
    without any plugins on the bus. Am I doing something wrong?
    How are you routing to a bus? If you are just using sends, then what's happeing is that the individual channels are going to the master output, and also being sent to a bus that is also going to the master output - this everything sent to that bus will get louder.
    If you want to send a bunch of channels directly to a bus for insert processing, then change each channel's output to the bus, rather than the main output, so the individual channels only go to the mix via the bus, and not directly.
    Or are you doing something different to that?

  • Help needed in adding custom About box in built applicatio​n in LabVIEW 2009

    Hello,
    Can anyone please help me add custom About box in built application in LabVIEW 2009? I had successfully built my application in labview 8.6, 8.5 and 8.2 before to include custom About box. However, when I tried the same method in LabVIEW 2009, it only showed LabVIEW 2009 About box rather than my custom About box.
    Here is what I did:
    1) Wrote an "About Application.vi" in the built VI folder;
    2) Included this "About Application.vi" in the "Always Included" section of Source Files in Application Build;
    3) Built the application;
    4) Ran the built application, the About box showed only LabVIEW 2009 about (attached a picture).
    You can see that on the upper left corner of the picture, there is my custom icon.
    Your help is greatly appreciated,
    Cathy
    Solved!
    Go to Solution.
    Attachments:
    About Box.JPG ‏34 KB

    Here is the link to download LabVIEW 2009 f2 patch:
    http://digital.ni.com/public.nsf/websearch/C3F88F3​596A164AD86257647006FB022?OpenDocument
    Thanks for the help,

  • Help needed to mark or highlight certain columns in Data Modeler

    Hi there,
    We use the data modeler to present our data model to the security department to explain/prove for which columns we ran a data masking/anonymization function. I am looking for any kind of way to either highlight or change a set of columns across all tables. So far I could only identify the red dot for “not null” and the option to introduce a ADT/UDT like “ANONYMIZED” to show in the graphical representation what we have done. As we base our DM on empty tables for decent overviews including the PK/FK relationships we are quite flexible. Still the “misusage” of ”Not Null” or ADT/UDT columns does not go together with the required PK/FK’s. Does anyone know a way to mark or highlight certain columns automatically when importing a data dictionary? (Unfortunately RDBMS comments do not get included in any overview). Thanks a lot. Cheers Stefan

    Hi Philip, Thanks a lot for puting this enhancement request through.
    Just downloaded the latest Patch upgrading to v 3.1.2-704 and confirmed that this functionality is not available yet.
    Keeping your experience in mind what kind of expectation to you have for the approval and realization of your request?
    Most likely this will take a couple of month – right? Or is there a beta version of 3.2 already available we could use.
    Thanks a lot. Cheers Stefan

Maybe you are looking for

  • [Solved] SSH not working (ISP blocks my port 22)

    OK full story: I want to be able to connect to my home arch linux box from school. The setup there are winxp machines whit putty on my usb or the pc itself. I know that my school is not blocking any ports as my friend can connect to his linux box at

  • Table Control Issue

    Hi all,           I had a issue where in when I display some records in the table control, it is showing the records and the rest of the records are going into grey mode. For example, Iam getting 3 records into the table control.  From the fourth lin

  • Nokia Lumia 800 dropping Bluetooth connection to c...

    Hi First time on here so be gentle My 4 month old Lumia 800 pairs correctly with my new car - Hynudai New generation Santa Fe Premium SE and connects each time I start the car. But after anything from 1 to 3 minutes it drops the connection, remains u

  • In scripts i want to display the total puchage order amount in text format

    Hi to all, Here my requirement is to display puchage order number,date,amount for individual order and total purchage order amount in same window in decimal format and i want to display this purchage order total amount in text format in another windo

  • Cannot Initialize Sample Application in Hyperion Planning

    Hi, I am new to Essbase and Hyperion EPM System 11.1.1.1.0, and I am currently trying to test Planning functionality. I have installed and configured the EPM system, and when I run the EPM System Diagnostics, everything is Successful except Connectin