[flex_india:25094] SlideShow - Images Caching Memory Issue

2009-09-08 Thread riaflexible
Hi : I have developed an Air App for Images Video slideshow. Initially i wrote code such that every time an Image is about to be displayed , It will be loaded and once the Image Is displayed , I remove the Image and Load the Next Image , This is fine if the Images are in local system , If we

[flex_india:25095] Re: SlideShow - Images Caching Memory Issue

2009-09-08 Thread Preetham Hegde
Instead of downloading all the images and storing it, download only some limited images. For example, say u r in displaying 50th image then try to download only previous 10 and next 10 images.When u r in 51th image delete all other images and store only prev 10 and next 10 images. On Tue, Sep 8,

[flex_india:25099] Re: Flex Chart Issues

2009-09-08 Thread kalavati singh
Hi Veena, Is that you have multiple series in a single chart.If so let me know the details ( Error 1) Regards Kalavati On Tue, Sep 8, 2009 at 10:43 AM, Veena veenachezhia...@gmail.com wrote: Hi Guys.. I have been working on Flex Charting for few weeks. I am having great troubles in

[flex_india:25100] Re: SlideShow - Images Caching Memory Issue

2009-09-08 Thread Venkatraman S
One more thing that you can try is progressive loading of the images - that is, do not show the entire pixel information, but only the MSBs. Picasa(and i also i guess Orkut) does something similar so that you see the rough outline of the image and the details are progressively rendered. -V-

[flex_india:25101] passing values between components

2009-09-08 Thread Vijay
Hi, Can anybody explain me the code to pass values between components I have 2 components Component1 is having a panel and Component2 has a Label. I like to pass the Label.text to Panel.Title. How to do..? Thanks in adv. - Vijay --~--~-~--~~~---~--~~ You

[flex_india:25103] Re: passing values between components

2009-09-08 Thread Ravi
Hi, Create a Bindable variable and save the label.text in that.then access it as Application.application.var_name. and assign it to panel title. Hope this will help you regards ravi --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[flex_india:25104] Re: passing values between components

2009-09-08 Thread Preetham Hegde
I think you can bind those from parent, you can do this only after child components are created. On Tue, Sep 8, 2009 at 5:13 PM, Vijay jung...@gmail.com wrote: Hi, Can anybody explain me the code to pass values between components I have 2 components Component1 is having a panel and

[flex_india:25105] How can we obfuscated (hide) the code in flex?

2009-09-08 Thread krishna2004
Hi All, Is there any way to obfuscated (hide) the code in flex? because i saw some swf decompiler software ( http://www.sothink.com/product/flashdecompiler/ ) from here user can get the source code from any SWF files.Thanks in advance.

[flex_india:25106] Re: How can we obfuscated (hide) the code in flex?

2009-09-08 Thread Preetham Hegde
Hi Krishna, As i know we cannot stop swf from decompiling. And about that swf decompiler it is not useful for code written in flex, bcos it will return in flash format. On Tue, Sep 8, 2009 at 6:16 PM, krishna2004 somakrishna2...@gmail.comwrote: Hi All, Is there any way to

[flex_india:25107] Which J2EE framework / technology to use with Flex 3?

2009-09-08 Thread shekhar
Hello everyone, I want to build an application using Flex 3 and J2EE. I googled alot and found out that we can integrate Flex with J2EE using JSP, EJB, struts and Spring also. Can anyone please guide me regarding which technology is best suited for integration with Flex? The main concern

[flex_india:25108] Re: Which J2EE framework / technology to use with Flex 3?

2009-09-08 Thread atul parihar
Hi, Firstly understand the full requirement after then choice. jsp and struts and Ejb all of part of j2ee. so Remoting technique is so secure as compare to web service but some time its must. dont worry web service is also fully secure. On Tue, Sep 8, 2009 at 6:05 PM, shekhar

[flex_india:25109] Re: How can we obfuscated (hide) the code in flex?

2009-09-08 Thread jessy...@gmail.com
with the flash decompilers you can only decompile flash files such as .fla etc. You cannot decompile a flex app. Moreover you can turn off the viewSourceEnabled property in your application. On Tue, Sep 8, 2009 at 7:57 AM, Preetham Hegde preethamheg...@gmail.comwrote: Hi Krishna, As i know we

[flex_india:25110] Column Chart second axis

2009-09-08 Thread Horus Augustus
I need to create a Column chart for that data sctructure: Region -regionOne -regionTwo -regionOne MonthYear - 1/2009 - 2/2008 - 1/2009 expenses - 300 - 230 - 120 wins -20 -50 -70 where: Region---MonhYear (like a double axis) and expenses and wins (like series propertys) Please i

[flex_india:25111] Re: Column Chart second axis

2009-09-08 Thread Preetham Hegde
Check this link it will help u http://demo.quietlyscheming.com/ChartSampler/app.html On Tue, Sep 8, 2009 at 10:10 PM, Horus Augustus augustusco...@gmail.comwrote: I need to create a Column chart for that data sctructure: Region -regionOne -regionTwo -regionOne MonthYear - 1/2009 -

[flex_india:25112] Re: Flex Chart Issues

2009-09-08 Thread Veena Chezhian
Thanks Kalavati for your quick response. I have only one series created for PIE chart and here is the code var pieExplodingPointRange:Array =[]; pie.dataProvider = totals; pie.dataFunction = pieDataFunction; pie.nameField = field; pie.setStyle(showDataEffect, transitionEffect);

[flex_india:25113] Re: Which J2EE framework / technology to use with Flex 3?

2009-09-08 Thread veeru rahul
Hi, In ur application performance plays a major role then u need to go for Remote Service/AMF Granite service since the processing is done in binary form and light weighted, very quick etc. Thanks, Veeru On Tue, Sep 8, 2009 at 8:01 PM, atul parihar atulparihar...@gmail.comwrote: Hi, Firstly