[flex_india:31989] Re: parsing parameter through AddEventListner

2010-11-16 Thread Santosh
Hi, for button there is a data property assign data to that data property and get in your handler btn.data = sample in your handler u can get the linkurl = btn.data or u need to create a custom event and pass information over event; hope this might help full On Nov 16, 11:59 am, Arindam Mojumder

[flex_india:31990] Re: MouseOver, MouseOut issue Flex 4 !

2010-11-16 Thread Santosh
Hi, can u put your sample code so that we can look in to that to resolve your problem On Nov 16, 4:15 am, vicky madan.vika...@gmail.com wrote: Hi all, Hope somebody knows what the problem could be in the following situation. I have a togglebutton inside an applicationcontrolbar. When the

[flex_india:31991] Re: parsing parameter through AddEventListner

2010-11-16 Thread vicky
You will have to create custom event to perform that functionality. In the event class create a public variable which will contain the url as String. Then when the event is dispatched, you can access the property by event.propertyName. Look at the following blogs for more understanding...

[flex_india:31991] Re: MouseOver, MouseOut issue Flex 4 !

2010-11-16 Thread vicky
Nevermind I got it fixed...Thanks for those who looked at it ! On Nov 15, 3:15 pm, vicky madan.vika...@gmail.com wrote: Hi all, Hope somebody knows what the problem could be in the following situation. I have a togglebutton inside an applicationcontrolbar. When the button is selected

Re: [flex_india:31991] parsing parameter through AddEventListner

2010-11-16 Thread Олег Галабурда
Hi! You need to add a public getter, method or property(data property in flex) to this button that will return configured URLRequest, something like this: public function getLink():URLrequest{ return new URLRequest('http://google.com'); } and inside your click handler you need to call this

Re: [flex_india:31991] MouseOver, MouseOut issue Flex 4 !

2010-11-16 Thread Олег Галабурда
Hi! Try ROLL_OVER and ROLL_OUT events instead. 2010/11/16 vicky madan.vika...@gmail.com: Hi all, Hope somebody knows what the problem could be in the following situation. I have a togglebutton inside an applicationcontrolbar. When the button is selected everything seems to be working

Re: [flex_india:31991] parsing parameter through AddEventListner

2010-11-16 Thread ankur wahi
Try this, var homeLink:URLRequest = new URLRequest(home.php); button_mc.AddEventListener(MouseEvent.CLICK, menuClick(homeLink)); function menuClick(linkURL:URLRequest) { return function(event:MouseEvent) { navigateToURL(linkURL, _self); }} Regards, Ankur On Tue,

[flex_india:31996] Re: Customize Area Chart

2010-11-16 Thread Bambam Choudhary
So I solved the problem, by writing creating the object of xField and Yfield . Thanks On Tue, Nov 16, 2010 at 5:22 PM, Bambam Choudhary sribam...@gmail.comwrote: Hello group, I have customize Area Chart. When click( double click) on any where on chart creating one circular Node(mention in

[flex_india:31996] Customize Area Chart

2010-11-16 Thread Bambam Choudhary
Hello group, I have customize Area Chart. When click( double click) on any where on chart creating one circular Node(mention in code) and geting corresponding value. I have use localToData method. Facing problem when mouse click on Chart then chart will shift left side. The code is: ?xml

[flex_india:31998] Re: parsing parameter through AddEventListner

2010-11-16 Thread Ranjit
Hi Arindam, Hope this helps. var homeLink:URLRequest = new URLRequest(home.php); button_mc.AddEventListener(MouseEvent.CLICK, function (event:MouseEvent){menuClick(event, homeLink)}); function menuClick(event:MouseEvent, linkURL:URLRequest) { navigateToURL(linkURL, _self); } Regards,

Re: [flex_india:31999] MouseOver, MouseOut issue Flex 4 !

2010-11-16 Thread kalai selvi
use rollover and rollout On Tue, Nov 16, 2010 at 4:45 AM, vicky madan.vika...@gmail.com wrote: Hi all, Hope somebody knows what the problem could be in the following situation. I have a togglebutton inside an applicationcontrolbar. When the button is selected everything seems to be

Re: [flex_india:32000] Re: Customize Area Chart

2010-11-16 Thread Jitendra Jain
Can yu please send the code or how you did this ? Please tell others also On Tue, Nov 16, 2010 at 6:12 PM, Bambam Choudhary sribam...@gmail.comwrote: So I solved the problem, by writing creating the object of xField and Yfield . Thanks On Tue, Nov 16, 2010 at 5:22 PM, Bambam Choudhary