Re: [flexcoders] Advantages and Disadvantages of skinning

2012-02-10 Thread The Real Napster
In the march 2010 skinning concept was introduced in version Flex 4. Its been almost 2 years, it seems like many people don't have in depth knowledge of skinning. I am struggling a lot to understand skinning properly. I have started looking into it very recently and I think its not much useful

Re: [flexcoders] Flex 3 - 4 migration and s:States

2012-02-07 Thread The Real Napster
Set/assign the state( currentState=Oct2010 ) inside creationComplete handling method. Ex. protected function application1_creationCompleteHandler(event:FlexEvent):void { // TODO Auto-generated method stub this.currentState = Oct2010; } May be all the states might have not laid-out while

Re: [flexcoders] Flex 3 - 4 migration and s:States

2012-02-07 Thread The Real Napster
In that example he has mentioned like bellow. s:states mx:State id=Oct2010 name=Oct2010/ mx:State name=Oct2011/ mx:State name=Apr2012/ /s:states WORKS *but not this one* mx:states s:State id=Oct2010 name=Oct2010/ s:State name=Oct2011/

Re: [flexcoders] Zombie in flex

2011-12-23 Thread The Real Napster
Hello Michal, Thank you so much Michal. This will do for me. You saved my time. And I am curious to know are there any other ways to implement this? A Native NativeWindow... Best Regards, Mahesh On Thu, Dec 22, 2011 at 9:19 PM, Michal Szczepanski vanel...@gmail.comwrote: ** As

Re: [flexcoders] Re: Binding behaviour

2011-11-04 Thread The Real Napster
Ok. But Its Not compulsory that you have to write a clone method. Anyways other way you can try is public function cloneLeaf():CallMonitoringLeaf { var obj:CallMonitoringLeaf = new CallMonitoringLeaf(); obj.optionCallMonitoring = this.optionCallMonitoring; obj.nodesSelected

Re: [flexcoders] Binding behaviour

2011-11-03 Thread The Real Napster
Use this. import mx.utils.ObjectUtil; ObjectUtil.copy(myObj); ObjectUtil.copy(arrColl) as ArrayCollection; On Tue, Oct 18, 2011 at 1:53 PM, geckko geckk...@gmail.com wrote: ** Hi all, I'm trying to duplicate one object but when i modify the master object the child object is

Re: [flexcoders] Re: Flex 4 CSS

2011-08-23 Thread The Real Napster
I too have tried in many ways, but could not resolve the problem. Doing few more tests. BTW one option is to use addChild(); Something like this. var image : Image = new Image(); image.source = FSCalc/images/BannerBackground.jpg; image.scaleContent = true;

Re: [flexcoders] Re: Flex 4 CSS

2011-08-23 Thread The Real Napster
Hello Alex, Thanks for the note. I am wondering why new release build of flex/spark does't have this feature? Its up to user whether to use it or not. Background on components is the basic requirement of many clients now a days. Hope in future adobe will implement/add this feature. Thanks for the

Re: [flexcoders] Filtering multilingual text within a datagrid filter column

2011-08-11 Thread The Real Napster
Solution: Use bellow function to convert Japanese text(Double byte text) to English text (Single byte text) and pass returned text to filterfunction. Its so simple :) 1. public static function changeToBj(s:String):String 2. { 3. if (s == null) 4.