Re: [flexcoders] What's your favorite automated testing tools?

2010-05-05 Thread Akshar Kaul
try QTP(quick test pro). Akshar Kaul On Wed, May 5, 2010 at 02:09, ssekiguchi ssekigu...@comcast.net wrote: I've got a project where I need to build automated UI tests for the app we're building. Any suggestions on which tool is the best?

Re: [flexcoders] Logout question

2010-05-12 Thread Akshar Kaul
for capturing that you will need to use javascript. Akshar Kaul On Wed, May 12, 2010 at 14:58, Christophe christophe_jacque...@yahoo.frwrote: Hello, How to know if a user on a flex application is logout. Because the logout is not always made with the logout button, he can close

Re: [flexcoders] TileList Itemrenderer's TextInput focus problem on keyboard Tab key

2010-05-14 Thread Akshar Kaul
use tabindex property to set the order in which you want to set the focus using tab key... Akshar Kaul On Fri, May 14, 2010 at 11:04, Nilesh pawarnil...@yahoo.com wrote: Hello Members, I am facing problem with textinput focus on keyboard Tab key. Is there any way to get focus on next

Re: [flexcoders] Changing the dataProvider for a ComboBox doesn't seem to work properly

2010-05-28 Thread Akshar Kaul
use arraycollection as the dataprovider. also set [Bindable] tag before the variables. Akshar Kaul On Fri, May 28, 2010 at 15:18, Nick Middleweek n...@middleweek.co.ukwrote: Hi, I have a ComboBox with it's dataProvider set to an Array( =, , , ); If a TextInput is changed, I want

Re: [flexcoders] Comobox/DataGrid does not display data

2010-05-29 Thread Akshar Kaul
try using formType.refresh() after you modify your array collection. Akshar Kaul On Sat, May 29, 2010 at 03:49, md_ars mdar...@gmail.com wrote: I have a Combobox and its dataprovide is an ArrayCollection(formType) which is being populate from XMLLIst(formXMLListB) as given below public

Re: [flexcoders] Re: Comobox/DataGrid does not display data

2010-06-03 Thread Akshar Kaul
can you share the whole code or some sample code. Akshar Kaul On Tue, Jun 1, 2010 at 22:31, md_ars mdar...@gmail.com wrote: Thanks Ashkar for the reply, I had already tried but it didn't work --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Akshar Kaul akshar.k

Re: [flexcoders] Re: Showing tooltip on the line

2010-06-03 Thread Akshar Kaul
mx:UIComponent id=uiComp name=uiTest/ /mx:Box Noe you can see the tool tip only for the line, not for the component :) Akshar Kaul On Wed, Jun 2, 2010 at 12:23, Akshar Kaul akshar.k...@gmail.com wrote: i am creating the line using graphics methods. i dont think they support event

Re: [flexcoders] Re: Showing tooltip on the line

2010-06-03 Thread Akshar Kaul
i am creating the line using graphics methods. i dont think they support event listeners. Akshar Kaul On Tue, Jun 1, 2010 at 19:09, valdhor valdhorli...@embarqmail.com wrote: If it were me, I would create a custom tooltip; add a mouseover event listener to your line; check the color

Re: [flexcoders] load CSV from Flex?

2010-06-14 Thread Akshar Kaul
you want to read from local file system ??? Akshar Kaul On Mon, Jun 14, 2010 at 22:24, markflex2007 markflex2...@yahoo.com wrote: Hi, Do you think if it is possible I can read csv file from Flex without side server language? Using HttpServer or other? Thanks Mark

Re: [flexcoders] RadioButton as DataGrid item editor

2010-06-24 Thread Akshar Kaul
can you share the code. Akshar Kaul On Thu, Jun 24, 2010 at 01:26, Dave Glasser dglas...@pobox.com wrote: It seems like it should be simple, but it's a nightmare. I'm using Flex 3.3. The items in my dataProvider have a Boolean property. I want only 1 item to have this property set

