[flexcoders] Challenge in Migrating to HTML5 from FLEX.

2012-01-13 Thread Venkat M
Hi Team,   I have a question on migration from FLEX to HTML5. This question may be little out of the discussion in here; It would be great if someone help me out.   I have a java server side application. It had a class that exposed a bundle of routines that are needed for the flex front end to

Re: [flexcoders] Timed Progress bar for 2 minutes.

2012-01-10 Thread Venkat M
suggest sorting out the server, because two minutes is a ridiculous amount of time to be waiting for a result. It really looks like your application has a fundamental problem. Paul C From: Venkat M venkat_...@yahoo.com To: flexcoders@yahoogroups.com

[flexcoders] Timed Progress bar for 2 minutes.

2012-01-09 Thread Venkat M
Hi,   I have a scenario in my application.   I know that the wait time for the response is 2 minutes. Can someone let me know how we can run a progress bar for 2 minutes loading from 0% to 100% in the same 2 minutes?   Or

Re: [flexcoders] E-Mail from flex.

2011-12-14 Thread Venkat M
to be reading mail in your flex app would you have to worry about POP3 or IMAP. From: Venkat M venkat_...@yahoo.com To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Sent: Tuesday, December 13, 2011 6:30 PM Subject: [flexcoders] E-Mail from flex. Hi All

[flexcoders] E-Mail from flex.

2011-12-13 Thread Venkat M
Hi All,   I have an application that is developed on Flex and JAVA on the backend. I need to provide a new email form the flex end. I will create a field for to email id/ subject/ body in flex and will pass it to java backend. Can some help what has to be done at java end? What email type can be

[flexcoders] Flex to HTML5 Conversion tool?

2011-11-30 Thread Venkat M
Hi Group,   I have a quick question. I have a web application that was developed using 100% flex (AS included). Now to be on the safe side we want to evaluate the options of converting the same on to HTML5.   Do any one know of any tools that can help in the process of converting from flex

[flexcoders] Calling flex from JavaScript wrapper

2011-11-08 Thread Venkat M
Hi Team,   I have a question about calling a flex method from JS. The scenario is, if the user closes the window without logging off,  I detect the window close from JS and call the appropriate logoff mechanism which is mapped originally for log out button. JS code   SCRIPT LANGUAGE=JavaScript  

Re: [flexcoders] Mapping/Image in Flex

2011-11-07 Thread Venkat M
.     From: sony antony pow_like_me...@yahoo.co.in To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Sent: Friday, November 4, 2011 11:30 PM Subject: Re: [flexcoders] Mapping/Image in Flex   Try ammap examples From: Venkat M venkat_...@yahoo.com

[flexcoders] Mapping/Image in Flex

2011-11-04 Thread Venkat M
Hi Group,   I have a basic question in flex regarding the mapping of an image.   Ex: I have a world map, depending on the click on the map, the corresponding information of the county has to be populated in the adjacent information box. I know this could be done quite easily in html with [map –

[flexcoders] Bar Graph basic doubt!

2011-10-07 Thread Venkat M
  Hi Group,   I have a basic doubt on bar graphs in flex. For a bar graph I bind the data provider with an array collection. This array collection will be populated dynamically with the values 0,1 or 2.   So the bar graph is showing fine, but the interval lines are at 0,

Re: [flexcoders] Module Structuring

2011-09-05 Thread Venkat M
You can actually use the module unload and load of the module loader class on a single event. In the vent handler of the click you just figure out the child element of the module loader class and if it is not null just unload it and continue to load the module of choice in the newt line in the

Re: [flexcoders] Array to XML?

2011-08-31 Thread Venkat M
] is ArrayCollection){ xmlData = xmlData.appendChild(makeXMLCollection(data[prop],prop)); }else{ xmlData = xmlData.appendChild(makeXML(data[prop],prop)); } } return xmlData; } From: Venkat M venkat_...@yahoo.com To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Sent: Wednesday, August 31

Re: [flexcoders] Re: Basic Doubt - Flex Module

2011-08-30 Thread Venkat M
between the Application and all the modules. --- In flexcoders@yahoogroups.com, Alex Harui aharui@... wrote: I would have the button listen for events from the module. On 8/29/11 4:12 PM, Venkat M venkat_yum@... wrote: Hi Group, I have a basic question on modules

[flexcoders] Array to XML?

2011-08-30 Thread Venkat M
  Hi group,   Can some one please help me in converting an array into an xml file or a similar hierarchical data structure to be used for a tree component!   Imagine a case I have an array A with values A1,A2,A3,A4,   B1,B2,B3,B4, ….. Z1,Z2,Z3,Z4. Can I have an XML like A    

[flexcoders] Basic Doubt - Flex Module

2011-08-29 Thread Venkat M
  Hi Group,   I have a basic question on modules and module loader in flex. Can some on help out please?   I have a main application that loads up any one of the available 4 (A,B,C,D) modules from a dropdown. The module loader in the main application is binded to the combobox of choice and the

Re: [flexcoders] Adding up ArrayCollections to DataGrid

2011-08-26 Thread Venkat M
.  Is ColdFusion in use there?   --Bill   From:flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Venkat M Sent: Thursday, August 25, 2011 8:31 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Adding up Arraycollections to Datagrid!     Hi Bill,   I understood

Re: [flexcoders] Re: Adding up Arraycollections to Datagrid!

2011-08-26 Thread Venkat M
(mergedArray);                 datagrid.rowCount = datagrid.dataProvider.length;             }         ]]     /mx:Script     mx:DataGrid id=datagrid/ /mx:Application --- In flexcoders@yahoogroups.com, Venkat M venkat_yum@... wrote: Hi Group,   I have a basic question on arraycollections. Please assist

[flexcoders] Adding up Arraycollections to Datagrid!

2011-08-25 Thread Venkat M
Hi Group,   I have a basic question on arraycollections. Please assist.   I have an array collection A populated with values {1,2,3,4,5,6,7,8,9,10} Also I have an arraycollection B populated with values {one,two,three,four,five,six,seven,eight,nine,ten}   Given this data, How do I present this

Re: [flexcoders] Adding up Arraycollections to Datagrid!

2011-08-25 Thread Venkat M
Harui aha...@adobe.com To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Sent: Thursday, August 25, 2011 4:50 PM Subject: Re: [flexcoders] Adding up Arraycollections to Datagrid!   You can just use A and use a second column with a label function that references B On 8/25/11 3:11 PM, Venkat

Re: [flexcoders] Adding up Arraycollections to Datagrid!

2011-08-25 Thread Venkat M
CFCs… a method CFC and a data structure CFC… that talk to each other and a Flex app… that have the added benefit of working ok with the Flex Data/Services wizard.   Regards,   --Bill   From:flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Venkat M Sent: Thursday, August

[flexcoders] BlazeDS having localhost:8080 hardcoded somewhere?

2011-08-23 Thread Venkat M
Hi, I am a newbie working with BlazeDS. We developed an application that uses java backend and BlazeDs to connect to it. I tested several times on my machine and it is working just fine. But it is to be run at several location on different servers and not on a sigle stand alone or a single