[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 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[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:

if (!isNaN(v.y)  !isNaN(v.x))

Thanks in advance for taking a look.  Is there an easy workaround other 
than extending the LineSeries class and overriding this method

- Rick Bullotta/SAP Labs







--
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:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[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: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[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: 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:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[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 expected):

TypeError: Error #1010: A term is undefined and has no properties.
at mx.charts.chartClasses::GraphicsUtilities$/drawPolyLine()
at 
mx.charts.renderers::LineRenderer/mx.charts.renderers:LineRenderer::upda
teDisplayList()
at mx.skins::ProgrammaticSkin/validateDisplayList()
at mx.managers::LayoutManager/::validateDisplayList()
at mx.managers::LayoutManager/::doPhasedInstantiation()
at Function/http://adobe.com/AS3/2006/builtin::apply()
at mx.core::UIComponent/::callLaterDispatcher2()
at mx.core::UIComponent/::callLaterDispatcher()







--
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:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[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 implement something like this via overriding the core 
chart classes, if I knew where to look first.

Thanks for any advice/suggestions.







--
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:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[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:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[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: 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:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[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.*...
mx:VBox

MyStuff:MyComponent .../

However, if the application MXML is not in the root directory, there 
is a compile error attempting to resolve the custom component...

How to get around this?  Do I need to tweak the project's classpath?


Thx.

- Rick





--
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:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[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 things.  Once I have it functioning the way I like 
it, I'll be happy to share the code with the community.  I also want 
to add (optional) configurable ranges/regions, linear and round 
gauges, and alarm events when the value enters the various 
ranges/regions.

- Rick









--
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:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[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: 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:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[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

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[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/­
Historica... 
Queryamp;Content-Type=text/xm­l id=abc 
   mx:request 
 Param.120/Param.1 
   /mx:request 
 /mx:HTTPService 


 2) There does not appear to be any way to pass characters that 
should be HTML encoded (such as the equals sign below) using the 
mx:request technique (also note that the parameter name is XXX, 
but the right side value should be the string A=whatever, 
properly encoded)...


 mx:HTTPService 
url=http://localhost/Lighthammer/I­lluminator?QueryTemplate=Demo/­
Historica... 
Queryamp;Content-Type=text/xm­l id=abc 
   mx:request 
 XXXA={mydataboundthing.value­}/XXX 
   /mx:request 
 /mx:HTTPService 

 This causes the compiler to freak out 


 ---or --- 


 mx:HTTPService 
url=http://localhost/Lighthammer/I­lluminator?QueryTemplate=Demo/­
Historica... 
Queryamp;Content-Type=text/xm­l id=abc 
   mx:request 
 XXXA%3D{mydataboundthing.val­ue}/XXX 
   /mx:request 
 /mx:HTTPService 


 This causes the ampersand to be double encoded  







 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[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:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[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 visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[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 insights.

Rick Bullotta
CTO
Lighthammer Software (http://www.lighthammer.com)





 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/