Re: [flexcoders] Is it the right way of using dispatchEvent?

2005-10-19 Thread Ramu p
Hi Abdul,Thanks a lot for giving breif description on dispatchEvent. One more doubt in this, we declared event before imprting specific classes.Why is it so? I tried doing it in class, but not successfull.What is the reason? And at the same time, creating a pure UIComponent in Flasg is a bit

Re: [flexcoders] hi, i am new to flex, can any one help me how so go with it ?

2005-10-18 Thread Ramu p
... Need ur support! Thx in advance. On 10/12/05, Manish Jethani [EMAIL PROTECTED] wrote: On 10/10/05, Ramu p [EMAIL PROTECTED] wrote: Nice to know that u r from Blore, India, where I am also from. I think we need a Flex User Group (TM) in Bangalore.Send an emailAbdul Qabiz (aqabiz at macromedia.com

[flexcoders] Is it the right way of using dispatchEvent?

2005-10-18 Thread Ramu p
Hi Flex coders, Thanks a lot to all group people for solving my problem on Issue on Accordion reference. I am stuck up with one more problem. Here is the problem, I have a simple mxml file which uses a component(circle.as) , extends UIComponent. OnPress of this circle I want to invoke a

Re: [flexcoders] Re: Unable to refer controls in Accordion !

2005-10-17 Thread Ramu p
@yahoogroups.com, Ramu p [EMAIL PROTECTED] wrote: Hi Flexcoders,I have a problem with Accordion which has two containers (Canvases) inside it and that have few controls (Check boxes and buttons). Here the problem is, I am unable to refer any control that isplaced in second canvas.The above happens

Re: [flexcoders] hi, i am new to flex, can any one help me how so go with it ?

2005-10-17 Thread Ramu p
Hi guys, Nice to know that ur all from Blore. Even I started using Flex just 2mnths back... Need ur support! Thx in advance. On 10/12/05, Manish Jethani [EMAIL PROTECTED] wrote: On 10/10/05, Ramu p [EMAIL PROTECTED] wrote: Nice to know that u r from Blore, India, where I am also from. I

Re: [flexcoders] hi, i am new to flex, can any one help me how so go with it ?

2005-10-11 Thread Ramu p
Hi gonchu24. Nice to know that u r from Blore, India, where I am also from. Well, to start learning Flex,I guess u Flex server and Builder(Not mendatory) Start using tags and if u r familiar with AS, you can easily proceed. For all clarifications, mail me back. Ram. Flex Eng. Blore,India.

Re: [flexcoders] Accessing the main Application Class

2005-10-11 Thread Ramu p
Hi Marc, Just parentApplication gives you the reference to the parent. But in your mxml file , you cant insert tags that I made red in between I guess. On any of the events u may have to call them. Pls correct me if any wrongs. Good luck. On 10/10/05, Marc Teichtahl [EMAIL PROTECTED] wrote:

Re: [flexcoders] Reading the displayed value in a DataGrid - How to

2005-10-11 Thread Ramu p
Hi, U guess there is a mistake in the following line that you used. mx:DataGridColumn columnName=myComputedColumnheaderText=All labelFunction=cocanateAll/ The above must be: mx:DataGridColumn columnName={myComputedColumn}headerText=All labelFunction=cocanateAll/ Pls correct me if any

Re: [flexcoders] Re: getting to the selected Tree node

2005-10-10 Thread Ramu p
Hi David, The below code solves ur Prblem!!! mx.controls.Alert.show(Label:+event.target.selectedItem[backingObject].label) Just try it out!!! Good luck! On 10/10/05, David Aden [EMAIL PROTECTED] wrote: Oh, also tried: evt.target.selectedNode That does have a child backingObject which does

Re: [flexcoders] [Flex/Javascript] Javascript function not found when called from Flex

2005-10-10 Thread Ramu p
Hi Manish, I guess the below works out for U!!! Try it out!! Code for Mxml: ?xml version=1.0 encoding=utf-8?mx:Application xmlns:mx=http://www.macromedia.com/2003/mxmlmx:Script ![CDATA[import mx.controls.Alertfunction callJS(){Alert.show(Clicked on Btn)var someText = SomeText from

Re: [flexcoders] startDrag stopDrag?

2005-10-10 Thread Ramu p
Hi, This may solve ur prob. [This code is a block of class] obj here is same as _rect in your class. I guessyou need not use addEventListener... This works out!!! function createChildren():Void{obj = attachMovie(cir_sym,cir_sym,1)}function onMouseDown():Void{obj.startDrag()}function