[flexcoders] Re: Flex2 - unconverted Bindable metadata in class

2006-09-21 Thread thunderstumpgesatwork
@yahoogroups.com, thunderstumpgesatwork [EMAIL PROTECTED] wrote: Hi all, I've recently been getting this warning with some of my value object classes. For the value objects, I typically declare the entire class as [Bindable], and then have getter/setter functions for properties

[flexcoders] callLater not calling my method...?

2006-09-21 Thread thunderstumpgesatwork
Hi guys, I have successfully used this technique to invoke callLater from a non-UIComponent, and it was suggested in this thread: http://tech.groups.yahoo.com/group/flexcoders/message/49612 And I have since then seen this method used in the Framework as well.. It works for me in one case, but

[flexcoders] Re: callLater not calling my method...?

2006-09-21 Thread thunderstumpgesatwork
I don't think the UIComponent needs to be added as a child. The LayoutManager class does this same thing, and never adds it as a child of another UIComponent. The event should be gotten from the systemManager.stage property. Though could there be a timing issue where the stage is not initialized

[flexcoders] Stack Overflow with circular managed associations.

2006-09-22 Thread thunderstumpgesatwork
Hi guys, I think this may be a bug. I have some classes that have bi-directional managed associations. If both sides are declared lazy=false, I'm getting a stack overflow error in Flex when the results are returned. See the error output below. Any ideas? Shouldn't this work? thanks, Thunder

[flexcoders] Re: Stack Overflow with circular managed associations.

2006-09-25 Thread thunderstumpgesatwork
this happening? thanks, Thunder --- In flexcoders@yahoogroups.com, thunderstumpgesatwork [EMAIL PROTECTED] wrote: Hi guys, I think this may be a bug. I have some classes that have bi-directional managed associations. If both sides are declared lazy=false, I'm getting a stack overflow error

[flexcoders] Re: Stack Overflow with circular managed associations.

2006-09-26 Thread thunderstumpgesatwork
from that. Jeff From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of thunderstumpgesatwork Sent: Monday, September 25, 2006 8:20 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Stack Overflow with circular

[flexcoders] Bug with stacked ColumnSet and LogAxis

2006-10-02 Thread thunderstumpgesatwork
Hi guys, I think I found a bug when using a stacked ColumnSet and a LogAxis. When both are used in combination, I only see one of the series. Take away the LogAxis and it displays properly, change the stacked set to clustered and it displays properly. All code to reproduce is below. Any ideas

[flexcoders] Re: Bug with stacked ColumnSet and LogAxis

2006-10-05 Thread thunderstumpgesatwork
Bump... I don't know of an official bug submitting channel. Is there one available? I'd like to make sure this gets logged. Thunder --- In flexcoders@yahoogroups.com, thunderstumpgesatwork [EMAIL PROTECTED] wrote: Hi guys, I think I found a bug when using a stacked ColumnSet and a LogAxis

[flexcoders] [Flex2] Ant + compc - include-libraries not being found during compile..?

2006-10-18 Thread thunderstumpgesatwork
Hi guys. Can someone check my ant task? I copied and modified slightly several different tasks I found around here, and I'm getting errors about finding base classes (Cairngorm's FrontController, ServiceLocator, and the FDS's IManaged) I am pretty sure the libs (swc's) are being found, because

[flexcoders] Re: [Flex2] Ant + compc - include-libraries not being found during compile..?

2006-10-19 Thread thunderstumpgesatwork
--- In flexcoders@yahoogroups.com, thunderstumpgesatwork [EMAIL PROTECTED] wrote: Hi guys. Can someone check my ant task? I copied and modified slightly several different tasks I found around here, and I'm getting errors about finding base classes (Cairngorm's FrontController, ServiceLocator

[flexcoders] Asynchronously populate tree control.

2006-10-24 Thread thunderstumpgesatwork
Hi all, I am trying to populate a tree with asynchronous calls to a remote object. (I.E. each request for children of a node causes a remote call to get the children). The issue that I'm running into is that even before opening a tree node, all the children are being fetched. (call to

[flexcoders] PopUpButton as ItemEditor in DataGrid

2006-10-27 Thread thunderstumpgesatwork
I am running into a doozie of a problem. I'm trying to use a custom popup button as an item editor in a data grid. However as soon as the PopUp is created, and the open event fires, the data grid loses focus, the editor closes, and the popup goes away. In the DataGrid framework code, I traced

[flexcoders] Re: datagrid and dataField

