radistao
radistao

Reputation: 15504

Strikethrough text in Adobe Flex 4

How to make strikethrough text in Adobe Flex 4? I mean using native flex framework features: styles, libraries, classes. I use RichText component.

Please, do not answer:

Upvotes: 1

Views: 776

Answers (3)

user1749053
user1749053

Reputation: 101

<Graphic xmlns="http://ns.adobe.com/fxg/2008" version="2">    
    <RichText>
       <content>This text is <span fontWeight="bold">BOLD</span>,<br/> 
       this text is <span textDecoration="underline">UNDERLINED</span>,<br/>
       and this text is <span fontStyle="italic">ITALIC</span>.
       <p>This is a new paragraph.</p></content>
    </RichText>
</Graphic>

Upvotes: 0

Stan Reshetnyk
Stan Reshetnyk

Reputation: 2036

Adobe Text Layout Framework can do so.

Usage

Upvotes: 1

Related Questions