actionscript 3 - Font size of title property of TitleWindow component in Flex -
how can set font size of title property (header) in titlewindow component?
if use fontsize property, sets font size components in titlewindow, not want. want set title.
i'm using flex 3
thank you
set title-style-name css attribute, , assign font size in block uses css class name.
titlewindow { title-style-name: "mytitle"; } .mytitle { font-size: 16; }
Comments
Post a Comment