2006-10-27 Thread thunderstumpgesatwork
Hi, my guess is that your dataField cannot support the complex [EMAIL PROTECTED]... it should be just a single field name. To me the XML makes more sense (and is simpler) like this: mx:XMLList id=employees employee Id=1 gender=female nameChristina Coenraets/name

[flexcoders] DataGrid itemEditor loses focus when using a PopUp

2006-10-27 Thread thunderstumpgesatwork
Hi guys, I am running into problems with focus changes when trying to use a PopUpButton to pop up a custom component in the scope of a DataGrid itemEditor. I know this should work, because a ComboBox is basically the same thing (a popup button with a list). I have a popup with a tree for

[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

[flexcoders] Re: DataGrid itemEditor loses focus when using a PopUp

2006-10-30 Thread thunderstumpgesatwork
. Setting 'focusEnabled=false' on all of the pieces of my popup solved my problem. hope this helps someone else down the road. cheers, Thunder --- In flexcoders@yahoogroups.com, thunderstumpgesatwork [EMAIL PROTECTED] wrote: Hi guys, I am running into problems with focus changes when trying

[flexcoders] Re: PopUpButton as ItemEditor in DataGrid

2006-10-30 Thread thunderstumpgesatwork
. Setting 'focusEnabled=false' on all of the pieces of my popup solved my problem. hope this helps someone else down the road. cheers, Thunder --- In flexcoders@yahoogroups.com, thunderstumpgesatwork [EMAIL PROTECTED] wrote: I am running into a doozie of a problem. I'm trying to use a custom

[flexcoders] Horizontal Scroll in Tree ?

2006-10-30 Thread thunderstumpgesatwork
Guys, I can't seem to get the horizontal scrollbars to work properly on a tree control. Setting the horizontalScrollPolicy=auto doesn't do the trick, and I've started looking at maxHorizontalScrollPosition but that doesn't seem to work correctly either (not to mention I don't exactly know how

[flexcoders] Re: Horizontal Scroll in Tree ?

2006-10-31 Thread thunderstumpgesatwork
Bump... maybe people missed it last night. This seems like such an obvious problem that it seems like I'm missing something! Also, I can force the scrollbars by setting maxHorizontalScrollPosition, but even then, when you scroll the window, none of the labels redraw! So you don't end up seeing

[flexcoders] Help with XMLDecoder

2006-01-30 Thread thunderstumpgesatwork
Hello, I am hoping someone can help get me started on this task. I am getting an XML string back from a web service call which I load into an XML object. Part of the XML string contains the XSD schema for the actual data. (the XML is actually an Oracle ResultSet that has been serialized to an

[flexcoders] Returning XML from a Java web service to Flex (2.0)

2006-01-30 Thread thunderstumpgesatwork
Hi all, I have been using .NET web services with my Flex 2.0 client and successfully returning objects of type System.Xml.XmlDocument (Microsoft's implementation of the DOM). These xml documents are successfully consumed by the Flex WebService class and converted to an ActionScript result Object.

[flexcoders] Compilation Errors running application through Enterprise Services (2.0 Beta)

2006-02-01 Thread thunderstumpgesatwork
My application compiles fine in the standalone build, but when it launches the mxml in the web browser, I get a compilation error that doesn't really say anything at all: *** BEGIN Error report *** Compilation Results Errors, warnings or exceptions were found while compiling

[flexcoders] Re: Returning XML from a Java web service to Flex (2.0)

2006-02-01 Thread thunderstumpgesatwork
/service /definitions --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: Can you send the WSDL to us please? Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of thunderstumpgesatwork Sent: Monday, January 30, 2006 6

[flexcoders] Re: Help with XMLDecoder

2006-02-01 Thread thunderstumpgesatwork
get past the schema information and move straight to the ROWSET if possible and start parsing from there. E4X in Flex 2 will of course make this easier. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of thunderstumpgesatwork Sent

[flexcoders] Re: Compilation Errors running application through Enterprise Services (2.0 Beta

2006-02-01 Thread thunderstumpgesatwork
) 06/02/01 17:14:04 02/01 17:14:04 INFO License Service: Flex 2.0 Trial Edition enabled (beta period ends May 1, 2006) --- In flexcoders@yahoogroups.com, thunderstumpgesatwork [EMAIL PROTECTED] wrote: My application compiles fine in the standalone build, but when it launches the mxml in the web

[flexcoders] Problem with Stacked Column chart and data series using the same 'yField'

2006-02-06 Thread thunderstumpgesatwork
I am trying to stack chart series each representing a region (US/Europe,India, etc), and the value is the number of subscribers in that region. I am splitting the query into multiple data sets containing the subscribers in each region. The 'yField' column in all cases is Subscribers, but it will

[flexcoders] Re: Help with XMLDecoder

2006-02-06 Thread thunderstumpgesatwork
be consistent. So, sorry! I guess I'd recommend having the response come back in e4x format and then doing your own parsing. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of thunderstumpgesatwork Sent: Wednesday, February 01, 2006 3

[flexcoders] Re: Problem to consum Complex return type from webservice

2006-02-07 Thread thunderstumpgesatwork
I had this same issue. See the thread here: http://groups.yahoo.com/group/flexcoders/message/28607?threaded=1 I don't know if they're planning any fixes, but for now my solution is to use Java RemoteObjects with Enterprise Services... I am able to return the org.w3c.dom.Document XML back now,

[flexcoders] e4x XML question

2006-02-08 Thread thunderstumpgesatwork
Hi, I'm trying to filter a set of nodes based on an element value. For instance in the documentation it shows I can do this: x.employee.(lastName == McGee) // nodes with lastName McGee I need to do this dynamically.. what if I don't know the element name (the 'lastName' portion above) ? How can

[flexcoders] Re: e4x XML question - possible bug?

2006-02-09 Thread thunderstumpgesatwork
@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 2/8/06, thunderstumpgesatwork [EMAIL PROTECTED] wrote: x.employee.(lastName == McGee) // nodes with lastName McGee I need to do this dynamically.. what if I don't know the element name (the 'lastName' portion above) ? How can I substitute

[flexcoders] Re: e4x XML question - possible bug?

2006-02-10 Thread thunderstumpgesatwork
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of thunderstumpgesatwork Sent: Thursday, February 09, 2006 9:41 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: e4x XML question - possible bug? Good thought, and I saw this suggestion in another related post, however

[flexcoders] Having Column chart problem

2006-02-17 Thread thunderstumpgesatwork
Hey guys, I'm having a problem I think may be a bug.. It has to do with the category axis on a column chart when using XMLListCollection as a dataProvider. Basically what I see is that if I use an actual data set (one of the data providers from a series) as the category Axis dataProvider, the

[flexcoders] Re: Having Column chart problem

2006-02-17 Thread thunderstumpgesatwork
). Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of thunderstumpgesatwork Sent: Friday, February 17, 2006 3:54 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Having Column chart problem Hey guys, I'm having a problem I

[flexcoders] ColumnChart problem x2.. MOUSE_OVER_DATA event seems wonky (2.0b1).

2006-02-17 Thread thunderstumpgesatwork
Hi again. Eli I hope you're reading this! =) I'm getting really sporatic responses from a listener to the ChartMouseEvent.MOUSE_OVER_DATA Note it wasn't this way in the alpha. Only significant differences on my part is the use of XMLListCollecitons as data providers. see the sample app below.

[flexcoders] Object cleanup and memory usage Best Practices (2.0b1)

2006-02-18 Thread thunderstumpgesatwork
Hi all, I've been coding in Flex now for a few months (basically since the 2.0 Alpha came out) and I've been having a heck of a problem with memory leaks. I was curious if there's any kind of rules or best practices to use for cleaning up AS objects (destructors? finalize()? or other?) This is

[flexcoders] Re: Object cleanup and memory usage Best Practices (2.0b1)

2006-02-20 Thread thunderstumpgesatwork
days of ActionScript 2 development. My suggestion; don't use it. And when you do (meaning you create local variables), set them to null at the end of the function. function cow() { var a:String = moo; a = null; } - Original Message - From: thunderstumpgesatwork

[flexcoders] Re: Object cleanup and memory usage Best Practices (2.0b1)

2006-02-20 Thread thunderstumpgesatwork
suggest you do not do what the above URL suggests. As for delete; don't know. - Original Message - From: thunderstumpgesatwork [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, February 20, 2006 1:50 PM Subject: [flexcoders] Re: Object cleanup and memory usage Best

[flexcoders] Memory leak when assigning new series and dataproviders to a chart.

2006-02-21 Thread thunderstumpgesatwork
Hello, I've been troubleshooting a pretty major memory leak in our application. I've narrowed it down to code which cleans up a chart's series array and re-initializes it to add a new set of series with new dataproviders, etc. Note that with only the AddSeries, and SeriesDelete functions removed

[flexcoders] Re: Memory leak when assigning new series *Flex2b1*

2006-02-21 Thread thunderstumpgesatwork
I keep forgetting to put it in the inital post. Using Flex2 Beta1. thanks, Thunder --- In flexcoders@yahoogroups.com, thunderstumpgesatwork [EMAIL PROTECTED] wrote: Hello, I've been troubleshooting a pretty major memory leak in our application. I've narrowed it down to code which cleans up

[flexcoders] X-Y Coordinate translation between a DisplayObject and one of its ancestors?

2006-02-21 Thread thunderstumpgesatwork
Hi all, I am trying to catch a selection change event on a chart, and then position and show an HBox relative to a corner of the chart item. The HBox is a child of an outer canvas which houses several other containers including the chart, legend, etc. The X and Y position of the HBox is

[flexcoders] repost - ColumnChart MOUSE_OVER_DATA event bug (2.0b1)

2006-02-28 Thread thunderstumpgesatwork
Hello, I'm re-posting this because I am pretty sure it is a bug, and I was hoping one of the Flex engineers could confirm that it has been noted (if not tested). I'm getting really sporatic responses from a listener to the ChartMouseEvent.MOUSE_OVER_DATA By sporatic I mean that the events only

[flexcoders] repost - Memory leak repeatedly assigning new series to a chart. (2.0b1)

2006-02-28 Thread thunderstumpgesatwork
Hello, I'm reposting this because I got no responses last time and I was hoping one of the Flex engineers could confirm that it has been noted (if not verified) that this is happening. This represents a major blocking point to releasing our app. Memory usage CAN NOT continue to grow unbounded.

[flexcoders] Re: repost - ColumnChart MOUSE_OVER_DATA event bug (2.0b1)

2006-02-28 Thread thunderstumpgesatwork
Of thunderstumpgesatwork Sent: Tuesday, February 28, 2006 1:28 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] repost - ColumnChart MOUSE_OVER_DATA event bug (2.0b1) Hello, I'm re-posting this because I am pretty sure it is a bug, and I was hoping one of the Flex engineers could confirm that it has

[flexcoders] Exception using checkbox as cellEditor in DataGrid

2006-02-28 Thread thunderstumpgesatwork
Hi all, I have set up a selected column in a datagrid and am using a checkbox as the cell editor. Clicking around on different rows of the datagrid produced this error: ReferenceError: Error #1069: Property text not found on mx.controls.CheckBox and there is no default value at

[flexcoders] Re: Exception using checkbox as cellEditor in DataGrid (2.0b1)

2006-02-28 Thread thunderstumpgesatwork
As usual, forgot to mention - Flex2 Beta1 Thunder --- In flexcoders@yahoogroups.com, thunderstumpgesatwork [EMAIL PROTECTED] wrote: Hi all, I have set up a selected column in a datagrid and am using a checkbox as the cell editor. Clicking around on different rows of the datagrid produced

[flexcoders] Re: Exception using checkbox as cellEditor in DataGrid

2006-03-01 Thread thunderstumpgesatwork
, Harish Flex-QA Adobe India. --- thunderstumpgesatwork [EMAIL PROTECTED] wrote: - Hi all, I have set up a selected column in a datagrid and am using a checkbox as the cell editor. Clicking around on different rows of the datagrid produced

[flexcoders] Re: xpath, xquery, schema in flex 2

2006-03-01 Thread thunderstumpgesatwork
I don't know of any support for xpath or validation with the new e4x xml objects... at least not documented. If someone else knows if this is possible, I'd be very interested too! Thunder --- In flexcoders@yahoogroups.com, nmsflex [EMAIL PROTECTED] wrote: does any one know where is document

[flexcoders] flash crashes - calling preventDefault() in cellRequestEdit event handler (2.0)

2006-03-01 Thread thunderstumpgesatwork
Hey guys, I found a nasty one.. Flex2 Beta1, FES compiled, I.E. 6.0 On a DataGrid when I call event.preventDefault(); from the handler of a cellRequestEdit event, it crashes flash, and then IE. below is the app I'm using to verify. Thunder //--- ?xml version=1.0

[flexcoders] Re: repost - Memory leak repeatedly assigning new series to a chart. (2.0b1)

2006-03-02 Thread thunderstumpgesatwork
swapping in series. We of course want to make sure these are all cleaned up before we ship, so If you can submit a bugfile, that would be great. Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of thunderstumpgesatwork Sent: Tuesday

[flexcoders] Re: repost - Memory leak repeatedly assigning new series to a chart. (2.0b1)

2006-03-02 Thread thunderstumpgesatwork
[mailto:[EMAIL PROTECTED] On Behalf Of thunderstumpgesatwork Sent: Tuesday, February 28, 2006 1:34 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] repost - Memory leak repeatedly assigning new series to a chart. (2.0b1) Hello, I'm reposting this because I got no responses last time

[flexcoders] SOLVED - Re: X-Y Coordinate translation

2006-03-03 Thread thunderstumpgesatwork
, you call: ancestor.globalToLocal(child.localToGlobal(child.x,child.y)); cheers! Thunder --- In flexcoders@yahoogroups.com, thunderstumpgesatwork [EMAIL PROTECTED] wrote: Hi all, I am trying to catch a selection change event on a chart, and then position and show an HBox relative

[flexcoders] Re: a GridTree component for flex 2

2006-03-03 Thread thunderstumpgesatwork
Looks good! I've been thinking I'm going to need something like this too. Any plans to release this as a component at least? If so when? Thanks, Thunder --- In flexcoders@yahoogroups.com, dc [EMAIL PROTECTED] wrote: hi list, just made a GridTree component for next project, please take a

[flexcoders] 2.0b1 Performance invoking RemoteObject over network

2006-03-08 Thread thunderstumpgesatwork
Hi guys, I'm experiencing very bad performance invoking a Java RemoteObject (stateless) when the flex client is not running on the same system as the Flex server (over the network). When I say very bad performance, I mean 1.6 - 1.8 seconds from the time I call RO.send(...) in flex until the time

[flexcoders] Firewall ports for Enterprise Services with Java RemoteObject

2006-03-09 Thread thunderstumpgesatwork
Hi guys we have attempted to provide access to out flex app (2.0 Beta1) through our firewall, and have opened port 8700 (the default http port for JRUN). We are using Java RemoteObjects in JRUN over the default AMF channel (also configured to use port 8700 from what I can tell) With just port

[flexcoders] Re: Firewall ports for Enterprise Services with Java RemoteObject

2006-03-09 Thread thunderstumpgesatwork
file. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of thunderstumpgesatwork Sent: Thursday, March 09, 2006 1:16 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Firewall ports for Enterprise Services with Java RemoteObject Hi guys

[flexcoders] Beta3 - Remoting error when running from local build

2006-05-23 Thread thunderstumpgesatwork
Hi all, I've got Flex Data Services installed in the default path, and Flex Builder Plugin set to Compile Locally. The server path is set properly under Flex Server properties tab: Flex Root Folder - C:\fds2\jrun4\servers\default\flex Flex Server URL - http://localhost/flex/ Note: I've

[flexcoders] Re: Beta3 - Remoting error when running from local build

2006-05-23 Thread thunderstumpgesatwork
Wait a minute... it's missing the {context.root} portion of the URL... thats why there's two slashes... Looking for the setting that should pick that up. Thunder --- In flexcoders@yahoogroups.com, thunderstumpgesatwork [EMAIL PROTECTED] wrote: Hi all, I've got Flex Data Services

[flexcoders] Re: Beta3 - Remoting error when running from local build

2006-05-23 Thread thunderstumpgesatwork
Great, thanks for the info. Thunder --- In flexcoders@yahoogroups.com, Peter Farland [EMAIL PROTECTED] wrote: If you have {context-root} in any of your endpoints and rely on the services configuration to generate the correct channels for you at runtime then you must specify

[flexcoders] Flex2 B3 - Scroll Bar problems

2006-06-22 Thread thunderstumpgesatwork
Trying to control scrollbars is giving me a headache! I want everything to be dynamic sizing, so in general I either use percentages for all my sizes, or layout constraints. In some cases though, a component just cannot get smaller than a certain size to look correct. This is when I set the

[flexcoders] Re: Flex2 B3 - Scroll Bar problems

2006-06-22 Thread thunderstumpgesatwork
scroll policies and clip content properties to the rest of your containers, you should be able to fix the problem. -TH --- In flexcoders@yahoogroups.com, thunderstumpgesatwork thunder.stumpges@ wrote: Trying to control scrollbars is giving me a headache! I want everything

[flexcoders] Re: Flex2 B3 - Scroll Bar problems

2006-06-23 Thread thunderstumpgesatwork
/mx:Application --- In flexcoders@yahoogroups.com, thunderstumpgesatwork thunder.stumpges@ wrote: Tim, Thanks for the suggestion. I have tried setting the scrollPolicy to OFF on all containers except the one I want to scroll, but it is still making the propertySheetContainer big

[flexcoders] Re: Flex2 B3 - Scroll Bar problems

2006-06-27 Thread thunderstumpgesatwork
. Especially the clipContent=false behavior. Thanks. -TH --- In flexcoders@yahoogroups.com, thunderstumpgesatwork thunder.stumpges@ wrote: Thanks for that info. This sounds like a bug then. Why would setting the minHeight/Width on a child of a container cause the scrollbars

<    1   2