I tried to customize the combobox ( AS3 ), and everything was working fine by using cbo.setStyle( "embedFonts" ) and cbo.setStyle( "textFormat" ) while testing the movie. However, when I published the SWF, the styles were no longer working.
It seems like setStyle doesn't really work properly for comboboxes for some reason. The solution was to apply the setStyle to the textField inside the combobox, and not to the combobox itself.
For example, this doesn't work:
cbo.setStyle( "embedFonts", true );
cbo.setStyle( "textFormat", tf );
but this works:
cbo.textField.setStyle( "embedFonts", true );
cbo.textField.setStyle( "textFormat", tf );
There's some pretty cool new software for fantasy football this year. It is designed for fantasy football draft parties (for up to 20 teams) to select their players via either a snake draft, or an auction draft.
The draft software is called Prime Time Draft, and it was developed by folks at where I work. It is designed for Windows, and it really shines when you hook it up to a big TV.
You can find it by clicking the link below:
Fantasy Football Draft Software for 2011
f73dc187-7316-4034-82b3-53f17d97b895|0|.0|27604f05-86ad-47ef-9e05-950bb762570c
Tags: