Tag Archive for 'tabnavigator'

14
Dec

Changing the padding between the tabs and content in a Flex TabNavigator control

The following example shows how you can adjust the amount of padding that appears between the tabs and the content of a TabNavigator control in Flex by setting the paddingTop style.

Full code after the jump.

Continue reading ‘Changing the padding between the tabs and content in a Flex TabNavigator control’

26
Sep

Styling the Flex TabNavigator control

The following example shows how you can style the TabNavigator control in Flex using the tabStyleName, firstTabStyleName, lastTabStyleName, and selectedTabTextStyleName styles.

Full code after the jump.

Continue reading ‘Styling the Flex TabNavigator control’

25
Sep

Using the TabNavigator control’s tabOffset style in Flex 3

The following example shows how you can control the horizontal offset of the tabs in a TabNavigator control by setting the tabOffset style.

Full code after the jump.

Continue reading ‘Using the TabNavigator control’s tabOffset style in Flex 3′

09
Sep

Changing tab alignment within a Flex TabNavigator container

The following example shows how you can change the horizontal alignment of tabs within a TabNavigator container so that the tabs are left, center, or right aligned within the container.

Full code after the jump.

Continue reading ‘Changing tab alignment within a Flex TabNavigator container’

16
Aug

Adding icons to a Flex TabNavigator control

I was trying to figure out how to add icons to a TabNavigator control today and ended up making this. The trick is that you actually add the icon on the TabNavigator control’s child containers and not on the TabNavigator itself. The example also has three tabs which each look at a different filtered view of an XML document (filtered using E4X).

Full code after the jump.

Continue reading ‘Adding icons to a Flex TabNavigator control’

06
Aug

Modules and singleton manager classes

This is a bit more of a “gotcha” than a tip, but it is something I’ve run into twice in the past week or so. When working with application domains and singletons (such as the DragManager or PopUpManager). I’ve been playing with modules the past couple days and ran into an issue when trying to drag items from a DataGrid in one module to a DataGrid in the second module. When trying to select an item in one of the data grids, I’d get strange run-time errors. The solution? Create a reference in my main application to a dummy DragManager or PopUpManager instance.

Hopefully this will save somebody a little bit of a headache in the future.

Full code after the jump.

Continue reading ‘Modules and singleton manager classes’