0

我有一个风格:

.rating{
      fontSize:24;
}

和一个 s|Graphic 类型的自定义 MXML 组件。如何从 actionscript 中的组件获取 fontSize 值?

我试过:

public var fff:String = getStyle("fontSize"); //undefined (runtime error)
public var fff2:String = this.getStyle("fontSize"); // undefined (compile time error)
4

1 回答 1

0

查看此页面以获取更多信息。

http://livedocs.adobe.com/flex/3/html/help.html?content=styles_08.html

somevar = this.getStyle("fontSize");添加初始化函数

于 2013-03-17T13:33:28.310 回答