Re: [flexcoders] [Bindable] not binding

2007-09-13 Thread Sean Sell
It doesn't look like you instantiate the controller, are you doing that somewhere else in your code? public var controller: QController = new QController(); - Original Message From: polestar11 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, September 13, 2007

Re: [flexcoders] Re: [Bindable] not binding

2007-09-13 Thread Sean Sell
PROTECTED] ups.com, Sean Sell rough68fish@ ... wrote: It doesn't look like you instantiate the controller, are you doing that somewhere else in your code? public var controller: QController = new QController( ); - Original Message From: polestar11 polestar11

Re: [flexcoders] Re: [Bindable] not binding

2007-09-13 Thread Sean Sell
to controller and then specifically the title attribute. When you do your binding controller is null. - Original Message From: Sean Sell [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, September 13, 2007 9:36:37 AM Subject: Re: [flexcoders] Re: [Bindable] not binding

Re: [flexcoders] Re: Selecting which Child Components to add at runtime

2007-06-05 Thread Sean Sell
Not quite. I have items 0 through 5 I want them to be displayed in that order but if 4 is not displayed then I get an out of bounds error when I addChild At 5. It may happen when 2 is drawn even if 0 and 1 are going to be drawn but since I have no control over order it evaluates the variables

Re: [flexcoders] Re: Selecting which Child Components to add at runtime

2007-06-05 Thread Sean Sell
] On Behalf Of Sean Sell Sent: Tuesday, June 05, 2007 11:13 AM To: [EMAIL PROTECTED] ups.com Subject: Re: [flexcoders] Re: Selecting which Child Components to add at runtime Not quite. I have items 0 through 5 I want them to be displayed in that order but if 4 is not displayed

[flexcoders] How to control what scrolls

2007-05-09 Thread Sean Sell
Given the following code: ?xml version=1.0 encoding=utf-8? mx:Panel id=panel1 layout=vertical mx:Form id=form1 mx:FormHeading label=Heading/ mx:FormItem label=Label mx:TextInput/ /mx:FormItem mx:FormItem label=Label

Re: [flexcoders] How to control what scrolls

2007-05-09 Thread Sean Sell
Don't know why but my application tag disappeared: - Original Message From: Sean Sell [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, May 9, 2007 8:05:06 AM Subject: [flexcoders] How to control what scrolls Given the following code

Re: [flexcoders] Re: FDS Messaging error

2007-05-09 Thread Sean Sell
Does it work in Firefox and just not in IE? If so, we had a problem on IE making remote object calls to our server when using https. Adding the following: mx:Script ![CDATA[ import mx.messaging.ChannelSet; public var channelIDArray:Array = new

Re: [flexcoders] is Serializable needed?

2007-05-09 Thread Sean Sell
I don't don't know about hibernate but I'm pushing some object onto a JMS topic and they need to be serialized. to get rid of your error add to your class: public static final long serialVersionUID = 1L; you only need to update the version ID with changes if you actually store the serialized

[flexcoders] QTP Testing (Flex Automation) - FormHeading ommitted

2007-03-21 Thread Sean Sell
In case anyone else needs it: I wanted to do a checkpoint on a heading contained in a Flex Form but FormHeading was not defined in the TEAFlex.xml file so I added it to the custom file (attached) it should probably be added in the standard distribution. I have to say that the Flex Automation

[flexcoders] Null pointer exception on MouseUp event

2007-03-21 Thread Sean Sell
I have a DataGrid that is full page when it first comes up. When the user selects a row the grid is resized to 30% and a detail panel is show below. When the row the user selects is below the 30% size of the grid I get a Null pointer exception on the MouseUp event (I'm not even using the

[flexcoders] Error after 2.0.1 update

2007-03-16 Thread Sean Sell
I just updated my flex builder installation to 2.0.1 (trying to get Flex Automation working) now I have 27 errors all for the same thing: SeverityDescriptionResourceIn FolderLocationCreation Time Id 21172: Definition mx.binding:RepeaterComponentWatcher could not be

[flexcoders] Testing with Mercury Quick Test Pro

2007-03-15 Thread Sean Sell
Has anyone performed functional tests of their Flex applications with QTP yet? Any advise for someone about to start down that path? --Sean TV dinner still cooling? Check out Tonight's Picks on Yahoo!

Re: [flexcoders] States and transitions

2007-03-15 Thread Sean Sell
Anything not scripted in the transition happens immediately in the transition. So you have to put in a transitions for the implied RemoveChildAction mx:transitions mx:Transition fromState=loaded toState=selected mx:Parallel mx:Resize

Fw: Re: [flexcoders] States and transitions

2007-03-15 Thread Sean Sell
Sorry didn't finish my explanation: in the transition from selected to loaded the RemoveChildAction for the associateVBox is for the inferred RemoveChild that must be done to restore the loaded state. - Forwarded Message From: Sean Sell [EMAIL PROTECTED] To: flexcoders@yahoogroups.com

Re: [flexcoders] FlexBuilder and Subclipse

2007-03-14 Thread Sean Sell
I gave up on trying to add subclipse to FlexBuilder (non-plugin) and installed Eclipse version 3.2, then the FlexBuilder Plug-in finally Subclipse. Now all is both hunky and dory. - Original Message From: Troy Gilbert [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday,

[flexcoders] Cairngorm: When / why override clone in Events

2007-03-14 Thread Sean Sell
In one of the Cairngorm examples I learned Cairngorm from each event had defined an override for the clone method (of Flash.Event). Does anyone understand haw and when you should do this? Does Cairngorm clone the events behind the scenes somewhere that requires this be done? --Sean

Re: [flexcoders] Re: Cairngorm: When / why override clone in Events

2007-03-14 Thread Sean Sell
--- In [EMAIL PROTECTED] ups.com, Sean Sell rough68fish@ ... wrote: In one of the Cairngorm examples I learned Cairngorm from each event had defined an override for the clone method (of Flash.Event) . Does anyone understand haw and when you should do this? Does Cairngorm clone the events behind

Re: [flexcoders] Re: Cairngorm: When / why override clone in Events

2007-03-14 Thread Sean Sell
. If not, just register the event name in the Controller and you're good to go. -TH --- In [EMAIL PROTECTED] ups.com, Sean Sell rough68fish@ ... wrote: Thank you, that was very helpful. As a follow on question: if you dispatch an event in a Cairngorm app like so