Re: [flex_india:35006] how to save customized design in tool like t-shirt customization

2012-05-10 Thread Sathis Kumar
Hi Parth, I have already done this in one of my earlier company. So, construct a XML/JSON structure which will have all the values about TShirt image (Front/Back), Zooming Level, all the textual contents in separate tags/nodes and image contents with image url with width and height. So, once we

Re: [flex_india:34833] override clone method

2012-02-11 Thread Sathis Kumar
Hi Nitin, As per my knowledge clone method will be used to re-broadcast your event. Consider you are having an application - Container - Custom Component - UI Control. So, the event from UI control will be listened in Custom Component. So, you want the container to have the same event object, you

Re: [flex_india:34308] Adobe Flex 4 Training Center's in Chennai

2011-08-04 Thread sathis kumar
I dont know whether it is best or bad! but there is a training center in chennai. http://griffinedu.com/ They provide training as well as Certification approved by ADOBE. On Wed, Aug 3, 2011 at 9:09 PM, کяíηívαک ***gEtTiN oN TrAck gsrinivas2...@gmail.com wrote: Hi, Can any one help me out

Re: [flex_india:34283] Databinding and selectedItem from combobox

2011-08-01 Thread sathis kumar
Put this will work! ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=horizontal creationComplete=creationCompleteHandler(event) mx:Script ![CDATA[ import mx.collections.ArrayCollection; import mx.utils.ObjectUtil; import mx.events.FlexEvent;

Re: [flex_india:34137] Re: Cairngorm - Model/View binding with Modules

2011-07-06 Thread sathis kumar
I think your problem belongs data typing. You are having Module A in Base Class data type and re initiating with Module B in Sub Class of Base Class. This will definitely leads to type coercion error. While loading module B u can type cast as Base Class itself. After loading, when ever u want to

Re: [flex_india:33819] Re: wht is the way to implement server data push in flex 4? in thr anyway using remote object?

2011-05-24 Thread sathis kumar
Have you tried data binding? I think that will help you in this! On Tue, May 24, 2011 at 10:07 AM, naju najmudeen...@gmail.com wrote: Thanks for ur reply, Yes, I am using BlazeDS , how could i implement data push from java to flex . Once my DB gets updated, i need to update my view. Is

Re: [flex_india:33819] loading module with ModuleManager

2011-05-24 Thread sathis kumar
I think you should refer an interface for gettting ModuleManager.getModule(...); Try to map with the interface. From that interface only you will get your module as DisplayObject. Try once :) On Tue, May 24, 2011 at 10:09 AM, venugopal venugopal...@gmail.com wrote: HI all, I was working