[flexcoders] Huge memory usage in Flex Builder 2 (release version)

2006-09-15 Thread RBullotta
In a not-so-big Flex application, I'm noticing that FB is often consuming 500MB+ of RAM. Seems something is amiss... -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

[flexcoders] Bug in series class(es) regarding datatips

2006-09-05 Thread RBullotta
In the series class implementations (e.g. LineSeries), there appears to be a bug in the findDataPoints method that prevents dataTips from being displayed if filterData is set to false. The line: if (!isNaN(v.yFilter) !isNaN(v.xFilter)) ...looks like it should be:

[flexcoders] Re: Embed an activex in flex

2006-09-05 Thread RBullotta
Not directly, but you can use the Flex/AJAX bridge code to link Flex to the ActiveX via the browser's scripting engine. - Rick -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Re: Line chart data points being clipped off

2006-08-30 Thread RBullotta
Doh! I actually had this in the hardcoded version of my component (s), and switched it over to use dynamic creation of the line series and forgot to add it back in. And welcome back - hope you had a great post-release adventure... -- Flexcoders Mailing List FAQ:

[flexcoders] Re: Line chart data points being clipped off

2006-08-30 Thread RBullotta
I spoke too fast...I now recall why I stopped using filterData in the component. If filterData is set to false, and the dataset has no points to chart, the chart component crashes with the following error (if filterData is set to true, the crash doesn't occur, and the chart updates empty as

[flexcoders] Line chart data points being clipped off

2006-08-29 Thread RBullotta
Is there a way to allow the lines in line series to interpolate to points off of the visible range? Currently, points that are outside of the axis limits do not display at all, nor do the lines to and from these points. This prevents any concept of zooming in with charts. I'd be happy to

[flexcoders] Re: Weird namespace/compiler error in FB2

2006-08-29 Thread RBullotta
Still no solution... -- 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: Weird namespace/compiler error in FB2

2006-08-22 Thread RBullotta
*** BUMP/UPDATE *** Tried adding the path...no luck. Still generating a compiler error when reference custom MXML components (defined in a package) from an MXML application when the MXML application is not in the project root. HELP! -- Flexcoders Mailing List FAQ:

[flexcoders] Weird namespace/compiler error in FB2

2006-08-21 Thread RBullotta
Here's the quick summary: I have a custom MXML component defined in a package aaa.bbb.ccc (and the folder is aaa\bbb\ccc. If I reference it from an MXML application located in the project's root directory, all is good, using something like: mx:Application xmlns:MyStuff=aaa.bbb.ccc.*...

[flexcoders] Re: Extending Peter Ent Gauge component example

2006-08-08 Thread RBullotta
Common mistake, Rich - the alpha value ranges from 0 to 1, not 0 to 100. Change it to the proper range and you should be good to go! I've been building on Peter's example code as well, adding things like gauge tick marks, labels, titles, an adjustable start angle/sweep angle, and other

[flexcoders] Gauge/Meter UI Components for Flex

2006-08-03 Thread RBullotta
Are there any Flex-specific commercial products that provide rich gauges and other similar UI components? I looked at InfoSoft's Instrumentation Suite, but it is not Flex-friendly (basically standalone SWF's). Thanks. - Rick -- Flexcoders Mailing List FAQ:

[flexcoders] Re: Chart multiple vertical axis

2006-08-03 Thread RBullotta
Could you post an example of how you did your custom datatransform? I have a very similar need... -- 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

[flexcoders] HTTPService HTML Encoding/Parameter Issues

2005-04-30 Thread RBullotta
Here are some issues we've encountered in Flex 1.5 when trying to use it with some of our web applications via HTTP: 1) Cannot use parameter names in HTTPService if parameter has a . in the name as in: mx:HTTPService url=http://localhost/Lighthammer/I­lluminator?QueryTemplate=Demo/­

[flexcoders] Using CSS Styles for LineSeries

2005-04-30 Thread RBullotta
CSS Styling of individual series does not seem to work correctly (or is not well documented) - for example, how can CSS be used to style a LineSeries to control line color and width? Yahoo! Groups Links * To visit your group on the web, go to:

[flexcoders] CSS Stylesheets - locked in the filesystem?

2005-04-30 Thread RBullotta
We occasionally get a file locking problem with Css stylesheets when trying to save from within FlexBuilder - requires a reboot of the app server. Has anyone else seen this? Seems to be only a problem when editing. No runtime problems have been encountered. Yahoo! Groups Links * To

[flexcoders] Dynamically Generated MXML without using JSP

2005-04-29 Thread RBullotta
Is there way to pipe output of a Java servlet or .NET HTTPRequestHandler through the Flex server-side interpreter so that dynamically generated MXML can be emitted from an application and properly pre-processed? This would open up an interesting class of applications... Thanks for any