[flex_india:21007] how to upload images to server

2009-03-30 Thread purni
hi all, i wanna upload images from flex application to my server which uses symphony(PHP). i am giving the correct path and still the image in not getting uploaded... I am doing all uploaded steps correctly... but still its not getting uploaded... is there any different way while using symphony r

[flex_india:21006] Tilt effect for charts

2009-03-30 Thread akshay
Hi all, I am facing problem while displaying the graph, problem is that i am using real time data so sometimes what happens that there is a lot of difference between MaxValue and MinValue which results in small values could not display properly .. I hope you understand my problem.. Thats

[flex_india:21005] Re: DoubleClick disable in datagrid

2009-03-30 Thread Karthik K
hi Neeraj thank you but i did that also what happened is that even if we maintain false or stopImmediatePropagation() still it is triggering out (yesterday i saw one url it said that there ia a bug ) if i find that url i will mail you -- Karthik.k Mobile - +91-9894991640 On 3/30/09, Neeraj

[flex_india:21004] Re: DoubleClick disable in datagrid

2009-03-30 Thread Jitendra Jain
Use event.preventDefault() On Mon, Mar 30, 2009 at 11:02 PM, Neeraj wrote: > > Hi , > write event handler on itemdoubleclick and call > event.stopImmediatePropogation() method. > > Hope this will work for you . > > Neeraj > > > On Mar 30, 1:20 pm, Karthik K wrote: > > hi *anand* > > > > but sti

[flex_india:21003] Re: DoubleClick disable in datagrid

2009-03-30 Thread Neeraj
Hi , write event handler on itemdoubleclick and call event.stopImmediatePropogation() method. Hope this will work for you . Neeraj On Mar 30, 1:20 pm, Karthik K wrote: > hi *anand* > > but still it is worling > > doubleClickEnabled="false" but i don have any idea how it is working > > any oth

[flex_india:21002] Re: Load data from php as dataprovider for a List component

2009-03-30 Thread GAGAN anand
Hi Juan You can create an associative Array Collection from the XML. Then pass this Array Collection as a dataprovider to the List. Hope it works. Regards Gagan Deep 2009/3/30 GAGAN anand > Hi Juan > > You cannot assign a XML as a dataprovider to the list. First of all, you > have to convert

[flex_india:21001] Re: Load data from php as dataprovider for a List component

2009-03-30 Thread GAGAN anand
Hi Juan You cannot assign a XML as a dataprovider to the list. First of all, you have to convert this XML to an Array Collection which you will pass as a dataprovider to the list. This will help you in achieving what u want. HTH Regards Gagan Deep 2009/3/30 Juan P. Marsano > > Hi guys, I nee

[flex_india:21000] Re: Problem in moving datagrid rows

2009-03-30 Thread sambhavg...@gmail.com
Hi deeps, it is possible, give these three properties for the dataGrid: dragEnabled="true" dragMoveEnabled="true" dropEnabled="true" See the following example: http://www.adobe.com/2006/mxml"; layout="vertical" initialize="init()">

[flex_india:20999] Looking for Flex developers while I'm in India

2009-03-30 Thread Uncle Bergie
I'm a Flex developer from San Francisco (U.S.), riding around India on my Bullet, making a video blog, in HTML and Flex, and am interested in hiring some help for the project, as well as potentially working in Flex for employers to extend my stay in India. I'd also be interested in talking with a

[flex_india:20997] Re: full path

2009-03-30 Thread Nicholas
Full path of the file once it's uploaded on the server - yes, you'll need to do that server side. Full path of the file on the users' machine before it's uploaded - No. Only with AIR as far as I know. On Mar 30, 8:23 am, Flex Baby wrote: > hi, > Any chance to get full path information of uploade

[flex_india:20998] Load data from php as dataprovider for a List component

2009-03-30 Thread Juan P. Marsano
Hi guys, I need some help with a flex app. I have a php script that returns an xml like this: StudentName1 StudentID StudentName2 StudentID " I have been trying to load this info into a List, so that the list loads both the label and de da

[flex_india:20996] Re: time comparision

2009-03-30 Thread sambhavg...@gmail.com
Hi, Adding to what GAGAN has said, you can compare the two date objects by comparing both into milliseconds, like this: firstDateMilliSeconds:Number = fdate.getTime(); secondDateMilliSeconds:Number = sdate.getTime(); And then you can compare the two. HTH, Sambhav On Mar 30, 4:36 pm, GAGAN ana

