[flexcoders] Flex Vaildation Problem

2007-12-05 Thread Shidan
When validating with Flex, When I navigate back and forth from different views, the red box outline appears for validation error, even if I fix it to a correct value. Has anyone else seen this and is there a work around. Cheers, Shidan

[flexcoders] Automated Testing

2007-11-09 Thread Shidan
Hi, apart from using Mercury QTP, is there anything else to perform automated tests with Flex. What are peoples strategies for testing flex apps. ? --- Shidan

[flexcoders] Finding all TextInputs in a Panel

2007-04-24 Thread Shidan
I would like to find all the TextInputs in a Panel but when I do a for in loop over the Panel I get nothing. for (var 0:Object in panel){ Alert.show(o.toString()); } Can someone give me a pointer. Thanks, Shidan

[flexcoders] Populating DataGrid from XML attributes

2007-02-13 Thread Shidan
or pointers. --- Shidan

[flexcoders] Link in DataGridColumn

2007-02-13 Thread Shidan
How do I add a hyperlink in a DataGridColumn and for the value displayed in the cell I want the link to be like this: http:\\thesite.com\the value

[flexcoders] Flex Coders in Toronto

2007-01-09 Thread Shidan
Hi, are there any flex coders here from Toronto who are interested in full time employment. Skills with concurrency models, embedded devices and Python would be a good bonus but not required. Please contact me off list if interested in knowing more. - Shidan

[flexcoders] Re: Setting properties of a Sprite

2006-05-07 Thread Shidan
to be a visible rectangular box of a certain color) Cheers, Shidan On 5/6/06, Shidan [EMAIL PROTECTED] wrote: Hi, if I have a class that extends Sprite how do i overide its x, y, hieght and width values, useHandCursor and ButtonMode and set its background color. This is the relevant part i have now

[flexcoders] Drawing in a List

2006-05-02 Thread Shidan
Hi If I have this: var statusHash = {mike : online,drew : offline, sarah : online} and I want to populate the second row of a List with a green dot for every member of statusHash online and a red dot for every member offline. How would I do that. I want to draw circles with the Graphics