flex里的tooltip的字体大小

当在flex2的时代,更改tooltip字体大小,很容易,自定义css,换行也可以

如果你想要在toolTip中换行显示文本,则:

   在ActionScript 中, 您使用 /n 转义的新行字符。

   在 MXML 标签中, 您使用  

   如:toolTip="Child components without ToolTips will inherit this."

   您还可以通过使用层叠样式表 (CSS) 语法或 mx.styles.StyleManager 类更改工具提示文本和工具提示框的外观。对工具提示样式的更改适用于当前应用程序中的所有工具提示。

  ToolTip {
      fontFamily: "Arial";
      fontSize: 19; 
      fontStyle: "italic"; 
     color: #FFFFFF; 
     backgroundColor: #33CC99;
}
我的flex2有个警告,我就把ToolTip 写成mx.controls.ToolTip

到了flex3,ToolTip mx.controls.ToolTip都不行了
需要这样 StyleManager.getStyleDeclaration("ToolTip").setStyle("fontSize",12);

你可能感兴趣的:(flex,actionscript,components,工具,css)