Hi there,
I'm using Flash Builder 4.7 / Flex to build a Mobile Tabbed App.
How do I change the font size of the title label in the ActionBar for a Mobile TabbedViewNavigatorApplication?
I know how to do it in CSS / with Styles:
However how do I do it in Actionscript?Code:<fx:Style> @namespace s "library://ns.adobe.com/flex/spark"; s|ActionBar #titleDisplay { fontSize:20; } </fx:Style>
I can change the title of the ActionBar label using actionscript like so:
But can't figure out how to change the fontSize in Actionscript!!! Please help!Code:navigator.actionBar.title="New Title"
I've triedbut can't find anything to append it to that works!!!Code:setStyle("fontSize",20)