[flex_india:20995] Re: full path

2009-03-30 Thread sambhavg...@gmail.com
Hi Flex Baby, Using the file reference object, you cannot get it. -Sambhav On Mar 30, 6:23 pm, Flex Baby wrote: > hi, > Any chance to get full path information of uploaded file in flex? --~--~-~--~~~---~--~~ You received this message because you are subscribed t

[flex_india:20994] Re: Repeater is not executing error is showing when i change the dataprovider of the repeater

2009-03-30 Thread Nicholas
make the property _webPageEvents bindable [Bindable] var _webPageEvents:ArrayCollection .. --~--~-~--~~~---~--~~ 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_i

[flex_india:20993] Re: Resize the Dynamic textfield using Object handler

2009-03-30 Thread Nicholas
TextField has the property autoSize so if your TextField instance is my_txt, do this: my_txt.autoSize = TextFieldAutoSize.LEFT; On Mar 30, 6:38 am, devi lakshmi wrote: > Hi, > > how to load the dynamic textfield in the object handler.. > i have loaded, but the textfield is not getting resize..

[flex_india:20992] How to invert axis of graph

2009-03-30 Thread akshay
Hi all, In my application i wanted to add invert axis functionality but the problem is that when i invert it, it is not displaying the graph .. Is there any way to do it ? Is there any dependencies in CategoryAxis for particular chart type ?? Thanks and Regards, Akshay --~--~-~--~~

[flex_india:20991] Re: Regd FMS

2009-03-30 Thread Kunal Pagariya
Use NetConnection and NetStream class On Thu, Mar 26, 2009 at 3:53 PM, denesh kumar wrote: > Hi Guys, > > Thanks in Advance, > > I need a Video to be connected using FMS and to be played using FMS Using > rtmp links > > Kindly send me any Resources. > > Regards, > Denesh > > > > -- "A jou

[flex_india:20990] full path

2009-03-30 Thread Flex Baby
hi, Any chance to get full path information of uploaded file in flex? --~--~-~--~~~---~--~~ 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:20989] Resize the Dynamic textfield using Object handler

2009-03-30 Thread devi lakshmi
Hi, how to load the dynamic textfield in the object handler.. i have loaded, but the textfield is not getting resize.. is there any possibility to resize the textfield if any plz help me Thanks in advance With regards Devi --~--~-~--~~~---~--~~ You received this

[flex_india:20988] Re: time comparision

2009-03-30 Thread GAGAN anand
Hi Krishna you can use the Date class of flex. You can convert the selected time from combobox to the time of date class and then can check which one is greater. This is an example * private* *function* test():*void*{ *var* fdate:Date = *new* Date(); *var* sdate:Date = *new* Date(); fdate.set

[flex_india:20987] how to display last viewed screen

2009-03-30 Thread Neelima Kakarla
Hai I am doing an AIR application. My requirement is to store the last viewed page when application restarts. Please help me in this regard. Thanking you. Regards Neelima --~--~-~--~~~---~--~~ You received this message because you are subscribed to the G

[flex_india:20986] where to store jsp files in my flex project

2009-03-30 Thread Gerald Anto
hello friends, how to configure the jsp file. in my project,jsp,src,web-inf,bin-debug folders. and running in Tomcat 6.0 in my src folder i have file named finance.mxml. in my jsp folder i have a jsp file named compare.jsp in my web-inf folder, src have java file which called by compare.jsp and c

[flex_india:20985] time comparision

2009-03-30 Thread krishna
hi all, i want to compare two times.ie; i have two comboboxes fromTime & toTime. both populated with 12.00AM-11.45PM. I want to compare the timings selected by the user. ie; if the start time is greater than end time im not allowed to fire an event and if starttime is less than end t

[flex_india:20984] Re: Progress event for webservice call

2009-03-30 Thread babun mondal
please see this url... http://www.insideria.com/2009/03/flex-101-accessing-a-web-servi.html I think it will help u. On Fri, Mar 27, 2009 at 10:06 PM, Utkarsh kaushal wrote: > Are you invoking web service from MXML or are you u

[flex_india:20983] Re: Dynamically change the Label width of the Column chart.

2009-03-30 Thread Jagadish M
http://www.adobe.com/2006/mxml";> On Sun, Mar 29, 2009 at 9:21 PM, pankaj munjal wrote: > we do have width property in the chart to make each column to fix widht. > Hope it will be helpfull Pls let me know if you need further help > > > On

[flex_india:20982] Re: How to fill Combobox

2009-03-30 Thread Gurnam Singh
thx for reply now my problem is solved On Sun, Mar 29, 2009 at 5:33 PM, Shaleen Jain wrote: > > Hi Guru, > > Thought the question is not very much clear, what whatever I > understand is that you have a arraycollection having records of 10 emp > and you want to show only one emp at a time. > > Cor

[flex_india:20981] Re: ContextMenu in AIR

2009-03-30 Thread babun mondal
Hi, How free hand drawing is possible in flex 3 , Can u give any idea ? --~--~-~--~~~---~--~~ 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:20980] Re: ContextMenu in AIR

