Re: [flexcoders] Streaming Video to Flex

2008-12-31 Thread Mauricio Rogério Obenaus
Hi Phil, Some months ago wanted to stream a raw MPEG2 video from my tv card (Hauppauge PVR150) in linux to a sample flex application, and it work´s great, a little cpu intensive but work. I was using knoppmyth, and my start point to make it work was this page:

Re: [flexcoders] Re: combobox fills in with blank element

2008-07-11 Thread Mauricio Rogério Obenaus
I had a problem like that, try this: var newList:ArrayCollection(signalList); for (var i:int=0; iarr.length; i++) { if (!newList.contains(arr[i].name)) { newList.addItem(arr[i].name); } signalList = newList; I din´t compile this, no builder available here. Mauricio On Fri, Jul 11, 2008 at

Re: [flexcoders] Help Creating Tree from Complex XML

2007-09-11 Thread Mauricio Rogério Obenaus
You can also write a TreeDataDescriptor look for the ITreeDataDescriptor interface. No transformations needed. On 9/10/07, Alex Harui [EMAIL PROTECTED] wrote: You'll probably have to transform the data to match company department label=Accounting