[flexcoders] Flex 2 Beta 1 - SpringBeanAdapter

2006-02-09 Thread javanatic23
Does SpringBeanAdapter works with Flex 2 Beta 1 ? any special configuration? -- 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

Re: [flexcoders] Image loader from thumbnail repeater

2006-02-09 Thread Manish Jethani
On 2/9/06, Stephane B. [EMAIL PROTECTED] wrote: Looks like the right solution, but I get the following error: ReferenceError: Error #1069: Property repeaterIndex not found on flash.display.Loader and there is no default value at ProductDetails/___Image2_click() Change event.target to

Re: [flexcoders] Problem with listItemRenderer and AddChild

2006-02-09 Thread Manish Jethani
On 2/9/06, Eric D Anderson [EMAIL PROTECTED] wrote: I tried this with the Flex 2 beta and I don't see any problem. Works for me too. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

RE: [flexcoders] Flex 2.0 beta TextArea question

2006-02-09 Thread Mac Martine
If I understand you correctly, heres the difference between your examples In your example where you set the vPosition from a Button: private function setLogVPosition():void { txtLog.vPosition = txtLog.maxVPosition; } the text in the text area was already set and fully drawn

RE: [flexcoders] Flex store services in web browser cache?

2006-02-09 Thread Matt Chotin
Uh, that doesn't seem good. I'm pretty sure that all web service responses come back with a no-cache header. Can you run a sniffer between the flex client and the web service proxy to see what comes back from the proxy? The no-cache header (along with an expires header) should be there.

RE: [flexcoders] New Inline cell renderers

2006-02-09 Thread Matt Chotin
I have now filed this. #158932 for those folks internally who can see it. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda Sent: Thursday, February 09, 2006 5:14 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] New

RE: [flexcoders] Flex 1.5 : Problem updating value columnCount in TileList

2006-02-09 Thread Matt Chotin
When are you reading those values? Has the TileList dispatched creationComplete yet? And are you sure it's populated when you read it? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of More GarcĂ­a Sent: Thursday, February 09, 2006 4:51 AM To:

RE: [flexcoders] Singleton inline initialization problem?

2006-02-09 Thread Matt Chotin
Hmm, I believe this should work. Can you put together a case that fails regularly? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sergey Kovalyov Sent: Thursday, February 09, 2006 1:12 AM To: flexcoders@yahoogroups.com Subject: [flexcoders]

RE: [flexcoders] referencing current object in an array between components (actionscript 2.0)

2006-02-09 Thread Matt Chotin
Something like parent.deleteRow(this) should work. You could declare the deleteRow function like this: //needs fixing for all cases function deleteRow(child:HBox):Void { if (child == null) { child = RowArray[Counter-1]; } myHBox.destroyChild(child); } Matt -Original

RE: [flexcoders] Flex 2.0 beta TextArea question

2006-02-09 Thread Gordon Smith
These were examples from someone else that I was trying to help, but that doesn't matter. You're explanation is correct, except for one detail... when you say including redrawing if need be. Calling validateNow() doesn't cause the player to redraw during the call, although it may

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

2006-02-09 Thread Matt Chotin
I'm not sure the filtering predicate operator will work for a variable. I think you're going to need to do this instead: var matches:XMLList = new XMLList(); var i:int = 0; for each (var emp:XML in x.employee) { if (emp[testVar] == testValue) { matches[i++] = emp; } } The e4x compiler

RE: [flexcoders] Array serialization for Webservice

2006-02-09 Thread Matt Chotin
Unfortunately I think this may be a known bug. I believe you're going to need to do a literal request format and pass the information in XML yourself to make it work. I don't remember if we may have fixed this in a hotfix, if you have a support contract you may want to ask your rep. Matt

<    1   2