2009-03-30 Thread VijayRama
Hi, Below is sample code to display the ContextMenu in AIR, private function OnMouseDown(event:MouseEvent) { var cm:ContextMenu=new ContextMenu(); var cmi:ContextMenuItem=new ContextMenuItem("Test"); cm.display(event.target.stage,event.localX,event.localY); } Hope this helps

[flex_india:20977] Rowcount in Advanceddatagrid

2009-03-30 Thread vinod kumar
How to get the actual row count of an advanceddatagrid with Open nodes and closed nodes --~--~-~--~~~---~--~~ 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@goo

[flex_india:20978] Problem with changing row position.

2009-03-30 Thread deeps
Hi all, can anybody tell me .. is it possible to change row positions in a datagrid with mouse as we can change columns? if yes then how? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Flex India Community" group.

[flex_india:20979] Problem in moving datagrid rows

2009-03-30 Thread deeps
Hi All, I wanna know .. as we can shift column headers/colums with mouse... Can we shift rows as well..?? with mouse only.. (I mean changing the position of rows with mouse) Please help? Regards --~--~-~--~~~---~--~~ You received this message because you are subs

[flex_india:20976] Adobe-flex-3air-ace-certification Mock Exam Online

2009-03-30 Thread Devaraj
Hi All, http://nsdevaraj.wordpress.com/2009/03/28/adobe-flex-3air-ace-certification/ Best Wishes for cracking the exam successfully. Regards, Devaraj --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Flex India Comm

[flex_india:20975] Re: Adding columns dynamically to AdvancedDataGrid

2009-03-30 Thread umair
May be this helps, http://blog.flexgeek.in/2007/06/task-scheduler-chart-using-advanceddatagrid-moxie/ Muhammad Umair On Mar 26, 8:54 am, BB47 wrote: > Hai All, >         Iam new to flex. Iam in need of creating an application using > advanced datagrid. I want to generate grid columns dynamica

[flex_india:20974] failed displayAsPassword situation

2009-03-30 Thread bavy...@gmail.com
I have this custom made textinput file for my application.When I am using my textinput feature in one of my components,there is this weird problem.So i choose an item and go to edit mode.I don make changes and go back to previous page and then i click view on the same item.The password field on th

[flex_india:20973] Discussion on blogs

2009-03-30 Thread dhvanesh
Hi, Please also add my brand new blog: http://flexapplicationdevelopment.wordpress.com/ --~--~-~--~~~---~--~~ 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@

[flex_india:20972] Re: DoubleClick disable in datagrid

2009-03-30 Thread Karthik K
hi *anand* but still it is worling doubleClickEnabled="false" but i don have any idea how it is working any other solution -- Karthik.k Mobile - +91-9894991640 On 3/30/09, GAGAN anand wrote: > > Hi Karthik > > In flex, doubleClickEnabled property is by default set to false. So double > clic

[flex_india:20971] Re: DoubleClick disable in datagrid

2009-03-30 Thread GAGAN anand
Hi Karthik In flex, doubleClickEnabled property is by default set to false. So double click will not work until you make it true. Regards Gagan Deep 2009/3/30 Karthik K > hi guys > > i need to know how to disable doubleclick event in datagrid i already have > > itemDoubleClick=" > *false*" > b

[flex_india:20970] DoubleClick disable in datagrid

2009-03-30 Thread Karthik K
hi guys i need to know how to disable doubleclick event in datagrid i already have itemDoubleClick="*false*" but still it is taking double click i need only itemClick and need to stop doubleclick any idea please help -- Karthik.k Mobile - +91-9894991640 --~--~-~--~~~-