[flexcoders] LCDS 2.6 Clustering Problem

2009-06-30 Thread pasflex
We are trying to get clustering configured for our application so that jms topic messages will be handled properly by the servers in the cluster. We are using a hardware load balancer. We have set up a default-cluster, using tcp and set the cluster-message-routing property to

[flexcoders] Problem with DataGrid ItemRenderer

2006-11-29 Thread pasflex
We have a datagrid that is using an item renderer that consists of an HBox implementing IDropInListItemRenderer with a few components in it. One of these components is a Text component used so some text can be wrapped. The problem is there are a few cases were the datagrid does not seem to

[flexcoders] Re: Specifying LineSeries itemRenderer with Actionscript

2006-08-25 Thread pasflex
Try something like: columnSeries.setStyle(itemRenderer, new ClassFactory (DiamondItemRenderer)); --- In flexcoders@yahoogroups.com, j_sevlie [EMAIL PROTECTED] wrote: I have some LineSeries charts that are generated all through ActionScript (because the number of lines I need is not know until

[flexcoders] Re: Identifying line series for datatip function

2006-08-18 Thread pasflex
try trace (LineSeries(h.element).yField) --- In flexcoders@yahoogroups.com, yaagcur [EMAIL PROTECTED] wrote: To elaborate I want to do something like public function dtFunc(h:HitData):String { trace (h.chartItem.element.yField); } but there is no property

[flexcoders] ColumnChart problem

2006-07-10 Thread pasflex
I have a stacked column chart with the showDataEffect set to a SeriesInterpolate effect. The chart begins to render, the axes get drawn, and the application freezes with this error: TypeError: Error #1009: Cannot access a property or method of a null object reference. at

[flexcoders] Problem with chart license

2006-07-05 Thread pasflex
We compile our app using ant and mxmlc.jar. Bought a charting license and followed the install instructions and put the license key in the license.properties but still get the Flex Charting Trial Watermark on our charts. Tried a variety of deleting/reinstalling things but the watermark is

[flexcoders] Re: Flex 2 Final : Error #1034, in ChartBase dataTip functions

2006-07-03 Thread pasflex
The method signature for a datatip function changed in from beta3 to release, it used to take ChartItemEvent as an argument now it takes HitData. --- In flexcoders@yahoogroups.com, Benoit Hediard [EMAIL PROTECTED] wrote: Error #1034: Echec de la contrainte de type: conversion de

[flexcoders] Problem Printing Charts with Embedded Fonts

2006-06-29 Thread pasflex
I have a chart that is using an embedded font. The chart renders fine in the flash player but when it is printed all of the textfields in the axes have a lime green background. Seems like I might be missing a style, but couldn't find one that fixed the issue. Any thoughts? Here's some

[flexcoders] Chart Data Tip Function

2006-06-28 Thread pasflex
Did the argument for a chart datatip function change in the release? The docs still show it taking a ChartItemEvent, but that seems to cause errors that weren't there in beta3: TypeError: Error #1034: Type Coercion failed: cannot convert mx.charts::[EMAIL PROTECTED] to

[flexcoders] Re: Chart Data Tip Function

2006-06-28 Thread pasflex
:[EMAIL PROTECTED] On Behalf Of pasflex Sent: Wednesday, June 28, 2006 11:58 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Chart Data Tip Function Did the argument for a chart datatip function change in the release? The docs still show it taking a ChartItemEvent, but that seems

[flexcoders] BarChart bug f2b3

2006-06-15 Thread pasflex
If the type on a bar chart is set to 'stacked' or '100%' the bars do not show up at all. Works fine on a column chart. ?xml version=1.0? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; backgroundColor=#FF mx:Script ![CDATA[ private var Medals:Array

[flexcoders] Re: Problem with LineChart - Flex 2 Beta 3

2006-05-24 Thread pasflex
Any ideas on this? I've tried setting filterData to true on the lineseries (should be by default anyhow) but it still seems to try to plot these null values. Thanks. --- In flexcoders@yahoogroups.com, pasflex [EMAIL PROTECTED] wrote: We are populating a line chart with some data returned

[flexcoders] Re: Problem with LineChart - Flex 2 Beta 3

2006-05-24 Thread pasflex
soemthing like this: value a/a c12/c /value Into this: value ajunk/a bjunk/b c12/c /value Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of pasflex Sent: Wednesday, May 24, 2006 11:09 AM To: flexcoders@yahoogroups.com

[flexcoders] Problem with LineChart - Flex 2 Beta 3

2006-05-19 Thread pasflex
We are populating a line chart with some data returned from an HTTPService. The data is xml which flex parses to an object (resultFormat='object'). For some of the LineSeries the data is not contiguous. The problem is that the chart is still drawing these missing datapoints. It draws them

[flexcoders] Re: How to access the tag name in a tree XML data provider

2006-04-25 Thread pasflex
Try something like: var tagName:String = node.name().toString(); --- In flexcoders@yahoogroups.com, greenfishinwater [EMAIL PROTECTED] wrote: I forgot to mention that this is using Flex 2 Beta 2 --- In flexcoders@yahoogroups.com, greenfishinwater greenfishinwater@ wrote: In my tree

[flexcoders] Re: Problems with tree selectedNode - Flex 2

2006-04-03 Thread pasflex
fixed the first issue internally, I'll forward on the issue about it remaining highlighted. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of pasflex Sent: Friday, March 31, 2006 8:32 AM To: flexcoders@yahoogroups.com Subject

[flexcoders] Problems with tree selectedNode - Flex 2

2006-03-31 Thread pasflex
I'm seeing some odd behavior when using the selectedNode property of the tree to return to a node in a tree or it's quite possible that I'm not using it correctly. The first issue is that if there are identical nodes in different branchs of the tree visible setting selectedNode will just go

[flexcoders] History iframe shows up in flex 2 beta 2

2006-03-23 Thread pasflex
The history iframe is visible in the html wrapper (firefox at least). It shows up beneath the lower left corner of an application, or when using the mouse scrollwheel on an application that fills the browser window. ?xml version=1.0 encoding=utf-8? mx:Application

[flexcoders] Tree itemRenderer - flex 2

2006-03-22 Thread pasflex
When setting an itemRenderer for a tree in flex2, the tree controls and indentation disappear. For example, if I try to display a label and an image for each node in the tree and I create an itemrenderer to do so, the tree will only display the root node using the itemrenderer with no

[flexcoders] Re: Tree itemRenderer - flex 2

2006-03-22 Thread pasflex
+ ( + myStr + ); } } } } } From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of pasflex Sent: Wednesday, March 22, 2006 9:52 AM To: flexcoders

