Re: [flexcoders] Height Problems of List component using itemrenderer with different row height

2007-11-30 Thread Christoph Atteneder
With the default renderer with wordWrap = true and variableRowHeight= true it works if I´m setting the height of the list after calling measureHeightOfItems(). But it is not working if you are using more sophisticated ItemRenderers(e.g. with VBox and multiple TextFields, Buttons,...) I´ve already

[flexcoders] Re: Module Loader

2007-11-30 Thread Gus
Done!! Thanks Alex, I did it... but had to do it by monkey patching some classes.. don't like to do this... but... although I only modified the load method in the ModuleInfo class to add the loadBytes call, had to change the FactoryInfo, ModuleInfoProxy, ModuleLoader, ModuleManager and

RE: [flexcoders] Re: ListCollectionView#removeAll wants to dispatch undefined

2007-11-30 Thread Alex Harui
Yes. Basically we need unique child collections From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of florian.salihovic Sent: Friday, November 30, 2007 12:34 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re:

[flexcoders] Re: How to open a flex project that was created elsewhere?

2007-11-30 Thread Anthony DeBonis
Go to Menu: File Import ... then choose Existing Project to Workspace. Then choose the directory where the project lives, works well. --- In flexcoders@yahoogroups.com, Michael Pengi [EMAIL PROTECTED] wrote: I've downloaded a sample flex application, how do I open it in the flex builder

[flexcoders] FP9.0.60.235 can't catch onPlayStatus ?

2007-11-30 Thread Adnan Doric
Hello, It seems that Flash player 9,0,60,235 can't catch NetStram onPlayStatus Event (dispatched when streaming is finished), at least on my computer. I tried with a debugger, it doesn't stop at the breakpoint inside that function at all. It is triggered with 9,0,47,0 on IE, and Firefox. Can

RE: [flexcoders] Arrays, iteration, and referencing local variables?

2007-11-30 Thread Gordon Smith
BTW, assuming that initApp() is a method of your mx:Application, the 'this' object for initApp() is the instance of your application. Therefore you can just refer to parameters[i] rather than to Application.application.parameters[i]. - Gordon From:

RE: [flexcoders] Re: Sorting problem on date and numbers with null values, I think

2007-11-30 Thread Alex Harui
Well, you can file an enhancement request suggesting those changes. It won't make 3.0, and I'm not sure it is common enough to get into 4.0. In the same way I offer several DataGridColumn subclasses on my blog, you could certainly contribute to the community by offering a NullDataGridColumn

RE: [flexcoders] Registering flashvar variables properly?

2007-11-30 Thread Peter Farland
Right, HTTPService.url isn't marked [Bindable]. Programmatically updating it as needed should work, as Tracy mentioned. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gordon Smith Sent: Friday, November 30, 2007 6:13 PM To:

RE: [flexcoders] Re: Sorting problem on date and numbers with null values, I think

2007-11-30 Thread Alex Harui
because null can be assigned to anything is does not have a type so we can't tell by examining the data if you want to sort by date, number, etc. Where do you want nulls to appear in a sort? Could go anywhere right? That's why you'll have to write your own compare function with the null

<    1   2