[flex_india:28809] Re: Zoom in and out with the mouse scroll wheel on an image....Immediate help needed plz

2010-02-25 Thread arun
private function init():void{ this.addEventListener(MouseEvent.MOUSE_WHEEL,mwHandler) } private function mwHandler(event:MouseEvent):void{ if(event.delta0){ image.scaleX -= 5 image.scaleY -= 5

Re: [flex_india:28810] Re: combobox gets blank once value is selected

2010-02-25 Thread prajnith k
hey can any one explain the code... why u wrote like this in vbox/? implements=mx.controls.listClasses.IDropInListItemRenderer,mx.managers.IFocusManagerComponent and public function get listData():BaseListData { return _listData; } public

[flex_india:28811] Free Flex Exam/tests

2010-02-25 Thread kalavati singh
Hi, I wanted to know is there are any free tests for flex.I hope most of the us are familiar with Brain Bench . I am looking for a similar kind. Regards Kalavati -- You received this message because you are subscribed to the Google Groups Flex India Community group. To post to this

[flex_india:28812] Help Required to Disable Status bar and address bar in opening a new window from Flex

2010-02-25 Thread ganapathy subramanian
Hi, My application requires to open a popup window. I am trying to disable the status bar, address bar in it. Though I set option statusbar=false , I am not able to get the desired reult. Someone please help me in this..Thanks Thanks Ganapathy -- You received this message because you are

[flex_india:28813] Do Flex User Grp members meet in Bangalore?

2010-02-25 Thread Denise Subramaniam
I'd love to get together with other Flex developers. I am new to Flex and want to discuss best practises and more with others more experienced. I also have project and would like to find a sub- contracotr I can count on. -- You received this message because you are subscribed to the Google

Re: [flex_india:28814] Free Flex Exam/tests

2010-02-25 Thread Saurabh Narula
Hi, http://software.pxldesigns.com/attestpro/ http://software.pxldesigns.com/attest/ Look at Attest Pro and free version,these are the free mock tests available right now. Thank you. Saurabh On Thu, Feb 25, 2010 at 2:16 PM, kalavati singh kalavati.si...@gmail.comwrote: Hi, I wanted

Re: [flex_india:28815] Do Flex User Grp members meet in Bangalore?

2010-02-25 Thread Saurabh Narula
Hi Denise, Yes, Bangalore Flex User Group tries to meet every month or every other month to have a short and brief meet to discuss topics related to flex and flash platform, you can follow and join the group at bangalorefx.org. We are planning to meet sometime next month, will keep the members

Re: [flex_india:28816] Do Flex User Grp members meet in Bangalore?

2010-02-25 Thread Denise Subramaniam
Thank you for the quick reply. Do you know anyone in the group who could meet with me to help work on a small Flex project - I can hire him/her as a sub-contractor. I only need some guidance. It is a client project and I'd like to complete it quickly,. Denise On Thu, Feb 25, 2010 at 3:18 AM,

[flex_india:28817] upload file from air

2010-02-25 Thread flex
hi all, is there any sample where we can upload any file from air to php ? thanks you -- 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_in...@googlegroups.com. To unsubscribe from this group, send

[flex_india:28818] Looking for an experience Flex Builder developer

2010-02-25 Thread Denise Subramaniam
Hi, I am new to Flex Builder and have a client who needs a small project completed quickly - Flex is his choice not mine but thought I'd give it a try. I'm an experienced developer in other technologies and am looking for someone who can help me understand the Flex Builder environment better. I

[flex_india:28819] image in datagrid cell

2010-02-25 Thread dme
Hi, I need to display image in data grid cell based on its Boolean value. Below i am descripting my requirement. let me know if any help available. I have a column in data grid which is of Boolean type. If true a lock image has to be displayed in that particular cell to show that the row is

Re: [flex_india:28820] image in datagrid cell

2010-02-25 Thread krishna shinde
Hiii, just go through it , may help you http://livedocs.adobe.com/flex/3/html/help.html?content=cellrenderer_7.html On Thu, Feb 25, 2010 at 5:50 PM, dme mails4...@gmail.com wrote: Hi, I need to display image in data grid cell based on its Boolean value. Below i am descripting my

Re: [flex_india:28821] Html to pdf conversion

2010-02-25 Thread Abdul Nizar
In Flex? On 23 February 2010 22:39, Bambam Choudhary sribam...@gmail.com wrote: Hi Anybody deals with button from html while converting into pdf . Can you give a solution for that? Thanks Bambam -- You received this message because you are subscribed to the Google Groups Flex India

[flex_india:28823] flex ppts

2010-02-25 Thread mahesh gattamneni
Higuys i want flex ppts to give demo on the flex if anbody have please froward to me -- ThanksRegards Mahesh.G +91-9876156874 -- You received this message because you are subscribed to the Google Groups Flex India Community group. To post to this group, send email to

Re: [flex_india:28826] addchild()vs dislpaylist()

2010-02-25 Thread flex group
go throgh this url http://unitedmindset.com/jonbcampos/2009/03/11/turning-components-from-mxml-to-actionscript-part-3/ On 2/24/10, lakshminarayan k naraya...@gmail.com wrote: hi all what is diffrence between addchild() and displaylist() what is use of DisplayList() and updatedisplayLIst()

Re: [flex_india:28825] Html to pdf conversion

2010-02-25 Thread Bambam Choudhary
yes in flex AIR. On Thu, Feb 25, 2010 at 6:50 PM, Abdul Nizar abdul...@gmail.com wrote: In Flex? On 23 February 2010 22:39, Bambam Choudhary sribam...@gmail.com wrote: Hi Anybody deals with button from html while converting into pdf . Can you give a solution for that? Thanks

Re: [flex_india:28827] Re: Styling the Alert control with css

2010-02-25 Thread swidnikk
There is one thing that cannot be done with Alert control and that is to right/left align the Alert control buttons. This layout is hardcoded in mx.controls.alertClasses.AlertForm :-( -- View this message in context:

[flex_india:28828] :: issue with extended TextInput class ::

2010-02-25 Thread Arindam Dhar
Hi, I have extended a TextInput class. Fo ex, myTextInput extends Textinput var inputText:myTextInput = new myTextInput(); now when I set the maxChars property , inputText.maxChars =10, its just not working, meaning I am able to enter more than 10 characters. Can anyone kindly tell me where