[flex_india:25993] Re: what is differnce betwen lcds blaze ds

2009-10-21 Thread lakshminarayan k
thank you so much On 10/20/09, Saravanan saras...@gmail.com wrote: Hi Narayan, Check with this blog entry http://dcooper.org/Blog/client/index.cfm?mode=entryentry=8E1439AD-4E22-1671-58710DD528E9C2E7 -sara sara-intop.blogspot.com On Oct 20, 5:00 pm, lakshminarayan k

[flex_india:25994] service-config.xml help

2009-10-21 Thread vishal lad
Hi, I have created a project using .NET at back end. For accessing the web services I am specifying the URL in my application file.I need to know the use of service-config.xml file.Also wanted to know ,if we can specify the wsdl url outside and we can change the url whenever required without

[flex_india:25995] Re: MouseOver problem (flex4)

2009-10-21 Thread agorski
Hi, rishi thank you for the fast response! The problem is when I do it with separate listeners and mouse moves over components (in this case 3 components: rect, image, label) every time I get mouseOver and mouseOut events. This is not acceptable for me since I want only one time animate image

[flex_india:25997] Re: problem in debugging

2009-10-21 Thread FlexiSush
Hi, Even I faced the same problem when my flash player got updated to ver 10 from ver 9. To fix this there is a simple solution. No need to reinstall the flex builder. All you have to do is: If u have installed flex builder in C:\Program Files\Adobe\Flex Builder 3, go to C:\Program

[flex_india:25998] Re: Neither System.gc() nor does ModuleLoader.unloadModule() release the used memory of a loaded module.

2009-10-21 Thread nagu
you have not followed the third step i think if(_moduleLoader!=null){ removeChild(_moduleLoader); _moduleLoader=null; System.gc(); } _moduleLoader = new ModuleLoader(); _moduleLoader.url = Module1.swf; addChild(_moduleLoader); On Oct 20, 11:05 pm, nagu nagarjuna@gmail.com

[flex_india:25999] Re: Neither System.gc() nor does ModuleLoader.unloadModule() release the used memory of a loaded module.

2009-10-21 Thread Arjun
On Oct 21, 6:03 pm, nagu nagarjuna@gmail.com wrote: you have not followed the third step i think if(_moduleLoader!=null){     removeChild(_moduleLoader);     _moduleLoader=null;     System.gc(); } _moduleLoader = new ModuleLoader(); _moduleLoader.url = Module1.swf;

[flex_india:26000] Re: flash player want to store data on local machine

2009-10-21 Thread ck
I am using framework as a runtime shared library. May be it is problem? On Oct 20, 6:21 pm, Saravanan saras...@gmail.com wrote: HI, Debug and check where its going wrong.. -sara sara-intop.blogspot.com On Oct 20, 4:59 pm, ck cnpitr...@gmail.com wrote: I am using remote objects with

[flex_india:26001] Re: change states

2009-10-21 Thread Kiran Kumar Vasireddy
Thanks for Sharing explorer On Wed, Oct 21, 2009 at 1:21 AM, explorer skon...@gmail.com wrote: I want to go to the Application main state not main state of this component, I solve this by using parentDocument.currentState = (evt.result.toString()); I hope some one will find this usefull.

[flex_india:26002] accessing Object variables

2009-10-21 Thread explorer
Hello, I need solution for accessing some values of variables that are stored in array collection. I send Value Object from FLEX using Remote Object (amfphp). Service I write in php send query to database and return back object (this is array again). Using remoting I get data back to Flex data

[flex_india:26003] Re: Line Chart x-axis values problem

2009-10-21 Thread Kaleem
Hi, I got the solution for the first problem, just create a new object and it will dispaly a dot for a single record. What i am doing is that I am adding a one more point with values (0,0) which draws a line from 0,0 to X,Y Will back back soon with the solution for 2nd problem. Thanks, Kaleem

[flex_india:26004] Re: Dynamice Graphs - LineStroke Question.

2009-10-21 Thread Kaleem
To set the line strok use LineSeries object and set a 'lineStroke' property with the help of setStyle method like lineSeriesObj.setStyle(lineStroke, Stroke Object ... ); this works fine you can also set a renderer color, Renderer Border color and Line Color. Let me know if

[flex_india:26005] Re: Making the address bar in the browser tab disabled

2009-10-21 Thread flexorz group of flex corders
as i understood , you are trying to move between components with tab key right. if that is what your searching you can always override the default behaviour and capture the tab press and can come back to the initial component you have. hope it helps On Tue, Oct 20, 2009 at 5:17 PM,

[flex_india:26006] Re: accessing Object variables

2009-10-21 Thread FlexiSush
Hi, as u told, u are using ArrayCollection to hold the array of abjects. Say if u have ArrayCollection as AC, to access first object's username, use AC[0].username. similarly if u want to access password u can use AC[0].password. Hope this helps u. Regards, Sushanth On Oct 22, 1:22 am, explorer

[flex_india:26008] Expanding OLAP Datagrid

2009-10-21 Thread ram
Please can anyone tell me how to expand/collapse OLAP Datagrid rows. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Flex India Community group. To post to this group, send email to flex_india@googlegroups.com To

[flex_india:26009] Re: Neither System.gc() nor does ModuleLoader.unloadModule() release the used memory of a loaded module.

2009-10-21 Thread Ram
Hi Nagu, Although the above code does not contain the 3rd step, I developed a small POC as you said. 1) Create ModuleLoader everytime I load the module 2)Remove it from its parent container while unloading the module. 3) Repeat 1 for loading module again. I still see there the memory leak! I