[flex_india:24047] Re: Embed Webpage within Flex Web Application

2009-07-29 Thread hsivaramakrish...@gmail.com
Please take a look at the Sample Implementation here - http://raghuonflex.wordpress.com/2006/12/07/flex-i-frame/ Harish Evangelist, Adobe India On Jul 28, 4:12 pm, sankar swaroop sankaras...@gmail.com wrote: Hi Himadri, U can solve ur problem using IFrame in flex. Study about it and then

[flex_india:24048] Re: Ajuda/Help - NumericStepper StepSize customization

2009-07-29 Thread hsivaramakrish...@gmail.com
Ajuda: Setting a stepSize to any precision value should just work . for instance stepSize = 0.01 will increment / decrement by that factor. Harish Evangelist, Adobe India On Jul 28, 2:34 am, Arthur Magno chucr...@gmail.com wrote: (Portugues): É possível fazer o NumericStepper ter um

[flex_india:24049] Re: Flex at Beach @ Chennai

2009-07-29 Thread Debabrata Acharjee
Debaraj, The name of the event sounds good to me. I love both flex and beach :) All the best for the event. Regards, Deb Devaraj wrote: Dear All, The f...@beach is being hosted at Chennai on August 8th. Agenda : http://tinyurl.com/flex-beach Venue : http://tinyurl.com/asibeach Twitter

[flex_india:24050] Re: Agenda for Adobe Dev Summit 2009

2009-07-29 Thread Debabrata Acharjee
Hi Sujit, Just wondering whether this event is going to cater the 'community tribes' too. Regards, Deb Sujit Reddy G wrote: Hi all, Agenda for DevSummit 2009 is live. The focus of this conference is around the latest announcements and betas in the Flash Platform – FlashBuilder, Catalyst,

[flex_india:24051] Re: Flex developer distribution (Bangalore Hyderabad)

2009-07-29 Thread mohan
Hi, Availability of flex developers with 2 + experience in Hyderabad is more . 2: Salary range for top performers : (3 to 5 )lakh s 3.I think hyderabad is best . On Jul 28, 10:23 pm, FresherInFlex sindhu@gmail.com wrote: 1: availability of flex developers with 2 and more experience in

[flex_india:24052] Re: Flex at Beach @ Chennai

2009-07-29 Thread Devaraj
Thanks for your wishes. Regards, Devaraj On Jul 29, 12:41 pm, Debabrata Acharjee deb.fl...@gmail.com wrote: Debaraj, The name of the event sounds good to me. I love both flex and beach :) All the best for the event. Regards, Deb Devaraj wrote: Dear All,   The f...@beach is being

[flex_india:24053] How to handle HTTP Request