Re: [flexcoders] datagrid checkbox selection

2010-06-30 Thread Akshar Kaul
add a boolean field to the data provider and link it to the check box. when you want to find out which rows are selected you can iterate over the data provider and check this boolean field. Akshar Kaul On Wed, Jun 30, 2010 at 19:39, sunfast_kid em...@richardcraig.info wrote: Hi I have

Re: [flexcoders] Re: datagrid checkbox selection

2010-07-01 Thread Akshar Kaul
}/ /mx:HBox /mx:Component /mx:itemRenderer Akshar Kaul On Thu, Jul 1, 2010 at 16:15, sunfast_kid em...@richardcraig.info wrote: Thanks Akshar, but don't I need a click event on the checkbox to update the dataprovider? The problem is adding a click event

Re: [flexcoders] Reload an application

2010-07-23 Thread Akshar Kaul
why do you want to reload the whole application. you can just write a method at the application level to reset the application to the initial state. Akshar Kaul On Fri, Jul 23, 2010 at 14:11, claudiu ursica the_bran...@yahoo.com wrote: Make a javascript call through external innterface

Re: [flexcoders] After importing file using FileReference focus is lost

2010-08-10 Thread Akshar Kaul
you can listen to the completion event of the filereference and then set the focus to whatever component you want. Akshar Kaul On Tue, Aug 10, 2010 at 11:13, chinaloveshisiling chinaloveshisil...@yahoo.com wrote: When using the keyboard to navigate the UI, focus is lost after importing

Re: [flexcoders] Re: After importing file using FileReference focus is lost

2010-08-10 Thread Akshar Kaul
try importButton.setFocus(); Akshar Kaul On Tue, Aug 10, 2010 at 11:42, chinaloveshisiling chinaloveshisil...@yahoo.com wrote: Thanks Akshar, I had tried use the method you mentioned. Call focusManager.setFocus(importButton); in the function handle for the completion event

Re: [flexcoders] Re: After importing file using FileReference focus is lost

2010-08-10 Thread Akshar Kaul
can you share your code. Akshar Kaul On Tue, Aug 10, 2010 at 13:11, chinaloveshisiling chinaloveshisil...@yahoo.com wrote: Tried. Still no effect. And other ideas? :-) --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Akshar Kaul akshar.k...@... wrote: try

Re: [flexcoders] Push verse Poll in Flash Player

2010-08-11 Thread Akshar Kaul
what kind of notifictions do you want. i guess you want to query your backend every 30 or 60 seconds.. Akshar Kaul On Thu, Aug 12, 2010 at 05:46, dorkie dork from dorktown dorkiedorkfromdorkt...@gmail.com wrote: Is there a way to get notifications on a regular interval for Flash

Re: [flexcoders] Push verse Poll in Flash Player

2010-08-12 Thread Akshar Kaul
when necessary. however for this thing you will need to have blazeds or lcds at the backend. check the corresponding developer manuals for more details on how to do it. Akshar Kaul On Thu, Aug 12, 2010 at 13:57, dorkie dork from dorktown dorkiedorkfromdorkt...@gmail.com wrote: correct

Re: [flexcoders] Constraining one components location to another component

2010-08-28 Thread Akshar Kaul
you can use states. or try using Hbox and Vbox.. --- Akshar Kaul --- On Fri, Aug 27, 2010 at 19:46, Haykel BEN JEMIA hayke...@gmail.com wrote: Hi, I think the best way is to create a new component that will hold the image and the floating components and handle visibility

Re: [flexcoders] Re: ItemDoubleClick ListEvent not fired even with doubleClickEnabled = true

2010-09-08 Thread Akshar Kaul
have you set doubleclikenabled to true ??? --- Akshar Kaul --- On Tue, Sep 7, 2010 at 18:44, carnau...@ymail.com carnau...@ymail.comwrote: Hello, Does anyone know any work-arround for this ItemDoubleClick *not fired*... issue ? I've noticed a similar post, for the same issue, here