views:

71

answers:

1

Hi,

I need to skin the titlebar of an alert. I can't find a way to get it working ... Here's my code :

mx|Alert
        {
        color: black;
        fontFamily: frutigerDG;
        fontSize: 18;
        titleStyleName : "title";
        }
    .title
    {
        color: black;
        fontFamily:frutigerDG;
        fontsize:12;
    }

I was pretty sure this was working but i guess i missed something ... any hint please

TIA

+2  A: 

As noted in the comments above, the problem is that "fontsize" is spelled with a lower-case "s", rather than camel-case like so: "fontSize".

Wade Mueller
+1, for OP can't vote yet :)
Amarghosh
Thanks Amarghosh! :)
Wade Mueller