Posts Tagged “css”

I have been seeing this warning ever since i switched over to FB3. The moment FB3 went live, i did not have the luxury of doing a proper migration. Everything was pretty much in FB2 version and as long as it worked, nothing else matters. 

But yesterday, seeing 600+ warnings was an eyesore compared to this:

What i have done is to remove all these from all my components and leave all the stylesheets declarations at the Application mxml.

<mx:Style source=”/location/to/some/Style.css”/>

Found the solution from here.

Comments Comments

The default button skin “mx.skins.halo.ButtonSkin” has some limitations. But Flexlib saved me with their EnhanceButtonSkin.

Button {
upSkin:ClassReference(’flexlib.skins.EnhancedButtonSkin’);
overSkin:ClassReference(’flexlib.skins.EnhancedButtonSkin’);
downSkin:ClassReference(’flexlib.skins.EnhancedButtonSkin’);
disabledSkin:ClassReference(’flexlib.skins.EnhancedButtonSkin’);
selectedUpSkin:ClassReference(’flexlib.skins.EnhancedButtonSkin’);
selectedOverSkin:ClassReference(’flexlib.skins.EnhancedButtonSkin’);
selectedDownSkin:ClassReference(’flexlib.skins.EnhancedButtonSkin’);
selectedDisabledSkin:ClassReference(’flexlib.skins.EnhancedButtonSkin’);
}

Comments Comments