Ask a Question related to Macromedia Flex General Discussion, Design and Development.
-
FSBmipt #1
Flex 2.0 Graphical skins
I want set graphical skin for Flex2.0 components (ComboBox for Ex.). The way I
do it:
But upSkin don't work properly when width attribut is changed, upSkin overpals
textField in downArrowButton (ComboBox selected label). It's seems changes in
height parameter unlike width working good.
Other skins look like work good.
Please, could you check this mysterious behaviour ?
yours sincerely, Philip
Code source:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
xmlns:ui='classes.ui.*'>
<mx:Style>
ComboBox {
upSkin: Embed("CBSkins/up.png");
overSkin: Embed("CBSkins/over.png");
downSkin: Embed("CBSkins/down.png");
disabledSkin: Embed("CBSkins/disabled.png");
upIcon: Embed("CBSkins/up.png");
}
</mx:Style>
<mx:Script>
<![CDATA[
[Bindable]
public var cbData: Array = [ {label:"F", data:1},
{label:"S", data:2}, {label:"B", data:3} ];
]]>
</mx:Script>
<mx:ComboBox width="100" dataProvider="{cbData}"/>
</mx:Application>
FSBmipt Guest
-
Looking for Flex Graphical Toolkits
Our company is looking for a graphical toolkit built on Flex that gives basic Node, port, connection creating and editing capabilities. In... -
Button Skins from falsh CS3 to flex
Each time i design a skin from a button model in flash, and export this Button_skin, when importing this artwork in flex i get that skin for all my... -
flex skins
Hi Does anyone know where I can get skins to change the look of the flex components to make them look like a proper windows program? -
Graphical Library
We are working on a tool to allow users to make notes on images and then merge the notes with the underlying png, jpeg....does anyone have a... -
Graphical Interfase
Is there a graphical interfase to administer Informix? I'm looking for something like MSSQL Enterprise Manager, it doesn't have to be as complete,...



Reply With Quote