2009-07-29 Thread Gerald Anto
Hello Frineds, my client page(mxml) calls one jsp that will return xml data. then i populate that data in chart . its working fine. supose there is no data from server side it shows the error like cannot be refferenced null object or property. In my result event i assign the xml node(from

[flex_india:24054] Need help on Flex LineChart

2009-07-29 Thread Liang Ma
Hi, Folks: I am using Flex Line Chart to represent some dynamically changed information.Since the dataprovider for the LineChart changes from time to time and are not always with the same structures , i need to create and update LineSeries at runtime. After datasource updating, i need to

[flex_india:24057] dispatch event explicitly

2009-07-29 Thread HISSAM
I have 2 list(left list /right list ) and click on an item of left- list , data is changed of the right list respective with the item selected in the lest list. This is working fine with no hassels at all. My requirement is At the start i want the 1st item of the right list be selected and

[flex_india:/] Re: XML encoding

2009-07-29 Thread GnanaPrakasam T
Hi Prakash, you sholud not use or like special characters within XML string,try to parse that with lt; gt; for those symbols Gnanz.../ http://gnanz-flexworld.blogspot.com Prakash wrote: If the XML data has characters like , how to encode/escape the same when rendering the ADG. thanks

[flex_india:24058] Re: dispatch event explicitly

2009-07-29 Thread sheetal
Try setting the selected index of that list and dispatch click event on the list. On Jul 29, 3:14 pm, HISSAM hissam.sher...@gmail.com wrote: I have 2 list(left list /right list ) and click on an item of left- list , data is changed of the right list respective with the item selected in the

[flex_india:24059] Re: dispatch event explicitly

2009-07-29 Thread HISSAM
I have already tried that!! On Wed, Jul 29, 2009 at 6:26 PM, sheetal sheetalnilw...@gmail.com wrote: Try setting the selected index of that list and dispatch click event on the list. On Jul 29, 3:14 pm, HISSAM hissam.sher...@gmail.com wrote: I have 2 list(left list /right list ) and

[flex_india:/] Re: Default date in dateFiled control

2009-07-29 Thread GnanaPrakasam T
For protecting user from selecting future date , you can use *'selectablerange'* or '*disabledrange*' property of Datefield. *Gnanz.../* *http://gnanz-flexworld.blogspot.com* hsivaramakrish...@gmail.com wrote: The following code would just work ?xml version=1.0 encoding=utf-8?

[flex_india:24060] Re: dispatch event explicitly

2009-07-29 Thread Amol Pandhare
Hey Hissam, You might be having a click listener on the left list and a function associated to it. On the same list keep a creationComplete listener and point it to the same listener function as that of the click event. And for the listener function to work make the event type of the attribute as

[flex_india:24061] Re: Flex at Beach @ Chennai

2009-07-29 Thread hsivaramakrish...@gmail.com
Hi Devaraj: This is a great initiative. Wish you all the very best and a great success in this event. Thanks Harish On Jul 29, 2:13 pm, Devaraj nsdeva...@gmail.com wrote: Thanks for your wishes. Regards, Devaraj On Jul 29, 12:41 pm, Debabrata Acharjee deb.fl...@gmail.com wrote:

[flex_india:24062] Re: dispatch event explicitly

2009-07-29 Thread hsivaramakrish...@gmail.com
A good way would be to use data binding. whenever the selectedIndex is set using a bindable variable, the binding would trigger and you could do your magic on the right list. Take a look at BindingUtils Class documentation. Harish Evangelist, Adobe India. On Jul 29, 3:49 pm, Amol Pandhare

[flex_india:24063] Re: How to handle HTTP Request

2009-07-29 Thread hsivaramakrish...@gmail.com
There are multiple ways of solving this. Simplest is to do a null check before assigning. Even when you get a single non null ObjectProxy in your result, you will get a coercion error while Assigning to ArrayCollection. Do something like this if(event.result.node is ArrayCollection) {

[flex_india:24064] Re: dispatch event explicitly

2009-07-29 Thread HISSAM
Its not the question of creation complete what when my dataprovider of left list changes?? no creation event is gonna trigger Also at creation complete how do i access the 1st selected item?? On Wed, Jul 29, 2009 at 6:49 PM, Amol Pandhare genius.ge...@gmail.comwrote: Hey Hissam, You might be

[flex_india:24065] Re: dispatch event explicitly

2009-07-29 Thread HISSAM
Dude I simply need to dispatch itemSelect event. Using the BindingUtils, setting binding on the selectedIndex property does not fulfill my purpose of dispatching the itemselect event. This is complicated since i cant use the creation complete nor the binding bcos The list does not allow me to

[flex_india:24066] Re: dispatch event explicitly

2009-07-29 Thread Ravi Mishra
Try using collectionChange event of the dataprovider of first list. It could help. -Ravi On Jul 29, 4:18 pm, HISSAM hissam.sher...@gmail.com wrote: Its not the question of creation complete what when my dataprovider of left list changes?? no creation event is gonna trigger Also at creation

[flex_india:24069] Effects to Label

2009-07-29 Thread pratham
Hi frnds, How to apply effect to label. I want to give fade effect to label. I have tried with following code, but it didnt work... any solutions? mx:Fade id=fadeIn duration=2000 alphaFrom=0.0 alphaTo=1.0/

[flex_india:24068] Upload Image File

2009-07-29 Thread Ramya Arumugam
Hi All, Can any one tell us how to upload image file and save it in database? Thanks, Ramya --~--~-~--~~~---~--~~ 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:24072] Re: problem of struts and flex3

2009-07-29 Thread simplyolaf
I also provide in my blog several examples(with source code) on how to integrate flex with struts 2/JBOSS: General Overview: http://simplyolaf.blogspot.com/2009/07/integrating-adobe-flex-with-struts-2.html BlazeDS:

[flex_india:24070] hslider with panel movement

2009-07-29 Thread yuva rani
Hi All, I'm beginner with Flex. Any one can help me regarding hslider with panel movement (container) for size 500 above to move it accordingly.. with regards, Yuva --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[flex_india:24071] Re: Flex developer distribution (Bangalore Hyderabad)

2009-07-29 Thread sudheer kumar
Hi, Hyderabad is best , here every new technology training center are available . Salary range for top performers : (3 to 7 ) lakes0 to 5 years experience people available Cost of leaving is cheaper then Bangalore I think Hyderabad is best . Thanks sudheer On Wed, Jul 29, 2009 at 1:39

[flex_india:24074] Re: about Family Tree or Organizational chart

2009-07-29 Thread jitoo
hello, i am new boy form as3,and i am developing also family tree component, but i have no idea or proper logic, so plz help me. for create family tree plz. Jigar Kapadia wrote: Hi all, I am to develope family tree component as in Geni.com and itsourtree.com.. I worked on Spring

[flex_india:24075] Graphs with different colours for different frequency

2009-07-29 Thread kalavati singh
Hi, According to my current requirement I need to develop a graph that has multiple colours showing on it.I mean based on the input range for example if i take Frequency Vs TimeStamp(Frequency on Y-axis TimeStamp on X-axis) ,If frequency is 0-25 range the graphs to be green,if its in

[flex_india:24073] Re: Default date in dateFiled control

2009-07-29 Thread lalji
Hello, try this also mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:DateField change=setTaskDate(dtTaskDate.selectedDate) creationComplete=setTaskDate(new Date()) id=dtTaskDate/ mx:Script ![CDATA[ public function setTaskDate(taskDate:Date=null):void { if

[flex_india:24076] django server and flex

2009-07-29 Thread thiru m
Hi I like to know is there any tutorials regarding how to work with django server and flex, plz pass me the links or resourcess so that I can start developing flex based application and communicate with django server Thiru --~--~-~--~~~---~--~~ You received this

[flex_india:24077] Re: Need help on Flex LineChart

2009-07-29 Thread hsivaramakrish...@gmail.com
I am unable to (visually) see the error. Everytime I click on the showAmount, I pretty much see the same line series. Am I missing something here? Harish Evangelist, Adobe India On Jul 29, 2:59 pm, Liang Ma libra.mali...@gmail.com wrote: Hi, Folks: I am using Flex Line Chart to represent some

[flex_india:24078] Re: Graphs with different colours for different frequency

2009-07-29 Thread hsivaramakrish...@gmail.com
Take a look at the following article, This should pretty much solve your problem http://livedocs.adobe.com/flex/3/html/help.html?content=charts_displayingdata_09.html Harish Evangelist, Adobe India On Jul 29, 10:29 am, kalavati singh kalavati.si...@gmail.com wrote: Hi,       According to my

[flex_india:24079] Re: hslider with panel movement

2009-07-29 Thread hsivaramakrish...@gmail.com
Not sure if I understand your question, can you elaborate? Harish Evangelist, Adobe India On Jul 29, 12:44 pm, yuva rani yuva...@gmail.com wrote: Hi All,      I'm beginner with Flex. Any one can help me regarding hslider with panel movement (container) for size 500 above to move it

[flex_india:24080] Re: Flex developer distribution (Bangalore Hyderabad)

2009-07-29 Thread Anish Kumar
I would request all the group members interested to reply to this query, please do reply personally to the author rather than to the group. For me, it sounds like it might turn into an bad debate of which is good and which is bad. Happy Posting to Flex India, -Anish

[flex_india:24081] Re: Upload Image File

2009-07-29 Thread Ganesh r
Hi In flex 3.0 directly you can not upload. using web service you can store in the server web service file location from there you need to read as byte array. what webservice are you using. regards ganesh On Wed, Jul 29, 2009 at 2:15 PM, Ramya Arumugam friendramya2...@gmail.comwrote: Hi

[flex_india:24082] Re: Upload Image File

2009-07-29 Thread hsivaramakrish...@gmail.com
Ramya: Did you get a chance to look at this example? http://livedocs.adobe.com/flex/3/html/help.html?content=17_Networking_and_communications_7.html Harish Evangelist, Adobe India On Jul 29, 5:21 pm, Ganesh r gan...@gmail.com wrote: Hi In flex 3.0 directly you can not upload. using web

[flex_india:24083] Re: django server and flex

2009-07-29 Thread Anish Kumar
Hi Thiru, Flex is basically client side and it can practically talk to any webserver as long as you can request data and get data from the server. Usually we send back the data from server as XML which can be easily consumed by flex. May be you can invoke an HTTPService request to talk to your

[flex_india:24084] Re: hslider with panel movement

2009-07-29 Thread yuva rani
Hi All, Any one can help me regarding hslider with applying for container movement. According the range 0-25-50-75-100, we have move 15 Vboxes with some effects. In required area we need only 5vboxes having with some labels. How to apply effects for with hslider changes for

[flex_india:24085] Re: Upload Image File

2009-07-29 Thread atul parihar
Hi all of, Flex is platformindepent or not please tell me this think On Wed, Jul 29, 2009 at 5:55 PM, hsivaramakrish...@gmail.com hsivaramakrish...@gmail.com wrote: Ramya: Did you get a chance to look at this example?

[flex_india:24086] Image crop functionality

2009-07-29 Thread sheetal
Hi, i want to crop an image to manipulate it later(the way we do on orkut,facebook...)No idea how to do it.Please share ur ideas how can we do it in Flex. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Flex India

[flex_india:24087] Re: Image crop functionality

2009-07-29 Thread rohit
http://blog.mediablur.com/2008/02/20/flex-image-cropping-component/ On Jul 29, 6:43 pm, sheetal sheetalnilw...@gmail.com wrote: Hi, i want to crop an image to manipulate it later(the way we do on orkut,facebook...)No idea how to do it.Please share ur ideas how can we do it in Flex.

[flex_india:24088] Re: HTML component question

2009-07-29 Thread rohit
http://net.tutsplus.com/tutorials/tools-and-tips/introduction-to-adobe-air/ On Jul 27, 3:56 pm, rohit rohitde...@gmail.com wrote: use externalInterface method of actionscript OR u can get the javascript variable like this var document:Object =

[flex_india:24089] Re: Image crop functionality

2009-07-29 Thread sheetal nilwant
Thanks Rohit it was a great help. On Wed, Jul 29, 2009 at 7:26 PM, rohit rohitde...@gmail.com wrote: http://blog.mediablur.com/2008/02/20/flex-image-cropping-component/ On Jul 29, 6:43 pm, sheetal sheetalnilw...@gmail.com wrote: Hi, i want to crop an image to manipulate it later(the way

[flex_india:24092] Re: HTML component question

2009-07-29 Thread Vivian Richard
Thanks Rohit for the link and for your reply. As I see this whole example was written in HTML and JS, my situation is a little different. My app is in mxml. I am using the the HTML comp like this: ?xml version=1.0 encoding=utf-8?

[flex_india:24090] Re: HTML component question

2009-07-29 Thread Vivian Richard
By the way my requirement is better addressed in the AIR app example of this page: http://labs.adobe.com/wiki/index.php/Apollo:Articles:Using_HTML_in_Flex-based_Apollo_Applications The unfortunate thing is that this example does not work I guess it was written in Flex 3 beta and these

[flex_india:24091] Re: django server and flex

2009-07-29 Thread Tino Dai
Check out pyamf @ http://pyamf.org On Wed, Jul 29, 2009 at 8:30 AM, Anish Kumar anishkuma...@gmail.com wrote: Hi Thiru, Flex is basically client side and it can practically talk to any webserver as long as you can request data and get data from the server. Usually we send back the data

[flex_india:24093] Re: Effects to Label

2009-07-29 Thread Renu
Hi Preetham, You may need to embed the font(label font), this is the only way to trigger the effects on Text component. Thanks, Renu On Wed, Jul 29, 2009 at 2:20 PM, pratham preethamheg...@gmail.com wrote: Hi frnds, How to apply effect to label. I want to give fade effect to label. I have

[flex_india:24094] Re: Upload Image File

2009-07-29 Thread hsivaramakrish...@gmail.com
flex applications compile to .SWF which runs on flash player. Flash Player is platform independent and hence all flex apps are platform independent. Harish Evangelist, Adobe India On Jul 29, 6:25 pm, atul parihar atulparihar...@gmail.com wrote: Hi all of, Flex is platformindepent or not

[flex_india:24095] StreamingAMFChannel - Flex 2 Compatibitity

2009-07-29 Thread Sandeep P P
Dear all, I am trying to use streaming amf channel for server push. In the server side a service running which will produce a AsyncMessge and send to all the consumers (flex app) whenever the value of a specific variable is changed. But the issue is i am getting a compile time error saying

[flex_india:24096] Re: Effects to Label

2009-07-29 Thread Preetham Hegde
Thanks Renu, On Wed, Jul 29, 2009 at 11:19 PM, Renu renud...@gmail.com wrote: Hi Preetham, You may need to embed the font(label font), this is the only way to trigger the effects on Text component. Thanks, Renu On Wed, Jul 29, 2009 at 2:20 PM, pratham preethamheg...@gmail.com wrote: Hi

[flex_india:24097] Re: Upload Image File

2009-07-29 Thread hsivaramakrish...@gmail.com
flex applications compile to .SWF which runs on flash player. Flash Player is platform independent and hence all flex apps are platform independent. Harish Evangelist, Adobe India On Jul 29, 6:25 pm, atul parihar atulparihar...@gmail.com wrote: Hi all of, Flex is platformindepent or not

[flex_india:24098] Re: StreamingAMFChannel - Flex 2 Compatibitity

2009-07-29 Thread Anish Kumar
StreamingAMFChannel is new for Flex 3 and isn't available on Flex 2. May be its high time you should consider moving to Flex 3.0 Flex 3.0 is considerably speedier too than its predecessor. -Anish --~--~-~--~~~---~--~~ You received this message because you are

[flex_india:24099] Re: hslider with panel movement

2009-07-29 Thread Anish Kumar
Sometime back I was experimenting with trying to move a set of 4 panels based on the movement of control placed at the center of the 4 panels. If you are setting the height n width of your vboxes as per your desired figures, then you can achieve it. May be you should look at this:-

[flex_india:24103] Re: Effects to Label

2009-07-29 Thread harish sreenivas
Hey Preetham, Renu was right! The Code would look similar to this. There are other ways of doin this too. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:Style @font-face { src:url(/../assets/MyriadWebPro.ttf);

[flex_india:24100] Re: hslider with panel movement

2009-07-29 Thread edwin . vgwhiz
My Mac Crashed last week and I took it to apple, however all my software was lost and I can't find my Flex 3.0 Disc to reinstall. Does anyone have a download link for this, Please I'm in the middle of creating an app that is due next week. Desperately need help!!! Edsaid On Wed, Jul 29, 2009 at

[flex_india:24105] Re: Effects to Label

2009-07-29 Thread sankar swaroop
remove that showEffect property to label On Wed, Jul 29, 2009 at 12:20 PM, sankar swaroopsankaras...@gmail.com wrote: Hi Preetham, U cannot use hhowEffect property here b'cas u want to effect to add effect when u make it visible. u will fire some event to make the label visible. so there u

[flex_india:24104] Re: Graphs with different colours for different frequency

2009-07-29 Thread sankar swaroop
http://livedocs.adobe.com/flex/3/html/help.html?content=charts_formatting_12.html This may also helps you On Tue, Jul 28, 2009 at 10:29 PM, kalavati singhkalavati.si...@gmail.com wrote: Hi,   According to my current requirement I need to develop a graph that has multiple colours showing

[flex_india:24102] Re: Effects to Label

2009-07-29 Thread sankar swaroop
Hi Preetham, U cannot use hhowEffect property here b'cas u want to effect to add effect when u make it visible. u will fire some event to make the label visible. so there u make the effect added like mx:Fade id=fadeIn duration=2000 alphaFrom=0.0 alphaTo=1.0 source={nameLabel}/ and in the event

[flex_india:24106] Re: Open all tabs in Accordion

2009-07-29 Thread Saurabh Narula
hi, the current accordion control available with the flex sdk doesnt allow you to view more than one child view to be seen at a time, if you want to add the behaviour of displaying more than child views or all child views, you can create your component by subclassing the existing accordion

[flex_india:24107] Re: Need help on Flex LineChart

2009-07-29 Thread Saurabh Narula
Hi, on clicking the show amount button, the series amout is only shown n the other two series profit and expenses get removed from the chart, i hope this is the behavior you expect, if you want to show no series on the chart then just set series array to null. thanks Saurabh On Wed, Jul 29,

[flex_india:24108] Re: about Family Tree or Organizational chart

2009-07-29 Thread Saurabh Narula
guys, have a look at birdeye project http://code.google.com/p/birdeye/ and the explorer here http://birdeye.googlecode.com/svn/branches/ng/examples/demo/BirdEyeExplorer.html thanks Saurabh On Wed, Jul 29, 2009 at 11:04 AM, jitoo jkotwa...@gmail.com wrote: hello, i am new boy form

[flex_india:24109] 3000 + members

2009-07-29 Thread Saurabh Narula
Hi All, in the midst of all hustle and bustle, we missed out on this great achievement of flex-india touching a magic figure of 3000 strong members. My congratulation to all of you in the group, keep rocking!! keep contributing!! and lets keep the spirits of sharing and learning high!!

[flex_india:24110] Re: 3000 + members

2009-07-29 Thread John Koch
Congratulations Flex India community!!! Hats off to Saurabh, Mrinal and all the other moderators for their dedication to the Indian Flex community! John -Original Message- From: flex_india@googlegroups.com [mailto:flex_in...@googlegroups.com] On Behalf Of Saurabh Narula Sent:

[flex_india:24111] Re: Flex at Beach @ Chennai

2009-07-29 Thread Hemanth Kumar T.S
Hi Devaraj, Its really a great event for flex developers and also to show the greatness of FLEX.. Above all I like the title f...@beach.. i love the title.. If i would have been in India certainly I would have attended this event. Great wishes for the event !! Thanks, Hemanth On Wed, Jul 29,

[flex_india:24112] Re: dispatch event explicitly

2009-07-29 Thread HISSAM
Hey hsivaramakrishnan Its really appreciating that u stood up with an example for solving my issue, thanks for your support. Things still did not work up as i have nothing to do with the selected index change. I'll explain again. When a user click on an item

[flex_india:24113] Re: dispatch event explicitly

2009-07-29 Thread HISSAM
Hey Guys I tried the other way using the mx_internal accessing the rendererArray which stores all the renderers but not to my surprise I got NULL object as I'm just in the phase of assigning data :( On Thu, Jul 30, 2009 at 9:53 AM, HISSAM hissam.sher...@gmail.com wrote: Hey hsivaramakrishnan

[flex_india:24114] Re: dispatch event explicitly

2009-07-29 Thread hsivaramakrish...@gmail.com
Hissam I presume, you are accessing the itemRenderer of the List just to get access to the data Object that it holds. If that is the case, you can get the data object by doing the following In my code, inside the myFunc method, you can access the data of the selected item of ist1 by using -(

[flex_india:24115] Re: Flex at Beach @ Chennai

2009-07-29 Thread Devaraj
Thanks for all Flex lovers showing support to the event. Regards, Devaraj On Jul 30, 4:42 am, Hemanth Kumar T.S t.s.hemanthku...@gmail.com wrote: Hi Devaraj, Its really a great event for flex developers and also to show the greatness of FLEX.. Above all I like the title f...@beach.. i love

[flex_india:24116] Re: dispatch event explicitly

2009-07-29 Thread HISSAM
I actually wanted the selected the selected item. But this cannot be done as the item is still not created yet, its just in the setting its properties stage. Anyways I had already assigned the data of the first selected item to my right list(the other list). All I wanted is the selected item in

[flex_india:24117] Re: 3000 + members

2009-07-29 Thread Debabrata Acharjee
This figure shows how successful is flex as a technology in India. I am sure this would remind us once again that an active and engaging community really matters to make a technology successful. When this list started few years back, there were only few people who used to contribute and

[flex_india:24118] Re: 3000 + members

2009-07-29 Thread Anish Kumar
Its exciting to see congratulation message pouring in for hitting 100/200 members earlier to the strong 3000 members now. Congratulations to all the 3000+ strong members for contributing to the success of Flex in India. regards, -Anish --~--~-~--~~~---~--~~ You