首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 媒体动画 > flex >

[转]flex toolTip式样设置

2012-11-03 
[转]flex toolTip样式设置http://nianshi.iteye.com/blog/815995需要3个文件。一个是样式类,一个样式文件,

[转]flex toolTip样式设置
http://nianshi.iteye.com/blog/815995
需要3个文件。一个是样式类,一个样式文件,一个是mxml文件。

●MyToolTip.as
package{
import mx.core.UITextField;
import mx.skins.halo.ToolTipBorder;
import mx.controls.ToolTip;
public class MyToolTip extends ToolTipBorder {
 
 
  override protected function updateDisplayList(unscaledWidth:Number,
   unscaledHeight:Number):void{
   
    var toolTip:ToolTip = (this.parent as ToolTip);
    var textField:UITextField = toolTip.getChildAt(1) as UITextField;
    textField.htmlText = textField.text;
   
   
    var calHeight:Number = textField.height;
    calHeight += textField.y*2;
    calHeight += textField.getStyle("paddingTop");
    calHeight += textField.getStyle("paddingBottom");
   
   
    var calWidth:Number = textField.textWidth;
    calWidth += textField.x*2;
    calWidth += textField.getStyle("paddingLeft");
    calWidth += textField.getStyle("paddingRight");
   
    super.updateDisplayList(calWidth, calHeight);
   }
}
}

●style.css
ToolTip{
    font-family:            verdana;
    font-size:              14px;
    color:                  #000000;
    background-color:       #FF00FF;
    background-alpha:       0.85;
    cornerRadius:           10;
    borderSkin:             ClassReference("MyToolTip");
}

●toolTipDemo.mxml
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx=" http://www.adobe.com/2006/mxml " layout="absolute" width="640" height="477">
        <mx:Script>
    <![CDATA[
        [Bindable]
        private var myToolTipText:String = "<b>This is a bold toolTip</b>" ;
    ]]>
</mx:Script>
<mx:Style source="style.css"/>
    <mx:Button label="hover to get tooltip" toolTip="{myToolTipText}"
x="36" y="28"/>
</mx:Application>

热点排行