[flexcoders] Re: Slide down effect in Spark ComboBox/DropDownList

2010-05-28 Thread djamsheds
, djamsheds djams...@... wrote: I am trying to animate (slide down) the list that pops up when in the open state of the ComboBox or DropDownList in Spark. I am defining a custom Skin for that and I guess should deal with the popUp of the PopUpAnchor. Since the PopUpAnchor is attached

[flexcoders] Slide down effect in Spark ComboBox/DropDownList

2010-05-27 Thread djamsheds
I am trying to animate (slide down) the list that pops up when in the open state of the ComboBox or DropDownList in Spark. I am defining a custom Skin for that and I guess should deal with the popUp of the PopUpAnchor. Since the PopUpAnchor is attached to the root, when animating it is fully

[flexcoders] MVC workflow question

2010-05-07 Thread djamsheds
Think of an application that has a Model, View, Presenter and a Command. My View has a component, which is a summary of a data set(data and summary data resides in the Model), View fires event that basically is a request to generate a detailed data for a specific case (think of a datagrid, user

[flexcoders] Re: How to compress Spark skins into swc/swf and use them in Flex 4?

2010-04-26 Thread djamsheds
For those interested, there are some ideas discussed on this: http://forums.adobe.com/message/2016689#2016689 --- In flexcoders@yahoogroups.com, djamsheds djams...@... wrote: In Flex 3 our designer basically created all custom skins in AI and compiled them into swf file, which I used in css

[flexcoders] How to compress Spark skins into swc/swf and use them in Flex 4?

2010-04-24 Thread djamsheds
In Flex 3 our designer basically created all custom skins in AI and compiled them into swf file, which I used in css file as: - .coolButton { upSkin: Embed(source=skins.swf, symbol=button_upSkin);

[flexcoders] How to resize a component skinned with FXG?

2010-04-19 Thread djamsheds
I assigned a button's skinClass property to a custom skin (a star shape drawn in AI, imported to Catalyst and exported as fxp), but the skin doesn't get adjusted to the width and height of the button ( I thought it will be stretched the the user defined size). No matter what I set for width

[flexcoders] Re: How to resize a component skinned with FXG?

2010-04-19 Thread djamsheds
into the performance trouble. Djam. --- In flexcoders@yahoogroups.com, djamsheds djams...@... wrote: I assigned a button's skinClass property to a custom skin (a star shape drawn in AI, imported to Catalyst and exported as fxp), but the skin doesn't get adjusted to the width and height of the button ( I

[flexcoders] Utilizing HBox or VBox layouts without actually using them

2010-03-29 Thread djamsheds
I have a bunch of visual objects that should be Hbox'ed and Vbox'ed at different times (e.g. object obj1 can should be in Hbox1, and after a certain action obj1 should be moved right to the middle of VBox1, and after that it could be moved to bottom of VBox2). Using CollectionView is one of