1

如何在 Adob​​e Flex 4 中制作删除线文本?我的意思是使用原生 flex 框架特性:样式、库、类。我使用RichText组件。

请不要回答:

  • 画线
  • 加下划线并更改基线
4

3 回答 3

1

Adobe Text Layout Framework can do so.

Usage

于 2012-02-29T16:44:08.153 回答
1

lineThrough,如: http ://help.adobe.com/en_US/flex/using/WS4C9DCBEF-6671-47e9-BBC1-F2676529A30A.html

于 2012-02-29T16:37:56.897 回答
0
<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>
于 2012-11-12T12:02:09.987 回答