[flexcoders] Re: ContextMenuEvent on BarSeries - how can I access the item that was clicked o

2006-10-31 Thread cdhbookingedge
Brian did this work for you? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit your group on the web, go to:

[flexcoders] Re: ContextMenuEvent on BarSeries - how can I access the item that was clicked o

2006-10-29 Thread cdhbookingedge
Yeah it's surely not the prettiest thing, kinda klugey. LOL If it was in C# or C++ I'd break out Spy++ and see what WM_XXX messages were being passed about but LOL I'm not in that land any more. It sucks that they don't pass thru the mouseup when it's a context menu. I'm not even sure they

Re: [flexcoders] Re: ContextMenuEvent on BarSeries - how can I access the item that was clicked o

2006-10-28 Thread Brian Dunphy
Awesome, thanks Thunder!I guess sometimes you just get buried in the API docs, I was sure I looked everywhere. :)Will keep you guys posted.Thanks again,Brian On 10/27/06, thunderstumpgesatwork [EMAIL PROTECTED] wrote: Hey guys, I do something similar with our

[flexcoders] Re: ContextMenuEvent on BarSeries - how can I access the item that was clicked o

2006-10-27 Thread thunderstumpgesatwork
Hey guys, I do something similar with our charts. The ITEM_ROLL_OVER event has everything you need... just add like so: chart.addEventListener(ChartItemEvent.ITEM_ROLL_OVER, hoverChartData); and in the ChartItemEvent class there is a hitData property... good luck! I'm interested to hear if you