[flexcoders] Problem with DateChooser selectedDate - flex 2

2006-03-15 Thread pasflex
If the selectedDate of a DateChooser is set to a date that is created using new Date() with no arguments (or any similar constructor to get the current date/time), the selectedDate is not highlighted on the DateChooser when showToday is false. Interestingly, it works if the date created using

[flexcoders] Re: Prob]lem with wordwrap - flex 1.5

2006-03-10 Thread pasflex
] On Behalf Of pasflex Sent: Tuesday, March 07, 2006 1:34 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Prob]lem with wordwrap - flex 1.5 I have a datagrid that has wordwrap turned on for one of it's columns. If the contents of a cell in that column are long enough to cause a scrollbar

[flexcoders] Re: Problem dynamically creating text controls

2005-11-03 Thread pasflex
:[EMAIL PROTECTED] On Behalf Of pasflex Sent: Wednesday, November 02, 2005 2:30 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Problem dynamically creating text controls We have an application where we are dynamically creating various controls in containers in a viewstack

[flexcoders] Problem dynamically creating text controls

2005-11-02 Thread pasflex
We have an application where we are dynamically creating various controls in containers in a viewstack. If a text control is created in a non-visible layer of the viewstack, the height of the control is not correct. This only happens for text controls in 1.5. It does not seem to happen in