[flex_india:18425] Re: DOUBLE_CLICK EventListener

2009-01-22 Thread zen
you can check double click yourself: the sample code var tempT:Number = 0; addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler); function mouseDownHandler(e:MouseEvent):void { var clickTime:Number = new Date().getTime(); if (clickTime - tempT 300) {

[flex_india:18427] Re: DOUBLE_CLICK EventListener

2009-01-22 Thread Yogesh Gaur
use MOUSE_MOVE for Drag and drop .. it will work ( it works for me .. i have used a move and click together on an image for DnD and popup respectively On Jan 22, 10:28 am, Mudassir mudassir.m...@gmail.com wrote: Hi Friends, Im using both MOUSE_DOWN, DOUBLE_CLICK EventListener. The

[flex_india:18430] Re: Regarding A.S.3.0 problem

2009-01-22 Thread abhishek singh
I think ur code is valid for Action Script 2.0; I m asking for Action Script 3.0; On 1/22/09, Mayur mayur.r...@gmail.com wrote: go to frame 20 and do as follows a_btn.visible = false; and if you want that button should not even occupy its space on that Movie clip, use

[flex_india:18431] Re: Help required to capture part of screen shot into clipboard

2009-01-22 Thread Prasanth VM
Hi Mallika, Check this URL. http://www.flexer.info/2008/10/16/how-to-crop-and-resize-an-image-used-as-background-for-canvas/ Regards, Prasanth VM On Thu, Jan 22, 2009 at 9:58 AM, Mallika Choudam akic@gmail.com wrote: Hi Paritosh, Thanks for ur mail. But i want to capture a

[flex_india:18433] DataGrid Sort Direction

2009-01-22 Thread Arun Jacob Elias
Hello, I have a datagrid and when I click the toggle for sorting, the direction of sorting is upside down, eg: for descending, it shows the up arrow and for ascending it shows down arrow. See the screen shot attached. How can I resolve this issue?

[flex_india:18435] Re: Regarding A.S.3.0 problem

2009-01-22 Thread abhishek singh
thanks but ur code is not correct; but i hav got some code that is:on 20th frame of b_mc, i hav to write this.parent.getChildByName(a_btn).visible=false; On 1/22/09, Jaydeep Tank jaydeep.t...@gmail.com wrote: Hi, try this code function enterFrameHandler(event:Event):void {

[flex_india:18436] Re: Regarding A.S.3.0 problem

2009-01-22 Thread Jaydeep Tank
Hi, I have tesed in Flash it is working. What is wrong this? Regards, Jaydeep Tank On Thu, Jan 22, 2009 at 4:29 PM, abhishek singh denimabhis...@gmail.comwrote: thanks but ur code is not correct; but i hav got some code that is:on 20th frame of b_mc, i hav to write

[flex_india:18437] Re: Regarding A.S.3.0 problem

2009-01-22 Thread abhishek singh
Hi, Hav u checked ur code in Action Script 3.0? On 1/22/09, Jaydeep Tank jaydeep.t...@gmail.com wrote: Hi, I have tesed in Flash it is working. What is wrong this? Regards, Jaydeep Tank On Thu, Jan 22, 2009 at 4:29 PM, abhishek singh denimabhis...@gmail.comwrote: thanks but

[flex_india:18438] Re: Regarding A.S.3.0 problem

2009-01-22 Thread abhishek singh
Oh , sorry, U r right, i m using ur code at 20 th frame, I should use ur code at main time line of stage. And my code was for 20 th frame; Thanks a lot, On 1/22/09, abhishek singh denimabhis...@gmail.com wrote: thanks but ur code is not correct; but i hav got some code that is:on 20th

[flex_india:18439] List box data

2009-01-22 Thread dhileepen chakravarthy
Dear All, I want to display list box all values one by one.. How? I have 2 list items i can drag or drop from one to other.finally i want to know what are the values are there in each by means of programatically. initially datas coming from php Regards, dhileepen

[flex_india:18440] Text to Speech in Flex

2009-01-22 Thread Jaydeep Tank
Hi, Anybody has worked on Text to Speech in Flex. Is there any classs or compenent which can be use to create Text to Speech application in flex. Regards, Jaydeep Tank --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[flex_india:18441] Re: List box data

2009-01-22 Thread Yogesh Gaur
U have two lists with you ..after u do dnd or at any time if u want to get items in those list ... u can always use listBoxId.numChildren to get number of items in that list then loop over it and get the lable and value of the item using method listBoxId.getChildAt(index of the child u want )

[flex_india:18442] Re: DataGrid Sort Direction

2009-01-22 Thread Yogesh Gaur
hey u can use any image for the sort arrow ... just see this snippet of code u will understand ..its easy and kool.. flex rocks !!! mx:DataGrid id=dataGrid dataProvider=anyDataProvider sortArrowSkin=@Embed('TheArrowOfMyChoice.jpg') just embed the image u want ... u can just change the

[flex_india:18444] Counting the number of Children

2009-01-22 Thread sudhi
Dear all, I have a main component which has so many components as its children. then these children has children within their selves. So all together i have deeply nested components(4 levels). All components are extended from Sprite. i want to count the number of children under the main

[flex_india:18445] Re: List box data

2009-01-22 Thread dhileepen chakravarthy
Thank you for the reply Yogesh. But its not working for mine. I have two list boxes names available and selected. Below the result of PHP rows - DefaultHeader rowGender/row rowSSN/row rowCCDoctorName1/row rowReferringPhysicianName/row rowAttendingPhysicianName/row rowPatientList/row

[flex_india:18443] Re: DataGrid Sort Direction

2009-01-22 Thread Jagadish M
Thanks Yogesh i'm also searching for this On Thu, Jan 22, 2009 at 5:29 PM, Yogesh Gaur letsrockwi...@gmail.comwrote: hey u can use any image for the sort arrow ... just see this snippet of code u will understand ..its easy and kool.. flex rocks !!! mx:DataGrid id=dataGrid

[flex_india:18446] How can i make a OMR type component in Flex

2009-01-22 Thread swastik
Hello Guys , can anybody suggest me how to make a OMR type component in Flex .I mean to say that i want to make something like we get answers sheet in exams ,where we to fill bubbles .I am trying to make this component in Flex and like to use this in my project .Can anybody suggest how to

[flex_india:18447] Re: DataGrid Sort Direction

2009-01-22 Thread Arun
My issue is not about using image. For ascending sort it is showing arrow downwards and for descending it is showing upward arrow. Just the opposite of normal behavior. Any way I could resolve this? On Jan 22, 8:08 pm, Jagadish M jagan.f...@gmail.com wrote: Thanks Yogesh i'm also searching

[flex_india:18448] Re: Counting the number of Children

2009-01-22 Thread Sreenivas...........
hi sudhi var j:int = 0; for(var i:int = 0;istartCmpId.numChildren;i++) { obj = startCmpId.getChildAt(i); j += obj.numChildren; } Alert.show(Total childrens+j); based on this u can

[flex_india:18449] Re: How to catch event when flex application browser close

2009-01-22 Thread HISSAM
what u want to do then?? On Thu, Jan 22, 2009 at 10:10 AM, sudheer kumar g.sudheer2...@gmail.comwrote: HI How to catch event when flex application browser closed. ie In my application I want to catch event when close IE or Mozilla browser. sudheer -- -

[flex_india:18450] How to draw a normalized curve or Bell curve

2009-01-22 Thread Axay
Hi, I need to draw a normalized curve or Bell curve as per this link : http://en.wikipedia.org/wiki/File:Standard_deviation_diagram.svg As per this figure I need to display 1. six different color sections displaying percentage labels as shown in the figure. Please help me on this. If you have

[flex_india:18451] ADG with a single itemRenderer

2009-01-22 Thread Berkowitz - Fator13
Hello folks! I'm creating a ADG with groups and a column that shows the average of the values of that group (as the picture from left). How do I insert a row above bringing the average for all dates (picture right)? Screen: http://i483.photobucket.com/albums/rr191/rafael_berkowitz/adg.gif Thank

[flex_india:18452] Re: How can i make a OMR type component in Flex

2009-01-22 Thread Shaleen Jain
use radiobutton group. Thanks, Shaleen Jain http://shaleenjain.blogspot.com On Jan 22, 5:41 pm, swastik vikas.deoar...@gmail.com wrote: Hello Guys ,     can anybody suggest me how to make   a OMR type component in Flex .I mean to say that i want to make something like we get answers sheet

[flex_india:18453] Image Upload with Drag and Drop

2009-01-22 Thread Hemant Verma
hi I am trying to build a image editor in flex , I need to add the following functionality , Any Idea How to Implement A Client side machine can drag and drop the image into Flex Application and then image get upload and seened in flex image editor Hemant Verma FameofLight [at] gmail.com

[flex_india:18454] Re: ADG with a single itemRenderer

2009-01-22 Thread Berkowitz - Fator13
This is the code that i used in app: private function gerarAgrupamento():void { var myGColl:GroupingCollection = new GroupingCollection(); var group:Grouping = new Grouping(); var sr:SummaryRow = new SummaryRow(); var

[flex_india:18455] Hi

2009-01-22 Thread babu
Hi I am new to flex, I need help in facing the interviews Thanks Madhu --~--~-~--~~~---~--~~ 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

[flex_india:18456] Re: Hi

2009-01-22 Thread HISSAM
what help u need?? On Thu, Jan 22, 2009 at 3:44 PM, babu madhu52...@gmail.com wrote: Hi I am new to flex, I need help in facing the interviews Thanks Madhu -- - Regards, HISSAM, --

[flex_india:18457] Re: Help required to capture part of screen shot into clipboard

2009-01-22 Thread Paritosh Bisi
Hi Mallika, Follow the link sent by Prasanth. Regards, Paritosh On Jan 22, 2:06 pm, prasanth atprasanth...@gmail.com wrote: Hi Mallika, Check this URL. http://www.flexer.info/2008/10/16/how-to-crop-and-resize-an-image-use... Regards, Prasanth VM On Jan 22, 9:28 am, Mallika

[flex_india:18458] Re: Help required to capture part of screen shot into clipboard

2009-01-22 Thread prem
Please use the following codes : This needs to be an AIR application. Flex cannot copy data from the Clipboard as it would be a desktop file access which is not allowed in Flex public function doPaste():void { var bmpData:BitmapData = Clipboard.generalClipboard.getData

[flex_india:18462] Re: Counting the number of Children

2009-01-22 Thread Jitendra Jain
Actually you need to override the method addChild of the container and in that increment the counter. This counter should be class instance variable. With regards, JJain --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[flex_india:18463] Re: How to catch event when flex application browser close

2009-01-22 Thread Jitendra Jain
There is no indication when the browser quits. Please read docs for more information. with regards, JJain --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Flex India Community group. To post to this group, send email

[flex_india:18464] Re: Using https with AIR

2009-01-22 Thread abhishekchess1
hey, i'm not getting any error, its working for me, navigateToURL(new URLRequest('https://amc-webstp.test.mellon.com/ webstp/stresstest/upload.jsp')); :) On Jan 23, 9:22 am, prem prema...@gmail.com wrote: I need to access an https url from my AIR application. But when I give this url and run

[flex_india:18465] Re: List box data

2009-01-22 Thread dhileepen chakravarthy
Please help me anyone --~--~-~--~~~---~--~~ 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 unsubscribe from this group, send email to

[flex_india:18466] Re: Using https with AIR

2009-01-22 Thread prem
My Codes are like this: var variables:URLVariables = new URLVariables(); var urlRequest:URLRequest = new URLRequest(); urlRequest.url = https://localhost:8080/TestApplication/index.jsp;; urlRequest.method = URLRequestMethod.POST;

[flex_india:18467] Re: How to draw a normalized curve or Bell curve

2009-01-22 Thread subeesh a
Hi, Check Degrafa http://www.degrafa.org/ Subeesh On Thu, Jan 22, 2009 at 7:48 PM, Axay axayaxaya...@gmail.com wrote: Hi, I need to draw a normalized curve or Bell curve as per this link : http://en.wikipedia.org/wiki/File:Standard_deviation_diagram.svg As per this figure I need to

[flex_india:18470] How to Use XSL in Flex Action Script 3

2009-01-22 Thread jatin
what i want is to use XML with XSL in my action script 3 code. what i was trying to do is to convert my XML using a XSL style sheet and display the data in Text Area. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[flex_india:18469] Flex Decompiler

2009-01-22 Thread sahanauday
I would like to know how to convert swf to txt using flex decompiler... Plz can u suggest some softwares for doing the same --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Flex India Community group. To post to this

[flex_india:18468] Re: Counting the number of Children

2009-01-22 Thread sudhi
Oh thanks a lot Srinivas. That one worked for me. Regards Sudhi --~--~-~--~~~---~--~~ 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:18471] List select all

2009-01-22 Thread dhileepen chakravarthy
Dear All, How to select all data on the list by one button click Thanks in advance, Dhileepen --~--~-~--~~~---~--~~ 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:18472] Problem with LocalConnection using Flex and AIR

2009-01-22 Thread prem
Hi, I am trying to use LocalConnection with AIR and Flex Application. But I am not able to connect. My AIR codes are like : private var urlTOAccess : String; private function init() : void { senderLC = new LocalConnection(); receiverLC = new LocalConnection();

[flex_india:18474] Problem with Flex AIR Application and Window look n feel

2009-01-22 Thread bjg
Hi, Is there a way to get rounded corners on the bottom, but not on the top for TabNavigator ? I also have a peculiar problem. I have background color of my Application, Window as Black (#00). (The Application pops up the Window). There's a Panel as a child to the Window. The Panel has

[flex_india:18475] Re: Flex Decompiler

2009-01-22 Thread karan
What is the purpose of converting SWF - TXT. Since SWF is a binary file, even if you convert to TXT file, you will get junk characters Karan On Fri, Jan 23, 2009 at 10:32 AM, sahanauday sahanau...@gmail.com wrote: I would like to know how to convert swf to txt using flex decompiler... Plz